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

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #7d7a46;
  --primary-dark:   #5e5b32;
  --primary-light:  #a8a567;
  --primary-muted:  #c8c59a;
  --accent:         #7d7a46;

  --canvas:         #FAF6EE;
  --canvas-warm:    #F3EDE0;
  --surface:        #FFFFFF;
  --surface-2:      #F7F3EB;

  --ink:            #1A1814;
  --ink-mid:        #3a3630;
  --muted:          #6B6660;
  --muted-light:    #9c9691;

  --border:         rgba(125,122,70,0.18);
  --border-light:   rgba(26,24,20,0.08);

  --header-height:  72px;
}

@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 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h4, h5, h6 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: var(--ink);
}

p { line-height: 1.68; }

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

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.wide-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: clamp(96px, 12vh, 160px) 0;
}

/* ─── EYEBROW LABEL ──────────────────────────────────────────────────────── */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow::before,
.section-eyebrow::before,
.page-eyebrow::before,
.page-header-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 200ms ease-out;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  border-color: var(--surface);
  color: var(--surface);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 14px 0;
  border-radius: 0;
}
.btn-ghost:hover { text-decoration: underline; text-underline-offset: 4px; }

.btn-phone {
  background: var(--primary);
  color: var(--surface);
  border-radius: 8px;
  padding: 16px 28px;
}
.btn-phone:hover {
  background: var(--primary-dark);
  color: var(--surface);
  text-decoration: none;
}

.btn-submit {
  background: var(--primary);
  color: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms, transform 200ms;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ─── PROGRESS BAR ───────────────────────────────────────────────────────── */
.progress-bar,
.scroll-progress,
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  width: 0%;
  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(0,0,0,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-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-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--surface) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; }

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

@media (max-width: 900px) {
  .top-nav { padding: 0 20px; gap: 12px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta span { display: none; }
  .nav-cta svg { display: block !important; }

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

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(18%) saturate(0.9);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.88) 0%,
    rgba(26,24,20,0.55) 40%,
    rgba(26,24,20,0.15) 100%
  );
}

.hero-accent-line {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  bottom: 0;
  width: 2px;
  height: 48%;
  background: var(--primary);
  z-index: 3;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 64px) clamp(72px, 9vh, 120px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

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

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(250,246,238,0.72);
  max-width: 48ch;
  line-height: 1.6;
  margin: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--canvas);
  background: transparent;
  white-space: nowrap;
}

.trust-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-title { font-size: clamp(56px, 14vw, 80px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-accent-line { display: none; }
}

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

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 15px);
  color: var(--muted);
  line-height: 1.2;
}

.marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  padding: clamp(40px, 5vh, 64px) 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}

.trust-pill svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--primary); }
.trust-pill-star svg { color: #c8a830; }

/* ─── SECTION HEADER ─────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(48px, 6vh, 80px);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services {
  padding: clamp(96px, 12vh, 160px) 0;
}

.service-blocks {
  margin-top: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 420px;
  border-top: 1px solid var(--border-light);
}

.service-block-reverse,
.service-block.service-block-reverse {
  grid-template-columns: 60% 40%;
}

.service-block-reverse .service-block-img { order: 2; }
.service-block-reverse .service-block-body { order: 1; }

.service-block-img {
  overflow: hidden;
  position: relative;
}

.service-block-img img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease-out;
}

.service-block:hover .service-block-img img { transform: scale(1.03); }

.service-block-body {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--canvas);
}

.service-num-ghost {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  user-select: none;
}

.service-block-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.service-block-body a.btn { align-self: flex-start; margin-top: 8px; }

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

@media (max-width: 900px) {
  .service-block,
  .service-block.service-block-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-block-reverse .service-block-img { order: -1; }
  .service-block-reverse .service-block-body { order: 1; }
  .service-block-img { min-height: 280px; }
  .service-block-img img { position: static; height: 280px; max-height: 280px; }
  .service-num-ghost { font-size: 56px; }
}

/* ─── SERVICE FEATURE (services.html) ────────────────────────────────────── */
.services-index {
  padding: clamp(96px, 12vh, 160px) 0;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.services-intro {
  margin-bottom: clamp(64px, 8vh, 96px);
}

.services-intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.services-intro p { font-size: 17px; color: var(--muted); max-width: 52ch; margin-top: 16px; }

.service-feature {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  min-height: 500px;
  border-top: 1px solid var(--border-light);
  margin-bottom: 0;
}

.service-feature.reverse {
  grid-template-columns: 55% 45%;
}

.service-feature-photo {
  overflow: hidden;
  position: relative;
}

.service-feature-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
}

.service-feature-body {
  padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--canvas);
}

.service-feature-index {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.04em;
  user-select: none;
  margin-bottom: -8px;
}

.service-feature-body h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.service-feature-body p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 52ch; }
.service-feature-body a { align-self: flex-start; margin-top: 8px; }

@media (max-width: 900px) {
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature.reverse .service-feature-photo { order: -1; }
  .service-feature.reverse .service-feature-body { order: 1; }
  .service-feature-photo { min-height: 260px; }
  .service-feature-photo img { height: 260px; max-height: 260px; position: static; }
}

/* ─── PHOTO BREAK ────────────────────────────────────────────────────────── */
.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 45vh, 560px);
  display: block;
}

.photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(15%) saturate(0.85);
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26,24,20,0.65) 0%,
    rgba(26,24,20,0.30) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 5vw, 64px);
}

.photo-break-pull,
.photo-break-quote {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 20ch;
  opacity: 0.95;
}

/* ─── FULLBLEED BREAK (services.html) ───────────────────────────────────── */
.fullbleed-break {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 40vh, 480px);
  display: block;
}

.fullbleed-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(18%);
}

.fullbleed-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26,24,20,0.55);
  display: flex;
  align-items: center;
  padding: clamp(32px, 5vw, 80px);
}

.fullbleed-break-text {
  max-width: 600px;
}

.fullbleed-break-text p {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin-bottom: 12px;
}

.fullbleed-break-text span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(250,246,238,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews {
  padding: clamp(96px, 12vh, 160px) 0;
  background: var(--canvas);
}

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

.review-card {
  padding: 32px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.1);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: #c8a830;
  fill: #c8a830;
}

.review-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 16px;
  font-style: italic;
}

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

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

@media (min-width: 640px) and (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ─── GALLERY (index.html) ───────────────────────────────────────────────── */
#gallery.gallery {
  padding: clamp(96px, 12vh, 160px) 0;
}

.gallery-feature {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 7;
  max-height: 520px;
}

.gallery-feature > img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
}

.gallery-feature-cta {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}

/* ─── GALLERY SECTION (gallery.html) ────────────────────────────────────── */
.gallery-section {
  padding: clamp(96px, 12vh, 160px) 0;
}

.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.gallery-count {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

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

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 150ms;
}

.filter-pill.active,
.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(125,122,70,0.06);
}

.pill-count {
  font-size: 10px;
  opacity: 0.7;
}

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

.project-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

.project-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease-out;
}

.project-card:hover .project-card-media img { transform: scale(1.04); }

.project-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--primary);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: 999px;
}

.project-card-body {
  padding: 20px 24px 24px;
}

.project-card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.project-card-location svg { width: 12px; height: 12px; }

.project-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-decoration: none;
  transition: gap 200ms;
}

.project-card-link:hover { gap: 10px; text-decoration: none; color: var(--primary-dark); }
.project-card-link svg { width: 14px; height: 14px; }

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

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

/* ─── SERVICE AREAS ──────────────────────────────────────────────────────── */
.service-areas {
  padding: clamp(96px, 12vh, 160px) 0;
  background: var(--canvas-warm);
}

.service-areas-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  margin-top: -8px;
  margin-bottom: 0;
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--ink);
  background: transparent;
  transition: all 150ms;
}

.area-pill:hover {
  background: var(--primary);
  color: var(--surface);
  text-decoration: none;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--ink);
  background: transparent;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  padding: clamp(96px, 12vh, 160px) 0;
}

.faq-list {
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
}

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

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

details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 250ms ease-out, color 150ms;
}

details[open] > summary { color: var(--primary); }
details[open] > summary .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

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

/* Legacy .faq class rule for generic details */
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; transition: transform 200ms; font-size: 22px; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ─── TEAM CTA ───────────────────────────────────────────────────────────── */
.team-cta {
  padding: clamp(80px, 10vh, 120px) 0;
  background: var(--canvas-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.team-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 28px;
}

.team-cta-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  padding: clamp(80px, 10vh, 120px) 0;
  background: var(--ink);
  text-align: center;
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-banner-inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 20ch;
}

.cta-banner-inner .section-eyebrow,
.cta-banner-inner .eyebrow {
  color: var(--primary-muted);
}

.cta-banner-inner .section-eyebrow::before,
.cta-banner-inner .eyebrow::before {
  background: var(--primary-muted);
}

.cta-banner-inner p:not(.section-eyebrow):not(.eyebrow) {
  color: rgba(250,246,238,0.72);
  font-size: 17px;
  max-width: 48ch;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-banner-phone {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--canvas);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.cta-banner-phone:hover { color: var(--primary-muted); text-decoration: none; }

.cta-banner-text { text-align: center; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact {
  padding: clamp(96px, 12vh, 160px) 0;
}

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

.contact-form-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-form-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-section {
  padding: clamp(96px, 12vh, 160px) 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

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

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

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

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

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

.form-field input,
.form-field textarea,
.form-field select,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(125,122,70,0.12);
}

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

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}

.form-guarantee svg { width: 16px; height: 16px; color: var(--primary); }

/* ─── CONTACT INFO ───────────────────────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

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

.contact-info-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--primary); }

.contact-info-card {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.info-hairline {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.info-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.info-block:last-child { border-bottom: none; }

.info-block-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-phone-big {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.info-phone-big a { color: var(--ink); text-decoration: none; }
.info-phone-big a:hover { color: var(--primary); text-decoration: none; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 14px;
}

.hours-grid dt { color: var(--muted); font-weight: 600; }
.hours-grid dd { color: var(--ink); }

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

.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 8px 14px;
  border-radius: 8px;
}

.guarantee-chip svg { width: 16px; height: 16px; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  color: var(--muted);
  transition: all 150ms;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.social-link svg { width: 16px; height: 16px; }

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

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 42vh, 480px);
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

.page-header > img {
  filter: grayscale(18%) saturate(0.85);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.82) 0%,
    rgba(26,24,20,0.35) 100%
  );
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-header-inner h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
}

.page-header-eyebrow,
.page-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,246,238,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-header-eyebrow::before,
.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

.page-header-sub {
  font-size: 15px;
  color: rgba(250,246,238,0.65);
  max-width: 48ch;
}

/* ─── FOUNDER / ABOUT ────────────────────────────────────────────────────── */
.founder-story {
  padding: clamp(96px, 12vh, 160px) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(48px, 6vw, 96px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  align-items: start;
}

.founder-portrait-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-portrait-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.founder-portrait-wrap img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  filter: grayscale(12%) saturate(0.9);
}

.founder-portrait-caption {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.founder-story-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.founder-story-col h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

.founder-hairline {
  height: 1px;
  background: var(--primary);
  opacity: 0.3;
  margin: 24px 0 20px;
  width: 64px;
}

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

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait-wrap { aspect-ratio: 4 / 3; max-height: 340px; }
}

/* ─── VALUES ─────────────────────────────────────────────────────────────── */
.values-section {
  padding: clamp(96px, 12vh, 160px) 0;
  background: var(--canvas-warm);
}

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.values-header {
  margin-bottom: clamp(48px, 6vh, 72px);
}

.values-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

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

.value-card {
  padding: 32px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12);
}

.value-card-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

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

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

/* ─── TIMELINE ───────────────────────────────────────────────────────────── */
.timeline-section {
  padding: clamp(96px, 12vh, 160px) 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.timeline-header {
  margin-bottom: clamp(48px, 6vh, 72px);
}

.timeline-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

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

.timeline-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--border-light);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  padding-right: 24px;
  padding-top: 0;
  position: relative;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 1px var(--primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.timeline-date {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-step h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

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

/* ─── CREW SECTION ───────────────────────────────────────────────────────── */
.crew-section {
  padding: clamp(96px, 12vh, 160px) 0;
  background: var(--canvas-warm);
}

.crew-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.crew-header {
  margin-bottom: clamp(48px, 6vh, 72px);
}

.crew-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.crew-photo-wrap {
  width: clamp(160px, 20vw, 240px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.crew-photo-wrap img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  filter: grayscale(18%) saturate(0.88);
}

.crew-label {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.crew-sublabel {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ─── ABOUT SPLIT ────────────────────────────────────────────────────────── */
.about-split {
  padding: clamp(96px, 12vh, 160px) 0;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(48px, 6vw, 96px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  align-items: center;
}

.about-split-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-split-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-split-text p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 24px;
}

.about-hairline {
  height: 1px;
  background: var(--primary);
  opacity: 0.3;
  width: 56px;
  margin: 20px 0;
}

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

.about-split-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-split-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  filter: grayscale(12%) saturate(0.9);
}

@media (max-width: 900px) {
  .about-split-grid { grid-template-columns: 1fr; }
  .about-split-photo { aspect-ratio: 4 / 3; order: -1; }
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.7);
  padding: clamp(64px, 8vh, 96px) 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,246,238,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250,246,238,0.55);
  max-width: 36ch;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250,246,238,0.65);
}

.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary-muted); }
.footer-contact-row a { color: rgba(250,246,238,0.65); text-decoration: none; }
.footer-contact-row a:hover { color: var(--canvas); text-decoration: none; }

.footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,246,238,0.4);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(250,246,238,0.62);
  text-decoration: none;
  transition: color 150ms;
}

.footer-links a:hover { color: var(--canvas); text-decoration: none; }

.footer-hours-text {
  font-size: 14px;
  color: rgba(250,246,238,0.55);
  line-height: 1.7;
  margin-top: 12px;
}

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

.footer-copy, .footer-cred {
  font-size: 12px;
  color: rgba(250,246,238,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

address {
  font-style: normal;
  font-size: 14px;
  color: rgba(250,246,238,0.62);
  line-height: 1.8;
}

address a { color: rgba(250,246,238,0.62); }
address a:hover { color: var(--canvas); }

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

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

/* ─── MOBILE STICKY CALL ─────────────────────────────────────────────────── */
.mobile-sticky-call,
.mobile-cta-pill,
.mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.mobile-sticky-call a,
.mobile-cta-pill,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--surface) !important;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: transform 200ms, background 200ms;
  white-space: nowrap;
}

.mobile-sticky-call a:hover,
.mobile-cta-pill:hover,
.mobile-cta a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
}

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

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

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

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

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

.scale-in {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

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

.stagger > *.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease-out, transform 550ms ease-out;
}

.stagger.visible > *.fade-up { opacity: 1; transform: none; }

/* ─── 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: 'Fraunces', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.stat-label {
  font-family: 'Inter Tight', sans-serif;
  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(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ─── MISC UTILITY ───────────────────────────────────────────────────────── */
.active { }

/* Gallery feature on index */
.gallery #gallery .section-header { margin-bottom: 40px; }

/* Scroll progress variants */
#scrollProgress.scroll-progress,
#scrollBar.scroll-bar,
#progressBar.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  width: 0%;
  z-index: 9999;
  transition: width 60ms linear;
  pointer-events: none;
}

/* ─── PRINT SAFETY ───────────────────────────────────────────────────────── */
@media print {
  .mobile-sticky-call,
  .mobile-cta-pill,
  .mobile-cta,
  .marquee-strip { display: none; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-block-img { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.contact-form-side { grid-column: 1 / -1; }
.contact-info-card { grid-column: 1 / -1; }
.form-group { 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; }
