/* ============================================================
   BLACK PINE REMODELING — MASTER STYLESHEET
   The locked design foundation. Every page inherits from this.
   Design tokens per BLACK_PINE_VISUAL_IDENTITY.md (exact).
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — strict 3-color system + supporting neutrals */
  --charcoal:        #1A1D21;   /* primary: backgrounds, wordmarks, dark UI */
  --charcoal-dark:   #0D0F11;   /* depth/shadow, sparingly */
  --charcoal-muted:  #4A4E53;   /* secondary text */
  --gold:            #C9A961;   /* accent ONLY — lines, highlights, CTA. never a bg fill */
  --gold-hover:      #b8965142; /* (unused placeholder-safe) */
  --cream:           #F4F1EC;   /* light bg, text on dark. never pure white */
  --cream-dim:       #e8e3d9;   /* subtle cream variation for section separation */

  /* Fonts */
  --font-serif: Georgia, 'Times New Roman', serif;   /* headlines, wordmark, italic taglines */
  --font-sans:  Helvetica, Arial, sans-serif;        /* body, UI, buttons, forms */

  /* Type scale */
  --fs-hero:    clamp(2.2rem, 5vw, 3.6rem);
  --fs-h2:      clamp(1.6rem, 3.2vw, 2.4rem);
  --fs-h3:      clamp(1.2rem, 2.2vw, 1.5rem);
  --fs-body:    1.05rem;
  --fs-small:   0.85rem;
  --fs-label:   0.75rem;   /* wide-tracked small caps */

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Layout */
  --maxw:       1160px;
  --maxw-text:  760px;   /* readable prose width */
  --radius:     2px;     /* minimal — restraint */
  --header-h:   76px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; }

/* ---------- REUSABLE LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-md); }

.section { padding: var(--space-xl) 0; }
.section--tight { padding: var(--space-lg) 0; }
.section--charcoal { background: var(--charcoal); color: var(--cream); }
.section--charcoal h1, .section--charcoal h2, .section--charcoal h3 { color: var(--cream); }
.section--cream-dim { background: var(--cream-dim); }

/* Eyebrow: wide-tracked small-caps label in gold */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

/* Gold divider line — signature motif */
.divider {
  width: 60px; height: 1.5px; background: var(--gold);
  border: none; margin: var(--space-sm) 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

.section-title { font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
.section-title em { font-style: italic; color: var(--charcoal); }
.section--charcoal .section-title em { color: var(--gold); }
.section-intro { max-width: var(--maxw-text); color: var(--charcoal-muted); margin-bottom: var(--space-lg); }
.section--charcoal .section-intro { color: var(--cream); opacity: 0.85; }

/* Centered section header — eyebrow + title + divider + intro, centered.
   Body content below stays left-aligned for readability. */
.section-head { text-align: center; margin-bottom: var(--space-lg); }
.section-head .divider { margin-left: auto; margin-right: auto; }
.section-head .section-intro { margin-left: auto; margin-right: auto; margin-bottom: 0; }
.section-head .section-title { margin-bottom: var(--space-sm); }

/* Inline related-service pill links (Zack-style section breaker + internal linking) */
.pill-links { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: var(--space-md) 0; }
.pill-links--center { justify-content: center; }
.pill-link {
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  color: var(--charcoal); background: var(--cream);
  border: 1px solid rgba(26,29,33,0.2); border-radius: var(--radius);
  padding: 0.6rem 1.1rem; transition: all 0.2s var(--ease);
}
.pill-link::after { content: " \2192"; color: var(--gold); }
.pill-link:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.pill-link:hover::after { color: var(--cream); }
.section--cream-dim .pill-link { background: #fff; }

/* Service-area city cards */
.area-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.area-card {
  display: block; background: var(--cream); border: 1px solid rgba(26,29,33,0.1);
  border-radius: var(--radius); padding: var(--space-md);
  transition: all 0.2s var(--ease);
}
.section--cream-dim .area-card { background: #fff; }
.area-card h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.2rem; color: var(--charcoal); }
.area-card span { font-size: var(--fs-small); color: var(--charcoal-muted); }
.area-card::after { content: " \2192"; color: var(--gold); font-weight: 700; }
.area-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,29,33,0.08); }

.lede { font-size: 1.2rem; line-height: 1.6; max-width: var(--maxw-text); }

/* ---------- BUTTONS / CTA ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.8rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}
/* Primary CTA — charcoal block with gold hover accent */
.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* Gold-outline CTA — used on charcoal sections */
.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover { background: transparent; color: var(--gold); }

/* Ghost / secondary link button */
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.section--charcoal .btn--ghost { color: var(--cream); border-color: var(--cream); }
.section--charcoal .btn--ghost:hover { background: var(--cream); color: var(--charcoal); }

/* Text link with gold underline on hover */
.link-arrow {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow::after { content: " \2192"; }
.section--charcoal .link-arrow { color: var(--cream); }
.section--charcoal .link-arrow:hover { color: var(--gold); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,29,33,0.08);
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: 1.5rem; }
.brand img { height: 46px; width: auto; }
.brand__text { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; line-height: 1.15; letter-spacing: 1.5px; color: var(--charcoal); }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav > a, .nav__item > a { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500; color: var(--charcoal); transition: color 0.2s var(--ease); white-space: nowrap; }
.nav > a:hover, .nav__item > a:hover { color: var(--gold); }

/* Dropdown (Bathroom only) */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item--has-menu > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav__item--has-menu > a::after {
  content: ""; width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor; opacity: 0.5;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav__item--has-menu:hover > a::after { opacity: 1; transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: 100%; left: 0;
  background: var(--cream); min-width: 240px;
  border: 1px solid rgba(26,29,33,0.1);
  box-shadow: 0 8px 24px rgba(13,15,17,0.1);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.2s var(--ease);
  padding: 0.5rem 0;
}
.nav__item--has-menu:hover .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { display: block; padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.nav__menu a:hover { background: var(--cream-dim); color: var(--gold); }

.nav__cta {
  display: flex; align-items: center; gap: 1.25rem;
  margin-left: 0.5rem; padding-left: 1.75rem;
  border-left: 1px solid rgba(26,29,33,0.15);
}
.nav__phone { font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem; color: var(--charcoal); white-space: nowrap; }
.nav__phone:hover { color: var(--gold); }
.nav__cta .btn { padding: 0.7rem 1.35rem; font-size: 0.88rem; }

/* Hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.3s var(--ease); }

/* ---------- MOBILE STICKY CTA BAR ---------- */
.mobile-cta-bar { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,15,17,0.55) 0%, rgba(13,15,17,0.72) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: var(--space-xl) 0; text-align: center; }
.hero h1 { font-size: var(--fs-hero); color: var(--cream); margin-bottom: var(--space-sm); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: 1.2rem; opacity: 0.9; margin: 0 auto var(--space-md); max-width: 580px; }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.hero__phone { color: var(--cream); font-weight: 700; font-size: 1.05rem; border-bottom: 1.5px solid var(--gold); padding-bottom: 3px; }
.hero__phone:hover { color: var(--gold); }

/* ---------- COLLAGE HERO (split: text panel + photo grid) ---------- */
.hero-collage { position: relative; min-height: 82vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--charcoal); overflow: hidden; }
.hero-collage__content { display: flex; align-items: center; padding: var(--space-xl) var(--space-lg); color: var(--cream); }
.hero-collage__inner { max-width: 520px; }
.hero-collage h1 { font-size: clamp(2rem, 3.6vw, 3.1rem); color: var(--cream); margin-bottom: var(--space-sm); }
.hero-collage h1 em { font-style: italic; color: var(--gold); }
.hero-collage__sub { font-size: 1.15rem; opacity: 0.9; margin-bottom: var(--space-md); }
.hero-collage__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero-collage__phone { color: var(--cream); font-weight: 700; font-size: 1.05rem; border-bottom: 1.5px solid var(--gold); padding-bottom: 3px; }
.hero-collage__grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; }
.hero-collage__grid img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage__grid .tall { grid-row: span 2; }

@media (max-width: 900px) {
  .hero-collage { grid-template-columns: 1fr; min-height: auto; }
  .hero-collage__content { padding: var(--space-lg) var(--space-md); text-align: center; }
  .hero-collage__inner { margin: 0 auto; }
  .hero-collage__actions { justify-content: center; }
  .hero-collage__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--charcoal); color: var(--cream); }
.trust-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 1.1rem 0; }
.trust-bar__item { font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.5rem; }
.trust-bar__item::before { content: "\2713"; color: var(--gold); font-weight: 700; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { font-size: var(--fs-small); color: var(--charcoal-muted); padding: 1rem 0 0; }
.breadcrumb a { color: var(--charcoal-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ---------- SERVICE CARDS ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.card {
  background: var(--cream);
  border: 1px solid rgba(26,29,33,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,15,17,0.12); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.card__text { color: var(--charcoal-muted); font-size: 0.98rem; margin-bottom: var(--space-sm); flex: 1; }

/* ---------- FEATURE / VALUE BLOCKS ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); }
.feature__icon { width: 40px; height: 40px; margin-bottom: var(--space-sm); }
.feature__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; }
.feature h3 { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.feature p { color: var(--charcoal-muted); font-size: 0.98rem; }
.section--charcoal .feature p { color: var(--cream); opacity: 0.82; }

/* ---------- PROCESS STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); counter-reset: step; }
.step { position: relative; padding-top: var(--space-md); }
.step__num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: var(--space-xs); display: block;
}
.step h3 { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.step p { color: var(--charcoal-muted); font-size: 0.95rem; }
.section--charcoal .step p { color: var(--cream); opacity: 0.82; }

/* ---------- GALLERY GRID ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-sm); }
.gallery-item { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-sm); }
.gallery-strip .gallery-item { aspect-ratio: 4/3; }

/* ---------- CONTENT PROSE (service page body) ---------- */
.prose { max-width: var(--maxw-text); }
.prose h2 { font-size: var(--fs-h2); margin: var(--space-lg) 0 var(--space-sm); }
.prose h3 { font-size: var(--fs-h3); margin: var(--space-md) 0 var(--space-xs); }
.prose p { margin-bottom: var(--space-sm); }
.prose ul { margin: var(--space-sm) 0 var(--space-md) 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { font-weight: 500; }

/* Two-column content + aside */
.content-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--space-lg); align-items: stretch; }
.content-split > div:last-child { display: flex; }
.content-split img { width: 100%; height: 100%; object-fit: cover; }

/* Callout — gold-accented highlight box for important text (e.g. estimate promise) */
.callout {
  max-width: var(--maxw-text); margin: 0 auto;
  background: var(--cream); border: 1px solid rgba(26,29,33,0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
}
.section--cream-dim .callout { background: #fff; }
.callout h2, .callout h3 { margin-bottom: var(--space-sm); }
.callout p { color: var(--charcoal-muted); }
.callout p:last-child { margin-bottom: 0; }

/* Form section — balanced two-column, intro vertically centered next to form */
.form-section { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.form-section__intro { align-self: center; }
.form-section .lead-form { max-width: 460px; width: 100%; }

/* ---------- COST TABLE ---------- */
.cost-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); margin: var(--space-md) 0; }
.cost-tier { border: 1px solid rgba(26,29,33,0.12); border-top: 3px solid var(--gold); padding: var(--space-md); border-radius: var(--radius); }
.cost-tier__label { font-family: var(--font-sans); font-size: var(--fs-label); letter-spacing: 3px; text-transform: uppercase; color: var(--charcoal-muted); margin-bottom: var(--space-xs); }
.cost-tier__range { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--charcoal); margin-bottom: var(--space-xs); }
.cost-tier__desc { font-size: 0.92rem; color: var(--charcoal-muted); }

/* ---------- FAQ ACCORDION ---------- */
.faq { max-width: var(--maxw-text); margin-left: auto; margin-right: auto; }
.faq__item { border-bottom: 1px solid rgba(26,29,33,0.12); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--charcoal);
  padding: var(--space-sm) 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-family: var(--font-sans); transition: transform 0.2s var(--ease); }
.faq__item.open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); color: var(--charcoal-muted); }
.faq__a p { padding-bottom: var(--space-sm); }

/* ---------- LEAD FORM ---------- */
.lead-form { background: var(--cream); border: 1px solid rgba(26,29,33,0.12); border-radius: var(--radius); padding: var(--space-md); }
.section--charcoal .lead-form { background: var(--cream); color: var(--charcoal); }
.lead-form h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
.form-field { margin-bottom: var(--space-sm); }
.form-field label { display: block; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--charcoal); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--charcoal);
  padding: 0.75rem 0.9rem; border: 1px solid rgba(26,29,33,0.25); border-radius: var(--radius);
  background: #fff; transition: border-color 0.2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.8rem; color: var(--charcoal-muted); margin-bottom: var(--space-sm); }
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }
.form-consent a { color: var(--charcoal); border-bottom: 1px solid var(--gold); }
.lead-form .btn { width: 100%; }

/* ---------- CTA BLOCK (final) ---------- */
.cta-block { text-align: center; }
.cta-block h2 { font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
.cta-block p { max-width: 540px; margin: 0 auto var(--space-md); opacity: 0.9; }
.cta-block__actions { display: flex; justify-content: center; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.cta-block__phone { font-weight: 700; font-size: 1.1rem; border-bottom: 1.5px solid var(--gold); padding-bottom: 3px; }

/* ---------- SERVICE AREA ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; justify-content: center; max-width: var(--maxw-text); margin: 0 auto; }
.area-list a { font-family: var(--font-sans); font-size: 0.98rem; color: var(--charcoal); opacity: 0.85; border-bottom: 1px solid transparent; transition: all 0.2s var(--ease); }
.area-list a:hover { color: var(--gold); opacity: 1; border-bottom-color: var(--gold); }
.area-list .sep { color: var(--gold); opacity: 0.5; }
/* On dark charcoal sections, links are cream */
.section--charcoal .area-list a { color: var(--cream); opacity: 0.9; }
.section--charcoal .area-list a:hover { color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--charcoal-dark); color: var(--cream); padding: var(--space-lg) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-lg); }
.footer-col h4 { font-family: var(--font-sans); font-size: var(--fs-label); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-sm); font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.92rem; opacity: 0.8; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-brand img { height: 48px; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.92rem; opacity: 0.75; margin-bottom: var(--space-sm); max-width: 280px; }
.footer-contact { font-size: 0.92rem; opacity: 0.85; line-height: 1.9; }
.footer-contact a { border-bottom: 1px solid var(--gold); }
.footer-bottom { border-top: 1px solid rgba(244,241,236,0.12); padding-top: var(--space-md); text-align: center; font-size: var(--fs-small); opacity: 0.6; }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; gap: var(--space-md); }
  .form-section .lead-form { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Nav → hamburger */
  .nav, .nav__cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid rgba(26,29,33,0.1);
    padding: var(--space-sm) var(--space-md); gap: 0.2rem;
    box-shadow: 0 12px 24px rgba(13,15,17,0.1);
  }
  .nav.is-open a { padding: 0.7rem 0; width: 100%; font-size: 1rem; }
  .nav.is-open .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 var(--space-sm); min-width: 0;
  }
  .nav.is-open .nav__item--has-menu > a::after { content: ""; }

  /* Sticky mobile CTA bar — always visible */
  .mobile-cta-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: var(--charcoal); border-top: 1px solid var(--gold);
  }
  .mobile-cta-bar a { flex: 1; text-align: center; padding: 0.95rem 0.5rem; font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem; }
  .mobile-cta-bar a:first-child { color: var(--cream); border-right: 1px solid rgba(244,241,236,0.2); }
  .mobile-cta-bar a:last-child { background: var(--gold); color: var(--charcoal); }
  body { padding-bottom: 54px; } /* room for sticky bar */

  .hero { min-height: 68vh; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__phone { text-align: center; margin-top: 0.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .cta-block__actions { flex-direction: column; }
  .section { padding: var(--space-lg) 0; }
}

/* ---------- ACCESSIBILITY: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- FOCUS VISIBILITY ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
