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

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:       #1E2D2F;
  --accent:        #3D5254;
  --canvas:        #0C0C0F;
  --surface:       #1A1814;
  --ink:           #F4F1EA;
  --muted:         #8E8A82;
  --border:        rgba(244,241,234,0.10);
  --border-accent: rgba(61,82,84,0.55);
  --shadow:        0 24px 64px -16px rgba(0,0,0,0.55);
  --radius:        4px;
  --header-height: 72px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter Tight', system-ui, sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;
}
@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);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  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; 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"] { position: relative; overflow: hidden; max-height: 64vh; }
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; 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 anchors */
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(--font-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

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

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

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--accent);
  line-height: 1;
}

svg { display: block; }

/* ─── LAYOUT UTILITIES ────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.wide {
  grid-column: span 2;
}

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

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--ink); text-decoration: none; }
.nav-pages a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(1.12); text-decoration: none; color: var(--ink); }
.nav-cta-icon svg { width: 14px; height: 14px; }

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-cta span:last-child { display: none; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 13px; padding: 10px 0; width: 100%; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }

.stagger.visible > * {
  animation: staggerIn 0.5s ease both;
}
.stagger > *:nth-child(1)  { animation-delay: 0.05s; }
.stagger > *:nth-child(2)  { animation-delay: 0.10s; }
.stagger > *:nth-child(3)  { animation-delay: 0.15s; }
.stagger > *:nth-child(4)  { animation-delay: 0.20s; }
.stagger > *:nth-child(5)  { animation-delay: 0.25s; }
.stagger > *:nth-child(6)  { animation-delay: 0.30s; }
.stagger > *:nth-child(7)  { animation-delay: 0.35s; }
.stagger > *:nth-child(8)  { animation-delay: 0.40s; }
.stagger > *:nth-child(9)  { animation-delay: 0.45s; }
.stagger > *:nth-child(10) { animation-delay: 0.50s; }
.stagger > *:nth-child(11) { animation-delay: 0.55s; }
.stagger > *:nth-child(12) { animation-delay: 0.60s; }

@keyframes staggerIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: filter 150ms, transform 150ms, box-shadow 150ms;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { filter: brightness(1.15); color: var(--ink); }

.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(244,241,234,0.30);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  filter: none;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 150ms, transform 150ms;
}
.btn-submit:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-submit svg { width: 16px; height: 16px; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(15%) brightness(0.85);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(30,45,47,0.72) 0%, transparent 60%),
    linear-gradient(to top, rgba(12,12,15,0.88) 0%, rgba(12,12,15,0.45) 50%, rgba(12,12,15,0.25) 100%),
    linear-gradient(to right, rgba(12,12,15,0.65) 0%, rgba(12,12,15,0.15) 70%);
}

.hero-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px) clamp(64px, 10vh, 112px);
}

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

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

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.trust-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ─── MARQUEE ─────────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

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

.marquee-item {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.marquee-sep {
  color: var(--accent);
  font-size: 8px;
  align-self: center;
  opacity: 0.8;
}

/* ─── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip, div.trust-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner, .trust-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px;
  padding: 7px 16px;
  white-space: nowrap;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  display: inline-block;
}

/* ─── SECTION COMMON ─────────────────────────────────────────────────────── */
.section-eyebrow, span.section-eyebrow, p.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-intro {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ─── SERVICES (TABBED) ───────────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding-block: clamp(80px, 12vh, 160px);
  border-top: 1px solid var(--border);
}

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

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

.service-tab {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
  white-space: nowrap;
}
.service-tab:hover {
  color: var(--ink);
  border-color: rgba(244,241,234,0.30);
}
.service-tab.active {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--accent);
}

.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 {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.88);
  display: block;
}

.service-panel-body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 2px solid var(--accent);
}

.service-panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 20px;
}

.service-panel-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-panel-body a.btn {
  margin-top: 24px;
  align-self: flex-start;
}

.service-list {
  list-style: none;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 1px;
  background: var(--accent);
}

.services-cta {
  margin-top: 40px;
  text-align: center;
}

/* ─── GALLERY (INDEX) ─────────────────────────────────────────────────────── */
.gallery {
  background: var(--canvas);
  padding-block: clamp(80px, 12vh, 160px);
  border-top: 1px solid var(--border);
}

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

.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  background: var(--surface);
}
.gallery-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.85);
}
.gallery-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.75) 0%, transparent 50%);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 36px;
}
.gallery-overlay-content { z-index: 2; }
.gallery-overlay-text p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.gallery-overlay-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--ink);
}
.gallery-overlay-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 150ms;
}
.gallery-overlay-content a:hover { color: var(--accent); text-decoration: none; }

/* ─── GALLERY PAGE ────────────────────────────────────────────────────────── */
.gallery-section {
  max-width: 1400px;
  margin-inline: auto;
  padding: clamp(48px, 7vh, 96px) clamp(20px, 5vw, 48px);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
}
.filter-pill:hover { color: var(--ink); border-color: rgba(244,241,234,0.30); }
.filter-pill.active {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--accent);
}

.pill-count {
  font-size: 9px;
  opacity: 0.6;
  margin-left: 2px;
}

.gallery-meta {
  margin-bottom: 28px;
}
.gallery-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  cursor: pointer;
}
.gallery-card.wide { grid-column: span 2; aspect-ratio: 16 / 9; }

.gallery-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 500ms ease, filter 300ms;
  filter: grayscale(20%) brightness(0.85);
}
.gallery-card:hover > img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.9);
}

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.80) 0%, transparent 55%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 250ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-overlay h2 {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.gallery-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.gallery-card-location svg { width: 10px; height: 10px; flex-shrink: 0; }

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

/* ─── SERVICE AREAS ───────────────────────────────────────────────────────── */
.service-areas {
  background: var(--canvas);
  padding-block: clamp(80px, 12vh, 160px);
  border-top: 1px solid var(--border);
}

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

.areas-note {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 56ch;
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px;
  padding: 8px 18px;
  transition: color 150ms, border-color 150ms;
}
.area-pill:hover { color: var(--ink); border-color: rgba(244,241,234,0.30); }
.area-pill.highlight {
  color: var(--ink);
  border-color: var(--accent);
  background: rgba(61,82,84,0.12);
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  background: var(--canvas);
  padding-block: clamp(80px, 12vh, 160px);
  border-top: 1px solid var(--border);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-header { position: sticky; top: calc(var(--header-height) + 32px); }
.faq-header .section-title { margin-bottom: 20px; }
.faq-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-header a.btn { margin-top: 8px; }

.faq-list { display: flex; flex-direction: column; }

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

details.faq-item > summary.faq-q {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  line-height: 1.4;
}
details.faq-item > summary.faq-q::-webkit-details-marker { display: none; }
details.faq-item > summary.faq-q::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
}
details.faq-item[open] > summary.faq-q::after {
  transform: rotate(45deg);
  color: var(--accent);
}
details.faq-item[open] > summary.faq-q { color: var(--ink); }

.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  padding-bottom: 24px;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-header { position: static; }
}

/* ─── TEAM CTA ────────────────────────────────────────────────────────────── */
.team-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(64px, 10vh, 120px);
}
.team-cta-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  text-align: center;
}
.team-cta-line {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
}
.team-cta-line em { font-size: 1.1em; }
.team-cta-inner a.btn { margin-inline: auto; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact {
  background: var(--canvas);
  padding-block: clamp(80px, 12vh, 160px);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-form-col h2, .contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 8px;
}

.contact-form-lead {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: span 2; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color 150ms;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E8A82' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--surface); color: var(--ink); }

.form-submit { margin-top: 8px; }
.form-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-top: 12px;
  opacity: 0.7;
}

/* Contact info column */
.contact-info-col, .contact-info { display: flex; flex-direction: column; gap: 2px; }

.contact-info-block, .info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
}

.info-label, .contact-info-block > .info-label, p.info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-value, .contact-info-block > span {
  display: block;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.info-primary { font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.info-primary a { color: var(--ink); text-decoration: none; }
.info-primary a:hover { color: var(--accent); }
.info-secondary { font-size: 13px; color: var(--muted); }

.info-emerg {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-top: 8px;
  text-transform: uppercase;
}

.info-phone { font-size: 20px; font-weight: 600; color: var(--ink); }
.info-phone a { color: var(--ink); }
.info-phone a:hover { color: var(--accent); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.day {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.hours-emergency {
  font-size: 13px;
  color: var(--accent);
  margin-top: 10px;
  font-style: italic;
}

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

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: clamp(80px, 12vh, 160px);
}
.cta-banner-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  text-align: center;
}
.cta-banner-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.cta-banner-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 44ch;
  margin-inline: auto;
}
.cta-banner-actions, .cta-pair {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner-actions svg, .cta-pair svg { width: 16px; height: 16px; }

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  min-height: clamp(260px, 40vh, 520px);
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header > img {
  filter: grayscale(20%) brightness(0.75);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, rgba(12,12,15,0.40) 60%, rgba(12,12,15,0.20) 100%);
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 48px);
}

.page-header-eyebrow, .page-eyebrow, span.page-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.62;
}

/* ─── SERVICES DETAIL PAGE ────────────────────────────────────────────────── */
.services-detail {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(64px, 10vh, 120px) clamp(20px, 5vw, 48px);
}

.services-detail-header {
  margin-bottom: 72px;
}
.services-detail-header .section-title { margin-bottom: 0; }

.service-feature {
  padding-block: clamp(48px, 6vh, 80px);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.service-feature.reverse .service-feature-grid {
  direction: rtl;
}
.service-feature.reverse .service-feature-grid > * {
  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%;
  max-height: none;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.85);
  transition: transform 500ms ease;
}
.service-feature:hover .service-feature-photo > img { transform: scale(1.03); }

.service-feature-body { padding-block: 16px; }

.service-index {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-feature-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 14px;
}

.service-bullets {
  list-style: none;
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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: 10px;
  width: 8px; height: 1px;
  background: var(--accent);
}

.service-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

@media (max-width: 900px) {
  .service-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-feature.reverse .service-feature-grid { direction: ltr; }
  .service-feature-photo { aspect-ratio: 16 / 9; }
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-story {
  background: var(--canvas);
  padding-block: clamp(80px, 12vh, 160px);
}

.about-story-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.about-portrait-col {
  position: relative;
}

.about-portrait-img {
  width: 100%;
  max-height: none;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(25%) brightness(0.88);
  display: block;
}

.portrait-accent-block {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.about-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-body em { font-size: 1.1em; }

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-block: 28px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  padding: 6px 14px;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-portrait-col { max-width: 400px; }
  .about-portrait-img { aspect-ratio: 4 / 3; }
}

/* ─── CREDENTIALS ─────────────────────────────────────────────────────────── */
.credentials {
  background: var(--surface);
  padding-block: clamp(80px, 12vh, 160px);
  border-top: 1px solid var(--border);
}

.credentials-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.credentials-inner > .section-eyebrow { display: block; margin-bottom: 12px; }

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

.cred-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.cred-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cred-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}

.cred-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

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

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 7vh, 80px);
}

.footer-inner, .footer-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 26ch;
}

.footer-contact-line {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-contact-line a { color: var(--muted); transition: color 150ms; }
.footer-contact-line a:hover { color: var(--ink); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; gap: 0; }

.footer-col-title, .footer-col-head,
div.footer-col-title, p.footer-col-title, p.footer-col-head {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.footer-col-title-spaced { margin-top: 28px; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a,
nav.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
  display: block;
}
.footer-links li a:hover,
nav.footer-links a:hover { color: var(--ink); text-decoration: none; }

.footer-cert {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-top: 6px;
}

.footer-hours-item {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-hours-item strong { color: var(--ink); font-weight: 500; }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  padding: 3px 0;
}

.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  transition: color 150ms, border-color 150ms;
  text-decoration: none;
}
.footer-social-link:hover { color: var(--ink); border-color: rgba(244,241,234,0.30); text-decoration: none; }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-certs { display: flex; flex-direction: column; gap: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-legal {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--ink); text-decoration: none; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ─── MOBILE CALL PILL ────────────────────────────────────────────────────── */
.mobile-cta-pill,
a.mobile-cta-pill,
div.mobile-cta-pill,
.mobile-cta,
a.mobile-cta,
.mobile-call,
a.mobile-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 150ms, filter 150ms;
}
.mobile-cta-pill:hover,
.mobile-cta:hover,
.mobile-call:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  text-decoration: none;
  color: var(--ink);
}
.mobile-cta-pill svg,
.mobile-cta svg,
.mobile-call svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

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

/* ─── SVG CAPS ────────────────────────────────────────────────────────────── */
.nav-cta-icon svg { width: 14px; height: 14px; }
.trust-chip svg, .area-pill svg { width: 12px; height: 12px; }
.gallery-card-location svg { width: 10px; height: 10px; }
.footer-social-link svg { width: 16px; height: 16px; }
.btn svg, .btn-submit svg { width: 16px; height: 16px; }
.cta-banner-actions svg { width: 16px; height: 16px; }
.faq-header a svg { width: 14px; height: 14px; }

/* ─── MEDIA QUERIES ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel > img {
    height: 240px;
    max-height: 240px;
    width: 100%;
    position: relative;
    inset: auto;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(52px, 13vw, 88px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .cta-banner-actions, .cta-pair { flex-direction: column; align-items: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.faq-header { grid-column: 1 / -1; }
.footer-links { grid-column: 1 / -1; }
.fade-up-delay-1 { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.pill-count { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.about-portrait-col { grid-column: 1 / -1; }
.about-copy-col { grid-column: 1 / -1; }
.day { 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; }
