/* ============================================================
   JOHN'S AUTO SERVICE — Website Styles
   Brand: Forest Green + Warm Cream + Brass
   Boiling Springs, SC
   ============================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
  --forest:       #2C4A35;
  --forest-dark:  #1E3426;
  --forest-mid:   #3D6148;
  --forest-light: rgba(44,74,53,0.08);
  --cream:        #F5F0E8;
  --cream-dark:   #EDE6D8;
  --brass:        #C4973E;
  --brass-light:  #DBA84A;
  --charcoal:     #2A2A2A;
  --charcoal-soft:#4A4A47;
  --charcoal-muted:#888880;
  --sage-pale:    #EEF3EE;
  --white:        #FFFFFF;
  --border:       rgba(44,74,53,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:        1200px;
  --pad-x:        clamp(1.25rem, 5vw, 2.5rem);
  --sec-pad:      clamp(5rem, 9vw, 7rem) 0;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --radius:       6px;
  --radius-lg:    12px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── SECTION BASE ─── */
.section { padding: var(--sec-pad); }

/* ─── TYPOGRAPHY UTILITIES ─── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(196,151,62,0.85); }

.section-header {
  max-width: 640px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,74,53,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}
.btn-cream {
  background: var(--cream);
  color: var(--forest);
  border: 2px solid var(--cream);
}
.btn-cream:hover {
  background: var(--cream-dark);
  border-color: var(--cream-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-lg { padding: 0.9rem 1.875rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── PHOTO PLACEHOLDERS ─── */
.photo-placeholder {
  background: #D8D3C8;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,74,53,0.06) 0%, transparent 60%);
}
.photo-label {
  font-size: 0.75rem;
  color: #888078;
  font-style: italic;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ─── SCROLL REVEAL ─── */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.diff-card.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.diff-card.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.process-step.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.process-step.reveal-item:nth-child(3) { transition-delay: 0.16s; }
.process-step.reveal-item:nth-child(4) { transition-delay: 0.24s; }
.process-step.reveal-item:nth-child(5) { transition-delay: 0.32s; }
.service-group.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.service-group.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.review-card.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.review-card.reveal-item:nth-child(3) { transition-delay: 0.2s; }

/* ─── STARS ─── */
.star { color: #D0CAC0; font-size: 1.1em; }
.star.filled { color: var(--brass); }
.star.partial { color: var(--brass); opacity: 0.55; }

/* ====================================================
   STICKY CTA BAR
   ==================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  border-top: 2px solid var(--forest);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-bar-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-bar-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.sticky-bar-phone:hover { color: var(--white); }

/* ====================================================
   NAVIGATION
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(44,74,53,0.1);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--charcoal-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--forest);
  background: var(--forest-light);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}
.header-phone-link:hover { color: var(--forest); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius);
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 2rem var(--pad-x);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.25rem;
  color: var(--charcoal);
  padding: 0.5rem;
  margin-bottom: 2rem;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--forest); }
.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-text { max-width: 600px; }
.hero-text .eyebrow { margin-bottom: 1rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-stars { display: flex; gap: 2px; }
.hero-rating-text {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
}
.hero-rating-text strong { color: var(--charcoal); }
.hero-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: 360px;
}

/* ====================================================
   TRUST BAR
   ==================================================== */
.trust-bar {
  background: var(--forest);
  padding: 2.25rem 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 2.5rem;
  text-align: center;
}
.trust-val {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.trust-div {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ====================================================
   DIFFERENTIATORS
   ==================================================== */
.differentiators { background: var(--white); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.diff-card {
  background: var(--sage-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.diff-card:hover {
  box-shadow: 0 8px 32px rgba(44,74,53,0.1);
  transform: translateY(-3px);
}
.diff-icon {
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.diff-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}
.diff-body {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* ====================================================
   PROCESS
   ==================================================== */
.process { background: var(--sage-pale); }

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  align-items: start;
}
.process-line {
  position: absolute;
  top: 36px;
  left: calc(1.25rem / 2 + 36px);
  right: calc(1.25rem / 2 + 36px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest-light);
  border: 2px solid var(--border);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.process-step .step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.process-step .step-body {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ─── KEY STEP: YOU APPROVE ─── */
.process-step--key {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(44,74,53,0.3);
  padding: 2.25rem 1.5rem;
}
.step-key-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
  background: rgba(196,151,62,0.18);
  border: 1px solid rgba(196,151,62,0.35);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 0.5rem;
}
.step-check {
  font-size: 2rem;
  color: var(--brass-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.process-step--key .step-title {
  font-size: 1.125rem;
  color: var(--white);
}
.process-step--key .step-body {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

/* ====================================================
   SERVICES
   ==================================================== */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.service-group-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-group-icon { font-size: 0.9rem; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 6px; }
.service-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
}
.service-desc {
  font-size: 0.8125rem;
  color: var(--charcoal-soft);
  line-height: 1.5;
}
.services-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services-cta-text {
  font-size: 1rem;
  color: var(--charcoal-soft);
}

/* ====================================================
   REVIEWS
   ==================================================== */
.reviews { background: var(--white); }

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.agg-stars { display: flex; gap: 2px; }
.agg-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}
.agg-count {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
}
.agg-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.agg-link:hover { color: var(--forest-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-card:hover {
  box-shadow: 0 6px 24px rgba(44,74,53,0.09);
  transform: translateY(-2px);
}
.review-stars {
  font-size: 1.1rem;
  color: var(--brass);
  letter-spacing: 1px;
}
.review-quote {
  flex: 1;
}
.review-quote p {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.review-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  font-style: normal;
}
.review-sep { color: var(--charcoal-muted); font-size: 0.8rem; }
.review-location {
  font-size: 0.8125rem;
  color: var(--charcoal-muted);
}
.review-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
  align-self: flex-start;
}

/* ====================================================
   MEET JOHN
   ==================================================== */
.owner { background: var(--sage-pale); }

.owner-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.owner-photo {
  aspect-ratio: 3 / 4;
  width: 100%;
}
.owner-text .eyebrow { margin-bottom: 0.5rem; }
.owner-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.owner-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.owner-body p {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
}
.owner-quote {
  border-left: 3px solid var(--brass);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 0;
}
.owner-quote p {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.owner-quote cite {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal-muted);
  font-style: normal;
}

/* ====================================================
   LOCATION + CONTACT
   ==================================================== */
.location-contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.map-placeholder {
  aspect-ratio: 4 / 3;
  background: #D0D8D2;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.address-block {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.address-block strong { color: var(--charcoal); font-weight: 600; }
.address-phone {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hours-block {
  margin-bottom: 1.25rem;
}
.hours-block strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
}
.directions-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.directions-link:hover { color: var(--forest-dark); }

/* ─── CONTACT FORM ─── */
.form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.required { color: var(--brass); }
.field-input,
.field-textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid #C8C3BA;
  border-radius: var(--radius);
  padding: 0.7rem 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: #A09890; }
.field-input:focus,
.field-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(44,74,53,0.12);
}
.field-textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.8125rem;
  color: var(--charcoal-muted);
  text-align: center;
  line-height: 1.5;
}

/* ====================================================
   FINAL CTA
   ==================================================== */
.final-cta {
  background: var(--forest);
  padding: clamp(5rem, 9vw, 7rem) 0;
}
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.final-cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--charcoal);
  padding: 3rem 0 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.75rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.footer-location {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy,
.footer-credit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-credit a:hover { color: var(--white); }

/* ====================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-line { display: none; }
  .process-step--key { transform: none; }
  .owner-grid {
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
  }
  .diff-grid { gap: 1.25rem; }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ==================================================== */
@media (max-width: 768px) {
  :root { --sec-pad: clamp(3.5rem, 8vw, 5rem) 0; }

  /* Nav */
  .main-nav,
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .header-inner { gap: 0; }

  /* Sticky bar */
  .sticky-bar-name { display: none; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { order: -1; }
  .hero-photo {
    aspect-ratio: 3 / 2;
    min-height: 220px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .trust-div { display: none; }
  .trust-stat { padding: 0.75rem 1rem; }

  /* Differentiators */
  .diff-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-step--key { transform: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Owner */
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .owner-photo { aspect-ratio: 3 / 2; max-width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .field-row { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ====================================================
   REDUCED MOTION
   ==================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-item { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
