@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,700&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #1a2325;
  --accent:        #1a2325;
  --canvas:        #FAF6EE;
  --surface:       #FFFFFF;
  --ink:           #1A1814;
  --muted:         #6B6660;
  --border:        rgba(26,35,37,0.14);
  --border-strong: rgba(26,35,37,0.28);
  --primary-hover: #263337;
  --shadow-sm:     0 2px 8px rgba(26,35,37,0.08);
  --shadow-md:     0 8px 32px rgba(26,35,37,0.10);
  --shadow-lg:     0 24px 64px rgba(26,35,37,0.14);
  --radius:        8px;
  --header-height: 72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--canvas);
  color: var(--ink);
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.68;
  background: var(--canvas);
  color: var(--ink);
  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: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

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

.hero-split {
  display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0;
}
.hero-split-text {
  background: var(--canvas);
  padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

/* Anchor-in-heading fix */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); letter-spacing: -0.03em; }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 34px); }
h4 { font-size: 18px; font-weight: 700; }

p { max-width: 68ch; }

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

strong { font-weight: 700; }

/* ============================================================
   EYEBROW — mono-uppercase + brand square bullet
   ============================================================ */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.hero-eyebrow,
.page-header-eyebrow,
.info-card-eyebrow,
.cta-banner-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before,
.section-eyebrow::before,
.page-eyebrow::before,
.hero-eyebrow::before,
.page-header-eyebrow::before,
.info-card-eyebrow::before,
.cta-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.bleed { width: 100%; max-width: none; }

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

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(26,35,37,0.08);
}

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.88); color: var(--canvas); text-decoration: none; }
.nav-cta svg { width: 20px; height: 20px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }

  .nav-cta { padding: 10px 12px; }
  .nav-cta span { display: none; }

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(26,35,37,0.08);
    z-index: 800;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-solid,
button[type="submit"],
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
  border: none;
  white-space: nowrap;
}

.btn-primary,
.btn-solid {
  background: var(--primary);
  color: var(--canvas);
}
.btn-primary:hover,
.btn-solid:hover {
  filter: brightness(0.88);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--canvas);
}

.btn-outline,
.btn-ghost,
.btn-outline-ink {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover,
.btn-ghost:hover,
.btn-outline-ink:hover {
  background: var(--primary);
  color: var(--canvas);
  text-decoration: none;
}

.btn-light,
.btn-primary-light {
  background: var(--canvas);
  color: var(--primary);
}
.btn-light:hover,
.btn-primary-light:hover {
  background: var(--surface);
  text-decoration: none;
}

.btn-outline-light,
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid var(--canvas);
  color: var(--canvas);
}
.btn-outline-light:hover,
.btn-ghost-light:hover {
  background: var(--canvas);
  color: var(--primary);
  text-decoration: none;
}

.btn-form-submit,
.btn-submit {
  background: var(--primary);
  color: var(--canvas);
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
}
.btn-form-submit:hover,
.btn-submit:hover {
  filter: brightness(0.88);
  transform: translateY(-1px);
}
.btn-submit svg { width: 18px; height: 18px; }

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

.hero-overlay {
  background: linear-gradient(
    165deg,
    rgba(26,35,37,0.72) 0%,
    rgba(26,35,37,0.48) 45%,
    rgba(26,35,37,0.18) 100%
  );
}

.hero-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(40px, 8vh, 96px) clamp(24px, 5vw, 64px);
  padding-bottom: clamp(56px, 10vh, 120px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-eyebrow {
  color: rgba(250,246,238,0.80);
  margin-bottom: 20px;
}
.hero-eyebrow::before { background: var(--canvas); }

.hero-hairline {
  width: 48px;
  height: 3px;
  background: var(--canvas);
  margin-bottom: 28px;
  opacity: 0.55;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 450;
  color: rgba(250,246,238,0.82);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-ctas a:first-child {
  background: var(--canvas);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  transition: filter 180ms, transform 180ms;
  text-decoration: none;
}
.hero-ctas a:first-child:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary);
}
.hero-ctas a:last-child {
  background: transparent;
  border: 1.5px solid rgba(250,246,238,0.55);
  color: var(--canvas);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 180ms, border-color 180ms;
  text-decoration: none;
}
.hero-ctas a:last-child:hover {
  background: rgba(250,246,238,0.12);
  border-color: rgba(250,246,238,0.80);
  text-decoration: none;
  color: var(--canvas);
}

.hero-trust-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0; margin: 0;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(250,246,238,0.40);
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.88);
  white-space: nowrap;
}
.trust-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.trust-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--muted);
  flex-shrink: 0;
}
.marquee-item strong { color: var(--primary); font-weight: 700; }

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

/* ============================================================
   SECTIONS — BASE RHYTHM
   ============================================================ */
.services,
.gallery,
.reviews,
.faq,
.contact,
.about-story,
.values-section,
.timeline-section,
.crew-section,
.about-verbatim {
  padding-block: clamp(96px, 12vh, 160px);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--canvas); }

.services-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 6vh, 72px);
  flex-wrap: wrap;
}
.services-header h2 { max-width: 18ch; }
.services-header-right {
  max-width: 38ch;
}
.services-header-right p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: none;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(26,35,37,0.18);
  text-decoration: none;
  color: var(--ink);
}

.service-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.service-card:hover .service-card-img img { transform: scale(1.03); }

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card-body h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
  margin-bottom: 4px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: none;
}
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-link svg { width: 16px; height: 16px; }

.services-foot {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; }
}

/* ============================================================
   PHOTO BREAK (full-bleed between services + reviews)
   ============================================================ */
.photo-break {
  position: relative;
  height: clamp(260px, 40vh, 520px);
  overflow: hidden;
}
.photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-height: none;
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26,35,37,0.50);
}
.photo-break-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.photo-break-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--canvas);
  text-align: center;
  max-width: 22ch;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--canvas); }

.gallery-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

.gallery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vh, 60px);
  flex-wrap: wrap;
}
.gallery-top h2 { max-width: 18ch; }
.gallery-top-right { display: flex; align-items: flex-end; gap: 16px; }
.gallery-top-right p { font-size: 15px; color: var(--muted); }
.gallery-top-right a { font-size: 14px; font-weight: 600; text-decoration: none; color: var(--primary); }
.gallery-top-right a:hover { text-decoration: underline; }

.gallery-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--border);
}
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,35,37,0.65), transparent);
  padding: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--canvas);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gallery page (gallery.html) */
.gallery-section { background: var(--canvas); padding-block: clamp(80px, 10vh, 128px); }

.gallery-header-row {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.gallery-header-text { flex: 1; }
.gallery-header-text h2 { max-width: 20ch; }
.gallery-header-text p { color: var(--muted); font-size: 15px; }

.gallery-filters {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

.gallery-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}
.gallery-card:hover img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(26,35,37,0.72);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

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

.gallery-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.75);
  margin-bottom: 6px;
}
.gallery-card-tag svg { width: 12px; height: 12px; }
.gallery-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--canvas);
  line-height: 1.15;
  max-width: none;
}
.gallery-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(250,246,238,0.65);
  margin-top: 6px;
}
.gallery-card-meta svg { width: 14px; height: 14px; }

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

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--surface); }

.reviews-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

.reviews-header {
  margin-bottom: clamp(40px, 6vh, 72px);
}
.reviews-header h2 { max-width: 20ch; }
.reviews-header p:not(.eyebrow) { color: var(--muted); font-size: 16px; margin-top: 16px; }

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

.review-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars {
  display: flex;
  gap: 4px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
  flex-shrink: 0;
}
.review-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: none;
  flex: 1;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.review-source {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--canvas); }

.faq-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

.faq-header { margin-bottom: 48px; }
.faq-header h2 { max-width: 22ch; }

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

.faq-list details > summary,
details.faq > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 22px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  transition: color 150ms;
}
.faq-list details > summary::-webkit-details-marker,
details.faq > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 220ms, color 150ms;
  color: var(--muted);
}
.faq-list details[open] .faq-chevron,
details.faq[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-list details > summary:hover,
details.faq > summary:hover { color: var(--primary); }

.faq-list details p,
details.faq p {
  padding-bottom: 22px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA (section between gallery and contact on index)
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding-block: clamp(80px, 10vh, 128px);
}
.team-cta-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.team-cta-inner .eyebrow { color: rgba(250,246,238,0.65); }
.team-cta-inner .eyebrow::before { background: var(--canvas); }
.team-cta-inner h2 {
  color: var(--canvas);
  font-size: clamp(36px, 5vw, 64px);
  max-width: 18ch;
}
.team-cta-inner p {
  color: rgba(250,246,238,0.72);
  font-size: 17px;
  max-width: 56ch;
  margin-inline: auto;
}
.team-cta-inner a {
  background: var(--canvas);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 180ms;
}
.team-cta-inner a:hover { filter: brightness(0.94); text-decoration: none; color: var(--primary); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--canvas); }

.contact-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-col h2 { max-width: 20ch; margin-bottom: 8px; }
.contact-form-col > p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }

.contact-info-col h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 28px;
  line-height: 1.15;
}

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

/* ============================================================
   CONTACT SECTION PAGE (contact.html)
   ============================================================ */
.contact-section { background: var(--canvas); padding-block: clamp(80px, 10vh, 128px); }

.contact-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-side > .section-eyebrow { margin-bottom: 12px; }
.contact-form-side h2 { margin-bottom: 8px; }
.contact-form-lead { color: var(--muted); font-size: 16px; margin-bottom: 28px; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.contact-info-card h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 4px; line-height: 1.1; }

.info-card-eyebrow { margin-bottom: 20px; }

.info-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.info-block { display: flex; flex-direction: column; gap: 20px; }

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,35,37,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.info-item-body { display: flex; flex-direction: column; gap: 2px; }
.info-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: none;
}
.info-item-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  max-width: none;
}
.info-item-value a { color: var(--ink); font-weight: 500; }
.info-item-value a:hover { color: var(--primary); }

.info-rating-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.info-rating-stars { display: flex; gap: 3px; }
.info-rating-stars svg { width: 16px; height: 16px; color: var(--primary); fill: var(--primary); }
.info-rating-label { font-size: 13px; font-weight: 600; color: var(--ink); }

.info-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(26,35,37,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }

/* info-list variant (index contact section) */
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.info-text { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.info-value { font-size: 15px; color: var(--ink); font-weight: 500; max-width: none; }
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary); }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form,
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label,
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select,
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,35,37,0.08);
}
.form-field textarea,
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding-block: clamp(72px, 10vh, 128px);
}

.cta-banner-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.cta-banner-text .eyebrow,
.cta-banner-eyebrow { color: rgba(250,246,238,0.65); }
.cta-banner-text .eyebrow::before,
.cta-banner-eyebrow::before { background: var(--canvas); }

.cta-banner-text h2,
.cta-banner-inner h2 {
  color: var(--canvas);
  font-size: clamp(36px, 4.5vw, 64px);
  max-width: 18ch;
  margin-bottom: 14px;
}
.cta-banner-text p,
.cta-banner-inner > p {
  color: rgba(250,246,238,0.72);
  font-size: 16px;
  max-width: 50ch;
  margin-bottom: 28px;
}
.cta-banner-text a { text-decoration: none; }

.cta-banner-btns,
.cta-banner-actions,
.cta-banner-text > div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta-banner-form {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px;
}
.cta-banner-form .form-title { margin-bottom: 20px; }

.cta-banner-phone { color: var(--canvas); font-size: 15px; }
.cta-banner-email { color: var(--canvas); font-size: 15px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 38vh, 500px);
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(170deg, rgba(26,35,37,0.70) 0%, rgba(26,35,37,0.35) 100%);
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 64px);
  width: 100%;
}
.page-header-inner h1 {
  color: var(--canvas);
  font-size: clamp(42px, 6vw, 96px);
  max-width: 18ch;
  margin-bottom: 12px;
}
.page-eyebrow,
.page-header-eyebrow {
  color: rgba(250,246,238,0.70);
  margin-bottom: 16px;
}
.page-eyebrow::before,
.page-header-eyebrow::before { background: var(--canvas); }

.page-header-sub {
  font-size: 16px;
  color: rgba(250,246,238,0.75);
  max-width: 52ch;
}

/* ============================================================
   SERVICE FEATURES (services.html)
   ============================================================ */
.services-list {
  background: var(--canvas);
  padding-block: clamp(80px, 10vh, 128px);
}
.services-list-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 10vh, 120px);
}

.services-intro { max-width: 70ch; margin-bottom: 0; }
.services-intro h2 { max-width: 20ch; margin-bottom: 16px; }
.services-intro p { color: var(--muted); font-size: 16px; }

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.service-feature.reverse .service-feature-media { order: 2; }
.service-feature.reverse .service-feature-body { order: 1; }

.service-feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border);
}
.service-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-feature-body { display: flex; flex-direction: column; gap: 16px; }
.service-feature-body .eyebrow { margin-bottom: 0; }
.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  max-width: 18ch;
  margin-bottom: 4px;
}
.service-feature-body p { color: var(--muted); font-size: 16px; line-height: 1.65; }

.service-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 7px;
}

.service-feature-body > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  transition: filter 180ms;
  margin-top: 8px;
}
.service-feature-body > a:hover { filter: brightness(0.88); text-decoration: none; color: var(--canvas); }

@media (max-width: 900px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature.reverse .service-feature-media,
  .service-feature.reverse .service-feature-body { order: unset; }
}

/* ============================================================
   ABOUT STORY (about.html)
   ============================================================ */
.about-story { background: var(--canvas); }

.about-story-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-portrait-col { position: sticky; top: calc(var(--header-height) + 32px); }
.about-portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 640px;
  filter: saturate(0.85);
}
.about-portrait-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: none;
}

.about-story-text { display: flex; flex-direction: column; gap: 20px; }
.about-story-text .eyebrow { margin-bottom: 0; }
.about-story-display {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.about-story-text p,
.about-verbatim p {
  font-size: 17px;
  line-height: 1.70;
  color: var(--muted);
}

.about-hairline,
.about-verbatim-hairline {
  width: 64px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

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

/* ============================================================
   VALUES (about.html)
   ============================================================ */
.values-section { background: var(--surface); }

.values-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}
.values-header { margin-bottom: clamp(40px, 6vh, 64px); }
.values-header h2 { max-width: 20ch; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 24px;
  background: var(--canvas);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-card-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  opacity: 0.22;
  letter-spacing: -0.04em;
  max-width: none;
}
.value-card h3 { font-size: 20px; line-height: 1.15; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.60; max-width: none; }

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

/* ============================================================
   TIMELINE (about.html)
   ============================================================ */
.timeline-section { background: var(--canvas); }

.timeline-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}
.timeline-header { margin-bottom: 48px; }
.timeline-header h2 { max-width: 20ch; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.timeline-dot span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.timeline-content { padding-bottom: 8px; }
.timeline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  max-width: none;
}
.timeline-content h3 { font-size: 20px; margin-bottom: 6px; }
.timeline-content p { font-size: 15px; color: var(--muted); line-height: 1.60; max-width: 54ch; }

/* ============================================================
   CREW SECTION (about.html)
   ============================================================ */
.crew-section {
  background: var(--primary);
  padding-block: clamp(80px, 10vh, 128px);
  position: relative;
  overflow: hidden;
}
.crew-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  max-height: none;
  filter: grayscale(1);
}

.crew-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.crew-header { }
.crew-header p:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.60);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: none;
}
.crew-header p:first-child::before {
  content: '';
  width: 7px; height: 7px;
  background: rgba(250,246,238,0.60);
  display: inline-block;
  flex-shrink: 0;
}
.crew-header h2 {
  color: var(--canvas);
  font-size: clamp(28px, 4vw, 56px);
  max-width: 22ch;
  margin-inline: auto;
}

.crew-strip-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  filter: grayscale(0.3);
}

.crew-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.crew-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(250,246,238,0.30);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.80);
}

/* ============================================================
   ABOUT VERBATIM
   ============================================================ */
.about-verbatim { background: var(--surface); }
.about-verbatim-inner {
  max-width: 70ch;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-verbatim-inner h2 { font-size: clamp(28px, 3.5vw, 48px); max-width: 22ch; }
.about-verbatim-inner p { font-size: 17px; line-height: 1.70; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer,
.site-footer {
  background: var(--primary);
  color: var(--canvas);
  padding-block: clamp(64px, 8vh, 100px);
}

.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p,
.footer-brand-name,
.footer-tagline {
  font-size: 14px;
  color: rgba(250,246,238,0.60);
  line-height: 1.55;
  max-width: 30ch;
}
.footer-brand-name { font-weight: 600; color: rgba(250,246,238,0.85); }

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h4,
.footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
  margin-bottom: 4px;
}

.footer-col ul,
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a,
.footer-links li a,
.footer-col > a {
  font-size: 14px;
  color: rgba(250,246,238,0.72);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col li a:hover,
.footer-links li a:hover,
.footer-col > a:hover {
  color: var(--canvas);
  text-decoration: none;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(250,246,238,0.72);
}
.footer-contact-line a { color: rgba(250,246,238,0.72); text-decoration: none; }
.footer-contact-line a:hover { color: var(--canvas); }

.footer-phone-link {
  color: rgba(250,246,238,0.72);
  font-size: 14px;
}
.footer-phone-link:hover { color: var(--canvas); }

address {
  font-style: normal;
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  line-height: 1.65;
}

.footer-bottom {
  max-width: 1280px;
  margin-inline: auto;
  padding: 24px clamp(24px, 5vw, 64px) 0;
  border-top: 1px solid rgba(250,246,238,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p,
.footer-bottom span {
  font-size: 12px;
  color: rgba(250,246,238,0.40);
  max-width: none;
}

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

/* ============================================================
   MOBILE STICKY CTA PILL
   ============================================================ */
.mobile-sticky-cta,
.mobile-cta-pill,
.mobile-cta,
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--canvas);
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 18px 40px -10px rgba(26,35,37,0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.mobile-sticky-cta:hover,
.mobile-cta-pill:hover,
.mobile-cta:hover,
.mobile-call-pill:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--canvas);
}
.mobile-sticky-cta svg,
.mobile-cta-pill svg,
.mobile-cta svg,
.mobile-call-pill svg { width: 20px; height: 20px; flex-shrink: 0; }

.mobile-sticky-cta a,
.mobile-cta > a {
  color: var(--canvas);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-cta > a svg { width: 20px; height: 20px; }

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1); }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1); }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1); }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 580ms cubic-bezier(0.16, 1, 0.3, 1), transform 580ms cubic-bezier(0.16, 1, 0.3, 1); }

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

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1), transform 560ms cubic-bezier(0.16, 1, 0.3, 1); }
.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; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.timeline-dot { grid-column: 1 / -1; }
.timeline-content { grid-column: 1 / -1; }
.cta-banner-btns { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
