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

/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
  --primary:        #FBF45C;
  --accent:         #5DA534;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3B3630;
  --muted:          #6B6660;
  --muted-light:    #A09890;
  --border:         rgba(26, 24, 20, 0.10);
  --border-mid:     rgba(26, 24, 20, 0.18);
  --primary-dim:    rgba(251, 244, 92, 0.18);
  --accent-dim:     rgba(93, 165, 52, 0.12);
  --shadow-sm:      0 2px 8px rgba(26, 24, 20, 0.06);
  --shadow-md:      0 8px 32px rgba(26, 24, 20, 0.10);
  --shadow-lg:      0 18px 48px rgba(26, 24, 20, 0.14);
  --radius:         8px;
  --radius-lg:      14px;
  --header-height:  72px;
  --section-y:      clamp(96px, 12vh, 160px);
  --container-w:    1280px;
  --wide-w:         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: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  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 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 anchors */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* Global anchor */
a { color: var(--ink); transition: color 150ms ease; text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }

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

/* ============================================================
   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 80ms linear;
}

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

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pages ul {
  display: flex;
  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;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.01em;
}
.nav-pages a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.nav-cta {
  flex: 0 0 auto;
}
.nav-cta a {
  background: var(--ink);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 150ms, filter 150ms;
}
.nav-cta a:hover {
  filter: brightness(0.88);
  text-decoration: none;
  color: var(--canvas);
}

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

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

/* ============================================================
   TYPOGRAPHY — SECTION EYEBROWS
   Unique move: mono-uppercase with a small brand-color square bullet
   ============================================================ */
.eyebrow, .section-eyebrow, .page-eyebrow,
.page-header-eyebrow, .cta-banner-eyebrow,
.info-card-eyebrow, .faq-intro .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,
.page-header-eyebrow::before, .cta-banner-eyebrow::before,
.info-card-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
}
.section-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 16px;
  line-height: 1.7;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 12px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: clamp(48px, 6vh, 80px);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in { opacity: 0; transform: scale(0.96); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 400ms; }
.stagger .fade-up:nth-child(7) { transition-delay: 480ms; }
.stagger .fade-up:nth-child(8) { transition-delay: 560ms; }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms ease, transform 150ms ease, box-shadow 180ms ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-ghost-white {
  background: transparent;
  color: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.9); color: var(--surface); }

.btn-light {
  background: var(--surface);
  color: var(--ink);
}
.btn-light:hover { filter: brightness(0.96); color: var(--ink); }

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--canvas); }

.btn-outline-white {
  background: transparent;
  color: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: var(--surface); }

.btn-submit, .form-submit, .newsletter-btn {
  background: var(--primary);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 180ms;
}
.btn-submit:hover, .form-submit:hover, .newsletter-btn:hover { filter: brightness(0.92); }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero, section#hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-color: transparent;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(26, 24, 20, 0.55) 0%,
    rgba(26, 24, 20, 0.72) 40%,
    rgba(26, 24, 20, 0.88) 100%
  );
}

.hero-inner {
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  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.70);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-hairline {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.80);
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-ctas a:first-child {
  background: var(--primary);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 180ms, transform 150ms;
}
.hero-ctas a:first-child:hover { filter: brightness(0.90); transform: translateY(-1px); text-decoration: none; color: var(--ink); }
.hero-ctas a:last-child {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(250, 246, 238, 0.50);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 180ms, background 180ms;
}
.hero-ctas a:last-child:hover { border-color: rgba(250, 246, 238, 0.90); background: rgba(250,246,238,0.08); text-decoration: none; color: var(--canvas); }

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  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.85);
  white-space: nowrap;
}

/* ============================================================
   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 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: center;
}
.trust-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: transparent;
  white-space: nowrap;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-strip: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(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-item .hi {
  color: var(--accent);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(14px, 1.5vw, 19px);
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES SECTION (index.html bento)
   ============================================================ */
.services {
  padding: var(--section-y) 0;
  background: var(--canvas);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: block;
  min-height: 280px;
  text-decoration: none;
}
.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
  max-height: none !important;
  filter: grayscale(20%);
}
.service-card:hover > img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, transparent 30%, rgba(26, 24, 20, 0.85) 100%);
  z-index: 1;
}
.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.service-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin-bottom: 6px;
}
.service-card-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.70);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card-large {
  grid-column: span 2;
  min-height: 380px;
}
.service-card-large .service-card-body h3 {
  font-size: clamp(28px, 3.5vw, 48px);
}

.service-card:hover {
  transform: none;
}
.service-card {
  transition: box-shadow 250ms ease-out;
}
.service-card:hover {
  box-shadow: 0 18px 40px -16px rgba(26,24,20,0.28);
}

.services-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 899px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
  }
  .service-card-large {
    grid-column: 1 / -1;
    min-height: 320px;
  }
}
@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-large { min-height: 260px; }
  .service-card { min-height: 220px; }
}

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

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 360px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-tile {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 0;
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 600ms ease;
}
.gallery-tile:hover > img { transform: scale(1.04); }

.gallery-tile-main { grid-column: 1; grid-row: 1; }
.gallery-tile-secondary { grid-column: auto; grid-row: 1; }

.gallery-preview-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.gallery-preview-footer p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .gallery-tile-main { grid-column: 1 / -1; }
}

/* ============================================================
   PHOTO BREAK (full-bleed mid-page)
   ============================================================ */
.photo-break {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 40vh, 520px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.photo-break > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  max-height: none !important;
  filter: grayscale(15%);
}
.photo-break-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 24, 20, 0.58);
  z-index: 1;
}
.photo-break-content {
  position: relative;
  z-index: 2;
  padding: 64px clamp(24px, 6vw, 96px);
  max-width: 740px;
}
.photo-break-quote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--canvas);
}
.photo-break-quote em {
  font-style: normal;
  color: var(--primary);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--section-y) 0;
  background: var(--canvas);
}

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

.review-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 18px; height: 18px;
  color: var(--primary);
  fill: var(--primary);
  flex-shrink: 0;
}
.review-quote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}
.review-attribution {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
}
.review-attribution strong {
  color: var(--ink-mid);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-split { grid-template-columns: 1fr; gap: 40px; }
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.faq-intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.faq-intro-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-intro-body a { color: var(--accent); font-weight: 600; }

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

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

.faq-chevron {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 240ms ease, color 200ms;
}
details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-body {
  padding-bottom: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 62ch;
}

/* ============================================================
   CONTACT SECTION (index.html)
   ============================================================ */
.contact {
  padding: var(--section-y) 0;
  background: var(--canvas);
}
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT SECTION (contact.html)
   ============================================================ */
.contact-section {
  padding: var(--section-y) 0;
  background: var(--canvas);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
}
.contact-form-wrap h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-form-intro {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-info-wrap {}
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.info-card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.info-card-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-of-type { border-bottom: none; }
.info-icon { flex-shrink: 0; color: var(--accent); }
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.info-value a { color: var(--ink); font-weight: 600; }
.info-value a:hover { color: var(--accent); }

.service-area-wrap { margin-top: 24px; }
.service-area-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'Inter Tight', sans-serif;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.area-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--canvas);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  transition: background 150ms, border-color 150ms;
}
.social-link svg { width: 16px !important; height: 16px !important; }
.social-link:hover { background: var(--primary); border-color: var(--primary); text-decoration: none; color: var(--ink); }

/* ============================================================
   CONTACT ICON ITEMS (index.html .contact-info)
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon { flex-shrink: 0; color: var(--accent); }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

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

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

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

.form-label, label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input, input[type="text"], input[type="email"],
input[type="tel"], input[type="number"],
select, textarea, .form-select, .form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 450;
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
textarea { min-height: 120px; resize: vertical; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6660' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.form-consent input { width: auto; flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(240px, 38vh, 480px);
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,24,20,0.35) 0%, rgba(26,24,20,0.75) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  padding: 40px clamp(24px, 5vw, 64px) 48px;
  max-width: var(--container-w);
  width: 100%;
  margin-inline: auto;
}
.page-header-inner h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 12px;
}
.page-header-sub {
  font-size: 16px;
  color: rgba(250,246,238,0.78);
  max-width: 52ch;
}
.page-header-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.page-header-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
}
.page-header-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 12px;
}
.page-header-title span { display: block; }
.page-header-accent-line {
  width: 44px;
  height: 3px;
  background: var(--primary);
  margin-top: 20px;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  padding: var(--section-y) 0;
  background: var(--canvas);
}
.services-detail-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.services-detail-header {
  max-width: 640px;
  margin-bottom: clamp(56px, 8vh, 96px);
}
.services-detail-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: clamp(48px, 7vh, 96px) 0;
  border-top: 1px solid var(--border);
}
.service-feature:first-of-type { border-top: none; }

.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }

.service-feature-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-feature-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 600ms ease;
}
.service-feature:hover .service-feature-photo > img { transform: scale(1.02); }

.service-index {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}

.service-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-feature-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 18ch;
}
.hairline {
  width: 40px;
  height: 2px;
  background: var(--primary);
  display: block;
  margin-bottom: 20px;
}
.service-feature-desc {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-mid);
  margin-bottom: 14px;
}
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 28px;
}
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.55;
}
.list-check {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}
.list-check svg { width: 16px; height: 16px; }

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 0;
}
.cta-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  max-height: none !important;
  filter: grayscale(30%);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 24, 20, 0.72);
  z-index: 1;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: clamp(72px, 10vh, 120px) clamp(24px, 5vw, 64px);
}
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
}

.cta-banner-text { display: flex; flex-direction: column; gap: 0; }
.cta-banner-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 16px;
}
.cta-banner-title em {
  font-style: italic;
  color: var(--primary);
}
.cta-banner-sub {
  font-size: 17px;
  color: rgba(250,246,238,0.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 50ch;
}
.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-banner-left h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 8px;
}
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.60);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: 'Inter Tight', sans-serif;
}
.cta-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
}

/* CTA Form (services.html embedded) */
.cta-form {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.cta-form-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cta-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--header-height);
  z-index: 50;
}
.gallery-filter {
  max-width: 100%;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: transparent;
  border: 1.5px solid var(--border-mid);
  border-radius: 999px;
  padding: 7px 18px;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

.gallery-section {
  padding: 48px 0 var(--section-y);
  background: var(--canvas);
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.gallery-count {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  margin-bottom: 32px;
}
.gallery-count span { font-weight: 700; color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  display: flex;
  flex-direction: column;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-card-featured {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .gallery-card-featured { grid-column: span 1; }
}

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.gallery-card-featured .gallery-card-img-wrap { aspect-ratio: 16 / 9; }
.gallery-card-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 600ms ease;
}
.gallery-card:hover .gallery-card-img-wrap > img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  z-index: 2;
}
.gallery-card-category {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(26,24,20,0.75);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  z-index: 2;
}

.gallery-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-card-body h2, .gallery-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.gallery-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
}
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.gallery-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.gallery-meta-item { display: flex; flex-direction: column; gap: 1px; }
.gallery-meta-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Fraunces', serif;
}
.gallery-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: var(--section-y) 0;
  background: var(--canvas);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-story-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-story-portrait > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: none !important;
  display: block;
  filter: grayscale(15%);
}
.about-story-portrait-caption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  font-family: 'Fraunces', serif;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 70ch;
}
.about-story-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-story-text p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.70;
  margin-bottom: 18px;
}
.about-story-pull {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--accent);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  font-weight: 400;
}
.about-story-hairline {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 20px 0;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-section {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.values-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 7vh, 80px);
}
.values-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.values-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 52ch;
}
.values-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (max-width: 700px) {
  .values-header { grid-template-columns: 1fr; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-card-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--border-mid);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.value-card-accent {
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.value-card-title { /* fallback */ }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  padding: var(--section-y) 0;
  background: var(--canvas);
}
.timeline-header {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vh, 72px);
}
.timeline-header h2, .timeline-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 12px;
}
.timeline-track {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: calc(clamp(20px, 5vw, 64px) + 11px);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-mid);
}

.timeline-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-dot-col { display: flex; justify-content: center; padding-top: 4px; }
.timeline-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--canvas);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-step-content {
  padding-top: 2px;
}
.timeline-step-content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
  margin-bottom: 8px;
}
.timeline-step-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
}

/* ============================================================
   CREW
   ============================================================ */
.crew-section {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.crew-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.crew-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}
.crew-subline {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}
.crew-inner > div:first-child { margin-bottom: 48px; }
.crew-inner > div:first-child h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .crew-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .crew-grid { grid-template-columns: 1fr; }
}

.crew-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.crew-card-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.crew-card-initials {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.crew-card-body { display: flex; flex-direction: column; gap: 4px; }
.crew-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.crew-card-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.crew-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
  margin-bottom: 8px;
}
.crew-card-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.60;
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

/* ============================================================
   ABOUT BRIDGE
   ============================================================ */
.about-bridge {
  padding: var(--section-y) 0;
  background: var(--ink);
}
.about-bridge-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
@media (max-width: 900px) {
  .about-bridge-inner { grid-template-columns: 1fr; gap: 48px; }
}
.about-bridge-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 20px;
}
.about-bridge-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 20px;
}
.about-bridge-body {
  font-size: 17px;
  color: rgba(250,246,238,0.72);
  line-height: 1.68;
  max-width: 56ch;
  margin-bottom: 32px;
}
.about-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 150ms;
}
.about-bridge-link svg { width: 16px; height: 16px; }
.about-bridge-link:hover { filter: brightness(0.90); text-decoration: none; color: var(--ink); }

.about-bridge-visual {}
.about-bridge-stat-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-bridge-stat {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250,246,238,0.10);
}
.about-bridge-stat:last-child { border-bottom: none; }
.about-bridge-stat-value {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.about-bridge-stat-value span { font-size: inherit; }
.about-bridge-stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250,246,238,0.65);
  line-height: 1.5;
  max-width: 20ch;
}
.about-bridge-text .eyebrow {
  color: rgba(250,246,238,0.55);
}
.about-bridge-text .eyebrow::before { background: var(--primary); }

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.newsletter-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 700px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
}
.newsletter-copy h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.newsletter-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.newsletter-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-direction: row !important;
}
.newsletter-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.newsletter-input {
  flex: 1;
  background: var(--canvas);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
}
.newsletter-input:focus { outline: none; border-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer, footer {
  background: var(--ink);
  color: rgba(250,246,238,0.70);
  padding: 64px 0 32px;
}
.footer-inner, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-logo { flex-shrink: 0; }
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--canvas);
  letter-spacing: -0.015em;
}
.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: rgba(250,246,238,0.55);
  line-height: 1.6;
  max-width: 32ch;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(250,246,238,0.45);
  line-height: 1.6;
  max-width: 32ch;
  margin-top: 4px;
}
.footer-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  width: fit-content;
  margin-top: 8px;
  transition: filter 150ms;
}
.footer-brand > a:hover { filter: brightness(0.90); text-decoration: none; color: var(--ink); }

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title, .footer-col-heading {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.40);
  margin-bottom: 4px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a, .footer-links a {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  transition: color 150ms;
}
.footer-links li a:hover, .footer-links a:hover {
  color: var(--canvas);
  text-decoration: none;
}
.footer-links li { list-style: none; }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  font-family: 'Inter Tight', sans-serif;
}
.footer-contact-line svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-contact-line a { color: rgba(250,246,238,0.65); }
.footer-contact-line a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.footer-contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.35);
  font-family: 'Inter Tight', sans-serif;
}
.footer-contact-value {
  font-size: 14px;
  color: rgba(250,246,238,0.70);
}
.footer-contact-value a { color: rgba(250,246,238,0.70); }
.footer-contact-value a:hover { color: var(--canvas); text-decoration: none; }

.footer-address {
  font-style: normal;
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  line-height: 1.8;
}
.footer-address a { color: rgba(250,246,238,0.65); }
.footer-address a:hover { color: var(--canvas); text-decoration: none; }

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

.footer-bottom {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 24px clamp(20px, 5vw, 64px) 0;
  border-top: 1px solid rgba(250,246,238,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-copyright, .footer-legal {
  font-size: 12px;
  color: rgba(250,246,238,0.38);
  font-family: 'Inter Tight', sans-serif;
}
.footer-legal { display: flex; gap: 16px; align-items: center; }
.footer-policy-links { display: flex; gap: 16px; }
.footer-bottom a, .footer-legal a, .footer-policy-links a {
  font-size: 12px;
  color: rgba(250,246,238,0.38);
  text-decoration: none;
}
.footer-bottom a:hover, .footer-legal a:hover, .footer-policy-links a:hover {
  color: rgba(250,246,238,0.70);
  text-decoration: none;
}
.footer-logo { flex-shrink: 0; }

/* ============================================================
   MOBILE STICKY CTA PILL
   ============================================================ */
.sticky-call, .mobile-sticky-cta, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}
.sticky-call > a, .mobile-sticky-cta > a, .mobile-cta {
  background: var(--accent);
  color: var(--surface);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 150ms;
  white-space: nowrap;
  color: var(--surface) !important;
}
.sticky-call > a:hover, .mobile-sticky-cta > a:hover, .mobile-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  text-decoration: none;
}
.sticky-call svg, .mobile-sticky-cta svg, .mobile-cta svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

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

/* ============================================================
   SERVICE CARDS (generic hover — already in bento too)
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

/* ============================================================
   PROCESS (if referenced)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'Inter Tight', sans-serif;
}

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

/* ============================================================
   MISC HELPERS
   ============================================================ */
.reverse { /* layout swap via order, no transform mirror */ }
.active {}
.visible {}

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

/* SVG cap — unsized icons */
.contact-info-icon svg,
.info-icon svg,
.gallery-card-location svg,
.footer-contact-line svg,
.social-link svg,
.list-check svg,
.about-bridge-link svg,
.faq-chevron { width: 20px; height: 20px; }

.review-stars svg { width: 18px; height: 18px; fill: var(--primary); color: var(--primary); }

/* Cap all SVGs in icon-context spots */
button svg, a svg { max-width: 24px; max-height: 24px; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .cta-banner-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .about-bridge-inner,
  .contact-split,
  .newsletter-inner { gap: 40px; }
  .timeline-track::before { left: calc(clamp(20px, 5vw, 64px) + 11px); }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: clamp(52px, 12vw, 88px); }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .hero-trust-chips { gap: 6px; }
  .trust-chip { font-size: 10px; padding: 5px 10px; }
  .faq-split { gap: 32px; }
  .faq-intro { position: static; }
  .gallery-tile-secondary:last-child { display: none; }
  .gallery-preview-grid { grid-template-rows: 200px 200px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-group { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.values-intro { grid-column: 1 / -1; }
.timeline-dot-col { grid-column: 1 / -1; }
.timeline-step-content { grid-column: 1 / -1; }
.cta-banner-left { grid-column: 1 / -1; }
.about-bridge-stat-value { grid-column: 1 / -1; }
.about-bridge-stat-label { grid-column: 1 / -1; }
.newsletter-copy { grid-column: 1 / -1; }
.newsletter-form { 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; }
