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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #a7a078;
  --primary-dark:   #8c8560;
  --accent:         #B0B0B0;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3a3630;
  --muted:          #6B6660;
  --border:         rgba(167,160,120,0.22);
  --border-ink:     rgba(26,24,20,0.10);
  --sand:           #EDE8DC;
  --sand-deep:      #D9D2C0;
  --overlay-dark:   rgba(14,12,8,0.62);
  --overlay-deep:   rgba(14,12,8,0.78);
  --radius:         8px;
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::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;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); line-height: 1.1; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

p { line-height: 1.7; }

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

strong { font-weight: 700; }
em { font-style: italic; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container     { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.wide-container{ max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.bleed         { width: 100%; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(80px, 10vh, 140px) clamp(20px, 4vw, 56px);
}

.section-wrap {
  background: var(--canvas);
}

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

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border-ink);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex: 0 0 auto; text-decoration: none; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  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);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter Tight', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--surface); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta .nav-cta-label { display: inline; }

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border-ink);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
}

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

.eyebrow-dark { color: var(--ink-mid); }

.eyebrow-bullet {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(14,12,8,0.82) 0%,
    rgba(14,12,8,0.55) 45%,
    rgba(14,12,8,0.15) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 56px);
  padding-bottom: clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  width: 100%;
}

.hero-hairline {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 20px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.70);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #FAF6EE;
  max-width: 14ch;
  margin-bottom: 20px;
}

.hero-title a { color: inherit; text-decoration: none; }

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 450;
  line-height: 1.6;
  color: rgba(250,246,238,0.82);
  max-width: 52ch;
  margin-bottom: 32px;
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.85);
  border: 1px solid rgba(167,160,120,0.55);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(26,24,20,0.25);
  backdrop-filter: blur(4px);
}

.trust-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  padding: 18px 0;
  overflow: hidden;
}

.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.trust-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  background: var(--canvas);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: filter 180ms ease, transform 150ms ease, box-shadow 180ms ease;
  border: none;
  white-space: nowrap;
  line-height: 1.2;
}

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

.btn-primary, .btn-submit {
  background: var(--primary);
  color: var(--surface);
  border-radius: var(--radius);
}
.btn-primary:hover, .btn-submit:hover {
  filter: brightness(0.90);
  transform: translateY(-1px);
  color: var(--surface);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(250,246,238,0.12);
  color: var(--canvas);
  border: 1px solid rgba(250,246,238,0.50);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(250,246,238,0.22); color: var(--canvas); text-decoration: none; }

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

.btn-outline-light {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(250,246,238,0.60);
}
.btn-outline-light:hover { background: rgba(250,246,238,0.15); color: var(--canvas); text-decoration: none; }

.btn-secondary {
  background: var(--sand);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--sand-deep); color: var(--ink); text-decoration: none; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 180ms;
}
.btn-service svg { width: 16px; height: 16px; }
.btn-service:hover { gap: 12px; text-decoration: none; color: var(--primary-dark); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   SERVICES SECTION (tabbed panel)
   ============================================================ */
.services {
  background: var(--canvas);
}

.services-header {
  margin-bottom: 36px;
}
.services-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 18ch;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--ink); }
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
}

.services-panels {
  position: relative;
}

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.service-panel-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.service-panel-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
}

.service-panel-body h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 16px;
  line-height: 1.05;
}

.service-panel-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 10px;
}

.service-panel-body .btn-primary,
.service-panel-body a.btn {
  margin-top: 20px;
  align-self: flex-start;
}

@media (max-width: 760px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-img {
    height: 240px;
    position: relative;
  }
  .service-panel-img img {
    position: absolute;
  }
}

/* Services detail page */
.services-detail { background: var(--canvas); }
.services-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 56px) 0;
}
.services-intro h2 { font-size: clamp(32px, 4.5vw, 60px); max-width: 22ch; margin-top: 12px; }
.services-intro p { font-size: 17px; color: var(--muted); max-width: 60ch; margin-top: 16px; }

.service-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
}
.service-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  position: absolute; inset: 0;
}
.service-block-index {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--surface);
  background: rgba(26,24,20,0.55);
  border-radius: 4px;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}

.service-block-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-block-body h2 { font-size: clamp(26px, 3vw, 44px); margin-bottom: 14px; }
.service-block-desc { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

@media (max-width: 760px) {
  .service-block { grid-template-columns: 1fr; direction: ltr !important; }
  .service-block.reverse { direction: ltr; }
  .service-block.reverse > * { direction: ltr; }
}

/* ============================================================
   FULLBLEED BREAK
   ============================================================ */
.fullbleed-break {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 50vh, 600px);
  width: 100%;
}
.fullbleed-break img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  max-height: none;
}

.fullbleed-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,12,8,0.72) 0%, rgba(14,12,8,0.30) 100%);
  display: flex;
  align-items: center;
  padding: 0 clamp(28px, 6vw, 80px);
  z-index: 2;
}

.fullbleed-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--canvas);
  max-width: 26ch;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--primary);
  padding-left: 28px;
}

/* Photo break (services.html) */
.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(240px, 40vh, 480px);
}
.photo-break img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.photo-break-overlay {
  position: absolute; inset: 0;
  background: rgba(14,12,8,0.50);
  z-index: 1;
}
.photo-break-text {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 60px);
}
.photo-break-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 36px);
  color: var(--canvas);
  text-align: center;
  max-width: 32ch;
  line-height: 1.25;
}

/* ============================================================
   GALLERY (index)
   ============================================================ */
.gallery { background: var(--canvas); }

.gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.gallery-header h2 { font-size: clamp(32px, 4.5vw, 60px); }
.gallery-header a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-end;
}
.gallery-header a:hover { text-decoration: underline; }

.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/7;
  background: var(--sand);
}
.gallery-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,8,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  z-index: 2;
}
.gallery-overlay-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--canvas);
  font-weight: 700;
}
.gallery-overlay-cta {
  margin-left: auto;
}

/* Gallery page */
.gallery-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 56px);
}

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

.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
}

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

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

.gallery-card-tall { grid-row: span 2; }

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
}
.gallery-card-tall .gallery-card-img-wrap { aspect-ratio: auto; height: 100%; min-height: 420px; }
.gallery-card-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}

.gallery-card-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--surface);
  background: rgba(26,24,20,0.60);
  border-radius: 4px;
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}

.gallery-card-body {
  padding: 16px 18px;
}
.gallery-card-body h2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.gallery-card-location svg { width: 12px; height: 12px; }
.gallery-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card-tall { grid-row: span 1; }
  .gallery-card-tall .gallery-card-img-wrap { height: auto; min-height: 0; aspect-ratio: 4/3; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas { background: var(--canvas); }
.service-areas h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 28px; }

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

.area-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  background: var(--surface);
  transition: border-color 180ms, background 180ms;
}
.area-pill:hover { border-color: var(--primary); background: var(--canvas); }

/* Info area pills (contact page) */
.info-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.info-area-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  background: var(--canvas);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--canvas); }
.faq-header { margin-bottom: 40px; }
.faq-header h2 { font-size: clamp(32px, 4vw, 56px); }

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

details.faq,
.faq-list details {
  border-bottom: 1px solid var(--border-ink);
  padding: 0;
}

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

.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 200ms; color: var(--muted); }
.faq-list details[open] .faq-chevron,
details.faq[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }

details.faq > summary::after { display: none; }

.faq-answer, details.faq p, .faq-list details p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 22px;
  max-width: 68ch;
  margin-top: 4px;
}
.faq-answer a, .faq-list details p a { color: var(--primary); }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 56px);
}

.team-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.team-cta-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.team-cta-copy h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--canvas);
  max-width: 22ch;
  line-height: 1.05;
}

.team-cta-inner a.btn-primary {
  background: var(--primary);
  color: var(--surface);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--canvas); }

.contact-header { margin-bottom: 48px; }
.contact-header h2 { font-size: clamp(32px, 4.5vw, 60px); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Contact page */
.contact-section { background: var(--canvas); }
.contact-form-col { }
.contact-form-col p.eyebrow { margin-bottom: 12px; }
.contact-form-headline { font-family: 'Fraunces', serif; font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 8px; }
.contact-form-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* Form styles */
.contact-form,
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width, .form-field.full { grid-column: 1 / -1; }

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

.form-group input,
.form-group select,
.form-group textarea,
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border-ink);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 180ms;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

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

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

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

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

.contact-info-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  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); text-decoration: underline; }

/* Contact info card (contact.html) */
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 24px; }
.info-card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.info-icon { width: 36px; height: 36px; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.info-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 2px;
}
.info-value { font-size: 15px; color: var(--ink); }
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary); }

.info-divider { border: none; border-top: 1px solid var(--border-ink); margin: 20px 0; }
.info-areas-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 10px;
}

.info-guarantee {
  margin-top: 20px;
  padding: 16px;
  background: var(--canvas);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.info-guarantee strong { font-size: 14px; color: var(--ink); display: block; margin-bottom: 4px; }
.info-guarantee p { font-size: 13px; color: var(--muted); line-height: 1.55; }

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-banner-bg-tint {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(167,160,120,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-banner-text { }
.cta-banner-text .cta-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.cta-banner-text h2,
.cta-banner-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--canvas);
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-banner-h2 em { font-style: italic; }
.cta-banner-sub { font-size: 15px; color: rgba(250,246,238,0.70); margin-bottom: 28px; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.cta-phone {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cta-phone svg { width: 24px; height: 24px; }
.cta-phone:hover { color: var(--canvas); text-decoration: none; }

.cta-sub-line { font-size: 14px; color: rgba(250,246,238,0.60); }

.cta-form-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--canvas);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-form .form-field label { color: rgba(250,246,238,0.65); }
.cta-form .form-field input,
.cta-form .form-field select,
.cta-form .form-field textarea {
  background: rgba(250,246,238,0.07);
  border-color: rgba(250,246,238,0.18);
  color: var(--canvas);
}
.cta-form .form-field input::placeholder,
.cta-form .form-field textarea::placeholder { color: rgba(250,246,238,0.35); }
.cta-form .form-field input:focus,
.cta-form .form-field select:focus,
.cta-form .form-field textarea:focus { border-color: var(--primary); }
.cta-form .form-field select option { background: var(--ink); color: var(--canvas); }

.cta-banner-form .btn-primary,
.cta-form .btn-primary {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

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

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: 44vh;
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0; max-height: none;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,8,0.75) 0%, rgba(14,12,8,0.30) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 56px);
  width: 100%;
}
.page-header-eyebrow, .page-header .eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.page-header-inner h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 88px);
  color: var(--canvas);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-header-sub {
  font-size: 16px;
  color: rgba(250,246,238,0.72);
  max-width: 50ch;
  margin-top: 12px;
}
.page-header-accent { color: var(--primary); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(250,246,238,0.55);
  margin-top: 12px;
}
.breadcrumb a { color: rgba(250,246,238,0.55); }
.breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.breadcrumb-sep { color: rgba(250,246,238,0.30); }
.breadcrumb-current { color: rgba(250,246,238,0.80); }

/* ============================================================
   ABOUT SECTIONS
   ============================================================ */
.about-story-section { background: var(--canvas); }

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

.about-story-portrait-col {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
}
.about-story-portrait-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}

.about-story-text-col {}
.about-story-text-col h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 20px; margin-top: 8px; }
.eyebrow-dark { margin-bottom: 12px; }

.drop-cap { font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 18px; }
.drop-cap::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.2em;
  font-weight: 700;
  float: left;
  line-height: 0.78;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--primary);
}

.story-pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 24px;
  margin: 24px 0;
  max-width: 40ch;
}

.about-story-text-col p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 14px; }

@media (max-width: 760px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-portrait-col { aspect-ratio: 16/9; }
}

/* Values */
.values-section { background: var(--sand); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  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-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.45;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.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: 540px) { .values-grid { grid-template-columns: 1fr; } }

/* Timeline */
.timeline-section { background: var(--canvas); }
.timeline-section h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 40px; margin-top: 8px; }
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 32px;
  border-left: 2px solid var(--border-ink);
}
.timeline-step {
  position: relative;
  padding: 0 0 36px 28px;
}
.timeline-dot {
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-step h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Crew */
.crew-section { background: var(--sand); }
.crew-section h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 36px; margin-top: 8px; }
.crew-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.crew-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.crew-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }
.crew-initials {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 14px;
}
.crew-card h3 { font-size: 18px; margin-bottom: 4px; }
.crew-card-role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 10px;
}
.crew-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

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

/* About split */
.about-split-section { background: var(--canvas); }
.about-split {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.about-split-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--sand);
}
.about-split-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.about-split-text h2 { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 16px; margin-top: 8px; }
.about-split-text p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 12px; }

.trust-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-chips-row .trust-chip {
  color: var(--ink-mid);
  border-color: var(--border);
  background: var(--canvas);
}

@media (max-width: 760px) { .about-split { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer, .site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.72);
  padding: clamp(56px, 7vh, 88px) clamp(20px, 4vw, 56px) 0;
}

.footer-grid,
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vh, 64px);
}

.footer-brand { }
.footer-brand-name,
.footer-brand-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--canvas);
  margin-bottom: 10px;
}
.footer-tagline { font-size: 13px; color: rgba(250,246,238,0.50); margin-bottom: 14px; line-height: 1.55; }
.footer-contact-item { font-size: 13px; color: rgba(250,246,238,0.60); margin-bottom: 6px; }
.footer-contact-item a { color: rgba(250,246,238,0.60); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-contact { display: flex; gap: 14px; align-items: center; margin-top: 12px; }
.footer-contact a { color: rgba(250,246,238,0.55); transition: color 150ms; }
.footer-contact a:hover { color: var(--primary); text-decoration: none; }
.footer-contact svg, .footer-contact a svg { width: 20px; height: 20px; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-contact-list li, .footer-contact-list a {
  font-size: 13px; color: rgba(250,246,238,0.55);
}
.footer-contact-list a:hover { color: var(--primary); text-decoration: none; }

.footer-col h4, .footer-col-heading, .footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,238,0.40);
  margin-bottom: 16px;
  display: block;
}

.footer-col ul, .footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col li a, .footer-col-links li a {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col li a:hover, .footer-col-links li a:hover { color: var(--primary); text-decoration: none; }
.footer-col li, .footer-col-links li { font-size: 14px; color: rgba(250,246,238,0.55); }

.footer-hours p { font-size: 13px; color: rgba(250,246,238,0.55); line-height: 1.65; }

.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-social-link { color: rgba(250,246,238,0.45); transition: color 150ms; }
.footer-social-link:hover { color: var(--primary); text-decoration: none; }
.footer-social-link svg { width: 20px; height: 20px; }

.footer-divider { border: none; border-top: 1px solid rgba(250,246,238,0.08); max-width: 1280px; margin: 0 auto; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(250,246,238,0.30);
  border-top: 1px solid rgba(250,246,238,0.06);
}
.footer-bottom a { color: rgba(250,246,238,0.30); }
.footer-bottom a:hover { color: var(--primary); text-decoration: none; }

.footer-copy { font-size: 12px; color: rgba(250,246,238,0.30); }
.footer-creds { display: flex; gap: 16px; }
.footer-cred { font-size: 11px; color: rgba(250,246,238,0.25); }

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

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta,
.mobile-call,
.mobile-call-pill {
  display: none;
}

@media (max-width: 899px) {
  .mobile-sticky-cta,
  .mobile-call {
    display: block;
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 999;
  }
  .mobile-sticky-cta a,
  .mobile-call a,
  .mobile-call-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--surface) !important;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    white-space: nowrap;
  }
  .mobile-sticky-cta a svg,
  .mobile-call a svg { width: 18px; height: 18px; }

  a.mobile-call-pill {
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 999;
    background: var(--primary);
    color: var(--surface) !important;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  a.mobile-call-pill svg { width: 18px; height: 18px; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms cubic-bezier(0.22,1,0.36,1), transform 680ms cubic-bezier(0.22,1,0.36,1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 680ms cubic-bezier(0.22,1,0.36,1), transform 680ms cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 680ms cubic-bezier(0.22,1,0.36,1), transform 680ms cubic-bezier(0.22,1,0.36,1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}

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

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

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

/* ============================================================
   SVG CAPS
   ============================================================ */
svg { display: block; }
.faq-chevron { width: 20px; height: 20px; }
.hero-ctas svg { width: 18px; height: 18px; }
.btn svg { width: 18px; height: 18px; }
.info-icon svg { width: 20px; height: 20px; }
.cta-phone svg { width: 24px; height: 24px; }
.footer-contact svg { width: 20px; height: 20px; }
.footer-social-link svg { width: 20px; height: 20px; }
.gallery-card-location svg { width: 12px; height: 12px; }
.btn-service svg { width: 16px; height: 16px; }

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.section-title { font-size: clamp(32px, 4.5vw, 60px); }

.full-width { grid-column: 1 / -1; }
.full { grid-column: 1 / -1; }
.reverse { }

/* About page hero section with image */
div.section-wrap > div.section-inner > div[style] > img,
div > img + div + div { }

/* The unnamed about CTA block */
.about-split-section + div {
  background: var(--ink);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  h1 { font-size: clamp(40px, 8vw, 80px); }
  h2 { font-size: clamp(28px, 6vw, 52px); }
  .hero-inner { padding: 40px 20px 60px; }
  .hero-title { font-size: clamp(44px, 9vw, 80px); }
  .service-block { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-inner { padding: 56px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .team-cta-inner { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}


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