@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter+Tight:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #FF6153;
  --primary-dark:   #d94e42;
  --primary-glow:   rgba(255, 97, 83, 0.18);
  --accent:         #A03027;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-raised: #201e1a;
  --ink:            #F4F1EA;
  --ink-soft:       #d8d4cc;
  --muted:          #8E8A82;
  --muted-faint:    rgba(142, 138, 130, 0.22);
  --border:         rgba(244, 241, 234, 0.08);
  --border-brand:   rgba(255, 97, 83, 0.35);
  --hairline:       rgba(255, 97, 83, 0.5);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter Tight', system-ui, sans-serif;
  --ff-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --section-py:     clamp(112px, 14vh, 180px);
  --content-width:  1200px;
  --wide-width:     1400px;
  --radius:         4px;
  --radius-pill:    999px;

  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── UNIVERSAL IMAGE CAP ─────────────────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img,
.page-header-bg, .about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* ─── HEADING ANCHOR FIX ──────────────────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }

p { line-height: 1.7; color: var(--ink-soft); }

a { color: var(--ink); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Inline italic luxury rhythm — the unique move */
.accent-word, .brand-word, .inline-italic {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}
.accent-word { font-size: 1.15em; }
.brand-word  { font-size: 1.15em; }
.inline-italic { font-size: 1.15em; font-style: italic; }

em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

/* ─── LAYOUT UTILITIES ────────────────────────────────────────────────────── */
.container       { max-width: var(--content-width); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.wide-container  { max-width: var(--wide-width); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.section-inner   { max-width: var(--content-width); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

/* ─── ANIMATION UTILITIES ─────────────────────────────────────────────────── */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.scale-in   { opacity: 0; transform: scale(0.94);       transition: opacity 0.55s ease, transform 0.55s ease; }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1; transform: none;
}

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger > *.visible { opacity: 1; transform: none; }

/* ─── SCROLL PROGRESS ─────────────────────────────────────────────────────── */
.scroll-progress, #scrollProgress, #scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--primary); z-index: 9999;
  width: 0%; transition: width 100ms linear;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 32px;
  font-family: var(--ff-body); font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius); border: none; cursor: pointer;
  text-decoration: none; transition: filter 200ms, transform 150ms, background 200ms;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary, .btn.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover, .btn.btn-primary:hover {
  filter: brightness(0.9); color: #fff;
}

.btn-ghost, .btn.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border-brand);
}
.btn-ghost:hover, .btn.btn-ghost:hover {
  color: var(--primary); border-color: var(--primary);
}

.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; background: var(--primary); color: #fff;
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: filter 200ms, transform 150ms; width: 100%;
  justify-content: center;
}
.btn-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }
.btn-submit svg { width: 16px; height: 16px; }

/* ─── EYEBROW / LABEL ─────────────────────────────────────────────────────── */
.section-eyebrow, .story-eyebrow, .page-header-eyebrow, .service-eyebrow,
.info-block-label, .contact-form-label, .cta-banner-eyebrow,
.cta-eyebrow, .footer-col-label, .footer-col-title, .footer-col-heading {
  display: block;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}

/* ─── SITE HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.top-nav {
  display: flex; align-items: center; gap: 32px;
  max-width: 1320px; margin-inline: auto;
  padding: 0 28px;
  height: var(--header-height);
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; }

.nav-pages {
  flex: 1;
  display: flex; justify-content: center;
  list-style: none; padding: 0; margin: 0;
  gap: 28px; align-items: center;
}
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 14px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.04em;
  text-decoration: none; transition: color 150ms;
}
.nav-pages a:hover { color: var(--ink); text-decoration: none; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: var(--radius);
  font-family: var(--ff-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.9); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--ink); font-size: 24px; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas);
    padding: 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 899;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; }
  .nav-cta .nav-cta-text { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh; display: flex; align-items: flex-end;
}

.hero > img:first-of-type, .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(160, 48, 39, 0.55) 0%, transparent 55%),
    linear-gradient(180deg,
      rgba(12, 12, 15, 0.35) 0%,
      rgba(12, 12, 15, 0.55) 50%,
      rgba(12, 12, 15, 0.88) 100%
    );
}

.hero-ribbon {
  position: absolute; top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  z-index: 2; opacity: 0.4;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 48px) clamp(72px, 9vh, 120px);
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 24px;
}

.hero-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title .accent-word { font-size: 1em; }

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 400;
  color: var(--ink-soft); max-width: 52ch;
  margin-bottom: 40px; line-height: 1.65;
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--muted-faint);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

/* ─── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.trust-pip {
  display: inline-block; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  flex-shrink: 0;
}
.trust-sep {
  color: var(--primary); margin: 0 16px; font-size: 14px;
  opacity: 0.6; user-select: none;
}

/* ─── MARQUEE STRIP ───────────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--ff-mono); font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.m-pip {
  display: inline-block; width: 5px; height: 5px;
  background: var(--primary); border-radius: 50; flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ──────────────────────────────────────────────────────── */
.section-title, .story-headline, .section-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
}
.section-title-flush { margin-bottom: 0; }

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}

.service-tab {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--ink); }
.service-tab.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0; min-height: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.service-panel.active { display: grid; }

.service-panel-img {
  position: relative; overflow: hidden; min-height: 380px;
}
.service-panel-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: saturate(0.8) brightness(0.88);
  transition: filter 400ms;
}
.service-panel:hover .service-panel-img img {
  filter: saturate(0.95) brightness(0.95);
}

.service-panel-body {
  padding: clamp(32px, 4vw, 52px);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.service-panel-body h3 {
  font-family: var(--ff-display); font-style: italic; font-weight: 600;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.0;
  color: var(--ink); letter-spacing: -0.02em;
}
.service-panel-body p {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  max-width: 48ch;
}
.service-panel-body a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  transition: color 150ms; align-self: flex-start;
  margin-top: 8px;
}
.service-panel-body a:hover { color: var(--ink); text-decoration: none; }

@media (max-width: 700px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-img { min-height: 240px; max-height: 260px; }
  .service-panel-img img { position: absolute; max-height: none !important; }
}

/* ─── SERVICE FEATURE (services.html) ────────────────────────────────────── */
.service-jump-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-height); z-index: 80;
  overflow-x: auto;
}
.service-jump-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex; gap: 0; align-items: center;
}
.service-jump-link {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 16px 18px;
  border-bottom: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: color 150ms, border-color 150ms;
}
.service-jump-link:hover {
  color: var(--primary); border-bottom-color: var(--primary);
  text-decoration: none;
}

.service-feature {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}
.service-feature-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-feature.photo-right .service-feature-inner {
  direction: rtl;
}
.service-feature.photo-right .service-feature-inner > * {
  direction: ltr;
}

.service-feature-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.service-feature-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
  filter: saturate(0.85);
  transition: filter 400ms, transform 600ms;
}
.service-feature:hover .service-feature-photo img {
  filter: saturate(1);
  transform: scale(1.03);
}
.service-feature-photo-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: rgba(12,12,15,0.75);
  padding: 6px 12px; border-radius: var(--radius);
}

.service-feature-content { display: flex; flex-direction: column; gap: 20px; }
.service-feature-content h2 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(32px, 3.5vw, 52px); line-height: 1.0;
}
.service-feature-content p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 50ch; }
.service-feature-content .service-eyebrow { margin-bottom: 0; }

.service-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  font-size: 14px; color: var(--muted); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.service-bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}
.service-feature-content a {
  display: inline-flex; align-items: center;
  padding: 14px 28px; background: var(--primary); color: #fff;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  transition: filter 200ms; align-self: flex-start;
}
.service-feature-content a:hover { filter: brightness(0.9); text-decoration: none; color: #fff; }

@media (max-width: 900px) {
  .service-feature-inner { grid-template-columns: 1fr; }
  .service-feature.photo-right .service-feature-inner { direction: ltr; }
  .service-feature-photo { order: -1; }
}

/* ─── GALLERY (index) ─────────────────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
}
.gallery-header a {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); border-bottom: 1px solid var(--hairline);
  padding-bottom: 3px; flex-shrink: 0; text-decoration: none;
  white-space: nowrap; align-self: center;
}
.gallery-header a:hover { color: var(--ink); text-decoration: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-tile {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  grid-column: auto;
}
.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75) brightness(0.9);
  transition: filter 400ms, transform 500ms;
  max-height: none !important;
}
.gallery-tile:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}

.gallery-cta { text-align: center; padding-top: 16px; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* ─── GALLERY PAGE (gallery.html) ────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-py) 0;
}
.gallery-section-header {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 32px;
}
.gallery-section-title {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.0;
  flex: 1;
}
.gallery-section-count {
  font-family: var(--ff-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0;
}

.gallery-filters {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
}
.filter-pill {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer;
  transition: all 200ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary); color: var(--ink);
}
.filter-pill.active { background: var(--primary); color: #fff; }

#galleryGrid {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.gallery-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
}
.gallery-card.featured { grid-column: span 2; }

.gallery-card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
}
.gallery-card.featured .gallery-card-photo { aspect-ratio: 16 / 8; }

.gallery-card-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
  filter: saturate(0.8);
  transition: filter 400ms, transform 500ms;
}
.gallery-card:hover .gallery-card-photo img {
  filter: saturate(1); transform: scale(1.04);
}
.gallery-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,12,15,0.7));
  z-index: 1;
}
.gallery-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--primary); color: #fff;
  padding: 4px 10px; border-radius: var(--radius);
}
.gallery-card-category {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-family: var(--ff-mono); font-size: 10px; color: var(--ink-soft);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.gallery-card-body { padding: 24px; }
.gallery-card-headline {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.1;
  margin-bottom: 10px;
}
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.gallery-card-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.gallery-card-meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label { font-family: var(--ff-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.meta-value { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

@media (max-width: 900px) {
  #galleryGrid { grid-template-columns: 1fr 1fr; }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  #galleryGrid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

/* ─── REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 32px 28px;
  background: var(--canvas); border-radius: var(--radius);
  border-top: 1px solid var(--primary);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.35);
}

.review-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
}
.review-stars svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--primary); fill: var(--primary);
}

.review-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px); line-height: 1.45;
  color: var(--ink); margin-bottom: 20px;
}

.review-attribution {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); opacity: 0.85;
}
.review-attribution strong { color: var(--ink-soft); font-weight: 500; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── SERVICE AREAS ───────────────────────────────────────────────────────── */
.service-areas {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.areas-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.area-pill {
  font-family: var(--ff-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 8px 18px;
  border: 1px solid var(--muted-faint);
  border-radius: var(--radius-pill);
  transition: border-color 200ms, color 200ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--ink); }
.area-chip { /* same as area-pill but used in contact */
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 5px 12px;
  border: 1px solid var(--muted-faint);
  border-radius: var(--radius-pill);
  display: inline-block;
}
.service-area-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

/* Service areas strip (about.html) */
.service-areas-strip {
  padding: clamp(56px, 7vh, 96px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.service-areas-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.service-areas-label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
  display: block;
}
.service-areas-pills { display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.faq-list { margin-top: 8px; }

.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list details:first-child { border-top: 1px solid var(--border); }

.faq-list summary {
  cursor: pointer; font-size: 17px; font-weight: 500;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px;
  transition: color 150ms;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--primary); }

.faq-q { flex: 1; }

.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--muted); transition: transform 200ms, color 200ms;
}
.faq-list details[open] .faq-chevron {
  transform: rotate(45deg); color: var(--primary);
}

.faq-a {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  padding-bottom: 24px; max-width: 70ch;
}

/* ─── TEAM CTA ────────────────────────────────────────────────────────────── */
.team-cta {
  padding: clamp(64px, 8vh, 96px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.team-cta-inner { max-width: var(--content-width); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.team-cta-text {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 600;
  line-height: 1.1; color: var(--ink);
}
.team-cta-inner a {
  display: inline-flex; align-items: center;
  margin-top: 32px; padding: 18px 40px;
  background: var(--primary); color: #fff;
  font-family: var(--ff-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  transition: filter 200ms;
}
.team-cta-inner a:hover { filter: brightness(0.9); text-decoration: none; color: #fff; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 16px;
  align-items: start;
}

/* Contact form (index.html) */
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label, .form-field label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea,
.form-field input, .form-field textarea, .form-field select {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--ink); font-family: var(--ff-body); font-size: 15px;
  padding: 14px 16px; border-radius: var(--radius);
  outline: none; width: 100%;
  transition: border-color 200ms;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary);
}
.form-group input::placeholder, .form-group textarea::placeholder,
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--muted); opacity: 0.6;
}
.form-group textarea, .form-field textarea {
  min-height: 120px; resize: vertical;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-block { display: flex; flex-direction: column; gap: 6px; }
.info-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}
.info-value { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary); }

/* ─── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.contact-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(48px, 6vw, 88px); align-items: start;
}
.contact-form-col { display: flex; flex-direction: column; gap: 24px; }
.contact-form-heading {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.0;
}
.contact-form-intro { font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
.contact-form-label { margin-bottom: 8px; }

.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-guarantee {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--surface);
  border-radius: var(--radius); border-left: 2px solid var(--primary);
  margin-top: 8px;
}
.guarantee-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--primary); }
.guarantee-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.guarantee-text strong { color: var(--ink-soft); }

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 24px;
}
.info-block-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: 8px;
}
.info-block-heading {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 600;
  line-height: 1.1; color: var(--ink);
}
.info-divider { height: 1px; background: var(--border); }

.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.info-item-icon svg { width: 20px; height: 20px; }
.info-item-body { display: flex; flex-direction: column; gap: 4px; }
.info-item-title {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.info-item-value { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.info-item-value a { color: var(--ink-soft); }
.info-item-value a:hover { color: var(--primary); text-decoration: none; }

.hours-row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.hours-day { font-size: 14px; color: var(--ink-soft); }
.hours-time { font-size: 14px; color: var(--muted); }
.hours-time.closed { color: var(--muted); opacity: 0.5; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .cta-form-row { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 42vh, 500px);
  max-height: 64vh;
  display: flex; align-items: flex-end;
  background: var(--canvas);
}
.page-header > img:first-of-type, .page-header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(12,12,15,0.3) 0%,
    rgba(12,12,15,0.75) 100%
  );
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-width); margin-inline: auto; width: 100%;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 48px);
}
.page-header-eyebrow {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px; display: block;
}
.page-header-title {
  font-family: var(--ff-display); font-style: italic;
  font-weight: 600; font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95; letter-spacing: -0.03em; color: var(--ink);
  max-width: 14ch;
}
.page-header-sub {
  font-size: 16px; color: var(--ink-soft); margin-top: 20px;
  max-width: 52ch; line-height: 1.65;
}
.page-eyebrow { font-family: var(--ff-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; }
.page-title { font-family: var(--ff-display); font-style: italic; font-weight: 600; font-size: clamp(48px, 7vw, 96px); line-height: 0.95; letter-spacing: -0.03em; color: var(--ink); }
.page-sub { font-size: 16px; color: var(--ink-soft); margin-top: 20px; max-width: 52ch; }

/* ─── ABOUT STORY ─────────────────────────────────────────────────────────── */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.about-story-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: 40% 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.about-story-left { position: relative; }
.about-story-left img {
  width: 100%; object-fit: cover; border-radius: var(--radius);
  filter: saturate(0.7) brightness(0.9);
  max-height: 620px;
  aspect-ratio: 3 / 4;
}
.about-portrait-caption {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 12px;
}
.about-portrait { width: 100%; }

.about-story-right { display: flex; flex-direction: column; gap: 24px; padding-top: 24px; }
.story-eyebrow { margin-bottom: 0; }
.story-headline {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(36px, 4.5vw, 60px); font-weight: 600;
  line-height: 1.0; letter-spacing: -0.02em; color: var(--ink);
}
.story-body { display: flex; flex-direction: column; gap: 20px; }
.story-body p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; }

.story-pull-quote {
  border-left: 2px solid var(--primary);
  padding: 16px 24px; margin: 8px 0;
}
.story-pull-quote p {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.3;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-left img { max-height: 360px; aspect-ratio: 16/9; }
}

/* ─── VALUES ──────────────────────────────────────────────────────────────── */
.values-section {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.values-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 16px;
}
.value-card {
  background: var(--canvas); border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-top: 1px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
}
.value-card-num {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px); color: var(--ink);
  margin-bottom: 12px;
}
.value-card-body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.value-card-title { font-family: var(--ff-display); font-style: italic; font-size: clamp(20px, 1.8vw, 26px); color: var(--ink); margin-bottom: 12px; }

@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* ─── JOURNEY TIMELINE ────────────────────────────────────────────────────── */
.journey-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.journey-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.journey-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 16px;
  position: relative;
}
.journey-track::before {
  content: ''; position: absolute;
  top: 20px; left: 0; right: 0; height: 1px;
  background: var(--border); z-index: 0;
}
.journey-step { position: relative; padding-top: 48px; }
.journey-dot {
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--canvas); z-index: 1;
}
.journey-dot-fill {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
}
.journey-year {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.journey-step h3 {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px); color: var(--ink);
  margin-bottom: 10px;
}
.journey-title { font-family: var(--ff-display); font-style: italic; font-size: clamp(20px, 1.8vw, 26px); color: var(--ink); margin-bottom: 10px; }
.journey-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .journey-track { grid-template-columns: 1fr 1fr; }
  .journey-track::before { display: none; }
}
@media (max-width: 640px) { .journey-track { grid-template-columns: 1fr; } }

/* ─── CREW STRIP ──────────────────────────────────────────────────────────── */
.crew-strip-section {
  position: relative; overflow: hidden;
  min-height: 340px; max-height: 52vh;
}
.crew-strip-section > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0; max-height: none !important;
  filter: saturate(0.6) brightness(0.55);
}
.crew-strip-inner {
  position: relative; z-index: 2;
  max-width: var(--content-width); margin-inline: auto;
  padding: clamp(64px, 10vh, 120px) clamp(20px, 5vw, 48px);
  display: flex; flex-direction: column; gap: 16px;
}
.crew-strip-label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
}
.crew-strip-tagline {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(32px, 4vw, 56px); font-weight: 600;
  line-height: 1.05; color: var(--ink); max-width: 16ch;
}

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cta-banner-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px); align-items: center;
}
.cta-banner-text { display: flex; flex-direction: column; gap: 20px; }
.cta-banner-eyebrow { margin-bottom: 0; }
.cta-banner-headline, .cta-heading {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(36px, 4.5vw, 60px); font-weight: 600;
  line-height: 1.0; letter-spacing: -0.02em;
}
.cta-banner-sub, .cta-body-text { font-size: 16px; color: var(--ink-soft); max-width: 48ch; }
.cta-banner-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.cta-banner-phone { font-family: var(--ff-mono); font-size: 20px; font-weight: 500; color: var(--primary); letter-spacing: 0.04em; }

.cta-form-wrapper { display: flex; flex-direction: column; gap: 0; }
.cta-form { background: var(--canvas); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.form-submit-row { margin-top: 4px; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer, footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 8vh, 96px) 0 0;
}

.footer-inner {
  max-width: var(--content-width); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vh, 80px);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline, .footer-brand-tagline { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 36ch; }
.footer-detail, .footer-contact-item, .footer-contact-line {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.footer-detail a, .footer-contact-item a, .footer-contact-line a {
  color: var(--muted); transition: color 150ms;
}
.footer-detail a:hover, .footer-contact-item a:hover, .footer-contact-line a:hover {
  color: var(--primary); text-decoration: none;
}
.footer-brand-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-badge, .footer-legal-chip {
  display: inline-block;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--muted-faint);
  border-radius: var(--radius-pill); padding: 4px 10px;
  margin-right: 6px; margin-top: 4px;
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h4, .footer-col-title, .footer-col-heading {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 14px; color: var(--muted); }
.footer-links a { color: var(--muted); transition: color 150ms; text-decoration: none; }
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-hours-list { display: flex; flex-direction: column; gap: 6px; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); }
.footer-hours-day { color: var(--ink-soft); font-size: 13px; }

.footer-logo { display: block; }
.footer-logo img { max-height: 40px !important; }
.footer-phone { font-size: 16px; color: var(--ink-soft); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright, .footer-copy {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--muted); opacity: 0.65;
}
.footer-meta { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); opacity: 0.5; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-legal-chips { display: flex; flex-wrap: wrap; gap: 6px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── MOBILE CALL PILL / STICKY CTA ──────────────────────────────────────── */
.mobile-call-pill, .mobile-sticky-cta, .mobile-cta-sticky {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-family: var(--ff-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 150ms;
}
.mobile-call-pill:hover, .mobile-sticky-cta:hover, .mobile-cta-sticky:hover {
  filter: brightness(0.9); transform: translateY(-2px);
  color: #fff; text-decoration: none;
}
.mobile-call-pill svg, .mobile-sticky-cta svg, .mobile-cta-sticky svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

@media (min-width: 900px) {
  .mobile-call-pill, .mobile-sticky-cta, .mobile-cta-sticky { display: none; }
}

/* ─── STAT STYLES ─────────────────────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; padding: 80px 0; text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px); font-weight: 900;
  line-height: 1; color: var(--primary);
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px); text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted); margin-top: 8px;
}

/* ─── PROCESS STRIP ───────────────────────────────────────────────────────── */
.process {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
}
.process-step { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ─── BIG PHONE / CTA PHONE LINK ──────────────────────────────────────────── */
.big-phone, .cta-phone-link {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(28px, 3vw, 44px); color: var(--primary);
  text-decoration: none; transition: color 150ms;
}
.big-phone:hover, .cta-phone-link:hover { color: var(--ink); text-decoration: none; }

/* ─── MISC CLASSES ────────────────────────────────────────────────────────── */
.section-title-flush + * { margin-top: 40px; }

.featured { }

svg { overflow: visible; }

/* Cap unsized SVGs in flex/grid contexts */
.review-stars svg,
.faq-chevron,
.faq-list summary svg,
.info-item-icon svg,
.guarantee-icon,
.contact-guarantee svg,
.cta-actions svg,
.btn svg,
.btn-submit svg,
.mobile-call-pill svg,
.mobile-sticky-cta svg,
.mobile-cta-sticky svg,
.footer-brand svg { width: 20px; height: 20px; }

.faq-chevron { width: 18px; height: 18px; }
.review-stars svg { width: 16px; height: 16px; }

/* ─── NOISE TEXTURE OVERLAY ───────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-col { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.about-story-left { grid-column: 1 / -1; }
.about-story-right { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
