@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:        #D4640C;
  --primary-dark:   #b85509;
  --accent:         #815604;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3d3830;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --border-brand:   rgba(212,100,12,0.35);
  --sand:           #F0EBE0;
  --sand-dark:      #E4DDD0;
  --cream-overlay:  rgba(250,246,238,0.94);
  --shadow-sm:      0 2px 8px -2px rgba(26,24,20,0.10);
  --shadow-md:      0 8px 28px -8px rgba(26,24,20,0.16);
  --shadow-lg:      0 20px 48px -12px rgba(26,24,20,0.22);
  --radius:         8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-y:      clamp(96px, 12vh, 160px);
  --content-max:    1280px;
  --wide-max:       1400px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

/* ─── UNIVERSAL IMAGE CAP ────────────────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-hairline) {
  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; }
}

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

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

body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { max-width: 68ch; }

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

ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ─── LAYOUT CONTAINERS ──────────────────────────────────────────────────── */
.container, .section-inner, .contact-inner, .trust-strip-inner,
.trust-inner, .footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  width: 100%;
}
.wide-container { max-width: var(--wide-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.inner { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

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

/* ─── EYEBROW ────────────────────────────────────────────────────────────── */
.eyebrow, .section-eyebrow, .page-eyebrow, .service-eyebrow,
.page-header-eyebrow, .cta-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.2;
}
.eyebrow-bullet {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ─── SITE HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(26,24,20,0.08);
}
.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { flex: 0 0 auto; display: flex; align-items: center; text-decoration: none; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-logo:hover { text-decoration: none; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.nav-pages ul, #navLinks {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
#navLinks { flex: 1; justify-content: center; }
.nav-pages li a, #navLinks li a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-pages li a:hover, #navLinks li a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages li a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta svg { width: 18px; height: 18px; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 40px);
    gap: 4px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 901;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #navLinks.open { display: flex; }
  #navLinks li a { font-size: 17px; padding: 10px 0; }
  .top-nav { position: relative; }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 8vh, 96px);
}
#hero.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.18) 0%,
    rgba(10,8,6,0.52) 45%,
    rgba(10,8,6,0.78) 100%
  );
}
.hero-hairline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  margin-left: clamp(20px, 6vw, 80px);
}
.hero-inner .eyebrow, .hero-eyebrow {
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
}
.hero-inner .eyebrow .eyebrow-bullet, .hero-eyebrow .eyebrow-bullet {
  background: var(--primary);
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: 32px;
  font-weight: 450;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 200ms, transform 200ms, box-shadow 200ms;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary, .btn-cta {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-cta:hover { filter: brightness(0.92); color: #fff; }
.btn-ghost, .btn-outline, .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-ghost:hover, .btn-outline:hover, .btn-outline-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
  color: #fff;
}
.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 200ms;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { filter: brightness(0.92); }
.btn-submit svg { width: 18px; height: 18px; }

/* ─── TRUST CHIPS (hero) ─────────────────────────────────────────────────── */
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}
.hero-trust-chips .trust-chip, .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  line-height: 1.2;
}

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner, .trust-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-mid);
  white-space: nowrap;
}
.trust-badge-star { color: var(--primary); font-size: 14px; }

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

/* ─── SECTION BASE ───────────────────────────────────────────────────────── */
.section-inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }
.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  margin-top: 12px;
  line-height: 1.6;
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services { background: var(--canvas); }
.services .section-inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.service-tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
  line-height: 1.2;
}
.service-tab:hover {
  background: var(--sand);
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.services-panels { position: relative; min-height: 460px; }
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  min-height: 460px;
}
.service-panel.active { display: grid; }

.service-panel > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  position: absolute;
  left: 0; top: 0;
  grid-column: 1;
  grid-row: 1;
}
.service-panel {
  position: relative;
}
.service-panel-body {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  position: relative;
  z-index: 2;
}
/* override: image as first child in service-panel needs special treatment */
.service-panel > img:first-of-type {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
}
/* Re-do service panel properly with a cleaner approach */
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  min-height: 460px;
  align-items: stretch;
}
.service-panel.active { display: grid; }
.service-panel > img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 460px;
  grid-column: 1;
  grid-row: 1;
}
.service-panel-body {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--surface);
}
.service-panel-title {
  font-size: clamp(22px, 3vw, 36px);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 4px 0 8px;
}
.service-panel-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 52ch;
}
.service-panel-body .btn-primary,
.service-panel-body .btn-cta {
  align-self: flex-start;
  margin-top: 8px;
}
.service-panel-body > a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 8px;
  transition: filter 200ms;
}
.service-panel-body > a:hover { filter: brightness(0.92); text-decoration: none; color: #fff; }

.services-view-all { text-align: center; margin-top: 40px; }
.services-view-all a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--primary);
  text-decoration: underline; text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .service-panel, .service-panel.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel > img { max-height: 240px; height: 240px; grid-column: 1; grid-row: 1; }
  .service-panel-body { grid-column: 1; grid-row: 2; }
}

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

/* ─── FULL BLEED BREAK ───────────────────────────────────────────────────── */
.full-bleed-break {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  overflow: hidden;
}
.full-bleed-break > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  max-height: none;
}
.full-bleed-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.68) 0%, rgba(10,8,6,0.28) 100%);
  display: flex;
  align-items: center;
  padding: 0 clamp(28px, 6vw, 96px);
  z-index: 1;
}
.full-bleed-break-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery { background: var(--canvas); }
.gallery .section-inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }

.gallery-featured {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/7;
  position: relative;
}
.gallery-featured > img,
.gallery-featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-featured:hover img { transform: scale(1.02); }

.gallery-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery-cta-bar p { font-size: 15px; color: var(--muted); margin: 0; }
.gallery-cta-bar a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  color: var(--primary); text-decoration: underline; text-underline-offset: 4px;
}

/* gallery-full (gallery.html) */
.gallery-full { background: var(--canvas); }
.gallery-full .inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }
.gallery-header-row { margin-bottom: 40px; }
.gallery-header-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all 180ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-tile {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  text-decoration: none;
  aspect-ratio: 4 / 3;
  position: relative;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-tile.featured { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }

.gallery-tile-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.gallery-tile-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-tile:hover .gallery-tile-img-wrap > img { transform: scale(1.04); }
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.65) 0%, transparent 55%);
  z-index: 1;
  opacity: 0;
  transition: opacity 250ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-tag {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  background: rgba(10,8,6,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.gallery-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 16px;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 250ms, transform 250ms;
}
.gallery-tile:hover .gallery-tile-body { opacity: 1; transform: translateY(0); }
.gallery-tile-body h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gallery-tile-location {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.75); font-size: 12px;
  margin: 0;
}
.gallery-tile-location svg { width: 13px; height: 13px; flex-shrink: 0; }
.gallery-tile-body p { color: rgba(255,255,255,0.70); font-size: 12px; margin: 0; }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.featured { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile.featured { grid-column: 1; }
}

/* ─── SERVICE AREAS ──────────────────────────────────────────────────────── */
.service-areas { background: var(--surface); border-top: 1px solid var(--border); }
.service-areas .section-inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  background: var(--canvas);
}
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-mid);
  background: var(--canvas);
}
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.service-areas-note { font-size: 14px; color: var(--muted); margin-top: 8px; max-width: 60ch; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq { background: var(--canvas); }
.faq .section-inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }
.faq-list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  transition: color 150ms;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms, color 150ms;
}
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 70ch;
}

/* Also support generic details.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; transition: transform 200ms; }
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.team-cta { background: var(--sand); }
.team-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.team-cta-inner > a {
  display: block;
  text-decoration: none;
}
.team-cta-left {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  grid-column: 1;
}
.team-cta-left > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.team-cta-left > div {
  position: relative; z-index: 2;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(to top, rgba(10,8,6,0.7) 0%, transparent 60%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team-cta-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.team-cta-sub { font-size: 15px; color: rgba(255,255,255,0.80); max-width: 44ch; }
.team-cta-portrait {
  grid-column: 2;
  overflow: hidden;
}
.team-cta-portrait img { width: 100%; height: 100%; object-fit: cover; max-height: none; }

@media (max-width: 760px) {
  .team-cta-inner { grid-template-columns: 1fr; }
  .team-cta-left { min-height: 260px; }
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact { background: var(--surface); }
.contact .section-inner { padding: var(--section-y) clamp(20px, 4vw, 56px); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-form-group, .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.contact-form-group label, .form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.contact-form-group input,
.contact-form-group textarea,
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  color: var(--ink);
  font-size: 15px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
  width: 100%;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,100,12,0.12);
}
.contact-form-group textarea,
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(212,100,12,0.08);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
  margin-top: 16px;
}
.form-success.visible { display: block; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--canvas);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-info-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.10em; color: var(--muted); margin-bottom: 3px;
}
.contact-info-value {
  font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4;
}
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--primary); }

/* contact.html */
.contact-section { background: var(--surface); }
.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-form-side { grid-column: 1; }
.contact-info-side { grid-column: 2; }
.contact-form-heading {
  font-size: clamp(24px, 3vw, 40px);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-form-sub { font-size: 16px; color: var(--muted); margin-bottom: 28px; max-width: 52ch; }
.section-eyebrow { margin-bottom: 12px; }

.info-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.10em; color: var(--muted); margin-bottom: 4px;
}
.info-value {
  font-size: 16px; color: var(--ink); line-height: 1.5; margin-bottom: 16px;
}
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary); }
.info-phone-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.info-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.info-hours-grid { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.info-hours-row { display: flex; gap: 16px; font-size: 14px; }
.info-hours-row .day { font-weight: 600; min-width: 100px; color: var(--ink); }
.info-hours-row .time { color: var(--muted); }

@media (max-width: 760px) {
  .contact-grid, .contact-inner { grid-template-columns: 1fr; }
  .contact-form-side, .contact-info-side { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── GUARANTEE STRIP ────────────────────────────────────────────────────── */
.guarantee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.guarantee-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.guarantee-icon {
  width: 40px; height: 40px;
  background: rgba(212,100,12,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guarantee-icon svg { width: 20px; height: 20px; color: var(--primary); }
.guarantee-text { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }

/* ─── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 42vh, 560px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-header > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  max-height: none;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10,8,6,0.20) 0%, rgba(10,8,6,0.62) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 56px);
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}
.page-title, .page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 12px;
}
.page-eyebrow, .page-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.page-sub, .page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  line-height: 1.5;
  margin-top: 8px;
}
.page-header-accent { color: var(--primary); }

/* ─── SERVICES DETAIL (services.html) ───────────────────────────────────── */
.services-detail { background: var(--canvas); }
.services-intro {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 64px);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  border-top: 1px solid var(--border);
}
.service-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.service-block-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.service-block:hover .service-block-photo > img { transform: scale(1.03); }
.service-block-body {
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--canvas);
}
.service-block-flip { direction: ltr; }
.service-block-flip > .service-block-body { order: 1; background: var(--surface); }
.service-block-flip > .service-block-photo { order: 2; }
.service-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin: 4px 0 8px;
}
.service-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 56ch;
}
.service-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-bullets li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 1px;
}
.service-block-body > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
  transition: filter 200ms;
}
.service-block-body > a:hover { filter: brightness(0.92); text-decoration: none; color: #fff; }

@media (max-width: 900px) {
  .service-block, .service-block-flip { grid-template-columns: 1fr; }
  .service-block-flip > .service-block-body { order: 2; }
  .service-block-flip > .service-block-photo { order: 1; }
  .service-block-photo { min-height: 260px; }
  .service-block > img { min-height: 260px; }
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: var(--section-y) 0;
}
.cta-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner-text { flex: 1 1 300px; }
.cta-banner-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.cta-banner-eyebrow .eyebrow-bullet { background: var(--primary); }
.cta-banner h2, .cta-banner-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 16ch;
}
.cta-banner-sub {
  font-size: 16px; color: rgba(255,255,255,0.68); margin-top: 12px; max-width: 52ch;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}
.cta-banner-actions .btn-primary, .cta-banner-actions .btn-cta {
  background: var(--primary); color: #fff;
}
.cta-banner-actions a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: filter 200ms, transform 200ms;
}
.cta-banner-actions a:first-child {
  background: var(--primary); color: #fff;
}
.cta-banner-actions a:first-child:hover { filter: brightness(0.92); text-decoration: none; color: #fff; }
.cta-banner-actions a:not(:first-child) {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.cta-banner-actions a:not(:first-child):hover {
  background: rgba(255,255,255,0.08); border-color: #fff; color: #fff;
  text-decoration: none;
}

/* ─── ABOUT STORY ────────────────────────────────────────────────────────── */
.about-story-wrap {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.about-story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.story-portrait-col {
  grid-column: 1;
  position: relative;
}
.story-portrait-col > img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 600px;
}
.story-text-col { grid-column: 2; padding-top: 8px; }
.story-text-col h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.story-text-col p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .story-portrait-col, .story-text-col { grid-column: 1; }
}

/* ─── VALUES ─────────────────────────────────────────────────────────────── */
.values-section { background: var(--surface); }
.values-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px);
}
.values-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
.values-head h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.02em; }
.values-head-sub { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 52ch; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -0.01em; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 28ch; }

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

/* ─── TIMELINE ───────────────────────────────────────────────────────────── */
.timeline-section { background: var(--canvas); }
.timeline-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px);
}
.timeline-head { margin-bottom: clamp(40px, 5vw, 64px); }
.timeline-head h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.02em; }
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.timeline-step {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
}
.timeline-dot {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 12px;
}
.timeline-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); margin-bottom: 8px;
}
.timeline-step h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline-step p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ─── CREW ───────────────────────────────────────────────────────────────── */
.crew-section { background: var(--surface); }
.crew-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px);
}
.crew-head { margin-bottom: clamp(40px, 5vw, 64px); }
.crew-head h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.02em; }
.crew-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.crew-text { grid-column: 1; }
.crew-text p { font-size: 16px; line-height: 1.7; color: var(--ink-mid); margin-bottom: 14px; }
.crew-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.crew-chip {
  padding: 7px 14px;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-mid);
}
.crew-stats-block {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}
.crew-stat {
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  text-align: center;
}
.crew-stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.crew-stat-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
}

@media (max-width: 760px) {
  .crew-layout { grid-template-columns: 1fr; }
  .crew-text, .crew-stats-block { grid-column: 1; }
}

/* ─── ABOUT EDITORIAL ────────────────────────────────────────────────────── */
.about-editorial { background: var(--canvas); }
.about-editorial-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-editorial-photo { grid-column: 1; }
.about-editorial-photo > img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 600px;
  object-fit: cover;
}
.about-editorial-text { grid-column: 2; }
.about-editorial-text p { font-size: 16px; line-height: 1.7; color: var(--ink-mid); margin-bottom: 14px; }
.about-chips-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.about-chip {
  padding: 7px 14px;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-mid);
}

@media (max-width: 760px) {
  .about-editorial-inner { grid-template-columns: 1fr; }
  .about-editorial-photo, .about-editorial-text { grid-column: 1; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer, .site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer-grid, .footer-inner .footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer-inner {
  max-width: 100%;
  padding: 0;
}
.footer-brand, .footer-brand-col {
  grid-column: 1;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer-brand-desc, .footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 32ch;
  margin-bottom: 12px;
}
.footer-brand-badges { font-size: 12px; color: rgba(255,255,255,0.40); margin-top: 8px; }
.footer-col { grid-column: auto; }
.footer-col-heading, .footer-col-title, .footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul, .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-links li a {
  font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover, .footer-links li a:hover { color: #fff; text-decoration: none; }
.footer-contact-row, .footer-contact-links {
  display: flex; flex-direction: column; gap: 6px;
}
.footer-contact-row a, .footer-contact-links a {
  font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 150ms;
}
.footer-contact-row a:hover, .footer-contact-links a:hover { color: #fff; text-decoration: none; }
.footer-contact-row span, .footer-contact-links span {
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-contact-list li { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: #fff; }
.footer-trust { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; }
.footer-phone { color: rgba(255,255,255,0.80); font-weight: 600; }
.footer-logo img { max-height: 40px !important; }
.footer-hours { display: flex; flex-direction: column; gap: 4px; }
.footer-hours-row { display: flex; gap: 12px; font-size: 13px; }
.footer-hours-row .day { color: rgba(255,255,255,0.55); min-width: 80px; }
.footer-hours-row .time { color: rgba(255,255,255,0.40); }
.footer-badge {
  display: inline-block; font-size: 12px; color: rgba(255,255,255,0.40);
  margin-right: 8px;
}
.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.38); }
.footer-contact-line { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-contact-line a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-line span { color: rgba(255,255,255,0.30); }

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

/* ─── MOBILE CTA PILL ────────────────────────────────────────────────────── */
.mobile-cta-pill, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 200ms;
}
.mobile-cta-pill:hover, .mobile-sticky-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
.mobile-cta-pill svg, .mobile-sticky-cta svg { width: 20px; height: 20px; }

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

/* ─── ANIMATION UTILITIES ────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 500ms ease, transform 500ms ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease, transform 500ms ease; }
.stagger > *.visible { opacity: 1; transform: translateY(0); }

/* ─── TABLE ──────────────────────────────────────────────────────────────── */
.services-table { width: 100%; border-collapse: collapse; }
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink); color: #fff;
  padding: 14px 16px; text-align: left;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
}
.services-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
}

/* ─── MISC ───────────────────────────────────────────────────────────────── */
.cta-phone, .cta-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em;
}
.cta-phone:hover, .cta-phone-link:hover { color: var(--primary); text-decoration: none; }

/* ─── RESPONSIVE BREAKPOINTS ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { margin-left: clamp(20px, 4vw, 40px); }
  .hero-title { font-size: clamp(44px, 8vw, 80px); }
}
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-trust-chips .trust-chip { font-size: 10px; padding: 6px 12px; }
  .service-panel, .service-panel.active { grid-template-columns: 1fr; }
  .service-panel > img { max-height: 220px; grid-column: 1; grid-row: 1; }
  .service-panel-body { grid-column: 1; grid-row: 2; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 11px; padding: 8px 14px; }
  .cta-banner-inner { flex-direction: column; }
  .contact-inner { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.btn-outline { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.values-head-sub { grid-column: 1 / -1; }
.crew-stat { 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; }
