/* =====================================================================
   VIVIDesign Interiors — shared stylesheet
   Design tokens live at the top. Swap these values to re-skin the site.
   ===================================================================== */

:root {
  /* ---- Color ---- */
  --color-primary:      #5A6B84;  /* dusty slate blue — main brand */
  --color-primary-dark: #3E4C63;  /* deeper slate — text, footers, hover */
  --color-cream:        #F5F1E8;  /* warm off-white — backgrounds */
  --color-charcoal:     #2B2A28;  /* near-black — body text */
  --color-white:        #FFFFFF;
  --color-accent:       #B0855C;  /* warm brass/terracotta — accents, CTAs */
  --color-accent-dark:  #97703F;  /* deeper brass — hover */

  /* derived / neutrals */
  --color-cream-2:      #EFE9DC;  /* slightly deeper cream for alt sections */
  --color-line:         #E2DBCC;  /* hairline borders on cream */
  --color-muted:        #6C6A65;  /* muted body text */
  --color-primary-tint: #E7EAF0;  /* pale slate wash */

  /* ---- Typography ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ---- Spacing scale (4px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* section rhythm + layout */
  --section-y: 96px;
  --maxw: 1200px;
  --gutter: 24px;

  /* ---- Radius ---- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 1px 2px rgba(43,42,40,.06), 0 2px 8px rgba(43,42,40,.05);
  --shadow-md: 0 6px 20px rgba(43,42,40,.09), 0 2px 6px rgba(43,42,40,.06);
  --shadow-lg: 0 18px 48px rgba(43,42,40,.16), 0 4px 12px rgba(43,42,40,.08);
  --shadow-accent: 0 10px 26px rgba(176,133,92,.32);
}

/* =====================================================================
   Reset & base
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  background: var(--color-white);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--color-primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--color-accent); }

/* accessible focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-primary-dark); color: #fff;
  padding: 12px 20px; z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* =====================================================================
   Layout helpers
   ===================================================================== */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1360px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-sm { padding-block: 64px; }
.bg-cream { background: var(--color-cream); }
.bg-cream-2 { background: var(--color-cream-2); }
.bg-slate { background: var(--color-primary-dark); color: #EAECF1; }
.bg-slate h1, .bg-slate h2, .bg-slate h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: inline-block;
}
.bg-slate .eyebrow { color: #C9A57E; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 52px); }
.section-head p { margin-top: var(--space-4); color: var(--color-muted); font-size: 18px; }
.bg-slate .section-head p { color: #C3C8D4; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  min-height: 52px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .18s ease, box-shadow .2s ease, color .18s ease, border-color .18s ease;
  text-align: center;
}
.btn:active { transform: scale(.98); }

.btn-accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; box-shadow: var(--shadow-accent); transform: translateY(-2px); }

.btn-primary { background: var(--color-primary-dark); color: #fff; }
.btn-primary:hover { background: #2E3A4E; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.btn-outline:hover { background: var(--color-primary-dark); color: #fff; }

.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: #fff; color: var(--color-primary-dark); }

.btn-lg { min-height: 58px; padding: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* =====================================================================
   Header / nav
   ===================================================================== */
.utility-bar {
  background: var(--color-primary-dark);
  color: #DCE0E9;
  font-size: 13.5px;
}
.utility-bar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.utility-bar a { color: #DCE0E9; font-weight: 600; }
.utility-bar a:hover { color: #fff; }
.utility-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.utility-item { display: inline-flex; align-items: center; gap: 8px; }
.utility-item svg { width: 15px; height: 15px; flex: none; }
.utility-right { display: flex; align-items: center; gap: 8px; }
.utility-right .stars { color: var(--color-accent); letter-spacing: 1px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 10px;
  background: var(--color-primary-dark);
  display: grid; place-items: center;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { line-height: 1; }
.logo-text .lt-name {
  font-family: var(--font-display);
  font-size: 25px; font-weight: 700; letter-spacing: .01em;
  color: var(--color-primary-dark);
}
.logo-text .lt-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: var(--color-accent); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600; font-size: 15px; color: var(--color-charcoal);
  padding: 10px 14px; border-radius: var(--radius-sm);
}
.nav a:hover { color: var(--color-primary-dark); background: var(--color-cream); }
.nav a[aria-current="page"] { color: var(--color-accent); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--color-primary-dark); white-space: nowrap; }

/* mobile nav via checkbox-free CSS: simple stacked fallback */
.nav-toggle { display: none; }

@media (max-width: 1040px) {
  .header-phone { display: none; }
}
@media (max-width: 940px) {
  .nav { display: none; }
  .site-header .wrap { min-height: 66px; }
  .utility-left .utility-item.hide-sm { display: none; }
}

/* =====================================================================
   Hero (home)
   ===================================================================== */
.hero {
  position: relative;
  background: var(--color-primary-dark);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(43,42,40,.86) 0%, rgba(43,42,40,.6) 42%, rgba(43,42,40,.15) 100%);
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px;
  align-items: center;
  padding-block: 96px;
  min-height: 640px;
}
.hero-copy { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge .stars { color: var(--color-accent); letter-spacing: 1px; }
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: #E7C79E; }
.hero-sub { font-size: 19px; line-height: 1.6; color: #E4E6EC; max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trustline { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-trustline .ti { }
.hero-trustline .ti strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; }
.hero-trustline .ti span { font-size: 13px; color: #C3C8D4; letter-spacing: .02em; }

/* hero form card */
.hero-form {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-form h2 { font-size: 30px; color: var(--color-primary-dark); }
.hero-form .form-note { font-size: 14px; color: var(--color-muted); margin: 8px 0 22px; }

/* =====================================================================
   Forms
   ===================================================================== */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--color-primary-dark); margin-bottom: 7px; letter-spacing: .01em; }
.field .req { color: var(--color-accent); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 16px;
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(90,107,132,.18);
}
.field input::placeholder, .field textarea::placeholder { color: #A6A29A; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy { font-size: 12.5px; color: var(--color-muted); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.form-privacy svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--color-primary); }

/* =====================================================================
   Trust bar / stats
   ===================================================================== */
.trustbar { border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); background: var(--color-cream); }
.trustbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; color: var(--color-primary-dark); }
.trust-item svg { width: 24px; height: 24px; color: var(--color-accent); flex: none; }

.stats-band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-size: clamp(44px, 5vw, 62px); font-weight: 700; color: #fff; line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: #C3C8D4; font-weight: 600; }
.stat .num em { color: #E7C79E; font-style: normal; }

/* =====================================================================
   Cards & grids
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* service card */
.svc-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D8C7AE; }
.svc-ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--color-primary-tint);
  display: grid; place-items: center; margin-bottom: 20px;
}
.svc-ico svg { width: 27px; height: 27px; color: var(--color-primary-dark); }
.svc-card h3 { font-size: 25px; margin-bottom: 8px; }
.svc-card p { color: var(--color-muted); font-size: 15.5px; margin-bottom: 18px; flex: 1; }
.svc-link { font-weight: 700; font-size: 14px; letter-spacing: .02em; color: var(--color-accent); display: inline-flex; align-items: center; gap: 6px; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s ease; }

/* feature card w/ image */
.feature-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--color-line); }
.feature-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .5s ease; }
.feature-card:hover img { transform: scale(1.05); }
.feature-card .fc-body { padding: 22px 24px 26px; }
.feature-card h3 { font-size: 23px; }
.feature-card p { color: var(--color-muted); font-size: 15px; margin-top: 6px; }
.feature-card { overflow: hidden; }
.feature-card .fc-media { overflow: hidden; }

/* =====================================================================
   Why choose / feature list
   ===================================================================== */
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.why-media .float-card {
  position: absolute; bottom: -26px; left: -26px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px; max-width: 300px;
}
.why-media .float-card .fc-stars { color: var(--color-accent); font-size: 18px; letter-spacing: 1px; }
.why-media .float-card strong { font-family: var(--font-display); font-size: 30px; color: var(--color-primary-dark); line-height: 1; }
.why-media .float-card span { font-size: 13px; color: var(--color-muted); }

.feat-list { list-style: none; display: grid; gap: 22px; margin-top: 28px; }
.feat-list li { display: flex; gap: 16px; }
.feat-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--color-primary-tint); display: grid; place-items: center; flex: none; }
.feat-ico svg { width: 23px; height: 23px; color: var(--color-primary-dark); }
.feat-list h3 { font-size: 21px; margin-bottom: 2px; }
.feat-list p { color: var(--color-muted); font-size: 15px; }

/* =====================================================================
   Process
   ===================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.proc-step { position: relative; }
.proc-num {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--color-accent); color: var(--color-accent);
  display: grid; place-items: center; margin-bottom: 18px; background: var(--color-white);
}
.bg-slate .proc-num { background: transparent; color: #E7C79E; border-color: #E7C79E; }
.proc-step h3 { font-size: 24px; margin-bottom: 6px; }
.proc-step p { color: var(--color-muted); font-size: 15px; }
.bg-slate .proc-step p { color: #C3C8D4; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rev-card {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.rev-stars { color: var(--color-accent); font-size: 17px; letter-spacing: 1px; margin-bottom: 14px; }
.rev-card blockquote { font-size: 16px; line-height: 1.6; color: var(--color-charcoal); flex: 1; }
.rev-card blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 46px; color: var(--color-line); line-height: 0; vertical-align: -18px; margin-right: 4px; }
.rev-meta { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--color-line); }
.rev-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--color-primary); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 20px; font-weight: 700; flex: none; }
.rev-meta .rm-name { font-weight: 700; font-size: 15px; color: var(--color-primary-dark); }
.rev-meta .rm-src { font-size: 12.5px; color: var(--color-muted); display: flex; align-items: center; gap: 5px; }
.rev-feature {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--color-line);
  padding: 44px; text-align: center; max-width: 820px; margin-inline: auto;
}
.rev-feature .rev-stars { justify-content: center; font-size: 22px; }
.rev-feature blockquote { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); line-height: 1.4; color: var(--color-primary-dark); }
.rev-feature blockquote::before { display: none; }

/* =====================================================================
   Portfolio / gallery
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { position: relative; border-radius: var(--radius-md); overflow: hidden; margin: 0; box-shadow: var(--shadow-sm); }
.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform .5s ease; }
.gallery .tall img { aspect-ratio: 1/1.4; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(43,42,40,.82), transparent);
  color: #fff; padding: 40px 18px 16px; font-weight: 600; font-size: 15px;
  opacity: 0; transition: opacity .25s ease;
}
.gallery figure:hover figcaption { opacity: 1; }
.gallery figcaption span { display: block; font-size: 12px; font-weight: 500; color: #D8C7AE; letter-spacing: .04em; text-transform: uppercase; }

/* before/after */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.ba-pair figure { margin: 0; position: relative; }
.ba-pair img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.ba-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(43,42,40,.78); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill);
}
.ba-tag.after { background: var(--color-accent); }
.ba-caption { margin-top: 16px; }
.ba-caption h3 { font-size: 22px; }
.ba-caption p { color: var(--color-muted); font-size: 15px; margin-top: 4px; }

/* =====================================================================
   Service areas
   ===================================================================== */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-card .ac-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.area-card .ac-head svg { width: 22px; height: 22px; color: var(--color-accent); flex: none; }
.area-card h3 { font-size: 23px; }
.area-card p { color: var(--color-muted); font-size: 14.5px; }
.area-list { columns: 2; column-gap: 24px; list-style: none; margin-top: 8px; }
.area-list li { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 15px; font-weight: 600; color: var(--color-primary-dark); break-inside: avoid; }
.area-list li svg { width: 15px; height: 15px; color: var(--color-accent); flex: none; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { background: var(--color-primary-dark); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 20%, rgba(176,133,92,.28), transparent 60%);
}
.cta-band .wrap { position: relative; z-index: 1; text-align: center; padding-block: 84px; }
.cta-band h2 { color: #fff; font-size: clamp(34px, 5vw, 54px); }
.cta-band p { color: #C9CDD8; font-size: 19px; margin: 16px auto 32px; max-width: 620px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   Page header (interior pages)
   ===================================================================== */
.page-hero { position: relative; background: var(--color-primary-dark); color: #fff; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .32; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(43,42,40,.55), rgba(62,76,99,.85)); z-index:1; }
.page-hero .wrap { position: relative; z-index: 2; padding-block: 84px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(40px, 6vw, 66px); }
.page-hero p { color: #E4E6EC; font-size: 19px; max-width: 640px; margin: 16px auto 0; }
.crumbs { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #C3C8D4; margin-bottom: 18px; font-weight: 600; }
.crumbs a { color: #C3C8D4; }
.crumbs a:hover { color: #fff; }

/* =====================================================================
   FAQ (details/summary)
   ===================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 24px;
  font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; transition: transform .2s ease; color: var(--color-accent); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 24px 24px; color: var(--color-muted); font-size: 16px; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.contact-info { display: grid; gap: 20px; margin-top: 6px; }
.ci-item { display: flex; gap: 16px; }
.ci-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--color-primary-tint); display: grid; place-items: center; flex: none; }
.ci-ico svg { width: 22px; height: 22px; color: var(--color-primary-dark); }
.ci-item h3 { font-size: 20px; margin-bottom: 2px; }
.ci-item p, .ci-item a { color: var(--color-muted); font-size: 15.5px; }
.ci-item a { font-weight: 600; color: var(--color-primary-dark); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 9px 0; font-size: 15px; border-bottom: 1px solid var(--color-line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--color-primary-dark); }
.hours-table tr:last-child td { border-bottom: none; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 20px; border: 1px solid var(--color-line); }
.map-frame img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--color-charcoal); color: #C7C4BD; }
.footer-cta { background: var(--color-accent); color: #fff; }
.footer-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 34px; flex-wrap: wrap; }
.footer-cta h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); }
.footer-cta p { color: rgba(255,255,255,.9); font-size: 16px; margin-top: 4px; }

.footer-main { padding-block: 64px 40px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-text .lt-name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; color: #A8A49C; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s ease; }
.footer-social a:hover { background: var(--color-accent); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #A8A49C; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--color-accent); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; }
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #8F8B83; }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* =====================================================================
   Utility / misc
   ===================================================================== */
.lead { font-size: 20px; line-height: 1.65; color: var(--color-muted); }
.center { text-align: center; }
.mt-6 { margin-top: 32px; }
.mt-7 { margin-top: 48px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-primary-tint); color: var(--color-primary-dark);
  padding: 7px 15px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
}
.pull-quote { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: 1.3; color: var(--color-primary-dark); }
.pull-quote em { color: var(--color-accent); font-style: italic; }

/* two-col text/media block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1000px) {
  :root { --section-y: 72px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-block: 64px; min-height: auto; }
  .why-grid, .contact-grid, .split, .ba-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4, .stats-band .wrap, .process-grid, .gallery, .area-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-media { max-width: 480px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --section-y: 56px; }
  .grid-2, .grid-3, .grid-4, .stats-band .wrap, .process-grid, .gallery, .area-grid, .rev-grid,
  .form-row, .footer-cols, .footer-cta .wrap { grid-template-columns: 1fr; }
  .hero-form { padding: 24px; }
  .why-media .float-card { position: static; margin-top: 16px; max-width: none; left: 0; }
  .footer-cta .wrap { text-align: center; justify-content: center; }
  .utility-left .utility-item.hide-xs { display: none; }
  .stats-band .wrap { gap: 32px; }
}

/* =====================================================================
   Mobile navigation (CSS-only hamburger via <details>)
   ===================================================================== */
.m-nav { display: none; position: relative; }
.m-nav > summary {
  list-style: none; cursor: pointer;
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: grid; place-content: center; gap: 5px;
  background: var(--color-cream); border: 1px solid var(--color-line);
}
.m-nav > summary::-webkit-details-marker { display: none; }
.m-nav > summary span {
  display: block; width: 22px; height: 2.5px; border-radius: 2px;
  background: var(--color-primary-dark); transition: transform .2s ease, opacity .2s ease;
}
.m-nav[open] > summary span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.m-nav[open] > summary span:nth-child(2) { opacity: 0; }
.m-nav[open] > summary span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.m-nav-panel {
  position: absolute; right: 0; top: calc(100% + 12px);
  width: min(78vw, 300px);
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 10px; z-index: 120;
  display: flex; flex-direction: column; gap: 2px;
}
.m-nav-panel a {
  padding: 14px 14px; min-height: 48px; display: flex; align-items: center;
  font-weight: 600; font-size: 16px; color: var(--color-charcoal); border-radius: var(--radius-sm);
}
.m-nav-panel a:hover { background: var(--color-cream); color: var(--color-primary-dark); }
.m-nav-panel .m-call {
  margin-top: 6px; border-top: 1px solid var(--color-line); color: var(--color-primary-dark);
}
.m-nav-panel .btn { margin-top: 8px; min-height: 50px; justify-content: center; color: #fff; }

@media (max-width: 940px) {
  .m-nav { display: block; }
  .header-cta .btn { display: none; }
}

/* =====================================================================
   Sticky mobile action bar
   ===================================================================== */
.mobile-bar { display: none; }
@media (max-width: 640px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--color-line); box-shadow: 0 -6px 24px rgba(43,42,40,.1);
  }
  .mobile-bar a {
    min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: var(--radius-md); font-weight: 700; font-size: 15px;
  }
  .mobile-bar .mb-call { background: var(--color-cream); color: var(--color-primary-dark); border: 1.5px solid var(--color-line); }
  .mobile-bar .mb-cta { background: var(--color-accent); color: #fff; }
  .mobile-bar a svg { width: 18px; height: 18px; }
  body { padding-bottom: 78px; }
  .site-footer { margin-bottom: 0; }
}

/* extra small-screen polish */
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(38px, 9vw, 52px); }
  .hero .wrap { padding-block: 48px; }
  .page-hero .wrap { padding-block: 60px; }
  .section-head h2, .cta-band h2 { font-size: clamp(30px, 8vw, 40px); }
  .rev-feature { padding: 30px 22px; }
  .rev-feature blockquote { font-size: 22px; }
  .contact-card { padding: 24px; }
  .area-list { columns: 1; }
  .header-cta { gap: 0; }
  .site-header .wrap { gap: 12px; }
  .utility-bar { font-size: 12.5px; }
  .utility-bar .wrap { min-height: 38px; }
}
@media (max-width: 400px) {
  .utility-left { display: none; }
  .utility-bar .wrap { justify-content: center; }
}

/* mobile-specific adjustments (hero + trust bands) */
@media (max-width: 640px) {
  /* form already provides the CTA — hide duplicate hero buttons */
  .hero-actions { display: none; }

  /* stat trio: all three on one centered line */
  .hero-trustline {
    display: flex; flex-wrap: nowrap; justify-content: center;
    gap: 14px; margin-top: 24px; text-align: center;
  }
  .hero-trustline .ti { flex: 1 1 0; min-width: 0; }
  .hero-trustline .ti strong { font-size: 22px; }
  .hero-trustline .ti span { display: block; font-size: 10.5px; line-height: 1.25; }

  /* trust band: 2 x 2 = two centered lines */
  .trustbar .wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px;
    justify-items: center; text-align: center; padding-block: 22px;
  }
  .trust-item { font-size: 13.5px; justify-content: center; }
}
