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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #246444;
  --primary-dim:    #1c5037;
  --primary-glow:   rgba(36, 100, 68, 0.18);
  --accent:         #346C4D;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #221f1a;
  --ink:            #F4F1EA;
  --ink-mid:        #c8c3b8;
  --muted:          #8E8A82;
  --muted-dim:      #5a5650;
  --border:         rgba(244, 241, 234, 0.1);
  --border-brand:   rgba(36, 100, 68, 0.4);
  --hairline:       rgba(36, 100, 68, 0.6);
  --overlay-dark:   rgba(12, 12, 15, 0.82);
  --header-height:  72px;
  --radius:         4px;
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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 30%; 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 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }
address { font-style: normal; }
blockquote { font-style: normal; }

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

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress, #scrollProgress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; z-index: 9999;
}
.scroll-bar, #scrollBar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--primary); z-index: 9999;
  transition: width 80ms linear;
}
#scrollProgress::after, .scroll-progress::after {
  content: '';
  display: block; height: 100%; width: var(--scroll, 0%);
  background: var(--primary);
  transition: width 80ms linear;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.nav-pages ul { display: flex; gap: 28px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  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;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.88); color: var(--ink); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex: 0 0 auto; }

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

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(244,241,234,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; gap: 4px; width: 100%; }
  .nav-pages a { font-size: 18px; padding: 10px 0; display: block; }
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
  .top-nav { position: relative; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: filter 160ms, transform 160ms, box-shadow 160ms;
  letter-spacing: 0.01em;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.btn-primary {
  background: var(--primary);
  color: var(--ink);
}
.btn-primary:hover { filter: brightness(0.88); color: var(--ink); }

.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(244, 241, 234, 0.3);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-block { width: 100%; justify-content: center; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: filter 160ms, transform 160ms;
  width: 100%;
  justify-content: center;
  letter-spacing: 0.01em;
}
.btn-submit:hover { filter: brightness(0.88); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  background: var(--canvas);
}

.hero-bg {
  filter: grayscale(18%) brightness(0.75);
}

.hero-overlay {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(36,100,68,0.32) 0%, transparent 55%),
    linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.55) 50%, rgba(12,12,15,0.72) 100%);
}

.hero-inner {
  padding: clamp(64px, 10vh, 120px) clamp(24px, 6vw, 80px) clamp(64px, 10vh, 96px);
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 48ch;
  margin-bottom: 36px;
}

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

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

/* ============================================================
   TRUST CHIP (hero + standalone)
   ============================================================ */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  white-space: nowrap;
}
.trust-chip-dot { color: var(--primary); font-size: 14px; line-height: 1; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
}
.marquee-item.accent { color: var(--primary); }
.marquee-sep {
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner, .trust-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-chip-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  white-space: nowrap;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.trust-stars {
  color: var(--primary);
  letter-spacing: -1px;
  font-size: 13px;
}
.trust-dot {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  opacity: 0.6;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title em, .section-display em, .about-display em { color: var(--primary); font-style: italic; }
.section-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 52ch;
}
.section-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Inline luxury-brochure rhythm */
.brand-word, .italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25em;
  color: var(--primary);
  font-weight: 500;
  line-height: 0.9;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.services-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.services-header {
  margin-bottom: 64px;
}
.services-header .section-title { max-width: 18ch; }

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

/* Flagship card spans 2 cols */
.service-card-flagship {
  grid-column: span 2;
  min-height: 480px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(36,100,68,0.25);
  text-decoration: none;
  color: var(--ink);
}
.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease-out;
  max-height: none;
}
.service-card:hover > img { transform: scale(1.03); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.96) 0%, rgba(12,12,15,0.2) 60%, transparent 100%);
  z-index: 1;
}
.service-card-body {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}
.service-card-title em { font-style: italic; color: var(--primary); }
.service-card-flagship .service-card-title { font-size: clamp(28px, 3vw, 42px); }
.service-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 40ch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 200ms, transform 200ms;
}
.service-card:hover .service-card-desc {
  opacity: 1;
  transform: translateY(0);
}
.service-card-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card-flagship { grid-column: span 2; min-height: 320px; }
  .service-card { min-height: 260px; }
  .service-card-desc { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship { grid-column: span 1; }
}

/* ============================================================
   GALLERY PREVIEW (index)
   ============================================================ */
.gallery-preview {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.gallery-preview-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gallery-preview-text { display: flex; flex-direction: column; }
.gallery-preview-text .section-title { margin-bottom: 16px; }
.gallery-preview-text .section-desc { margin-bottom: 32px; }
.gallery-preview-text a { display: inline-flex; }
.gallery-preview-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-preview-photo > img {
  width: 100%;
  height: 520px;
  max-height: none;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 400ms;
}
.gallery-preview-photo:hover > img { filter: grayscale(0%); }

@media (max-width: 900px) {
  .gallery-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .gallery-preview-photo > img { height: 360px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--surface);
}
.reviews-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.reviews-header { margin-bottom: 56px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--primary);
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.review-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}
.review-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
}
.review-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.faq-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.faq-header { margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; }

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details.faq-item > summary.faq-question {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
details.faq-item > summary.faq-question::-webkit-details-marker { display: none; }
details.faq-item > summary.faq-question::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
  line-height: 1;
}
details.faq-item[open] > summary.faq-question::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  padding-top: 14px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ============================================================
   CONTACT (index)
   ============================================================ */
.contact {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-col .section-title { margin-bottom: 16px; }
.contact-form-col .section-desc { margin-bottom: 36px; }

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.contact-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-form-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-form-headline em { font-style: italic; color: var(--primary); }
.contact-form-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 36px;
}

.contact-info-col { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border-top: 1px solid var(--hairline);
}
.info-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}
.info-block { margin-bottom: 20px; }
.info-block-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-block-value {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.info-phone-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: block;
  line-height: 1.1;
}
.info-phone-link:hover { color: var(--ink); text-decoration: none; }
.info-phone-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.contact-info-block { margin-bottom: 0; }
.contact-info-heading, .contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-detail-value, .contact-detail a {
  font-size: 15px;
  color: var(--ink-mid);
  text-decoration: none;
}
.contact-detail a:hover { color: var(--primary); }

.contact-areas-block { margin-top: 24px; }
.contact-areas-heading, .contact-areas-block h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.contact-areas-list li {
  font-size: 13px;
  color: var(--ink-mid);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-emergency-block {
  background: rgba(36,100,68,0.12);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  display: block;
  transition: background 150ms;
}
.contact-emergency-block:hover { background: rgba(36,100,68,0.2); text-decoration: none; }
.contact-emergency-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-emergency-phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}
.contact-emergency-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.service-area-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.service-area-pill {
  font-size: 12px;
  color: var(--ink-mid);
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.emergency-banner {
  background: rgba(36,100,68,0.12);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}
.emergency-banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.emergency-banner-text { font-size: 15px; color: var(--ink-mid); }
.emergency-banner-text a { color: var(--primary); }

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

/* ============================================================
   FORMS
   ============================================================ */
.contact-form, .cta-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group, .form-field { display: flex; flex-direction: column; gap: 6px; }

.form-group label, .form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary);
}
.form-group input::placeholder, .form-field input::placeholder,
.form-group textarea::placeholder, .form-field textarea::placeholder {
  color: var(--muted-dim);
}
.form-group select option, .form-field select option {
  background: var(--surface);
  color: var(--ink);
}
.form-group textarea, .form-field textarea { resize: vertical; min-height: 120px; }

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.checkbox-label, .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
  cursor: pointer;
  font-family: var(--font-body);
}
.checkbox-label input[type="checkbox"],
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  accent-color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
}
.form-services-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.form-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.form-submit { margin-top: 8px; }

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

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  min-height: clamp(280px, 45vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--canvas);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, rgba(12,12,15,0.5) 60%, rgba(12,12,15,0.7) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 56px);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}
.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 16px;
}
.page-header-title em { color: var(--primary); font-style: italic; }
.page-header-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ink-mid);
  max-width: 52ch;
  line-height: 1.6;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  padding-block: clamp(80px, 12vh, 140px);
  background: var(--canvas);
}
.services-detail-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-photo-col {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.service-photo-col > img {
  width: 100%;
  height: 500px;
  max-height: none;
  object-fit: cover;
  filter: grayscale(12%);
  transition: filter 400ms;
}
.service-photo-col:hover > img { filter: grayscale(0%); }
.service-photo-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(12,12,15,0.8);
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
}

.service-copy-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
.service-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-title em { font-style: italic; color: var(--primary); }
.service-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
  transition: filter 150ms, transform 150ms;
}
.service-cta:hover { filter: brightness(0.88); transform: translateY(-1px); color: var(--ink); text-decoration: none; }
.service-cta svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 36px; }
  .service-row.reverse { direction: ltr; }
  .service-photo-col > img { height: 300px; }
  .services-detail-inner { gap: 72px; }
}

/* ============================================================
   CTA BANNER (services.html, gallery.html, about.html)
   ============================================================ */
.cta-banner {
  padding-block: clamp(80px, 10vh, 120px);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cta-banner-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.cta-banner-title, .cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-banner-title em, .cta-banner-headline em { font-style: italic; color: var(--primary); }
.cta-banner-sub { font-size: 16px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 28px; }
.cta-banner-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 12px;
}
.cta-banner-phone:hover { color: var(--ink); text-decoration: none; }
.cta-banner-phone svg { width: 22px; height: 22px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

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

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

/* ============================================================
   GALLERY FULL (gallery.html)
   ============================================================ */
.gallery-full {
  padding-block: clamp(80px, 10vh, 120px);
  background: var(--canvas);
}
.gallery-full-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.gallery-section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.gallery-section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.gallery-section-intro h2 em { color: var(--primary); }
.gallery-count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.gallery-section-intro > div > p { font-size: 16px; color: var(--ink-mid); line-height: 1.65; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  align-items: center;
}
.gallery-filter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.filter-pill {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: transparent;
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  border-radius: 0;
}
.gallery-tile.tall { aspect-ratio: 4 / 5; }
.gallery-tile > img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 500ms ease-out, filter 400ms;
  filter: grayscale(15%);
}
.gallery-tile:hover > img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-tile-chip {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(12,12,15,0.8);
  border: 1px solid var(--border-brand);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, transparent 50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 250ms;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.gallery-tile-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.gallery-tile-meta { display: flex; align-items: center; }
.gallery-tile-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-mid);
}
.gallery-tile-location svg { width: 12px; height: 12px; }

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

/* ============================================================
   ABOUT STORY (about.html)
   ============================================================ */
.about-story {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.about-story-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-portrait-col {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.about-portrait-col > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: none;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(12%);
}
.about-portrait-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
.about-body { display: flex; flex-direction: column; gap: 16px; }
.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.about-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-display em { color: var(--primary); }
.about-hairline {
  width: 48px;
  height: 1px;
  background: var(--primary);
  margin-top: 4px;
  margin-bottom: 4px;
}
.about-text { display: flex; flex-direction: column; gap: 18px; }
.about-text p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--ink-mid);
}
.about-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2em;
  color: var(--primary);
  line-height: 0.95;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait-col { position: static; }
  .about-portrait-col > img { aspect-ratio: 16 / 9; }
}

/* ============================================================
   VALUES (about.html)
   ============================================================ */
.values {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--surface);
}
.values-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.values-inner > .section-eyebrow { margin-bottom: 12px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 14px;
  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.3);
}
.value-icon { display: flex; align-items: center; }
.value-icon svg { width: 28px; height: 28px; color: var(--primary); }
.value-title, .value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.value-body { font-size: 15px; color: var(--ink-mid); 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; } }

/* ============================================================
   TIMELINE (about.html)
   ============================================================ */
.timeline {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.timeline-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 12px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-top: 32px;
}
.timeline-dot {
  position: absolute;
  top: 6px; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--canvas);
}
.timeline-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   CREW STRIP (about.html)
   ============================================================ */
.crew-strip {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--surface);
}
.crew-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.crew-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.crew-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.crew-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.crew-check {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.crew-check svg { width: 16px; height: 16px; color: var(--primary); }
.crew-item-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.crew-item-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.crew-accent {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 40px 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.crew-big-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 600;
  font-style: italic;
  line-height: 0.9;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.crew-big-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.crew-pullquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-mid);
  border-left: 2px solid var(--hairline);
  padding-left: 16px;
  margin-top: 8px;
}
.crew-accent-sub { font-size: 13px; color: var(--muted); }
.crew-accent-sub em { font-family: var(--font-display); font-style: italic; color: var(--ink-mid); }

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

/* ============================================================
   ABOUT VERBATIM (about.html)
   ============================================================ */
.about-verbatim {
  padding-block: clamp(112px, 14vh, 180px);
  background: var(--canvas);
}
.about-verbatim-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.about-verbatim-divider {
  width: 48px;
  height: 1px;
  background: var(--primary);
  margin-block: 20px;
}
.about-verbatim-body { display: flex; flex-direction: column; gap: 20px; }
.about-verbatim-body p { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.8; color: var(--ink-mid); }
.about-verbatim-body em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2em;
  color: var(--primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: 48px;
}
.footer-inner, .footer-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { max-height: 48px !important; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}
.footer-brand-name em { color: var(--primary); }
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 30ch;
}
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 150ms, color 150ms;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-heading, .footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer-col-title-gap { margin-top: 28px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.footer-links li { list-style: none; }
.footer-links a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-contact-list a { font-size: 14px; color: var(--ink-mid); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-item:hover { color: var(--primary); text-decoration: none; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
}
.footer-contact-row a { color: var(--ink-mid); }
.footer-contact-row a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-contact-detail { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-detail p { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }
.footer-contact-detail a { color: var(--ink-mid); text-decoration: none; }
.footer-contact-detail a:hover { color: var(--primary); text-decoration: none; }

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px clamp(20px, 5vw, 56px) 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-copyright {
  font-size: 13px;
  color: var(--muted);
}
.footer-service-area { font-size: 12px; color: var(--muted-dim); max-width: 60ch; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 13px; color: var(--muted); }
.footer-legal a:hover { color: var(--primary); }
.footer-phone, .footer-phone-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE CTA PILL (mandatory conversion element)
   ============================================================ */
.mobile-cta, .mobile-cta-pill, .mobile-cta-sticky, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 150ms;
  white-space: nowrap;
}
.mobile-cta:hover, .mobile-cta-pill:hover, .mobile-cta-sticky:hover, .mobile-sticky-cta:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--ink);
}
.mobile-cta svg, .mobile-cta-pill svg, .mobile-cta-sticky svg, .mobile-sticky-cta svg {
  width: 18px; height: 18px; flex: 0 0 auto;
}
.mobile-cta-sticky > a, .mobile-sticky-cta > a {
  display: flex; align-items: center; gap: 8px;
  color: inherit; text-decoration: none;
}
.mobile-cta-sticky > a svg, .mobile-sticky-cta > a svg { width: 18px; height: 18px; }

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 640ms cubic-bezier(0.22,1,0.36,1), transform 640ms cubic-bezier(0.22,1,0.36,1); }
.fade-left { opacity: 0; transform: translateX(28px); transition: opacity 640ms cubic-bezier(0.22,1,0.36,1), transform 640ms cubic-bezier(0.22,1,0.36,1); }
.fade-right { opacity: 0; transform: translateX(-28px); transition: opacity 640ms cubic-bezier(0.22,1,0.36,1), transform 640ms cubic-bezier(0.22,1,0.36,1); }
.scale-in { opacity: 0; transform: scale(0.96); transition: opacity 640ms cubic-bezier(0.22,1,0.36,1), transform 640ms cubic-bezier(0.22,1,0.36,1); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 560ms cubic-bezier(0.22,1,0.36,1), transform 560ms 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; }

/* ============================================================
   STATS (if used)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; padding: 80px 0; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); font-style: italic; font-weight: 600; line-height: 1; color: var(--primary); }
.stat-label { font-family: var(--font-mono); font-size: clamp(11px, 1vw, 14px); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; }

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

/* ============================================================
   MISC UTILITY
   ============================================================ */
.accent { color: var(--primary); }
.reverse { }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: overlay;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 640px) {
  .hero-inner { padding-inline: 20px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .service-row { gap: 28px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1200px) {
  .about-story-grid { grid-template-columns: 380px 1fr; }
}


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