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

/* ─── TOKENS ─── */
:root {
  --primary:        #AACCDC;
  --accent:         #A4B9C0;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #141210;
  --ink:            #F4F1EA;
  --ink-mid:        #C8C4BB;
  --muted:          #8E8A82;
  --border:         rgba(170, 204, 220, 0.18);
  --border-subtle:  rgba(244, 241, 234, 0.08);
  --primary-dim:    rgba(170, 204, 220, 0.12);
  --primary-glow:   rgba(170, 204, 220, 0.22);
  --shadow-heavy:   0 28px 60px -18px rgba(0,0,0,0.72);
  --shadow-card:    0 8px 32px -8px rgba(0,0,0,0.48);
  --radius:         4px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(112px, 14vh, 180px);
  --content-max:    1200px;
  --wide-max:       1400px;
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;
}

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

/* ─── SMOOTH SCROLL + ANCHOR OFFSET ─── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  -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 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  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 45%; 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 link reset */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

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

/* ─── SCROLL PROGRESS ─── */
#scrollProgress, .scroll-progress, #scrollBar, .scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0%; background: var(--primary); 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-subtle);
}

.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; display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important; max-width: 200px !important;
  width: auto !important; object-fit: contain !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(--ink-mid); text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  padding: 10px 20px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta .nav-cta-label { }

.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;
  flex-shrink: 0;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 18px 32px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: none;
  transition: filter 160ms, transform 160ms, box-shadow 160ms;
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary, .btn-primary-cta {
  background: var(--primary); color: var(--canvas);
  box-shadow: 0 8px 32px -8px rgba(170,204,220,0.28);
}
.btn-primary:hover, .btn-primary-cta:hover {
  filter: brightness(0.92); color: var(--canvas); box-shadow: 0 12px 40px -10px rgba(170,204,220,0.38);
}
.btn-ghost, .btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--primary); color: var(--primary);
  text-decoration: none;
}
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--canvas);
  padding: 16px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: filter 160ms, transform 160ms;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  border: 1px solid var(--border);
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: background 160ms, color 160ms;
  letter-spacing: 0.04em;
}
.btn-service:hover {
  background: var(--primary-dim); color: var(--primary); text-decoration: none;
}
.btn-service svg { width: 16px; height: 16px; }

/* ─── HERO ─── */
.hero {
  min-height: 96vh;
  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 35%;
  z-index: 0;
  filter: grayscale(20%) brightness(0.72);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(170,204,220,0.10) 0%, transparent 60%),
    linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.55) 45%, rgba(12,12,15,0.72) 100%);
}

.hero-ribbon {
  position: absolute; top: 32px; right: 0;
  background: var(--primary); color: var(--canvas);
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 24px 8px 16px;
  z-index: 3;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wide-max);
  margin-inline: auto;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 80px);
  padding-bottom: clamp(72px, 10vh, 120px);
}

.hero-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--primary);
}

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

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted); line-height: 1.6;
  max-width: 52ch; margin-bottom: 40px;
  font-weight: 400;
}

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

.hero-trust-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px; border-radius: var(--radius-pill);
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative; z-index: 1;
  background: var(--surface);
}

.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-mono); font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center;
}

.marquee-dot {
  color: var(--primary); font-size: 18px; line-height: 1;
  flex-shrink: 0;
}

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

/* ─── TRUST STRIP ─── */
.trust-strip-wrap {
  padding: clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.trust-strip {
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.trust-strip-inner, .trust-strip {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 0;
}
.trust-pill, .trust-chip {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mid); padding: 7px 16px;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
}
.trust-pill-hi {
  background: var(--primary-dim); color: var(--primary);
  border-color: var(--border);
}
.trust-sep {
  color: var(--primary); margin: 0 10px; font-size: 16px;
  opacity: 0.6;
}

/* ─── SECTION SHARED ─── */
.section-label, .section-eyebrow, .page-eyebrow, .page-header-eyebrow,
.ph-eyebrow, .story-eyebrow, .faq-eyebrow, .gallery-section-label,
.cta-banner-eyebrow, .cta-text-eyebrow, .info-card-eyebrow,
.contact-eyebrow, .value-num {
  display: block;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}

.section-heading, .section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; font-style: italic;
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 48px;
}
.section-heading em, .section-headline em,
h1 em, h2 em, h3 em {
  color: var(--primary); font-style: italic;
}
.section-heading br + em { }

/* ─── SERVICES ─── */
.services {
  padding: var(--section-py) 0;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

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

.service-tab {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 10px 20px; border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.service-tab:hover { color: var(--ink); border-color: var(--border); }
.service-tab.active {
  background: var(--primary); color: var(--canvas);
  border-color: var(--primary);
}

.services-panels { position: relative; min-height: 420px; }

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

.service-panel > img, .service-panel-img {
  width: 100%; height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  max-height: 480px !important;
  flex-shrink: 0;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border-subtle);
}
.service-panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px;
}
.service-panel-body h3 em { color: var(--primary); }
.service-panel-body p {
  color: var(--muted); font-size: 15px; line-height: 1.7;
  margin-bottom: 12px;
}
.service-panel-body a {
  margin-top: 8px; align-self: flex-start;
}

@media (max-width: 799px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel > img { min-height: 220px; max-height: 260px !important; }
  .service-panel-body { border-left: none; border-top: 1px solid var(--border-subtle); }
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; text-align: center;
}
.stat { }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; color: var(--primary);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-family: var(--font-mono); font-size: clamp(9px, 1vw, 11px);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted);
  margin-top: 10px;
}

@media (max-width: 640px) {
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── GALLERY ─── */
.gallery {
  padding: var(--section-py) 0;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.gallery-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-header-row > div { }
.gallery-header-row .section-heading { margin-bottom: 0; }
.gallery-cta-row {
  margin-top: 40px; display: flex; justify-content: center;
}

.gallery-section {
  padding: var(--section-py) clamp(20px, 5vw, 60px);
  max-width: var(--wide-max); margin-inline: auto;
}
.gallery-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 12px; gap: 16px; flex-wrap: wrap;
}
.gallery-section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: 8px;
}
.gallery-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink);
}
.gallery-count-note {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.12em;
}

.gallery-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  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 var(--border-subtle);
  padding: 8px 18px; border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 150ms;
}
.filter-pill:hover, .filter-pill.active {
  color: var(--primary); border-color: var(--primary);
  background: var(--primary-dim);
}

.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;
  cursor: pointer;
}
.gallery-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-card-img-wrap {
  position: absolute; inset: 0;
}
.gallery-card-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  max-height: none !important;
}
.gallery-card:hover .gallery-card-img-wrap > img { transform: scale(1.04); }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 55%);
  z-index: 1;
  opacity: 0; transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--primary); color: var(--canvas);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.gallery-card-number {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 9px;
  color: rgba(244,241,234,0.4); letter-spacing: 0.1em;
}
.gallery-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px 20px;
  transform: translateY(6px); opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.gallery-card:hover .gallery-card-body { transform: translateY(0); opacity: 1; }
.gallery-card-body h2 {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; font-style: italic;
  color: var(--ink); line-height: 1.1; margin-bottom: 4px;
}
.gallery-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
}
.gallery-card-location svg { width: 12px; height: 12px; }
.gallery-card-desc { font-size: 13px; color: var(--ink-mid); margin-top: 4px; }
.gallery-card-title { font-family: var(--font-display); font-size: 16px; font-style: italic; }

@media (max-width: 899px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-card.featured { grid-column: 1; aspect-ratio: 4 / 3; }
}

/* ─── FAQ ─── */
.faq {
  padding: var(--section-py) 0;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.faq-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding: var(--section-py) clamp(20px, 5vw, 60px);
}
.faq-header { margin-bottom: 48px; }
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink);
}
.faq-title em { color: var(--primary); }

.faq-list, .faq-grid { border-top: 1px solid var(--border-subtle); }

details, details.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}
details > summary, details.faq-item > summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px;
  font-size: 16px; font-weight: 500; color: var(--ink);
  transition: color 150ms;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: "+"; font-family: var(--font-display);
  font-size: 24px; font-weight: 300; color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0; margin-left: auto;
}
details[open] > summary::after {
  transform: rotate(45deg); color: var(--primary);
}
details[open] > summary { color: var(--primary); }
details > summary .chevron,
details > summary > svg {
  width: 18px; height: 18px; color: var(--muted); flex-shrink: 0;
  transition: transform 200ms, color 200ms;
  display: none; /* using ::after instead */
}

.faq-answer {
  padding: 0 0 24px; color: var(--muted);
  font-size: 15px; line-height: 1.72; max-width: 72ch;
}
details > p {
  padding: 0 0 24px; color: var(--muted);
  font-size: 15px; line-height: 1.72; max-width: 72ch;
}

/* ─── TEAM CTA ─── */
.team-cta {
  padding: clamp(64px, 8vh, 100px) 0;
  border-top: 1px solid var(--border-subtle);
}
.team-cta-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.team-cta-inner > div { }
.team-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600; font-style: italic;
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink); max-width: 36ch;
}
.team-cta-title .word-accent { color: var(--primary); }

/* ─── CONTACT ─── */
.contact {
  padding: var(--section-py) 0;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.contact-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding: var(--section-py) clamp(20px, 5vw, 60px);
}
.contact-headline, .contact h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 12px;
}
.contact-headline em { color: var(--primary); }
.contact-sub {
  color: var(--muted); font-size: 15px; margin-bottom: 36px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: start;
}
.contact-form-wrap { }
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}

.form-group {
  display: flex; flex-direction: column; gap: 8px;
}
.form-group label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 150ms;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(170,204,220,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238E8A82' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-discount-note {
  font-size: 13px; color: var(--muted); font-style: italic;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 0;
}
.contact-info {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 22px;
  font-style: italic; font-weight: 600;
  color: var(--ink); margin-bottom: 24px;
}

.info-card-eyebrow {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.info-phone-link {
  display: block; font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px); font-style: italic; font-weight: 600;
  color: var(--ink); text-decoration: none; margin-bottom: 4px;
  letter-spacing: -0.01em;
  transition: color 150ms;
}
.info-phone-link:hover { color: var(--primary); text-decoration: none; }
.info-phone-note { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.info-divider {
  height: 1px; background: var(--border-subtle); margin: 20px 0;
}

.info-item, .info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
}
.info-item:last-of-type, .info-row:last-of-type { border-bottom: none; }
.info-icon, .info-row svg.info-icon {
  width: 18px; height: 18px; color: var(--primary);
  flex-shrink: 0; margin-top: 2px;
}
.info-item svg, .info-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); }
.info-label, .info-row-label {
  display: block; font-family: var(--font-mono); font-size: 9px;
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.info-value, .info-row-value {
  font-size: 14px; color: var(--ink); line-height: 1.5;
}
.info-value a, .info-row-value a { color: var(--ink); }
.info-value a:hover, .info-row-value a:hover { color: var(--primary); }
.info-row-content { display: flex; flex-direction: column; gap: 2px; }

.info-service-areas {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.info-area-chip {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border-subtle); color: var(--muted);
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.info-socials {
  display: flex; gap: 12px; margin-top: 20px;
}
.info-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid var(--border-subtle); color: var(--muted);
  transition: border-color 150ms, color 150ms;
}
.info-social-link svg { width: 16px; height: 16px; }
.info-social-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.bbb-badge {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 12px 16px;
  background: var(--surface-2); border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.bbb-badge-icon { width: 32px; height: 32px; background: var(--primary-dim); border-radius: 2px; flex-shrink: 0; }
.bbb-badge-text { font-size: 12px; color: var(--muted); line-height: 1.4; }
.bbb-badge-text strong { color: var(--ink); display: block; font-size: 13px; }

.promo-card {
  margin-top: 20px; padding: 16px;
  background: var(--primary-dim); border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 13px; color: var(--ink-mid); line-height: 1.5;
}

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

/* ─── PAGE HEADER (sub-pages) ─── */
.page-header {
  min-height: 44vh; 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 40%; z-index: 0;
  filter: grayscale(25%) brightness(0.65);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, rgba(12,12,15,0.4) 60%);
}
.page-header-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 60px);
}
.page-header-inner h1, .page-header-title, .ph-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 600; font-style: italic;
  line-height: 0.95; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 16px;
}
.page-header-inner h1 em, .page-header-title em, .ph-title .accent {
  color: var(--primary);
}
.page-header-sub { color: var(--muted); font-size: 16px; }

/* ─── SERVICES FEATURE BLOCKS (services.html) ─── */
.services-intro {
  max-width: var(--content-max); margin-inline: auto;
  padding: var(--section-py) clamp(20px, 5vw, 60px);
}
.services-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 24px;
}
.services-intro h2 em { color: var(--primary); }
.services-intro p { color: var(--muted); font-size: 16px; max-width: 64ch; }

.services-feature-blocks {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-bottom: var(--section-py);
}

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
  min-height: 520px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-photo {
  position: relative; overflow: hidden;
  background: var(--surface);
}
.feature-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
  filter: grayscale(10%) brightness(0.9);
  transition: transform 800ms ease, filter 600ms;
}
.feature-row:hover .feature-photo > img {
  transform: scale(1.03); filter: grayscale(0%) brightness(0.95);
}
.feature-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(12,12,15,0.3) 0%, transparent 60%);
}
.feature-index {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; color: rgba(244,241,234,0.35);
}

.feature-body {
  padding: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
}
.service-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.feature-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px;
}
.feature-body h2 em { color: var(--primary); }
.feature-body > p {
  color: var(--muted); font-size: 15px; line-height: 1.72;
  margin-bottom: 12px;
}

.feature-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.feature-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-mid);
}
.feature-bullets li::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}

.service-divider {
  height: 1px; background: var(--border-subtle);
}

@media (max-width: 799px) {
  .feature-row { grid-template-columns: 1fr; min-height: auto; }
  .feature-row.reverse { direction: ltr; }
  .feature-photo { min-height: 280px; }
  .feature-photo > img { position: relative; min-height: 280px; max-height: 340px !important; }
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; overflow: hidden;
  padding: clamp(80px, 10vh, 140px) 0;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: var(--surface); z-index: 0;
}
.cta-banner-accent {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(170,204,220,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner, .cta-banner-wrap {
  position: relative; z-index: 1;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.cta-banner-eyebrow {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 16px;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.025em;
  color: var(--ink); max-width: 18ch; margin-bottom: 20px;
}
.cta-banner-title em { color: var(--primary); }
.cta-banner-note { color: var(--muted); font-size: 15px; margin-bottom: 32px; max-width: 52ch; }
.cta-btn-group, .cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 20px;
}
.discount-callout {
  display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--muted); margin-top: 8px;
}
.discount-callout strong { color: var(--primary); }

.cta-text {
  flex: 1;
}
.cta-text-eyebrow {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.cta-text-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 12px;
}
.cta-text-sub { color: var(--muted); font-size: 15px; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.cta-phone, .cta-phone-large, .cta-banner-phone {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 600;
  color: var(--ink); text-decoration: none;
  transition: color 150ms;
}
.cta-phone:hover, .cta-phone-large:hover { color: var(--primary); text-decoration: none; }

/* ─── ABOUT ─── */
.about-story {
  padding: var(--section-py) 0;
}
.about-story-wrap {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 340px 1fr;
  gap: 80px; align-items: start;
}

.portrait-col {
  position: sticky; top: calc(var(--header-height) + 32px);
}
.portrait-frame {
  border-radius: var(--radius);
  overflow: hidden; margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}
.portrait-frame img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  filter: grayscale(20%);
  max-height: 480px !important;
}
.portrait-caption {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 4px;
}
.portrait-meta { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.portrait-rating { }
.rating-label { font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.rating-value {
  font-family: var(--font-display); font-size: 40px; font-style: italic;
  font-weight: 600; color: var(--primary); line-height: 1.0; margin: 4px 0;
}
.rating-stars { display: flex; gap: 3px; margin-bottom: 6px; }
.rating-stars svg { width: 14px; height: 14px; color: var(--primary); }

.story-col { }
.story-eyebrow { }
.story-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; font-style: italic;
  line-height: 1.0; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 32px;
}
.story-headline .accent { color: var(--primary); }
.story-body > p {
  font-size: 16px; color: var(--muted); line-height: 1.78;
  margin-bottom: 20px;
}
.italic-name {
  font-family: var(--font-display);
  font-size: 1.25em; font-style: italic; font-weight: 600;
  color: var(--primary);
}
.story-divider {
  height: 1px; background: var(--border);
  margin: 28px 0; width: 80px;
}

@media (max-width: 899px) {
  .about-story-wrap { grid-template-columns: 1fr; gap: 40px; }
  .portrait-col { position: static; }
}

/* ─── CREDS STRIP ─── */
.creds-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.creds-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.cred-chip {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mid); border: 1px solid var(--border-subtle);
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.cred-sep { color: var(--primary); margin: 0 4px; }

/* ─── VALUES ─── */
.values-section {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}
.values-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-subtle);
  border: 1px solid var(--border-subtle); border-radius: var(--radius);
  overflow: hidden; margin-top: 0;
}
.value-card {
  background: var(--surface);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: border-color 250ms, background 250ms;
}
.value-card:hover { border-top-color: var(--primary); background: var(--surface-2); }
.value-num {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-family: var(--font-display); font-size: 20px;
  font-style: italic; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
}
.value-title { }
.value-body { font-size: 14px; color: var(--muted); line-height: 1.7; }

@media (max-width: 899px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ─── TIMELINE ─── */
.timeline-section {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-subtle);
}
.timeline-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.timeline-header { margin-bottom: 56px; }
.timeline-track {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 0; margin-left: 24px;
}
.timeline-step {
  display: flex; gap: 0; padding: 0 0 40px 0;
  position: relative;
}
.tl-dot-wrap {
  position: absolute; left: -33px; top: 0;
  display: flex; flex-direction: column; align-items: center;
}
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--canvas); border: 2px solid var(--primary);
  flex-shrink: 0; margin-bottom: 6px;
  transition: background 250ms;
}
.timeline-step:hover .tl-dot { background: var(--primary); }
.tl-marker {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--muted); letter-spacing: 0.1em;
  writing-mode: horizontal-tb; white-space: nowrap;
}
.tl-content {
  padding-left: 28px; padding-top: 0;
}
.tl-content h3 {
  font-family: var(--font-display); font-size: 22px;
  font-style: italic; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; line-height: 1.1;
}
.tl-step-title { }
.tl-step-body { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 60ch; }

/* ─── ABOUT CLOSING ─── */
.about-closing {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-subtle);
}
.about-closing-inner {
  max-width: 70ch; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.about-closing-body > p {
  font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 20px;
}
.discount-notice {
  margin-top: 28px; padding: 20px 24px;
  background: var(--primary-dim); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.discount-text { font-size: 15px; color: var(--ink-mid); }

/* ─── FOOTER ─── */
.footer, .site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  padding: clamp(64px, 8vh, 100px) 0 0;
}
.footer-inner, .footer-grid {
  max-width: var(--wide-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px 40px; margin-bottom: 48px;
}
.footer-brand, .footer-brand-col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-brand img, .footer-brand-col img {
  max-height: 40px !important; max-width: 180px !important;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 18px;
  font-style: italic; font-weight: 600; color: var(--ink);
}
.footer-tagline {
  font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 8px;
}
.footer-tagline em { color: var(--primary); font-style: italic; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4, .footer-col-title, .footer-col-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 4px; display: block;
}
.footer-link-list, .footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-link-list li, .footer-links li { }
.footer-link-list a, .footer-links a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  transition: color 150ms;
}
.footer-link-list a:hover, .footer-links a:hover {
  color: var(--primary); text-decoration: none;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 14px; color: var(--muted); }
.footer-contact-item { font-size: 13px; color: var(--muted); }
.footer-info-row { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.footer-info-row a { color: var(--muted); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px clamp(20px, 5vw, 60px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy, .footer-legal, .footer-license, .footer-location {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.1em;
}
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  font-family: var(--font-mono); font-size: 9px; color: var(--muted);
  border: 1px solid var(--border-subtle); padding: 4px 10px;
  border-radius: var(--radius-pill);
}

@media (max-width: 1099px) {
  .footer-inner, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand, .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── MOBILE CALL PILL ─── */
.mobile-call, .mobile-cta-pill, .mobile-sticky-cta, .mobile-cta > a {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--canvas);
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.5);
  transition: filter 150ms, transform 150ms;
}
.mobile-call:hover, .mobile-cta-pill:hover, .mobile-sticky-cta:hover { filter: brightness(0.92); transform: translateY(-2px); text-decoration: none; }
.mobile-call svg, .mobile-cta-pill svg, .mobile-sticky-cta svg, .mobile-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta { position: fixed; bottom: 18px; right: 18px; z-index: 999; }

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

/* ─── UNIQUE MOVE: italic-name / word-accent in body copy ─── */
.italic-name, .word-accent, .accent {
  font-family: var(--font-display);
  font-size: 1.25em; font-style: italic; font-weight: 600;
  color: var(--primary); letter-spacing: -0.01em;
}

/* ─── ANIMATION UTILITIES ─── */
.fade-up, .fade-left, .fade-right, .scale-in, .stagger > * {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1),
              transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.fade-up { transform: translateY(32px); }
.fade-left { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.scale-in { transform: scale(0.96); }
.stagger > * { transform: translateY(24px); }

.fade-up.visible, .fade-left.visible, .fade-right.visible,
.scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* ─── SERVICE CARD HOVER ─── */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-top: 2px solid transparent; border-radius: var(--radius);
  padding: 36px; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
  border-top-color: var(--primary);
}

/* ─── 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;
}

/* ─── REVIEW CARDS ─── */
.review-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ─── MISC ─── */
.reverse { }
.featured { }
.active { }

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 10000; pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1199px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 899px) {
  .hero { min-height: 86vh; }
  .hero-title { max-width: none; }
}
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-tabs { }
  .gallery-cta-row { justify-content: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-top { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.feature-photo { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.story-col { grid-column: 1 / -1; }
.form-group { 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; }
