@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:        #cfd5f7;
  --primary-deep:   #a3acee;
  --primary-tint:   rgba(207,213,247,0.12);
  --primary-tint20: rgba(207,213,247,0.20);
  --accent:         #cfd5f7;
  --canvas:         #F4EFE6;
  --canvas-warm:    #EDE7DA;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3D3830;
  --muted:          #7A7268;
  --muted-light:    #B0A99E;
  --border:         rgba(31,27,22,0.10);
  --border-soft:    rgba(31,27,22,0.06);

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  --section-py:     clamp(96px, 12vh, 152px);
  --content-max:    1240px;
  --wide-max:       1400px;

  --header-height:  72px;

  --ff-display:     'DM Serif Display', Georgia, serif;
  --ff-body:        'Inter Tight', system-ui, sans-serif;

  --easing:         cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ─── SMOOTH SCROLL + SCROLL PADDING ─────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADING ANCHOR RULE (verbatim) ──────────────────────────── */
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 (mandatory verbatim) ────────────────── */
img { max-width: 100%; height: auto; display: block; }

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

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

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

.hero { position: relative; overflow: hidden; }

.hero-bg, .hero > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
}

.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative;
  overflow: hidden;
  max-height: 64vh;
}

.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh;
  object-fit: cover;
}

section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
}

[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

.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 ──────────────────────────────────────────────── */
h1, h2, h3, h4, .display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }

.display { font-family: var(--ff-display); font-weight: 400; line-height: 0.98; letter-spacing: -0.01em; }

p { line-height: 1.68; }

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

/* ─── LAYOUT CONTAINERS ───────────────────────────────────────── */
.container { 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); }

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

#scrollProgress, .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary-deep);
  z-index: 9999;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms var(--easing), box-shadow 200ms var(--easing), filter 200ms;
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--ink);
}

.btn-primary:hover {
  filter: brightness(0.92);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -8px rgba(207,213,247,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(244,239,230,0.55);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(244,239,230,0.12);
  color: var(--canvas);
  text-decoration: none;
  border-color: rgba(244,239,230,0.85);
}

.btn-dark {
  background: var(--ink);
  color: var(--canvas);
}

.btn-dark:hover {
  filter: brightness(1.15);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  background: var(--canvas-warm);
  color: var(--ink);
  text-decoration: none;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: filter 200ms, transform 200ms var(--easing);
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }

/* ─── CHIPS ───────────────────────────────────────────────────── */
.chip, .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--primary-deep);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.area-chip {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ─── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow, .section-eyebrow, .page-eyebrow, .page-header-eyebrow,
.contact-eyebrow, .cta-eyebrow, .cta-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow-line, .section-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary-deep);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── LABEL ───────────────────────────────────────────────────── */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── SECTION SHARED ──────────────────────────────────────────── */
.section-header {
  max-width: 52ch;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-title { margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 46ch; }

/* ─── MOUNTED PRINT UNIQUE MOVE ───────────────────────────────── */
.mounted-print,
.service-photo-frame,
.about-portrait-frame,
.crew-feature-frame,
.featured-photo-frame {
  position: relative;
  display: block;
  box-shadow: inset 0 0 0 12px var(--canvas);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--canvas);
}

.mounted-print > img,
.service-photo-frame > img,
.about-portrait-frame > img,
.crew-feature-frame > img,
.featured-photo-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 2px);
  max-height: none;
}

/* Service block photo frames on white-surface sections need white border */
.service-section-surface .service-photo-frame {
  box-shadow: inset 0 0 0 12px var(--surface);
  background: var(--surface);
}

/* ─── 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-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.nav-pages a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-pages a[aria-current="page"] {
  color: var(--primary-deep);
  border-bottom: 2px solid var(--primary-deep);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: filter 200ms;
}

.nav-cta:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

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

  .nav-pages {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 901;
  }

  .nav-pages.open { display: flex; }

  .nav-pages a { font-size: 17px; padding: 10px 0; }

  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; border-radius: var(--radius-pill); }
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero > img,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  max-height: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(31,27,22,0.68) 0%,
    rgba(31,27,22,0.38) 50%,
    rgba(207,213,247,0.20) 100%
  );
}

.hero-booking-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: var(--primary-tint20);
  backdrop-filter: blur(12px);
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--canvas);
  border-bottom-left-radius: var(--radius-md);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-bottom: clamp(64px, 8vh, 96px);
  padding-top: clamp(80px, 10vh, 120px);
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(244,239,230,0.82);
  max-width: 44ch;
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 450;
}

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

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

.hero-trust-chips .chip {
  background: rgba(207,213,247,0.15);
  color: var(--canvas);
  border: 1px solid rgba(244,239,230,0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-title { font-size: clamp(52px, 14vw, 72px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ─── MARQUEE STRIP ───────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  position: relative;
  z-index: 1;
  max-height: 64px;
}

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

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

.marquee-item {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-item span {
  color: var(--primary-deep);
  font-size: 18px;
  line-height: 1;
}

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

/* ─── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
}

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

.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
}

.trust-chip {
  background: var(--primary-tint);
  color: var(--primary-deep);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─── SERVICES ────────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms var(--easing), box-shadow 250ms var(--easing);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18);
  color: var(--ink);
  text-decoration: none;
}

.service-card-flagship {
  grid-column: 1 / -1;
  flex-direction: row;
}

.service-card-flagship .service-card-img {
  width: 50%;
  flex-shrink: 0;
  min-height: 320px;
}

.service-card-flagship .service-card-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-img {
  position: relative;
  overflow: hidden;
  background: var(--canvas-warm);
  min-height: 220px;
  box-shadow: inset 0 0 0 12px var(--canvas);
}

.service-card-img > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,27,22,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-card-num {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.72);
}

.service-card-body {
  padding: 24px;
  flex: 1;
}

.service-card-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-card-link svg { width: 14px; height: 14px; }
.service-card-link:hover { text-decoration: none; color: var(--ink); }

.services > .container > div:last-of-type {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card-flagship { flex-direction: column; grid-column: auto; }
  .service-card-flagship .service-card-img { width: 100%; min-height: 240px; }
}

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

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────── */
.page-header {
  min-height: clamp(260px, 36vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
  padding-top: clamp(40px, 5vw, 64px);
  width: 100%;
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: var(--canvas);
  max-width: 18ch;
  line-height: 1.0;
  margin-top: 12px;
}

.page-header-sub {
  color: rgba(244,239,230,0.78);
  font-size: clamp(15px, 1.6vw, 18px);
  margin-top: 12px;
  max-width: 48ch;
}

.page-header-eyebrow, .page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ─── SERVICES PAGE ───────────────────────────────────────────── */
.services-nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-height);
  z-index: 800;
}

.services-nav-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav-inner::-webkit-scrollbar { display: none; }

.svc-nav-link {
  display: inline-block;
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}

.svc-nav-link:hover {
  color: var(--ink);
  text-decoration: none;
  border-bottom-color: var(--primary-deep);
}

.service-features { background: var(--canvas); }

.service-section-canvas { background: var(--canvas); padding: var(--section-py) 0; }
.service-section-surface { background: var(--surface); padding: var(--section-py) 0; }

.service-block {
  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-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo { position: relative; }

.service-photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--canvas);
  background: var(--canvas);
}

.service-section-surface .service-photo-frame {
  box-shadow: inset 0 0 0 12px var(--surface);
  background: var(--surface);
}

.service-photo-frame > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
}

.service-block-body > h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  margin-top: 12px;
}

.service-block-body p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 46ch;
}

.service-bullets {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-deep);
  margin-top: 6px;
  flex-shrink: 0;
}

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

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

.gallery-feature {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 12px var(--surface);
  background: var(--canvas-warm);
}

.gallery-feature > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
}

.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(31,27,22,0.70) 100%);
  pointer-events: none;
}

.gallery-feature-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 36px;
}

.gallery-feature-caption h3 {
  color: var(--canvas);
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 12px;
}

.gallery-feature-caption a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-feature-caption a:hover { text-decoration: underline; }

.gallery-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.gallery-cta-strip p { color: var(--muted); font-size: 15px; }

/* ─── GALLERY PAGE ────────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

.gallery-heading, .gallery-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}

.gallery-intro {
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 32px;
}

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

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink-mid);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
}

.filter-pill:hover, .filter-pill.active {
  background: var(--primary-tint);
  border-color: var(--primary-deep);
  color: var(--primary-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  background: var(--canvas-warm);
  box-shadow: inset 0 0 0 12px var(--canvas);
  cursor: pointer;
  transition: transform 300ms var(--easing);
  grid-column: auto;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
}

.gallery-tile:hover { transform: scale(1.02); }

.gallery-tile > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
  transition: transform 400ms var(--easing);
}

.gallery-tile:hover > img { transform: scale(1.04); }

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(31,27,22,0.72) 100%);
  opacity: 0;
  transition: opacity 250ms;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  pointer-events: none;
}

.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.tile-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.tile-title {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--canvas);
  margin-bottom: 4px;
  line-height: 1.1;
}

.tile-meta {
  font-size: 12px;
  color: rgba(244,239,230,0.72);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tile-meta svg { width: 12px; height: 12px; }

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

/* ─── FEATURED PROJECT (gallery.html) ────────────────────────── */
.featured-project {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.featured-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;
}

.featured-photo-wrap { position: relative; }

.featured-photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--surface);
  background: var(--canvas-warm);
  position: relative;
}

.featured-photo-frame > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
}

.featured-heading, .featured-text h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
  margin-top: 12px;
}

.featured-body {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 44ch;
}

.featured-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.featured-chip {
  display: inline-flex;
  background: var(--primary-tint);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

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

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

.contact-grid {
  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: start;
}

.contact-form-wrap .eyebrow,
.contact-form-wrap > p.eyebrow { margin-bottom: 14px; }

.contact-form-wrap > h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 28px;
}

.contact-info-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 28px;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

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

.info-icon svg { width: 20px; height: 20px; color: var(--primary-deep); }

.info-item-body { flex: 1; }
.info-item-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-item-value { font-size: 16px; color: var(--ink); }
.info-item-value a { color: var(--ink); }
.info-item-value a:hover { color: var(--primary-deep); }

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

.info-rating { display: flex; align-items: center; gap: 8px; }
.info-stars { display: flex; gap: 3px; }
.info-stars svg { width: 16px; height: 16px; color: var(--primary-deep); }
.info-rating-text { font-size: 14px; color: var(--muted); }

.info-value { font-size: 16px; color: var(--ink); }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-block { display: flex; flex-direction: column; gap: 16px; }
.info-card-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }

.contact-socials { display: flex; gap: 12px; margin-top: 24px; }

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas-warm);
  border-radius: 10px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background 200ms, color 200ms;
}

.social-btn:hover { background: var(--primary-tint); color: var(--primary-deep); text-decoration: none; }
.social-btn svg { width: 18px; height: 18px; }

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

/* ─── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-grid {
  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: start;
}

.contact-form-side h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 12px; margin-top: 12px; }
.contact-eyebrow { margin-bottom: 8px; }
.contact-intro { color: var(--muted); margin-bottom: 28px; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-soft);
}

.contact-info-card h3 { font-size: clamp(20px, 2.2vw, 28px); margin-bottom: 8px; }

.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea,
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
  line-height: 1.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary-deep);
  box-shadow: 0 0 0 3px rgba(207,213,247,0.25);
}

.form-group textarea, .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit { margin-top: 4px; }

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

/* ─── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--ink);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.cta-banner > img,
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.30;
  max-height: none !important;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31,27,22,0.72);
  z-index: 1;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  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: start;
}

.cta-banner-eyebrow, .cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.cta-banner-title, .cta-title, .cta-banner-inner h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--canvas);
  margin-bottom: 16px;
  margin-top: 8px;
}

.cta-banner-sub, .cta-sub {
  color: rgba(244,239,230,0.75);
  margin-bottom: 32px;
  max-width: 44ch;
}

.cta-banner-actions, .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner-copy { display: flex; flex-direction: column; }
.cta-banner-copy > div { margin-top: auto; }

.cta-banner-form {
  background: rgba(244,239,230,0.06);
  border: 1px solid rgba(244,239,230,0.12);
  border-radius: var(--radius-md);
  padding: 32px;
}

.cta-banner-form h3 {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--canvas);
  margin-bottom: 24px;
}

.cta-banner-form .form-group input,
.cta-banner-form .form-group select,
.cta-banner-form .form-group textarea,
.cta-banner-form .form-field input,
.cta-banner-form .form-field select,
.cta-banner-form .form-field textarea {
  background: rgba(244,239,230,0.08);
  border-color: rgba(244,239,230,0.16);
  color: var(--canvas);
}

.cta-banner-form .form-group input::placeholder,
.cta-banner-form .form-field input::placeholder,
.cta-banner-form .form-group textarea::placeholder,
.cta-banner-form .form-field textarea::placeholder {
  color: rgba(244,239,230,0.40);
}

.cta-banner-form .form-group label,
.cta-banner-form .form-field label {
  color: rgba(244,239,230,0.60);
}

.cta-phone-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.cta-phone-link:hover { text-decoration: underline; color: var(--primary); }

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

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

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

.about-story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-portrait-col { display: flex; flex-direction: column; gap: 14px; }

.about-portrait-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--canvas);
  background: var(--canvas-warm);
  position: relative;
}

.about-portrait-frame > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
}

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

.about-copy-col { padding-top: 8px; }
.about-copy-col > h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 20px; margin-top: 12px; }
.about-copy-col > p { color: var(--muted); margin-bottom: 16px; max-width: 54ch; }

.about-display-sub {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-portrait-frame { aspect-ratio: 4 / 3; max-height: 360px; }
}

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

.values-header { max-width: 52ch; margin-bottom: clamp(36px, 5vw, 56px); }
.values-title { font-size: clamp(28px, 3.5vw, 48px); margin-top: 10px; }

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

.value-card {
  padding: 28px;
  background: var(--canvas);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: transform 250ms var(--easing);
}

.value-card:hover { transform: translateY(-3px); }

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-icon svg { width: 22px; height: 22px; color: var(--primary-deep); }

.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-name { font-size: 18px; margin-bottom: 10px; font-family: var(--ff-display); }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

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

.journey-header { max-width: 52ch; margin-bottom: clamp(40px, 5vw, 64px); }
.journey-title { font-size: clamp(28px, 3.5vw, 48px); margin-top: 10px; }

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

.journey-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.journey-step {
  position: relative;
  padding: 48px 24px 24px;
}

.journey-dot {
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--canvas);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color 300ms;
}

.journey-step:hover .journey-dot { border-color: var(--primary-deep); }

.journey-dot-inner {
  width: 10px;
  height: 10px;
  background: var(--primary-deep);
  border-radius: 50%;
}

.journey-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.journey-step h3 { font-size: clamp(18px, 2vw, 22px); margin-bottom: 10px; }
.journey-step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.journey-step-title { font-size: clamp(18px, 2vw, 22px); }

@media (max-width: 900px) {
  .journey-track { grid-template-columns: 1fr 1fr; }
  .journey-track::before { display: none; }
}

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

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

.crew-header { max-width: 52ch; margin-bottom: clamp(40px, 5vw, 64px); }
.crew-title { font-size: clamp(28px, 3.5vw, 48px); margin-top: 10px; }

.crew-strip-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.crew-feature-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 0 12px var(--surface);
  background: var(--canvas-warm);
  position: relative;
  grid-row: 1 / 3;
}

.crew-feature-frame > img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  max-height: none !important;
}

.crew-info { display: flex; flex-direction: column; gap: 16px; }

.crew-stat-card {
  background: var(--canvas);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-soft);
}

.crew-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.0;
  color: var(--ink);
}

.crew-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.crew-quote-card {
  background: var(--primary-tint);
  border-radius: var(--radius-md);
  padding: 24px;
}

.crew-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
}

.crew-quote-attr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .crew-strip-layout { grid-template-columns: 1fr 1fr; }
  .crew-feature-frame { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 7; }
}

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

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.75);
  padding: clamp(56px, 7vw, 80px) 0 0;
}

.footer-inner, .footer-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.footer-brand, .footer-brand-block, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand img, .footer-brand-block img, .footer-brand-col img {
  max-height: 40px !important;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(244,239,230,0.55);
  max-width: 28ch;
  line-height: 1.5;
}

.footer-brand-name { font-family: var(--ff-display); font-size: 20px; color: var(--canvas); }
.footer-phone-link, .footer-phone { display: flex; align-items: center; gap: 8px; color: rgba(244,239,230,0.75); text-decoration: none; font-size: 15px; font-weight: 500; }
.footer-phone-link:hover, .footer-phone:hover { color: var(--primary); text-decoration: none; }
.footer-phone-link svg, .footer-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-col { display: flex; flex-direction: column; }

.footer-col-title, .footer-col-heading, .footer-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.40);
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.40);
  margin-bottom: 18px;
  font-family: var(--ff-body);
}

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

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

.footer-col ul li a:hover, .footer-links li a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-col-info { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(244,239,230,0.65);
}

.footer-contact-line svg { width: 15px; height: 15px; flex-shrink: 0; color: rgba(244,239,230,0.40); }
.footer-contact-line a { color: rgba(244,239,230,0.65); text-decoration: none; }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

address { font-style: normal; font-size: 14px; color: rgba(244,239,230,0.65); line-height: 1.7; }
address a { color: rgba(244,239,230,0.65); text-decoration: none; }
address a:hover { color: var(--primary); }

.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(244,239,230,0.06); border-radius: 8px; color: rgba(244,239,230,0.55); transition: background 200ms, color 200ms; text-decoration: none; }
.footer-social a:hover { background: var(--primary-tint); color: var(--primary-deep); text-decoration: none; }
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.08);
  padding: 20px clamp(20px, 5vw, 56px);
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

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

/* ─── MOBILE CALL PILL ────────────────────────────────────────── */
.mobile-call-pill, .mobile-sticky-cta, .mobile-cta, .mobile-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(31,27,22,0.45);
  transition: transform 200ms var(--easing), box-shadow 200ms;
}

.mobile-call-pill:hover, .mobile-sticky-cta:hover, .mobile-cta:hover, .mobile-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(31,27,22,0.52);
  color: var(--ink);
  text-decoration: none;
}

.mobile-call-pill svg, .mobile-sticky-cta svg, .mobile-cta svg, .mobile-call svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-cta > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

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

/* ─── ANIMATION UTILITIES ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 500ms var(--easing), transform 500ms var(--easing);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--easing), transform 500ms var(--easing);
}

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

.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }

/* ─── STATS ───────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--primary-deep);
}

.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-md);
  background: var(--canvas);
  border: 1px solid var(--border-soft);
}

.review-stars svg { color: var(--primary-deep); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; font-family: var(--ff-display); font-style: italic; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ─── FAQ ─────────────────────────────────────────────────────── */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; font-size: 22px; transition: transform 200ms; color: var(--muted); }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary-deep); }
details.faq p { margin-top: 12px; line-height: 1.6; color: var(--muted); }

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

/* ─── MISC ────────────────────────────────────────────────────── */
.on-surface { background: var(--surface) !important; }

.info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.info-value { font-size: 15px; color: var(--ink); }

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


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { 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; }
