@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter+Tight:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --primary:        #74714b;
  --primary-dim:    #5c5939;
  --primary-pale:   rgba(116,113,75,0.12);
  --primary-line:   rgba(116,113,75,0.35);
  --accent:         #74714b;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #211f1a;
  --ink:            #F4F1EA;
  --ink-mid:        #ccc8be;
  --muted:          #8E8A82;
  --border:         rgba(244,241,234,0.08);
  --border-brand:   rgba(116,113,75,0.4);
  --shadow-lg:      0 32px 80px -24px rgba(0,0,0,0.7);
  --shadow-card:    0 8px 32px -8px rgba(0,0,0,0.5);
  --radius:         4px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-y:      clamp(112px, 14vh, 180px);
  --container:      1200px;
  --wide:           1400px;
}

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

/* ─── GLOBAL RESET + SMOOTH SCROLL ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── UNIVERSAL IMAGE CAP (MANDATORY) ──────────────────────────────── */
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: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

/* ─── HEADING-ANCHOR RULE (MANDATORY VERBATIM) ──────────────────────── */
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: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
p { line-height: 1.7; color: var(--ink-mid); }
a { color: var(--ink); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
strong { font-weight: 600; color: var(--ink); }
em, .brand-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.15em;
  font-weight: 600;
}
ul { list-style: none; }

/* ─── LAYOUT UTILITIES ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--wide); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 500;
  font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: var(--radius);
  cursor: pointer; transition: all 220ms ease-out;
  white-space: nowrap; text-decoration: none; border: none;
}
.btn-primary, .btn-submit {
  background: var(--primary); color: var(--ink);
}
.btn-primary:hover, .btn-submit:hover {
  background: var(--primary-dim); color: var(--ink);
  text-decoration: none; transform: translateY(-1px);
}
.btn-ghost, .btn-outline-brand {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(244,241,234,0.3);
}
.btn-ghost:hover, .btn-outline-brand:hover {
  border-color: var(--primary); color: var(--primary);
  text-decoration: none; transform: translateY(-1px);
}
button { cursor: pointer; }

/* ─── SITE HEADER ───────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(244,241,234,0.06);
}
.top-nav {
  height: var(--header-height);
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex: 0 0 auto; text-decoration: none; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }
.nav-pages {
  flex: 1; display: flex; justify-content: center;
  align-items: center; gap: 28px;
}
.nav-pages ul, ul.nav-pages {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 28px;
}
.nav-pages li { display: block; }
.nav-pages a, #navLinks a {
  display: inline-block; padding: 6px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover, #navLinks a:hover {
  color: var(--ink); text-decoration: none;
}
.nav-pages a[aria-current="page"], #navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
}
.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.88); color: var(--ink); text-decoration: none; }
.nav-toggle {
  display: none; background: transparent; border: none;
  color: var(--ink); font-size: 22px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas);
    border-bottom: 1px solid rgba(244,241,234,0.08);
    padding: 24px; gap: 8px; z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul, ul.nav-pages { flex-direction: column; gap: 8px; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 96vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-overlay {
  background: linear-gradient(
    155deg,
    rgba(116,113,75,0.18) 0%,
    rgba(12,12,15,0.55) 40%,
    rgba(12,12,15,0.88) 100%
  );
}
.hero-ribbon {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--primary-line); z-index: 3;
}
.hero-inner {
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 80px) clamp(64px, 10vh, 96px);
  max-width: 860px;
  display: flex; flex-direction: column; gap: 24px;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); opacity: 0.9;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
}
.hero-title .accent-word {
  font-style: italic; color: var(--primary);
  font-size: inherit; font-family: inherit;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-mid); max-width: 52ch; line-height: 1.6;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}
.hero-ctas .btn { font-size: 14px; padding: 14px 28px; }
.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px;
  padding: 0; list-style: none;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.15);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid); background: rgba(12,12,15,0.4);
}
.star-chip { border-color: var(--primary-line); color: var(--primary); }

@media (max-width: 640px) {
  .hero-inner { padding-left: 20px; padding-right: 20px; padding-bottom: 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ─── MARQUEE STRIP ─────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border-brand);
  background: var(--canvas); z-index: 1; position: relative;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 15px);
  color: var(--muted); line-height: 1.2;
}
.marquee-item .dot {
  display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--primary); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── TRUST STRIP ───────────────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 32px clamp(20px,4vw,48px);
}
.trust-strip-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 8px 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 24px;
}
.trust-badge-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--primary); fill: currentColor;
}
.trust-badge-icon svg { width: 20px; height: 20px; }
.trust-badge svg { width: 20px; height: 20px; color: var(--primary); }
.trust-badge-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.trust-badge-label strong { color: var(--ink); font-weight: 600; }
.trust-sep {
  width: 1px; height: 32px;
  background: var(--border-brand); flex-shrink: 0; margin: 0 4px;
}
/* contact.html plain trust chips in .trust-strip */
.trust-strip .trust-chip {
  padding: 8px 18px; font-size: 10px;
}

@media (max-width: 640px) {
  .trust-strip-inner { gap: 4px; }
  .trust-badge { padding: 8px 12px; }
  .trust-sep { display: none; }
}

/* ─── SECTION SHARED ────────────────────────────────────────────────── */
.section-eyebrow, .page-eyebrow, .page-header-eyebrow {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.section-title, .section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; line-height: 0.97; letter-spacing: -0.025em;
  color: var(--ink);
}

/* ─── SERVICES ──────────────────────────────────────────────────────── */
.services {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
}
.services-header {
  max-width: var(--container); margin: 0 auto 48px;
}
.services-header .section-title { max-width: 20ch; }
.services-tabs {
  max-width: var(--container); margin: 0 auto 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--border); padding-bottom: 0;
  margin-bottom: 0;
}
.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 20px;
  background: transparent; border: none; border-bottom: 2px solid transparent;
  color: var(--muted); cursor: pointer;
  transition: color 200ms, border-color 200ms;
  margin-bottom: -1px; position: relative;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.services-panels {
  max-width: var(--container); margin: 0 auto;
  border: 1px solid var(--border); border-top: none;
  background: var(--surface);
}
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  min-height: 480px;
}
.service-panel.active { display: grid; }
.service-panel-img {
  overflow: hidden; position: relative; min-height: 380px;
}
.service-panel-img img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none; display: block;
  filter: saturate(0.75) brightness(0.88);
  transition: transform 600ms ease-out;
}
.service-panel:hover .service-panel-img img { transform: scale(1.03); }
.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.panel-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
}
.service-panel-body h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.0; color: var(--ink);
}
.service-panel-body h3 em {
  font-style: italic; color: var(--primary); font-size: 1.1em;
}
.service-panel-body p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; }
.service-panel-body .btn { align-self: flex-start; margin-top: 8px; font-size: 13px; }
.services > div:last-child {
  max-width: var(--container); margin: 32px auto 0;
  display: flex; justify-content: center;
}

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-img { min-height: 260px; }
  .service-panel-body { padding: 28px 24px; }
  .services-tabs { gap: 4px; }
  .service-tab { font-size: 9px; padding: 8px 12px; }
}

/* ─── REVIEWS ───────────────────────────────────────────────────────── */
.reviews {
  background: var(--surface);
  padding: var(--section-y) clamp(20px,4vw,48px);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border-brand);
}
.reviews-inner { max-width: var(--container); margin: 0 auto; }
.reviews-header { margin-bottom: 56px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-top: 1px solid var(--primary-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
}
.review-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
}
.review-stars svg {
  width: 16px; height: 16px; color: var(--primary);
  fill: var(--primary); flex-shrink: 0;
}
.review-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 18px; line-height: 1.5;
  color: var(--ink); margin-bottom: 20px; font-weight: 400;
}
.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.review-attribution strong { color: var(--ink-mid); font-weight: 600; }

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

/* ─── GALLERY PREVIEW (index.html) ──────────────────────────────────── */
.gallery-preview {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
}
.gallery-preview-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.gallery-preview-text { display: flex; flex-direction: column; gap: 20px; }
.gallery-preview-text .section-title { max-width: 16ch; }
.gallery-preview-text p { font-size: 16px; color: var(--ink-mid); max-width: 44ch; }
.gallery-preview-text > div { display: flex; gap: 12px; }
.gallery-crew-strip {
  display: flex; gap: 4px; margin-top: 16px;
}
.gallery-crew-strip img {
  flex: 1; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius);
  max-height: 72px !important; filter: saturate(0.65) brightness(0.85);
}
.gallery-preview-img {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; position: relative;
}
.gallery-preview-img img {
  width: 100%; height: 100%; object-fit: cover; max-height: none;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 600ms ease-out;
}
.gallery-preview-img:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .gallery-preview-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-preview-img { aspect-ratio: 16/9; }
}

/* ─── GALLERY PAGE ──────────────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
}
.gallery-count-line {
  max-width: var(--wide); margin: 0 auto 16px;
}
.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.gallery-filters {
  max-width: var(--wide); margin: 0 auto 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); align-self: center; margin-right: 8px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.15);
  background: transparent; color: var(--muted); cursor: pointer;
  transition: all 180ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary); color: var(--primary);
}
.gallery-grid {
  max-width: var(--wide); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-tile {
  aspect-ratio: 4 / 3; overflow: hidden;
  position: relative; background: var(--surface);
  cursor: pointer;
}
.gallery-tile.tile-tall {
  grid-row: span 2; aspect-ratio: unset;
}
.gallery-tile > img {
  width: 100%; height: 100%; object-fit: cover; max-height: none;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 500ms ease-out, filter 500ms;
}
.gallery-tile:hover > img { transform: scale(1.06); filter: saturate(0.9) brightness(0.9); }
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.8) 0%, transparent 50%);
  opacity: 0; transition: opacity 300ms;
  display: flex; align-items: flex-end;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-info {
  padding: 16px; display: flex; flex-direction: column; gap: 4px;
}
.tile-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}
.tile-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; font-style: italic; color: var(--ink);
}
.tile-location {
  font-size: 11px; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.tile-location svg { width: 10px; height: 10px; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.tile-tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
}

/* ─── SERVICE AREAS ─────────────────────────────────────────────────── */
.service-areas {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
}
.service-areas-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.service-areas-text { display: flex; flex-direction: column; gap: 20px; }
.service-areas-text .section-title { max-width: 16ch; }
.service-areas-text p { color: var(--ink-mid); font-size: 16px; }
.areas-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-content: flex-start; padding-top: 20px;
}
.area-chip {
  display: inline-block; padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.12);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  transition: border-color 180ms, color 180ms;
}
.area-chip:hover { border-color: var(--primary); color: var(--primary); }

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

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-list details summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; min-height: 64px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 500; color: var(--ink);
  transition: color 150ms;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary:hover { color: var(--primary); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--muted); transition: transform 220ms, color 220ms;
}
.faq-list details[open] summary { color: var(--primary); }
.faq-list details[open] summary .faq-chevron {
  transform: rotate(180deg); color: var(--primary);
}
.faq-body {
  padding: 0 0 24px;
  font-size: 15px; color: var(--ink-mid); line-height: 1.7;
}
.faq-body a { color: var(--primary); }

/* ─── CONTACT ───────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.contact-inner { max-width: var(--container); margin: 0 auto; }
.contact-header { margin-bottom: 56px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 400px; gap: 64px;
  align-items: start;
}
/* contact.html .contact-grid variant */
.contact-grid {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-y) clamp(20px,4vw,48px);
  display: grid; grid-template-columns: 1fr 400px; gap: 64px;
  align-items: start;
}
.contact-form-col { display: flex; flex-direction: column; gap: 24px; }
.contact-form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
}
.contact-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 600;
  line-height: 1.0; color: var(--ink);
}
.contact-form-heading em { font-style: italic; color: var(--primary); font-size: 1.1em; }

/* FORMS */
.contact-form, .cta-form {
  display: flex; flex-direction: column; gap: 16px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-field, .form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.form-field.full, .form-group.full { grid-column: 1 / -1; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact-form label, .cta-form label,
.contact-form-label, .cta-form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.cta-form input,
.cta-form select,
.cta-form textarea,
.form-field input,
.form-field select,
.form-field textarea,
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(244,241,234,0.1);
  border-radius: var(--radius);
  color: var(--ink); font-family: 'Inter Tight', sans-serif;
  font-size: 14px; padding: 12px 16px;
  transition: border-color 180ms, background 180ms;
  width: 100%;
  appearance: none; -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--surface-2);
}
.contact-form textarea, .cta-form textarea,
.form-field textarea, .form-group textarea {
  min-height: 120px; resize: vertical;
}
.contact-form select option,
.cta-form select option,
.form-field select option,
.form-group select option {
  background: var(--surface); color: var(--ink);
}
.form-submit, .btn-submit {
  background: var(--primary); color: var(--ink);
  border: none; border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; padding: 14px 32px;
  cursor: pointer; align-self: flex-start;
  transition: background 200ms, transform 200ms;
}
.form-submit:hover, .btn-submit:hover {
  background: var(--primary-dim); transform: translateY(-1px);
}

/* Contact info column */
.contact-info, .contact-info-col {
  display: flex; flex-direction: column; gap: 0;
}
.contact-info-block, .info-block {
  padding: 24px 0; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.contact-info-block:first-child, .info-block:first-child { padding-top: 0; }
.info-label, .info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); display: block;
}
.info-phone, .contact-phone-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 600; line-height: 1.1;
  color: var(--ink);
}
.info-phone a, .contact-phone-big a { color: var(--ink); }
.info-phone a:hover, .contact-phone-big a:hover { color: var(--primary); text-decoration: none; }
.info-email { font-size: 15px; color: var(--ink-mid); }
.info-email a { color: var(--ink-mid); }
.info-divider { height: 1px; background: var(--border); }
.info-guarantees { display: flex; flex-direction: column; gap: 8px; }
.info-guarantee-item {
  font-size: 14px; color: var(--ink-mid); padding-left: 16px;
  position: relative;
}
.info-guarantee-item::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-area-pill {
  padding: 5px 14px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.12);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.socials-row { display: flex; gap: 12px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(244,241,234,0.12); color: var(--muted);
  transition: border-color 180ms, color 180ms;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.footer-addr { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* ─── PAGE HEADER (sub-pages) ───────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 45vh, 520px);
  max-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.6) 0%,
    rgba(12,12,15,0.85) 100%
  );
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(32px,6vw,72px) clamp(24px,6vw,80px);
  max-width: 900px;
}
.page-header-title, .page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600; line-height: 0.97; letter-spacing: -0.025em;
  color: var(--ink);
}
.page-header-title em, .page-title em {
  font-style: italic; color: var(--primary); font-size: 1.0em;
}
.page-header-title .accent-word { font-style: italic; color: var(--primary); }
.page-header-sub, .page-header-meta {
  font-size: 16px; color: var(--ink-mid);
  margin-top: 12px; max-width: 48ch;
}

/* ─── SERVICES PAGE — FEATURE BLOCKS ───────────────────────────────── */
.services-index {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
}
.services-index-inner { max-width: var(--container); margin: 0 auto; }
.services-index-inner > .section-eyebrow { margin-bottom: 12px; }
.services-index-inner > .section-title { margin-bottom: 72px; max-width: 18ch; }
.services-index-inner > .section-title .accent-word {
  font-style: italic; color: var(--primary);
}
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 2px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-photo {
  overflow: hidden; position: relative;
  min-height: 400px;
}
.feature-photo img {
  width: 100%; height: 100%; object-fit: cover; max-height: none;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 600ms ease-out;
}
.feature-block:hover .feature-photo img { transform: scale(1.04); }
.feature-body {
  padding: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.feature-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); padding-bottom: 8px;
  border-bottom: 1px solid var(--primary-line);
  display: inline-block;
}
.feature-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.feature-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600; line-height: 1.0; color: var(--ink);
}
.feature-title span { font-style: italic; color: var(--primary); }
.feature-desc { font-size: 15px; color: var(--ink-mid); line-height: 1.7; }
.feature-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.feature-bullets li {
  font-size: 14px; color: var(--ink-mid);
  padding-left: 20px; position: relative;
}
.feature-bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}
.feature-body .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; direction: ltr; }
  .feature-block.reverse { direction: ltr; }
  .feature-photo { min-height: 260px; }
  .feature-body { padding: 32px 24px; }
}

/* ─── CTA BANNER ────────────────────────────────────────────────────── */
#cta-banner, .cta-banner {
  background: var(--surface);
  padding: clamp(72px, 10vw, 128px) clamp(20px,4vw,48px);
  border-top: 1px solid var(--border-brand);
  position: relative; overflow: hidden;
}
.cta-banner-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 440px; gap: 64px;
  align-items: center;
}
.cta-banner-left { display: flex; flex-direction: column; gap: 20px; }
.cta-banner-eyebrow, .cta-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
}
.cta-banner-headline, .cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 600;
  line-height: 1.0; color: var(--ink); max-width: 16ch;
}
.cta-banner-headline em, .cta-headline em,
.cta-banner-title em {
  font-style: italic; color: var(--primary);
}
.cta-banner-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 600;
  line-height: 1.0; color: var(--ink);
}
.cta-banner-sub, .cta-sub {
  font-size: 16px; color: var(--ink-mid); max-width: 44ch;
}
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 600; color: var(--ink);
  text-decoration: none;
}
.cta-phone:hover { color: var(--primary); text-decoration: none; }
.cta-phone-icon, .cta-phone svg { width: 22px; height: 22px; color: var(--primary); }
.cta-banner-bg-word {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 300px; font-weight: 600; font-style: italic;
  color: rgba(116,113,75,0.04); line-height: 1; pointer-events: none;
  white-space: nowrap;
}
.cta-right { display: flex; flex-direction: column; gap: 20px; }
.cta-form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}
.cta-left { display: flex; flex-direction: column; gap: 20px; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-bg-word { display: none; }
}

/* standalone .cta-banner for about.html with left/actions only */
#cta-banner.cta-banner:not(:has(.cta-banner-inner)) {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  padding: 64px clamp(20px,4vw,48px);
  max-width: var(--container); margin: 0 auto;
}
/* reset for cta-banner that has direct children cta-banner-left and cta-banner-actions */
div#cta-banner.cta-banner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center;
  max-width: none; padding: clamp(48px,8vw,96px) clamp(20px,4vw,48px);
  gap: 40px;
}
div#cta-banner .cta-banner-left { max-width: 600px; }
div#cta-banner .cta-banner-actions { flex-shrink: 0; }

@media (max-width: 640px) {
  div#cta-banner.cta-banner { grid-template-columns: 1fr; }
  div#cta-banner .cta-banner-actions { flex-direction: column; }
}

/* ─── FOUNDER STORY (about.html) ────────────────────────────────────── */
.founder-story {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
  display: grid; grid-template-columns: 380px 1fr; gap: 72px;
  max-width: var(--container); margin: 0 auto;
  align-items: start;
}
.founder-portrait {
  position: sticky; top: calc(var(--header-height) + 24px);
}
.founder-portrait img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; max-height: 520px;
  border-radius: var(--radius);
  filter: saturate(0.65) brightness(0.85);
}
.founder-portrait-caption {
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.founder-copy { display: flex; flex-direction: column; gap: 24px; }
.founder-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
}
.founder-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 600;
  line-height: 1.0; color: var(--ink);
}
.founder-headline em { font-style: italic; color: var(--primary); font-size: 1.05em; }
.founder-body { display: flex; flex-direction: column; gap: 16px; }
.founder-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; }
.founder-body p em { font-style: italic; color: var(--primary); font-size: 1.15em; }
.founder-divider {
  height: 1px; background: var(--primary-line);
  width: 48px;
}
.founder-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
}
.founder-chip {
  padding: 7px 16px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.12);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

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

/* ─── VALUES (about.html) ───────────────────────────────────────────── */
.values-section {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
}
.values-inner {
  max-width: var(--container); margin: 0 auto;
}
.values-inner > .section-eyebrow { margin-bottom: 12px; }
.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.0; color: var(--ink);
  margin-bottom: 56px;
}
.section-heading em { font-style: italic; color: var(--primary); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.value-card {
  background: var(--canvas); padding: 36px 28px;
  border: 1px solid var(--border);
  border-top: 1px solid var(--primary-line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); }
.value-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
}
.value-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 600; line-height: 1.1; color: var(--ink);
}
.value-title em { font-style: italic; color: var(--primary); }
.value-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* ─── JOURNEY (about.html) ──────────────────────────────────────────── */
.journey-section {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--canvas);
  max-width: var(--container); margin: 0 auto;
}
.journey-section > .section-eyebrow { margin-bottom: 12px; }
.journey-section > .section-heading { margin-bottom: 56px; }
.journey-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  position: relative;
}
.journey-grid::before {
  content: ''; position: absolute;
  top: 10px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: var(--border-brand);
}
.journey-step {
  display: flex; flex-direction: column; gap: 12px;
}
.journey-dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center;
  background: var(--canvas); position: relative; z-index: 1;
}
.journey-dot-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}
.journey-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}
.journey-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* ─── CREW STRIP (about.html) ───────────────────────────────────────── */
.crew-section {
  padding: clamp(48px, 6vh, 80px) clamp(20px,4vw,48px);
  background: var(--canvas);
  max-width: var(--container); margin: 0 auto;
}
.crew-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  overflow: hidden;
}
.crew-strip img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; max-height: none;
  filter: saturate(0.6) brightness(0.8);
  transition: filter 400ms;
}
.crew-strip img:hover { filter: saturate(0.85) brightness(0.9); }
.crew-caption {
  margin-top: 16px; text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

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

/* ─── ABOUT SUMMARY (about.html bottom section) ─────────────────────── */
.about-summary {
  padding: var(--section-y) clamp(20px,4vw,48px);
  background: var(--surface);
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  align-items: start;
  border-top: 1px solid var(--border-brand);
}
.about-index-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px; font-weight: 600; font-style: italic;
  color: rgba(116,113,75,0.2); line-height: 1;
  padding-top: 8px;
}
.about-summary-content {
  max-width: 680px;
  display: flex; flex-direction: column; gap: 20px;
}
.about-summary-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
}
.about-summary-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 600;
  line-height: 1.0; color: var(--ink);
}
.about-summary-headline em { font-style: italic; color: var(--primary); }
.about-summary-body { display: flex; flex-direction: column; gap: 14px; }
.about-summary-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; }
.about-summary-body p em { font-style: italic; color: var(--primary); font-size: 1.1em; }
.about-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

@media (max-width: 640px) {
  .about-summary { grid-template-columns: 1fr; }
  .about-index-num { display: none; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer, footer.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 8vh, 96px) clamp(20px,4vw,48px) 0;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer-logo { display: block; }
.footer-tagline {
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.footer-tagline em { font-style: italic; color: var(--primary); }
.footer-contact-item, .footer-contact-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.footer-contact-item svg, .footer-contact-detail svg,
.footer-contact-detail > svg:first-child {
  width: 14px; height: 14px; color: var(--primary); flex-shrink: 0;
}
.footer-contact-item a, .footer-contact-detail a { color: var(--muted); }
.footer-contact-item a:hover, .footer-contact-detail a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.footer-contact-line a { color: var(--muted); }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title, .footer-col-head, .footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 4px;
}
.footer-col h4 { border: none; background: none; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--ink); text-decoration: none; }
.footer-links li { font-size: 14px; color: var(--muted); }
.footer-links li span { color: var(--muted); }
.footer-info { display: flex; flex-direction: column; gap: 8px; }
.footer-info p { font-size: 13px; color: var(--muted); }
.footer-info p a { color: var(--muted); }
.footer-info p a:hover { color: var(--primary); text-decoration: none; }
.footer-email, .footer-phone { font-size: 13px; color: var(--muted); }
.footer-email a, .footer-phone a { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.footer-trust {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--muted); opacity: 0.6;
}
.footer-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-chip {
  padding: 4px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.08);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

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

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

/* ─── ANIMATION UTILITIES ───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 680ms ease-out, transform 680ms ease-out; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 680ms ease-out, transform 680ms ease-out; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 680ms ease-out, transform 680ms ease-out; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 580ms ease-out, transform 580ms ease-out; }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

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

/* ─── ACCENT WORD ───────────────────────────────────────────────────── */
.accent-word { font-style: italic; color: var(--primary); }

/* ─── MISC SVG CAPS ─────────────────────────────────────────────────── */
.trust-badge-icon { width: 20px !important; height: 20px !important; }
.review-stars svg { width: 16px !important; height: 16px !important; }
.faq-chevron { width: 18px !important; height: 18px !important; }
.cta-phone-icon { width: 22px !important; height: 22px !important; }
.social-link svg { width: 16px !important; height: 16px !important; }
.mobile-call-pill svg, .mobile-cta a svg, .mobile-cta-pill svg { width: 18px !important; height: 18px !important; }
.tile-location svg { width: 10px !important; height: 10px !important; }
.gallery-tile-info svg { width: 10px; height: 10px; }
.btn svg { width: 16px; height: 16px; }
.cta-banner-actions .btn svg { width: 16px; height: 16px; }

/* ─── SCROLLBAR STYLE ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { background: var(--primary-dim); border-radius: 2px; }

/* ─── SELECTION ─────────────────────────────────────────────────────── */
::selection { background: var(--primary); color: var(--canvas); }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-preview-text { grid-column: 1 / -1; }
.gallery-preview-img { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.feature-photo { grid-column: 1 / -1; }
.feature-body { grid-column: 1 / -1; }
.cta-banner-inner { grid-column: 1 / -1; }
.cta-banner-bg-word { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.founder-copy { grid-column: 1 / -1; }
.cta-banner-left { grid-column: 1 / -1; }
.about-index-num { grid-column: 1 / -1; }
.about-summary-content { 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; }
