@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');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #DCCC29;
  --primary-tint:   rgba(220,204,41,0.12);
  --primary-tint-8: rgba(220,204,41,0.08);
  --primary-dark:   #b8ab1c;
  --accent:         #54B474;
  --accent-tint:    rgba(84,180,116,0.12);
  --canvas:         #F4EFE6;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3a342b;
  --muted:          #7A7268;
  --muted-light:    #a09990;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --sand-frame:     #F4EFE6;
  --shadow-soft:    0 4px 24px -8px rgba(31,27,22,0.12);
  --shadow-card:    0 2px 0 1px rgba(31,27,22,0.06);
  --radius:         12px;
  --radius-btn:     10px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-y:      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 {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

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

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

/* Heading anchors render as headings, not links */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
p { line-height: 1.7; }
a { color: var(--ink); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-secondary, .btn-outline,
.btn-outline-light, .btn-outline-white, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 30px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, filter 150ms;
  white-space: nowrap;
}
.btn-primary, .btn-submit {
  background: var(--primary);
  color: var(--ink);
}
.btn-primary:hover, .btn-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--ink);
}
.btn-secondary {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.28);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline-light, .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.btn svg, .btn-primary svg, .btn-secondary svg,
.btn-outline svg, .btn-outline-light svg, .btn-outline-white svg, .btn-submit svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

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

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.stagger .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.12s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.19s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.26s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.33s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.40s; }
.stagger .fade-up:nth-child(7) { transition-delay: 0.47s; }
.stagger .fade-up:nth-child(8) { transition-delay: 0.54s; }
.stagger.visible .fade-up { opacity: 1; transform: none; }

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

/* ============================================================
   EMERGENCY BAR
   ============================================================ */
.emergency-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 950;
}
.emergency-bar a { color: var(--primary); text-decoration: none; }
.emergency-bar a:hover { text-decoration: underline; }
.emergency-bar svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 6px; }

/* ============================================================
   SITE HEADER & NAV
   ============================================================ */
.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: 0 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: 180px !important; width: auto !important; }
.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pages ul {
  list-style: none;
  padding: 0; margin: 0;
  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;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary);
}
.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; color: var(--ink); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .top-nav { height: 60px; padding: 0 16px; gap: 16px; }
  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    box-shadow: 0 8px 24px rgba(31,27,22,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; gap: 4px; width: 100%; }
  .nav-pages a { font-size: 17px; padding: 10px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta span:not(.nav-cta-icon) { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   MOUNTED PRINT — the signature detail
   ============================================================ */
.mounted-print {
  display: inline-block;
  padding: 12px;
  background: var(--sand-frame);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--border);
  border-radius: 4px;
  line-height: 0;
}
.mounted-print img {
  display: block;
  width: 100%;
  border-radius: 2px;
}

/* Apply mounted-print framing to any photo in the site's content areas */
.service-card-photo img,
.service-photo-wrap img,
.gallery-mount img,
.card-photo-wrap > img,
.gallery-grid-img,
.founder-portrait-wrap img,
.crew-strip-img img,
.gallery-card .card-photo-wrap img {
  outline: 12px solid var(--sand-frame);
  outline-offset: -12px;
  box-shadow: inset 0 0 0 12px var(--sand-frame);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.55) 0%,
    rgba(31,27,22,0.45) 40%,
    rgba(220,204,41,0.28) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px);
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-title, .hero-inner h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  background: rgba(220,204,41,0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

/* Booking ribbon */
.booking-ribbon {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  background: var(--primary);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(31,27,22,0.2);
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .hero-title, .hero-inner h1 { font-size: clamp(52px, 14vw, 80px); max-width: 100%; }
  .booking-ribbon { top: 16px; right: 16px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-pill {
  background: var(--primary-tint);
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  max-height: 64px;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee-item span {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION EYEBROW
   ============================================================ */
.section-eyebrow, .eyebrow, .page-eyebrow,
.page-header-eyebrow, .service-eyebrow,
.cta-banner-eyebrow, .cta-eyebrow,
.info-card-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 20px;
  margin-top: 4px;
}

/* Section heading rhythm */
.section-heading, .section-title, .section-headline,
.contact-form-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-body, .contact-form-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
  margin-top: 14px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding-block: var(--section-y);
  background: var(--surface);
}
.services-head {
  margin-bottom: 56px;
}
.services-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 12px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  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.18);
  text-decoration: none;
  color: var(--ink);
}
.service-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
  position: relative;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  /* Mounted print inner frame */
  outline: 12px solid var(--sand-frame);
  outline-offset: -12px;
  transition: transform 400ms ease-out;
}
.service-card:hover .service-card-photo img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.service-card-body h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.1;
  margin-bottom: 4px;
}
.service-card-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.service-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 12px;
  transition: gap 200ms;
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; }

/* ============================================================
   GALLERY (index page)
   ============================================================ */
.gallery-section {
  padding-block: var(--section-y);
  background: var(--canvas);
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-head h2 { font-size: clamp(36px, 5vw, 64px); }
.gallery-head a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-underline-offset: 4px;
  white-space: nowrap;
}

.gallery-mount {
  border-radius: var(--radius);
  overflow: hidden;
  /* Mounted print treatment */
  padding: 12px;
  background: var(--sand-frame);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--border);
}
.gallery-mount img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 4px;
  outline: none;
}

.gallery-cta-row {
  margin-top: 32px;
  text-align: center;
}
.gallery-cta-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  padding: 16px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms, transform 200ms;
}
.gallery-cta-row a:hover { filter: brightness(0.92); transform: translateY(-1px); }

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}
.gallery-filter-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
  flex-shrink: 0;
}
.filter-pill {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter-pill:hover {
  background: var(--primary-tint);
  border-color: var(--primary-dark);
}
.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}
.filter-count {
  font-size: 11px;
  opacity: 0.65;
}

.gallery-grid-section {
  padding-block: var(--section-y);
  background: var(--canvas);
}
.gallery-grid-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.gallery-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-grid-header h2 { font-size: clamp(28px, 4vw, 48px); }
.gallery-count-text {
  font-size: 14px;
  color: var(--muted);
}

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

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms, box-shadow 250ms;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18);
}
.card-photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  padding: 12px;
  background: var(--sand-frame);
}
.card-photo-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  border-radius: 2px;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .card-photo-wrap > img { transform: scale(1.04); }
.card-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--primary);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.card-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(31,27,22,0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.card-body {
  padding: 20px 22px;
}
.card-body h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 8px;
  line-height: 1.2;
}
.card-headline { font-size: 18px; font-weight: 500; color: var(--ink); }
.card-location {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.card-stat {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.card-stat-val { font-weight: 700; color: var(--ink); }
.card-stat-lbl { opacity: 0.7; }

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 0;
  color: var(--muted);
  font-size: 17px;
  display: none;
}
.gallery-empty.visible { display: block; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  padding-block: var(--section-y);
  background: var(--surface);
}
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.area-pill, .area-chip {
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: background 150ms, border-color 150ms;
}
.area-pill:hover, .area-chip:hover {
  background: var(--primary-tint);
  border-color: var(--primary-dark);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding-block: var(--section-y);
  background: var(--canvas);
}
.faq-section h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 12px; margin-bottom: 0; }
.faq-list {
  margin-top: 48px;
  max-width: 760px;
}
details {
  border-bottom: 1px solid var(--border-strong);
}
details:first-of-type { border-top: 1px solid var(--border-strong); }
details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 250ms, color 250ms;
}
details[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary-dark);
}
details summary::after {
  display: none;
}
.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  padding-bottom: 20px;
  max-width: 68ch;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding-block: var(--section-y);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(220,204,41,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-banner-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.cta-banner-inner h2, .cta-banner-title {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 18ch;
  margin-inline: auto;
}
.cta-banner-sub, .cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-banner-ctas, .cta-banner-actions, .cta-pair, .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-banner-phone, .cta-phone {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 18px;
}
.cta-phone-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cta-eyebrow { color: var(--primary); }
.cta-headline, .cta-banner-title { color: #fff; }

/* ============================================================
   TEAM CTA SECTION
   ============================================================ */
.team-cta-section {
  padding-block: clamp(40px, 6vh, 64px);
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.team-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.team-cta-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink);
  max-width: 56ch;
  line-height: 1.3;
}
.team-cta-text em { font-style: italic; color: var(--primary-dark); }
.team-cta-inner > a {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--ink);
  padding: 16px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms, transform 200ms;
  white-space: nowrap;
}
.team-cta-inner > a:hover { filter: brightness(0.92); transform: translateY(-1px); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding-block: var(--section-y);
  background: var(--surface);
}
.contact-section h2 { margin-top: 12px; margin-bottom: 48px; font-size: clamp(36px, 5vw, 64px); }
.contact-section .section-body { margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full-width { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(220,204,41,0.18);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; cursor: pointer; }

.contact-form button[type="submit"],
button.btn-submit {
  align-self: flex-start;
  background: var(--primary);
  color: var(--ink);
  padding: 16px 30px;
  border-radius: var(--radius-btn);
  border: none;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 150ms, transform 200ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-form button[type="submit"]:hover,
button.btn-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.contact-form button svg,
.btn-submit svg { width: 18px; height: 18px; }

/* Contact info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-item a,
.contact-info-item p {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--primary-dark); }
.contact-hours {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 150ms, border-color 150ms;
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary-tint);
  border-color: var(--primary-dark);
  color: var(--ink);
}
.social-link svg { width: 18px; height: 18px; }

/* Contact form wrap (contact.html) */
.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-block: var(--section-y);
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-wrap h2, .contact-form-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 8px;
}

/* Contact info card (contact.html) */
.contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-info-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 24px;
}
.info-card-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.info-block {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-block-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-block p, .info-block a, .info-block-phone {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  text-decoration: none;
}
.info-block a:hover { color: var(--primary-dark); }
.info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.emergency-callout {
  background: rgba(220,204,41,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.emergency-callout a { color: var(--primary-dark); text-decoration: underline; }
.service-areas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

/* Form grid (contact.html) */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .form-field.full-width { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-header > img:first-of-type,
.page-header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(31,27,22,0.65) 0%, rgba(31,27,22,0.42) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 56px);
  width: 100%;
}
.page-header-inner h1, .page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  line-height: 0.98;
  max-width: 16ch;
}
.page-header-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.page-header-sub, .page-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 16px;
}

/* ============================================================
   SERVICE FEATURE (services.html)
   ============================================================ */
.service-feature {
  padding-block: var(--section-y);
}
.service-feature:nth-child(even) { background: var(--canvas); }
.service-feature:nth-child(odd)  { background: var(--surface); }

.service-feature-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-feature-inner.photo-right { direction: rtl; }
.service-feature-inner.photo-right > * { direction: ltr; }

.service-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  /* Mounted print */
  padding: 12px;
  background: var(--sand-frame);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--border);
  line-height: 0;
}
.service-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  max-height: none;
  border-radius: 2px;
  outline: none;
}
.service-body { display: flex; flex-direction: column; gap: 16px; }
.service-body h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin-top: 12px;
}
.service-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.service-desc {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
}
.service-bullets {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.service-body > a {
  align-self: flex-start;
  background: var(--primary);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms, transform 200ms;
  margin-top: 8px;
}
.service-body > a:hover { filter: brightness(0.92); transform: translateY(-1px); }

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-story {
  padding-block: var(--section-y);
  background: var(--canvas);
}
.founder-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .founder-story-grid { grid-template-columns: 1fr; }
}
.founder-portrait-wrap {
  position: relative;
}
.founder-portrait-wrap .mounted-print {
  width: 100%;
}
.founder-portrait-wrap .mounted-print img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  max-height: 560px;
}
.founder-body { display: flex; flex-direction: column; gap: 18px; }
.founder-body h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
.founder-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; }
.founder-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  background: var(--primary-tint);
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

/* Values */
.values-section {
  padding-block: var(--section-y);
  background: var(--surface);
}
.values-header {
  margin-bottom: 48px;
}
.values-header h2 { font-size: clamp(32px, 4.5vw, 60px); margin-top: 12px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 250ms, box-shadow 250ms;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.12);
}
.value-icon {
  width: 32px !important; height: 32px !important;
  color: var(--primary-dark);
}
.value-card h3 { font-size: 20px; margin-bottom: 4px; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Journey timeline */
.journey-section {
  padding-block: var(--section-y);
  background: var(--canvas);
}
.journey-header { margin-bottom: 48px; }
.journey-header h2 { font-size: clamp(32px, 4.5vw, 60px); margin-top: 12px; }
.journey-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border-strong);
  padding-left: 32px;
  margin-left: 16px;
}
.journey-step {
  position: relative;
  padding: 24px 0 32px;
}
.journey-dot {
  position: absolute;
  left: -41px; top: 28px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary-dark);
}
.journey-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 8px;
}
.journey-step h3 { font-size: clamp(18px, 2vw, 24px); margin-bottom: 8px; }
.journey-step p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Crew strip */
.crew-section {
  padding-block: var(--section-y);
  background: var(--surface);
}
.crew-header { margin-bottom: 40px; }
.crew-header h2 { font-size: clamp(32px, 4.5vw, 60px); margin-top: 12px; }
.crew-strip-img {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 12px;
  background: var(--sand-frame);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--border);
  line-height: 0;
}
.crew-strip-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 2px;
  outline: none;
}
.crew-caption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer, .site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(64px, 8vw, 96px);
}
.footer-grid, .footer-inner .footer-grid, .footer-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .footer-grid, .footer-inner, .footer-inner .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .footer-grid, .footer-inner, .footer-inner .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand img, .footer-logo {
  max-height: 48px !important;
  max-width: 160px !important;
  width: auto !important;
  opacity: 0.9;
  object-fit: contain !important;
}
.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 28ch;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-line, .footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-line a, .footer-contact-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line a:hover, .footer-contact-item a:hover {
  color: var(--primary);
  text-decoration: none;
}
.footer-contact-item svg, .footer-contact-line svg {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--primary);
}
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col-title, .footer-col-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: block;
}
.footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links, .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul li a:hover { color: var(--primary); text-decoration: none; }

.footer-hours-block { display: flex; flex-direction: column; gap: 6px; }
.footer-hours-line, .footer-hours-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-hours-block strong { color: rgba(255,255,255,0.75); font-weight: 600; }

.footer-col address { font-style: normal; display: flex; flex-direction: column; gap: 8px; }
.footer-col address span, .footer-col address p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.footer-col address a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-col address a:hover { color: var(--primary); }

.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 150ms, color 150ms;
  text-decoration: none;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block: 24px;
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a, .footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 150ms;
}
.footer-legal a:hover, .footer-bottom-links a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ============================================================
   MOBILE CALL PILL (MANDATORY)
   ============================================================ */
.mobile-call-pill,
.sticky-call,
.mobile-sticky-cta,
.mobile-cta-sticky {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(31,27,22,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 200ms, filter 200ms;
}
.mobile-call-pill:hover,
.sticky-call:hover,
.mobile-sticky-cta:hover,
.mobile-cta-sticky:hover {
  transform: translateY(-2px);
  filter: brightness(0.92);
  text-decoration: none;
  color: var(--ink);
}
.mobile-call-pill svg,
.sticky-call svg,
.mobile-sticky-cta svg,
.mobile-cta-sticky svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
/* Show on mobile only */
.mobile-call-pill,
.sticky-call,
.mobile-sticky-cta,
.mobile-cta-sticky {
  display: none;
}
@media (max-width: 900px) {
  .mobile-call-pill,
  .sticky-call,
  .mobile-sticky-cta,
  .mobile-cta-sticky {
    display: flex;
  }
}
/* The inner <a> inside .mobile-sticky-cta / .mobile-cta-sticky */
.mobile-sticky-cta > a,
.mobile-cta-sticky > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.mobile-sticky-cta > a svg,
.mobile-cta-sticky > a svg { width: 20px; height: 20px; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary-dark);
  font-family: 'DM Serif Display', serif;
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  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);
  border: 1px solid var(--border);
}
.review-stars svg {
  color: var(--primary-dark);
  width: 18px; height: 18px;
}
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.full-width { width: 100%; }
.section { padding-block: var(--section-y); }

/* SVG size safety — cap any unsized SVG inside a flex/grid parent */
svg { flex-shrink: 0; }
.top-nav svg { width: 24px; height: 24px; }
.hero-ctas svg { width: 18px; height: 18px; }
.cta-banner svg { width: 20px; height: 20px; }
.footer-bottom svg { width: 16px; height: 16px; }


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