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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #297E46;
  --accent:         #1C6434;
  --canvas:         #F4EFE6;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --primary-tint:   rgba(41,126,70,0.12);
  --primary-wash:   rgba(41,126,70,0.08);
  --ink-overlay:    rgba(31,27,22,0.55);
  --mount-gap:      12px;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 152px);
  --content-max:    1240px;
  --wide-max:       1400px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 17px;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.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; }
.nav-logo:hover { opacity: 0.85; }
.nav-logo:hover, .nav-logo a:hover { 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-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); padding-bottom: 4px; }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  white-space: nowrap; text-decoration: none;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta span { /* phone number text — visible desktop */ }

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

@media (max-width: 900px) {
  .top-nav { gap: 16px; padding-inline: 16px; }

  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas);
    padding: 24px; gap: 8px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 800; justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { font-size: 17px; padding: 10px 0; display: block; }

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

  .nav-toggle { display: flex; }
}

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

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

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.47s; }
.stagger > *:nth-child(8) { transition-delay: 0.54s; }

/* ============================================================
   MOUNTED PRINT EFFECT (THE SIGNATURE MOVE)
   ============================================================ */
.mounted-print,
.mount-frame,
.sc-mount,
.gallery-card-photo-wrap,
.about-story-portrait {
  outline: var(--mount-gap) solid var(--canvas);
  outline-offset: calc(-1 * var(--mount-gap));
}

.mounted-print-white {
  outline: var(--mount-gap) solid var(--surface);
  outline-offset: calc(-1 * var(--mount-gap));
}

/* ============================================================
   SECTION EYEBROWS + HEADINGS
   ============================================================ */
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.service-eyebrow,
.cta-banner-eyebrow,
.hero-eyebrow,
.info-eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-eyebrow::after,
.section-heading + .section-eyebrow,
.services-header .section-eyebrow,
.about-story-body .section-eyebrow,
.values-header .section-eyebrow,
.journey-header .section-eyebrow,
.crew-header .section-eyebrow,
.about-bridge .section-eyebrow,
.faq-section .section-eyebrow,
.contact-form-col .section-eyebrow {
  /* brand hairline under eyebrow */
  display: block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  width: fit-content;
  margin-bottom: 18px;
}

.section-heading, .section-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 52ch; line-height: 1.65;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.55) 0%,
    rgba(31,27,22,0.35) 50%,
    rgba(28,100,52,0.35) 100%
  );
}

.hero-inner {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 92vh;
  padding: clamp(40px, 8vw, 96px) clamp(24px, 6vw, 80px);
  max-width: 900px;
}

.hero-eyebrow {
  color: rgba(244,239,230,0.85);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(244,239,230,0.80);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  background: rgba(41,126,70,0.18);
  color: #bde6c9;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: var(--radius-pill);
}

@media (max-width: 640px) {
  .hero-inner { min-height: 88vh; padding-bottom: 48px; }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: var(--surface);
  position: relative; z-index: 1;
}

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

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

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

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

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 48px 0;
  background: var(--canvas);
}

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

.trust-pill {
  background: var(--primary-tint);
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px 18px; border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 16px 30px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: filter 180ms, transform 180ms;
  line-height: 1;
}
.btn:hover, .btn-primary:hover, .btn-submit:hover {
  filter: brightness(0.9); transform: translateY(-1px);
  color: #fff; text-decoration: none;
}

.btn-outline,
.btn-banner-outline,
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(244,239,230,0.55);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; white-space: nowrap;
  transition: border-color 180ms, background 180ms;
  cursor: pointer;
}
.btn-outline:hover, .btn-banner-outline:hover, .btn-outline-light:hover {
  border-color: rgba(244,239,230,0.9);
  background: rgba(244,239,230,0.12);
  color: var(--canvas); text-decoration: none;
}

.btn-banner-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--canvas); color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 700;
  padding: 16px 30px; border-radius: var(--radius-sm);
  text-decoration: none; white-space: nowrap;
  transition: filter 180ms;
}
.btn-banner-primary:hover { filter: brightness(0.95); text-decoration: none; }

.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(244,239,230,0.55);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none;
}
.btn-phone:hover { border-color: var(--canvas); color: var(--canvas); text-decoration: none; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 15px;
  padding: 12px 0; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 150ms;
}
.btn-service:hover { border-color: var(--primary); text-decoration: none; }
.btn-service svg { width: 20px; height: 20px; }

.btn-full { width: 100%; justify-content: center; }

.cta-pair {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ============================================================
   SERVICES BENTO (index.html)
   ============================================================ */
.services-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.services-header {
  margin-bottom: 56px;
}

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

/* flagship spans 2 cols */
.sc-flagship {
  grid-column: span 2;
}

/* wide spans 2 cols on bottom row */
.sc-wide {
  grid-column: span 2;
}

.service-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  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(31,27,22,0.16);
  text-decoration: none; color: var(--ink);
}

.sc-mount {
  width: 100%; overflow: hidden;
  outline: var(--mount-gap) solid var(--canvas);
  outline-offset: calc(-1 * var(--mount-gap));
  background: var(--canvas);
  flex-shrink: 0;
}
.sc-flagship .sc-mount { aspect-ratio: 16/9; }
.sc-std .sc-mount     { aspect-ratio: 4/3; }
.sc-wide .sc-mount    { aspect-ratio: 21/9; }

.sc-mount img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
  transition: transform 400ms ease;
}
.service-card:hover .sc-mount img { transform: scale(1.04); }

.sc-body {
  padding: 20px 24px 24px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}

.sc-num {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
}

.sc-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1; color: var(--ink);
}

.sc-desc {
  font-size: 15px; color: var(--muted); line-height: 1.55;
}

.sc-link {
  font-size: 13px; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: auto; padding-top: 10px;
}

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

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .sc-flagship { grid-column: span 2; }
  .sc-wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .sc-flagship, .sc-wide { grid-column: span 1; }
  .sc-flagship .sc-mount { aspect-ratio: 4/3; }
  .sc-wide .sc-mount { aspect-ratio: 4/3; }
}

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

.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
}
.gallery-header a { font-size: 14px; font-weight: 600; color: var(--primary); white-space: nowrap; }

/* mount frame = single full-width mounted photo on index */
.gallery-mount {
  width: 100%;
  max-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  outline: var(--mount-gap) solid var(--canvas);
  outline-offset: calc(-1 * var(--mount-gap));
  background: var(--ink);
}
.gallery-mount img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
}

.gallery-cta-row {
  margin-top: 32px; text-align: center;
}

/* Full gallery page grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(31,27,22,0.14);
}

.gallery-card-photo-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  outline: var(--mount-gap) solid var(--surface);
  outline-offset: calc(-1 * var(--mount-gap));
  background: var(--canvas);
}
.gallery-card-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-photo-wrap img { transform: scale(1.04); }

.gallery-card-body {
  padding: 16px 20px 20px;
}
.gallery-card-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px; font-weight: 400; line-height: 1.15;
  margin-bottom: 8px;
}

.gallery-card-meta {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 8px; flex-wrap: wrap;
}

.gallery-card-tag {
  background: var(--primary-tint); color: var(--primary);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  padding: 3px 10px; border-radius: var(--radius-pill);
}

.gallery-card-location {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.gallery-card-location svg { width: 14px; height: 14px; }

.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

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

.filter-pill {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border-strong);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-pill);
  cursor: pointer; transition: all 150ms;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

.gallery-empty {
  text-align: center; padding: 60px 20px;
  color: var(--muted); font-size: 16px;
  grid-column: 1 / -1;
}

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

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.faq-body {
  margin-top: 48px;
  max-width: 780px;
}

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

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

.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--primary);
  transition: transform 220ms ease;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 22px;
  font-size: 16px; line-height: 1.68;
  color: var(--muted);
  max-width: 68ch;
}

/* ============================================================
   CONTACT SECTION (index.html)
   ============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-split {
  max-width: var(--content-max); margin-inline: auto;
  padding: var(--section-py) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-col { }
.contact-info-col { }

.page-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 12px;
}

.form-intro {
  color: var(--muted); font-size: 16px; line-height: 1.6;
  margin-bottom: 32px;
}

.form-group,
.cf-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea,
.cf-group input,
.cf-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41,126,70,0.12);
}

.form-group textarea,
.cf-group textarea {
  min-height: 140px; resize: vertical;
}

.form-group.full-width,
.full-width { grid-column: 1 / -1; }

.btn-submit {
  width: 100%; justify-content: center; gap: 10px;
  font-size: 17px; padding: 18px;
  margin-top: 4px;
}
.btn-submit svg { width: 20px; height: 20px; }

.form-disclaimer {
  font-size: 12px; color: var(--muted); margin-top: 14px;
  text-align: center; line-height: 1.5;
}

/* Info column */
.info-col,
.contact-info-col {
  display: flex; flex-direction: column; gap: 0;
}

.info-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
  margin-bottom: 24px;
}

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

.info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.info-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--primary-tint); border-radius: var(--radius-sm); }
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.info-item-body { flex: 1; }
.info-item-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted); margin-bottom: 4px; }
.info-item-value { font-size: 16px; color: var(--ink); line-height: 1.55; }
.info-item-value a { color: var(--primary); }

.info-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted); margin-bottom: 4px; }
.info-value { font-size: 16px; color: var(--ink); }
.info-note  { font-size: 15px; color: var(--muted); }
.info-divider { height: 1px; background: var(--border); margin: 8px 0; }

.service-area-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.area-chip {
  background: var(--primary-tint); color: var(--primary);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: var(--radius-pill);
}

.info-rating {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.info-rating-stars { display: flex; gap: 3px; }
.info-rating-stars svg { width: 18px; height: 18px; color: var(--primary); }
.info-rating-text { font-size: 14px; font-weight: 600; color: var(--muted); }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 46vh;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(31,27,22,0.62) 0%, rgba(28,100,52,0.3) 100%);
  pointer-events: none;
}

.page-header-inner {
  position: relative; z-index: 2;
  min-height: 46vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px);
  max-width: 900px;
}

.page-header-eyebrow {
  display: block;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(244,239,230,0.75);
  margin-bottom: 14px;
}

.page-header-inner h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--canvas);
}

.page-header-sub {
  font-size: 18px; color: rgba(244,239,230,0.75);
  max-width: 52ch; line-height: 1.6;
  margin-top: 16px;
}

/* ============================================================
   SERVICE FEATURES (services.html)
   ============================================================ */
.service-feature {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-feature.photo-right .service-feature-inner {
  direction: ltr;
}

.service-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  outline: var(--mount-gap) solid var(--canvas);
  outline-offset: calc(-1 * var(--mount-gap));
}
.service-feature:nth-child(even) .service-photo-wrap {
  outline-color: var(--surface);
}

.service-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
}

.service-body {
  display: flex; flex-direction: column; gap: 16px;
}

.service-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ink);
}

.service-body p { font-size: 16px; color: var(--muted); line-height: 1.68; }

.service-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding: 0;
}
.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: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: clamp(80px, 10vh, 120px) 0;
  background: var(--accent);
  position: relative; overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--primary-wash);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  text-align: center;
  position: relative; z-index: 1;
}

.cta-banner-eyebrow {
  display: block;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(244,239,230,0.70);
  margin-bottom: 16px;
}

.cta-banner-headline,
.cta-banner-title,
.cta-banner-inner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -0.02em; color: var(--canvas);
  margin-bottom: 20px;
}

.cta-banner-sub { font-size: 18px; color: rgba(244,239,230,0.80); max-width: 52ch; margin: 0 auto 36px; line-height: 1.6; }
.cta-banner-phone { font-size: 28px; font-weight: 700; color: var(--canvas); margin: 16px 0; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.about-story-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.about-story-portrait {
  position: sticky; top: calc(var(--header-height) + 24px);
}

.mounted-print {
  border-radius: var(--radius);
  overflow: hidden;
  outline: var(--mount-gap) solid var(--canvas);
  outline-offset: calc(-1 * var(--mount-gap));
}

.mounted-print img {
  width: 100%; height: auto; max-height: none !important;
  object-fit: cover; display: block;
}

.about-story-portrait-img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--radius);
  max-height: none !important;
}

.portrait-caption {
  font-size: 13px; color: var(--muted); margin-top: 12px;
  text-align: center; font-style: italic;
}

.about-story-body {
  display: flex; flex-direction: column; gap: 20px;
}

.about-story-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05; letter-spacing: -0.02em;
}

.about-story-text p { font-size: 17px; line-height: 1.75; color: var(--ink); margin-bottom: 16px; }

.about-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.about-chip {
  background: var(--primary-tint); color: var(--primary);
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 7px 16px; border-radius: var(--radius-pill);
}

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

/* ============================================================
   VALUES
   ============================================================ */
.values-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

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

.values-header { margin-bottom: 48px; }
.values-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02; letter-spacing: -0.02em;
}

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

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

.value-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px; color: var(--primary); line-height: 1;
  margin-bottom: 14px; font-weight: 400;
}

.value-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px; font-weight: 400; line-height: 1.1;
  color: var(--ink); margin-bottom: 10px;
}

.value-title { /* alias */ }

.value-body {
  font-size: 15px; color: var(--muted); line-height: 1.65;
}

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

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

.journey-header { margin-bottom: 56px; }
.journey-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02; letter-spacing: -0.02em;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute; top: 18px; left: 0; right: 0;
  height: 2px; background: var(--border-strong);
  z-index: 0;
}

.journey-step {
  position: relative; z-index: 1;
  padding-top: 48px; padding-right: 24px;
}

.journey-dot {
  position: absolute; top: 10px; left: 0;
  width: 18px; height: 18px;
  background: var(--primary); border-radius: 50%;
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
}

.journey-year {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px; color: var(--primary); font-weight: 400;
  line-height: 1; margin-bottom: 8px;
}

.journey-label {
  font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}

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

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .journey-steps::before { display: none; }
  .journey-dot { display: none; }
  .journey-step { padding-top: 0; border-left: 3px solid var(--primary); padding-left: 20px; }
}
@media (max-width: 540px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   CREW SECTION
   ============================================================ */
.crew-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

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

.crew-header { margin-bottom: 48px; }
.crew-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02; letter-spacing: -0.02em;
}

.crew-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.crew-tile {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}

.crew-tile img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  max-height: none !important;
}

.crew-tile-label {
  padding: 18px 20px 20px;
}

.crew-tile-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 4px;
}

.crew-tile-role {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.10em; color: var(--primary);
}

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

/* ============================================================
   ABOUT BRIDGE
   ============================================================ */
.about-bridge {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.about-bridge-inner {
  max-width: 760px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  text-align: center;
}

.about-bridge-inner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px;
}

.about-bridge-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ink);
}

.about-bridge-body p { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
.about-bridge-body a { color: var(--primary); font-weight: 600; }
.about-bridge-inner .about-chips { justify-content: center; margin-top: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.75);
}

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

.footer-grid,
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(244,239,230,0.10);
}

.footer-brand { }
.footer-brand-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px; color: var(--canvas); margin-bottom: 8px; font-weight: 400;
}

.footer-tagline {
  font-size: 14px; color: rgba(244,239,230,0.55);
  line-height: 1.6; max-width: 32ch; margin-top: 8px;
}

.footer-phone {
  display: block; font-size: 18px; font-weight: 600;
  color: var(--canvas); margin-top: 16px; text-decoration: none;
}
.footer-phone:hover { color: var(--primary); text-decoration: none; }

.footer-phone-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--canvas); font-weight: 600; font-size: 16px;
  margin-top: 16px; text-decoration: none;
}
.footer-phone-link svg { width: 20px; height: 20px; }
.footer-phone-link:hover { color: var(--primary); text-decoration: none; }

.footer-col-head,
.footer-col-title,
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--canvas);
  margin-bottom: 20px;
}

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

.footer-col a,
.footer-links a {
  font-size: 14px; color: rgba(244,239,230,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-col a:hover,
.footer-links a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px; color: rgba(244,239,230,0.65);
}
.footer-contact-item a:hover { color: var(--canvas); text-decoration: none; }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px; color: rgba(244,239,230,0.40);
}

.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px; color: rgba(244,239,230,0.40); text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(244,239,230,0.75); text-decoration: none; }

.footer-legal {
  list-style: none; display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-legal li a {
  font-size: 12px; color: rgba(244,239,230,0.40); text-decoration: none;
}
.footer-legal li a:hover { color: rgba(244,239,230,0.75); text-decoration: none; }

address { font-style: normal; }

@media (max-width: 900px) {
  .footer-grid,
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-grid,
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE CTA PILLS
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-cta,
.mobile-pill {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-cta:hover { filter: brightness(0.9); transform: translateY(-2px); color: #fff; text-decoration: none; }

.mobile-call-pill a,
.mobile-cta a {
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-cta svg { width: 22px; height: 22px; }

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

/* ============================================================
   MARQUEE STATS (shared)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px); font-weight: 400;
  line-height: 1; color: var(--primary);
}
.stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); margin-top: 8px;
  font-weight: 600;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card { padding: 28px; border-radius: var(--radius); background: var(--canvas); }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   PROCESS
   ============================================================ */
.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-sm); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.phone-display { font-size: 22px; font-weight: 700; color: var(--ink); }
.section-headline { /* alias for section-heading */ }
.services-header h2,
.gallery-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02; letter-spacing: -0.02em; color: var(--ink);
}

/* Table readable */
.services-table thead .col-service { background: var(--primary); color: #fff; }

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

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid,
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.mounted-print-white { 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; }
