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

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #E0CDAA;
  --primary-tint:   rgba(224,205,170,0.12);
  --primary-tint-20:rgba(224,205,170,0.20);
  --accent:         #63482F;
  --accent-dark:    #4A3320;
  --canvas:         #F4EFE6;
  --canvas-dark:    #EAE3D6;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3D3729;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --sand-frame:     #F4EFE6;
  --shadow-soft:    0 8px 32px -8px rgba(31,27,22,0.14);
  --shadow-card:    0 2px 12px -2px rgba(31,27,22,0.10);
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 152px);
  --content-max:    1240px;
  --wide-max:       1400px;
}

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

/* ─── 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', system-ui, sans-serif; font-weight: 450; line-height: 1.68; -webkit-font-smoothing: antialiased; }

/* ─── HEADING-ANCHOR OVERRIDE ───────────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a { color: inherit; text-decoration: none; border-bottom: 0; }

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

/* ─── TYPOGRAPHY SCALE ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 34px); line-height: 1.1; }
h4 { font-size: clamp(16px, 2vw, 22px); line-height: 1.2; }
p  { line-height: 1.7; }

/* ─── LAYOUT CONTAINERS ─────────────────────────────────────────────────── */
.container    { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--wide-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wrap         { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.bleed        { width: 100%; max-width: none; }

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

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn, .btn-primary, .btn-accent, .btn-ghost, .btn-outline, .btn-sand, .btn-submit, .btn-primary-sm, .btn-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: 10px;
  padding: 16px 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 160ms ease, transform 120ms ease, box-shadow 160ms ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--canvas);
  box-shadow: 0 4px 18px -4px rgba(99,72,47,0.38);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 24px -6px rgba(99,72,47,0.44); color: var(--canvas); text-decoration: none; }
.btn-accent {
  background: var(--accent);
  color: var(--canvas);
  box-shadow: 0 4px 18px -4px rgba(99,72,47,0.38);
}
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-1px); color: var(--canvas); text-decoration: none; }
.btn-ghost {
  background: rgba(244,239,230,0.18);
  color: var(--canvas);
  border: 1.5px solid rgba(244,239,230,0.55);
}
.btn-ghost:hover { background: rgba(244,239,230,0.28); color: var(--canvas); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--primary-tint); text-decoration: none; }
.btn-sand {
  background: var(--primary);
  color: var(--ink);
}
.btn-sand:hover { filter: brightness(0.95); color: var(--ink); text-decoration: none; }
.btn-submit {
  background: var(--accent);
  color: var(--canvas);
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 18px -4px rgba(99,72,47,0.35);
  border: none;
}
.btn-submit:hover { filter: brightness(1.08); transform: translateY(-1px); text-decoration: none; color: var(--canvas); }
.btn-submit svg { width: 18px; height: 18px; }
.btn-primary-sm {
  background: var(--accent);
  color: var(--canvas);
  padding: 10px 20px;
  font-size: 13px;
}
.btn-primary-sm:hover { filter: brightness(1.08); color: var(--canvas); text-decoration: none; }
.btn-banner-cta {
  background: var(--canvas);
  color: var(--ink);
  font-weight: 700;
}
.btn-banner-cta:hover { filter: brightness(0.96); text-decoration: none; color: var(--ink); }

/* ─── EYEBROW LABEL ─────────────────────────────────────────────────────── */
.eyebrow, .section-eyebrow, .page-eyebrow, .page-header-eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow-line {
  display: inline-block;
}
.eyebrow::before, .section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 10px;
}
.section-sub { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.65; margin-top: 12px; max-width: 56ch; }

/* ─── CHIP / PILL ────────────────────────────────────────────────────────── */
.chip, .info-pill, .area-chip {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── MOUNTED PRINT FRAME (unique move) ──────────────────────────────────── */
.mounted-frame {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--sand-frame), 0 4px 24px -6px rgba(31,27,22,0.18);
}
.mounted-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}
/* Apply mounted-frame feel to service panel images, gallery photos, crew */
.service-panel-img,
.gallery-photo-wrap,
.crew-frame {
  box-shadow: inset 0 0 0 12px var(--sand-frame), 0 6px 28px -8px rgba(31,27,22,0.16);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-panel-img img,
.gallery-photo-wrap img,
.crew-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.scale-in   { opacity: 0; transform: scale(0.94); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }

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

/* ─── SITE HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(31,27,22,0.08);
}
.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
}
.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms;
  border-bottom: 2px solid transparent;
}
.nav-pages a:hover { color: var(--accent); text-decoration: none; border-bottom-color: var(--primary); }
.nav-pages a[aria-current="page"] { color: var(--accent); border-bottom: 2px solid var(--primary); }
.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 160ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }
.nav-cta svg, .nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta-label { display: inline; }
.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;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero-overlay {
  background: linear-gradient(
    145deg,
    rgba(31,27,22,0.65) 0%,
    rgba(31,27,22,0.30) 40%,
    rgba(224,205,170,0.22) 100%
  );
}
.hero-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(48px,7vw,96px) clamp(24px,4vw,56px) clamp(64px,8vh,112px);
}
.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 24px;
}
h1.hero-title { font-size: clamp(72px, 9vw, 132px); }
.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}
.hero-eyebrow::before { display: none; }
.hero-sub {
  color: rgba(244,239,230,0.82);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  max-width: 48ch;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-chip {
  background: var(--primary-tint-20);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.trust-pill {
  background: var(--primary-tint);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.services-head {
  margin-bottom: 40px;
}
.services-head h2 {
  font-size: clamp(36px, 4.5vw, 60px);
}
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.service-tab {
  background: rgba(31,27,22,0.05);
  color: var(--ink-mid);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.service-tab:hover { background: var(--primary-tint); color: var(--accent); }
.service-tab.active {
  background: var(--accent);
  color: var(--canvas);
}
.services-panels { position: relative; min-height: 460px; }
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 460px;
}
.service-panel.active { display: grid; }
.service-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 0;
  box-shadow: none;
}
.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  border-radius: 0;
  box-shadow: inset 0 0 0 12px var(--sand-frame);
}
.service-panel-body {
  padding: clamp(32px,4vw,52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.service-panel-body .panel-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 20px;
}
.service-panel-body p {
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}
.service-panel-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--canvas);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  text-decoration: none;
  transition: filter 160ms;
  align-self: flex-start;
}
.service-panel-body a:hover { filter: brightness(1.08); text-decoration: none; color: var(--canvas); }

/* ─── SERVICE FEATURE (services.html) ───────────────────────────────────── */
.service-feature {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}
.service-feature:nth-child(even) { background: var(--surface); }
.service-feature:nth-child(odd)  { background: var(--canvas); }
.service-feature-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.service-feature:nth-child(even) .service-feature-grid {
  direction: rtl;
}
.service-feature:nth-child(even) .service-feature-grid > * {
  direction: ltr;
}
.service-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--sand-frame), 0 8px 32px -8px rgba(31,27,22,0.16);
  aspect-ratio: 4/3;
}
.service-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: none;
  border-radius: calc(var(--radius) - 2px);
}
.service-index-num {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.service-body { display: flex; flex-direction: column; gap: 16px; }
.service-body h2 { font-size: clamp(28px, 3.5vw, 48px); line-height: 1.05; }
.service-body p { color: var(--ink-mid); line-height: 1.7; }
.service-bullets { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-bullets li { color: var(--ink-mid); font-size: 15px; line-height: 1.6; }
.service-bullets li::marker { color: var(--accent); }
.service-body a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--canvas);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: filter 160ms;
  margin-top: 8px;
}
.service-body a:hover { filter: brightness(1.08); text-decoration: none; color: var(--canvas); }
.service-body .eyebrow, .service-body span.eyebrow { margin-bottom: 8px; }

/* ─── SERVICE AREAS ──────────────────────────────────────────────────────── */
.service-areas {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.service-areas-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.service-areas-head { margin-bottom: 40px; }
.service-areas-head h2 { font-size: clamp(32px, 4vw, 56px); }
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.area-pill-more { background: var(--canvas-dark); color: var(--muted); }
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.faq-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.faq-head { margin-bottom: 48px; }
.faq-head h2 { font-size: clamp(32px, 4vw, 56px); }
.faq-list { display: flex; flex-direction: column; }
details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  gap: 16px;
  transition: color 150ms;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 220ms ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
details[open] summary { color: var(--accent); }
.faq-answer {
  padding: 0 0 22px;
  color: var(--ink-mid);
  line-height: 1.72;
  font-size: 15px;
}

/* ─── TEAM CTA ───────────────────────────────────────────────────────────── */
.team-cta {
  background: var(--accent);
  padding: clamp(64px, 8vh, 96px) 0;
}
.team-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.team-cta-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--canvas);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.team-cta-sub {
  color: rgba(244,239,230,0.75);
  font-size: 15px;
  margin-top: 12px;
  max-width: 48ch;
}
.team-cta-inner a {
  background: var(--primary);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter 160ms;
  display: inline-flex;
  align-items: center;
}
.team-cta-inner a:hover { filter: brightness(0.95); text-decoration: none; color: var(--ink); }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.contact-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.contact-inner, .contact-form-wrap ~ * {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.contact-inner {
  padding: 0 clamp(20px,4vw,48px);
}
.contact-head { margin-bottom: 52px; }
.contact-head h2 { font-size: clamp(32px, 4vw, 56px); }
.contact-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(32px,5vw,72px);
  align-items: start;
}
.contact-form-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}
.contact-form-wrap span.section-eyebrow,
.contact-form-wrap h2 {
  grid-column: 1 / -1;
}
.contact-form {
  background: var(--canvas);
  padding: clamp(28px,4vw,48px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 150ms;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit { display: flex; }
.form-submit button { width: 100%; justify-content: center; }
.contact-info, .contact-info-card {
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(28px,4vw,44px);
}
.contact-info h4, .contact-info-card h3 {
  font-size: clamp(20px,2.4vw,28px);
  margin-bottom: 28px;
}
.info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: 0; }
.info-block h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 4px;
}
.info-block a, .info-block p { font-size: 15px; color: var(--ink-mid); }
.info-block a:hover { color: var(--accent); }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: 0; }
.info-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.info-value { font-size: 15px; color: var(--ink-mid); line-height: 1.55; }
.info-value a { color: var(--ink-mid); }
.info-value a:hover { color: var(--accent); }

/* ─── SOCIAL ROW ─────────────────────────────────────────────────────────── */
.social-row, .footer-social-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.social-link, .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--accent);
  transition: background 160ms, color 160ms;
}
.social-link:hover, .footer-social:hover {
  background: var(--accent);
  color: var(--canvas);
  text-decoration: none;
}
.social-link svg, .footer-social svg { width: 18px; height: 18px; }

/* ─── PAGE HEADER (subpages) ─────────────────────────────────────────────── */
.page-header {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,27,22,0.70) 0%, rgba(99,72,47,0.40) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(40px,6vh,72px) clamp(24px,4vw,56px);
}
.page-header-eyebrow, .page-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.page-header-h1, .page-header-inner h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 16px;
}
.page-header-sub { color: rgba(244,239,230,0.78); font-size: clamp(14px,1.4vw,18px); max-width: 52ch; }

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: clamp(64px,8vh,100px) 0;
}
.cta-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2, .cta-banner-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--canvas);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.cta-banner-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.cta-banner-sub { color: rgba(244,239,230,0.78); font-size: 15px; margin-top: 10px; }
.cta-banner-phone {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms;
}
.cta-banner-phone:hover { color: var(--canvas); text-decoration: none; }
.cta-banner-left { flex: 1; min-width: 280px; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: filter 160ms;
}
.cta-banner-actions a:first-child { background: var(--primary); color: var(--ink); }
.cta-banner-actions a:first-child:hover { filter: brightness(0.95); text-decoration: none; color: var(--ink); }
.cta-banner-actions a:last-child {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(244,239,230,0.55);
}
.cta-banner-actions a:last-child:hover { background: rgba(244,239,230,0.12); text-decoration: none; color: var(--canvas); }

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.gallery-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.gallery-header-row h2 { font-size: clamp(28px,3.5vw,48px); }
.gallery-count-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  background: rgba(31,27,22,0.06);
  color: var(--ink-mid);
  border: none;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.filter-pill:hover { background: var(--primary-tint); color: var(--accent); }
.filter-pill.active { background: var(--accent); color: var(--canvas); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  display: flex;
  flex-direction: column;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(31,27,22,0.20); }
.gallery-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
  box-shadow: inset 0 0 0 10px var(--sand-frame);
}
.gallery-photo-wrap img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.gallery-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: var(--primary);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.gallery-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.gallery-card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.gallery-card-body h3 {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.2;
}
.gallery-card-title { font-family: 'DM Serif Display', Georgia, serif; font-size: 18px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.gallery-card-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.gallery-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.gallery-meta-item svg { width: 14px; height: 14px; }

/* ─── FOUNDER / ABOUT ────────────────────────────────────────────────────── */
.founder-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.founder-portrait { display: flex; flex-direction: column; gap: 16px; }
.mounted-frame {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--sand-frame), 0 8px 32px -8px rgba(31,27,22,0.18);
  aspect-ratio: 3/4;
}
.mounted-frame img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.founder-caption {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding-top: 8px;
}
.founder-body { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.founder-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
}
.founder-text p { color: var(--ink-mid); line-height: 1.72; font-size: 16px; }
.founder-pull {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 20px 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.4;
}
.founder-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.founder-chip {
  background: var(--primary-tint);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── VALUES ─────────────────────────────────────────────────────────────── */
.values-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.values-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.values-headline { font-size: clamp(32px, 4vw, 56px); }
.values-intro { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 44ch; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18); }
.value-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; }
.value-icon svg { width: 40px; height: 40px; }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── TIMELINE ───────────────────────────────────────────────────────────── */
.timeline-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.timeline-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.timeline-headline { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
.timeline-intro-body { color: var(--muted); font-size: 15px; line-height: 1.7; margin-top: 16px; }
.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-strong);
}
.timeline-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}
.tl-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--canvas);
}
.tl-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.timeline-step h3 { font-size: 20px; margin-bottom: 8px; }
.tl-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── CREW ───────────────────────────────────────────────────────────────── */
.crew-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.crew-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.crew-headline { font-size: clamp(28px, 3.5vw, 48px); }
.crew-sub { color: var(--muted); font-size: 15px; max-width: 44ch; }
.crew-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--sand-frame), 0 8px 32px -8px rgba(31,27,22,0.16);
  max-height: 540px;
  position: relative;
}
.crew-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 540px;
}
.crew-caption-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.crew-caption-chip {
  background: var(--primary-tint);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── CREDENTIALS ────────────────────────────────────────────────────────── */
.credentials-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.credentials-header { margin-bottom: 52px; }
.credentials-headline { font-size: clamp(28px, 3.5vw, 48px); }
.credentials-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.cred-badge {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.cred-badge:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18); }
.cred-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.cred-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.2;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.78);
  padding: clamp(64px,8vh,96px) 0 0;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,239,230,0.12);
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: clamp(20px,4vw,48px);
  padding-right: clamp(20px,4vw,48px);
}
.footer-brand-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--canvas);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(244,239,230,0.60);
  line-height: 1.55;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(244,239,230,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-col-title, .footer-col h4, .footer-col h5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.45);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(244,239,230,0.72);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li { font-size: 14px; color: rgba(244,239,230,0.72); }
.footer-col li a:hover { color: var(--primary); }
.footer-contact-item, .footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(244,239,230,0.72);
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-contact-item:hover, .footer-contact-line:hover { color: var(--primary); text-decoration: none; }
.footer-contact-item svg, .footer-contact-line svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { font-size: 14px; color: rgba(244,239,230,0.72); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-contact-list a { color: rgba(244,239,230,0.72); text-decoration: none; }
.footer-contact-list a:hover { color: var(--primary); }
.footer-phone-link { color: var(--primary) !important; font-weight: 600; }
.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px clamp(20px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(244,239,230,0.40); }
.footer-bottom p { font-size: 13px; color: rgba(244,239,230,0.40); }
.footer-bottom span { font-size: 13px; color: rgba(244,239,230,0.40); }
.footer-bottom-badges, .footer-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge, .trust-badge-footer {
  background: rgba(244,239,230,0.08);
  color: rgba(244,239,230,0.55);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  background: rgba(224,205,170,0.12);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-logo img, .footer-brand img { max-height: 44px !important; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand-logo { max-height: 44px; width: auto; margin-bottom: 12px; }
.footer-social-row { display: flex; gap: 10px; margin-top: 16px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(244,239,230,0.10);
  color: rgba(244,239,230,0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms;
}
.footer-social:hover { background: var(--accent); color: var(--canvas); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }

/* ─── MOBILE CALL PILL ───────────────────────────────────────────────────── */
.mobile-call-pill, .mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}
.mobile-call-pill a, .mobile-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 160ms, transform 120ms;
}
.mobile-call-pill a:hover, .mobile-cta a:hover { filter: brightness(1.08); transform: translateY(-2px); text-decoration: none; color: var(--canvas); }
.mobile-call-pill svg, .mobile-cta svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .mobile-call-pill, .mobile-cta { display: none; }
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee {
  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(--surface);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--ink);
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 24px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

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

/* ─── REVIEW CARDS ───────────────────────────────────────────────────────── */
.review-card { padding: 28px; border-radius: 12px; background: var(--primary-tint); }
.review-stars svg { color: var(--accent); 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; }

/* ─── SERVICE CARD HOVER ─────────────────────────────────────────────────── */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

/* ─── SVG SIZE CAPS ──────────────────────────────────────────────────────── */
svg { max-width: 100%; }
.nav-cta svg { width: 18px; height: 18px; }
.nav-cta-icon { width: 18px; height: 18px; display: inline-flex; }
.faq-chevron { width: 20px; height: 20px; }
.gallery-meta-item svg { width: 14px; height: 14px; }
.value-icon svg { width: 40px; height: 40px; }
.info-icon svg { width: 20px; height: 20px; }
.btn-submit svg { width: 18px; height: 18px; }
.footer-contact-item svg { width: 16px; height: 16px; }
.footer-contact-line svg { width: 16px; height: 16px; }
.mobile-call-pill svg { width: 20px; height: 20px; }
.social-link svg { width: 18px; height: 18px; }
.footer-social svg { width: 16px; height: 16px; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ─── READABLE TABLE CELLS ───────────────────────────────────────────────── */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price { background: var(--accent); color: var(--canvas); }
.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price { background: transparent; color: var(--ink-mid); }

/* ─── MOBILE RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* NAV */
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    flex-direction: column;
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }

  /* HERO */
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(52px, 12vw, 88px); }

  /* SERVICES PANEL */
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 240px; aspect-ratio: 4/3; }
  .service-panel-img img { position: relative; width: 100%; height: 240px; }

  /* ABOUT / FOUNDER */
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .mounted-frame { aspect-ratio: 4/3; max-height: 340px; }

  /* SERVICE FEATURE */
  .service-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-feature:nth-child(even) .service-feature-grid { direction: ltr; }

  /* VALUES */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* TIMELINE */
  .timeline-layout { grid-template-columns: 1fr; gap: 40px; }

  /* GALLERY */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }

  /* CTA BANNER */
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .team-cta-inner { flex-direction: column; }

  /* CREDENTIALS */
  .credentials-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { justify-content: center; text-align: center; }
  .services-tabs { gap: 8px; }
  .service-tab { font-size: 12px; padding: 8px 16px; }
  .credentials-band { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1200px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.timeline-track { grid-column: 1 / -1; }
.tl-dot { grid-column: 1 / -1; }
.tl-tag { grid-column: 1 / -1; }
.tl-title { grid-column: 1 / -1; }
.tl-body { grid-column: 1 / -1; }
.section-eyebrow { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
