:root {
  --black: #16161a;
  --ink: #2b2b2f;
  --grey: #6b6b70;
  --grey-light: #eceae7;
  --bg: #faf9f7;
  --white: #ffffff;
  --orange-1: #f6b93b;
  --orange-2: #e85d2c;
  --gradient: linear-gradient(90deg, var(--orange-1), var(--orange-2));
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-light);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.2px;
}

.brand img {
  height: 40px;
  width: 40px;
}

.brand .amp {
  color: var(--black);
}

.brand .yo {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  border-color: var(--orange-2);
  color: var(--orange-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(232, 93, 44, 0.28);
}

.btn-primary:hover { filter: brightness(1.05); }

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--grey-light);
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange-2);
  background: rgba(246, 185, 59, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.08rem;
  color: var(--grey);
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--grey);
  font-size: 0.9rem;
}

.trust-row strong { color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 56px 0; }

section.alt { background: var(--white); border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }

.section-head { max-width: 60ch; margin-bottom: 36px; }

.section-head h2 {
  font-size: 1.9rem;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.section-head p { color: var(--grey); margin: 0; }

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 4px solid transparent;
  border-image: var(--gradient) 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card h3 { margin: 0 0 10px; font-size: 1.1rem; font-weight: 800; }

.card p { margin: 0; color: var(--grey); font-size: 0.95rem; }

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 { margin: 0 0 6px; font-size: 1.5rem; }
.cta-band p { margin: 0; color: #c9c9cd; }

/* ---------- Info blocks (contact/hours) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 24px;
}

.info-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 8px;
  display: block;
}

.info-card .value { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.info-card .sub { color: var(--grey); font-size: 0.9rem; }

table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 10px 0; border-bottom: 1px solid var(--grey-light); font-size: 0.95rem; }
table.hours td:first-child { font-weight: 700; }
table.hours td:last-child { text-align: right; color: var(--grey); }
table.hours tr:last-child td { border-bottom: none; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.values-list { display: grid; gap: 18px; margin-top: 26px; }
.values-list .value-item { display: flex; gap: 14px; align-items: flex-start; }
.values-list .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gradient); margin-top: 7px; flex-shrink: 0;
}
.values-list h4 { margin: 0 0 4px; font-size: 1rem; }
.values-list p { margin: 0; color: var(--grey); font-size: 0.92rem; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black);
  color: #d6d6da;
  padding: 48px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-grid h5 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-grid a, .footer-grid p { color: #b7b7bd; font-size: 0.92rem; margin: 0 0 8px; display: block; }
.footer-grid a:hover { color: var(--orange-1); }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; width: 34px; }
.footer-brand span { font-weight: 800; color: var(--white); font-size: 1.05rem; }

.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}
.social-links a:hover { background: var(--gradient); }
.social-links svg { width: 17px; height: 17px; fill: #d6d6da; }
.social-links a:hover svg { fill: var(--black); }

.footer-bottom {
  border-top: 1px solid #2c2c31;
  padding-top: 18px;
  font-size: 0.8rem;
  color: #8b8b90;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  nav.main-nav { order: 3; width: 100%; justify-content: flex-start; gap: 18px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
