@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@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #74942C;
  --accent:         #6C922C;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --ink:            #F4F1EA;
  --muted:          #8E8A82;
  --ink-dim:        #B8B4AC;
  --border:         rgba(244,241,234,0.10);
  --border-brand:   rgba(116,148,44,0.35);
  --primary-glow:   rgba(116,148,44,0.18);
  --surface-raise:  #221E1A;
  --header-height:  72px;
}

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

/* ============================================================
   RESET & GLOBALS
   ============================================================ */
*, *::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;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  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: 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: 180px !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; }

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, 100px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

em {
  font-style: italic;
  color: var(--primary);
}

p { line-height: 1.72; }

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

/* Label / mono style */
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.service-eyebrow,
.form-eyebrow,
.cta-banner-eyebrow,
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 180ms, transform 180ms, background 180ms, color 180ms;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary,
.btn-estimate {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover,
.btn-estimate:hover { filter: brightness(1.1); color: #fff; }

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: filter 180ms, transform 180ms;
}
.btn-submit:hover { filter: brightness(1.1); transform: translateY(-1px); }

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

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

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
}

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

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .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 var(--border);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; color: var(--ink); }
  .nav-cta span { display: none; }
}

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(116,148,44,0.22) 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.82) 100%);
}

.booking-ribbon {
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 10;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(12,12,15,0.7);
  border: 1px solid var(--border-brand);
  padding: 8px 16px;
  border-radius: 2px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(72px, 10vh, 120px);
  width: 100%;
}

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

.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;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--primary);
}

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

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

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

.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.trust-chip svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

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

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 4px;
}
.trust-badge strong { color: var(--ink); font-weight: 500; }

.trust-badge-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 8px;
  flex-shrink: 0;
}

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

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--primary); }

.section-display-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 56px;
}
.section-display-title em { font-style: italic; color: var(--primary); }

/* ============================================================
   SERVICES (tabbed panel — index.html)
   ============================================================ */
.services {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 180ms, border-color 180ms, background 180ms;
}
.service-tab:hover { color: var(--ink); border-color: rgba(244,241,234,0.3); }
.service-tab.active {
  color: var(--canvas);
  background: var(--primary);
  border-color: var(--primary);
}

.services-panels { position: relative; }

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

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

.service-panel-body {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-panel-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.service-panel-title em { font-style: italic; color: var(--primary); }

.service-panel-body p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
}

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

.services-footer {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: gap 180ms;
}
.text-link:hover { gap: 14px; text-decoration: none; color: var(--primary); }
.text-link svg { width: 16px; height: 16px; }

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

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--canvas);
}

.services-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.services-intro {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
}
.services-intro h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}
.services-intro h2 em { font-style: italic; color: var(--primary); }
.services-intro p { color: var(--ink-dim); font-size: 16px; line-height: 1.7; }

.service-feature {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
  overflow: hidden;
}
.service-feature.reverse { grid-template-columns: 1fr 52%; }
.service-feature.reverse .service-feature-photo { order: 2; }
.service-feature.reverse .service-feature-body { order: 1; }

.service-feature-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 480px;
}
.service-feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.85);
  transition: filter 400ms;
}
.service-feature:hover .service-feature-photo img { filter: saturate(1); }

.service-feature-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.5) 0%, transparent 50%);
  z-index: 1;
}

.service-num {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.6);
}

.service-feature-body {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: var(--canvas);
  border-left: 1px solid var(--border);
}
.service-feature.reverse .service-feature-body {
  border-left: none;
  border-right: 1px solid var(--border);
}

.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  margin-bottom: 8px;
}
.service-feature-body h2 em { font-style: italic; color: var(--primary); }
.service-feature-body p { font-size: 15px; color: var(--ink-dim); line-height: 1.7; }
.service-feature-body .service-eyebrow { margin-bottom: 8px; }

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  font-size: 14px;
  color: var(--ink-dim);
  padding-left: 20px;
  position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--primary);
}

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

@media (max-width: 900px) {
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature-photo,
  .service-feature.reverse .service-feature-photo { order: 0; min-height: 280px; }
  .service-feature-body,
  .service-feature.reverse .service-feature-body {
    order: 1; border-left: none; border-right: none;
    border-top: 1px solid var(--border);
  }
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

.gallery-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 7;
  background: var(--surface);
}
.gallery-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.8);
  transition: filter 500ms, transform 500ms;
}
.gallery-feature:hover > img { filter: saturate(1); transform: scale(1.02); }

.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, rgba(12,12,15,0.2) 55%, transparent 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 48px);
}

.gallery-overlay-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-overlay-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.gallery-overlay-title em { font-style: italic; color: var(--primary); }

/* ============================================================
   GALLERY FULL (gallery.html)
   ============================================================ */
.gallery-section {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--canvas);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.gallery-section .gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
}
.filter-pill:hover,
.filter-pill.active {
  color: var(--ink);
  border-color: var(--primary);
  background: var(--primary-glow);
}

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

.case-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  cursor: pointer;
}
.case-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.case-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.75);
  transition: filter 400ms, transform 400ms;
}
.case-card:hover > img { filter: saturate(1); transform: scale(1.03); }

.case-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity 300ms;
}
.case-card:hover .case-card-overlay { opacity: 1; }

.case-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 22px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.case-card:hover .case-card-body { transform: translateY(0); opacity: 1; }

.case-card-body h2 {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.1;
  color: var(--ink);
}
.case-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.case-location,
.case-desc {
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-card.featured { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

.service-areas-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.areas-title-block { display: flex; flex-direction: column; }

.areas-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: border-color 200ms, color 200ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); }

.area-pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.areas-specialties {
  border-top: 1px solid var(--border-brand);
  padding-top: 32px;
}
.areas-specialties h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-bottom: 20px;
}
.specialty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.specialty-list li {
  font-size: 14px;
  color: var(--ink-dim);
  padding-left: 18px;
  position: relative;
}
.specialty-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--primary);
}

.service-areas-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

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

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.team-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.team-cta-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.team-cta-text em { font-style: italic; color: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}

.faq-title-col { position: sticky; top: calc(var(--header-height) + 32px); }
.faq-title-col h2 { font-size: clamp(36px, 5vw, 64px); }
.faq-title-col h2 em { font-style: italic; color: var(--primary); }
.faq-title-col h2 br + em { display: block; }

.faq-list { display: flex; flex-direction: column; }

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
details.faq-item > summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  user-select: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
  margin-left: 24px;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  padding: 0 0 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
}

/* About page FAQ variant */
#faq .faq-list details {
  border-bottom: 1px solid var(--border);
}
#faq .faq-list details > summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  user-select: none;
}
#faq .faq-list details > summary::-webkit-details-marker { display: none; }
#faq .faq-list details > summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
  margin-left: 24px;
}
#faq .faq-list details[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
#faq .faq-list details p.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
}

.faq-chevron { width: 20px; height: 20px; color: var(--primary); transition: transform 200ms; }
details[open] .faq-chevron { transform: rotate(180deg); }

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-title-col { position: static; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-form-col h2,
.contact-form-wrap h2,
.form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.contact-form-col h2 em,
.contact-form-wrap h2 em,
.form-title em { font-style: italic; color: var(--primary); }

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

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

.form-group,
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: span 2; }

.form-group label,
.form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  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: 4px;
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 200ms;
  outline: none;
  width: 100%;
}
.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 textarea,
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select,
.form-field select {
  appearance: none;
  cursor: pointer;
}

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

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

.contact-info-col,
.contact-info { display: flex; flex-direction: column; gap: 0; }

.info-block,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item,
.info-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-item:last-child,
.info-section:last-child { border-bottom: none; }

.info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.info-value,
.info-value-sm {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.info-value a,
.info-value-sm a {
  color: var(--ink);
  text-decoration: none;
}
.info-value a:hover,
.info-value-sm a:hover { color: var(--primary); }

.info-phone { font-size: 22px; font-weight: 600; }
.info-email { font-size: 15px; }

.social-links,
.socials-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link,
.social-icon,
.footer-social,
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  transition: border-color 200ms, color 200ms;
  text-decoration: none;
}
.social-link:hover,
.social-icon:hover,
.footer-social:hover,
.footer-social-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.social-link svg,
.social-icon svg,
.footer-social svg,
.footer-social-link svg { width: 18px; height: 18px; }

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

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

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   CTA BANNER (services.html / gallery.html / about.html)
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--surface);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
  z-index: 0;
}

.cta-banner-accent {
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,148,44,0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-banner-supergraphic {
  position: absolute;
  top: 0; right: -80px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 600;
  font-style: italic;
  color: rgba(244,241,234,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 80px);
  align-items: center;
}

.cta-banner-text,
.cta-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-banner-title,
.cta-banner-copy h2,
.cta-banner-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cta-banner-title em,
.cta-banner-copy h2 em,
.cta-banner-text h2 em { font-style: italic; color: var(--primary); }
.cta-banner-sub,
.cta-banner-copy p { font-size: 15px; color: var(--ink-dim); line-height: 1.7; }

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-banner-actions a.btn,
.cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-phone-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cta-phone-large,
.cta-phone-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.cta-phone-large:hover,
.cta-phone-number:hover { color: var(--primary); text-decoration: none; }

.cta-phone-block { display: flex; flex-direction: column; gap: 6px; }
.cta-note { font-size: 12px; color: var(--muted); margin-top: 8px; }

.cta-email-link { font-size: 15px; color: var(--ink-dim); }
.cta-email-link:hover { color: var(--primary); }

.cta-left,
.cta-right { display: flex; flex-direction: column; gap: 16px; }

/* gallery.html cta-banner variant */
.gallery-section + #contact.cta-banner .cta-banner-inner {
  grid-template-columns: 1fr 1fr;
}

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

/* ============================================================
   ESTIMATE STRIP (contact.html)
   ============================================================ */
.estimate-strip {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.estimate-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.estimate-strip-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.estimate-strip-text h2 {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.0;
}
.estimate-strip-text h2 em { font-style: italic; color: var(--primary); }
.estimate-strip-text p { font-size: 15px; color: var(--ink-dim); }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.btn-estimate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms, transform 180ms;
}
.btn-estimate:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-estimate svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 640px) {
  .estimate-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 56vh;
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--surface);
}

.page-header > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
  max-height: none;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.55) 55%, rgba(12,12,15,0.75) 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  padding-bottom: clamp(56px, 8vh, 96px);
  width: 100%;
}

.page-header-eyebrow,
.page-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.page-header-title,
.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 20px;
}
.page-header-title em,
.page-title em { font-style: italic; color: var(--primary); }

.page-header-sub,
.page-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-dim);
  max-width: 52ch;
  line-height: 1.6;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

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

.about-story-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 640px;
  filter: saturate(0.7);
  display: block;
}

.portrait-caption {
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-story-copy { display: flex; flex-direction: column; gap: 20px; }

.about-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

.about-display-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-display-headline em { font-style: italic; color: var(--primary); }

.about-body-text p {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-brand);
  padding-top: 24px;
  margin-top: 8px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

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

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.credential-card {
  background: var(--surface-raise);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 2px solid var(--primary);
  transition: background 250ms;
}
.credential-card:hover { background: rgba(116,148,44,0.05); }

.credential-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.credential-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.credential-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

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

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
}

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

.specialty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-dim);
}

.specialty-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialty-check::after {
  content: '';
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--primary);
  border-bottom: 1.5px solid var(--primary);
  transform: rotate(-45deg) translateY(-1px);
}

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

/* ============================================================
   VALUES
   ============================================================ */
.values {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.value-card {
  background: var(--surface-raise);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid transparent;
  transition: border-color 250ms, background 250ms;
}
.value-card:hover { border-top-color: var(--primary); background: rgba(116,148,44,0.04); }

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 52px;
  line-height: 1.0;
  color: rgba(244,241,234,0.06);
  letter-spacing: -0.03em;
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.0;
  color: var(--ink);
}
.value-title em { font-style: italic; color: var(--primary); }

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

/* ============================================================
   TEAM BRIDGE
   ============================================================ */
.team-bridge {
  padding: clamp(112px, 14vh, 180px) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.team-bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.team-bridge-text { display: flex; flex-direction: column; gap: 20px; }
.team-bridge-text h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
}
.team-bridge-text h2 em { font-style: italic; color: var(--primary); }
.team-bridge-text p { font-size: 15px; color: var(--ink-dim); line-height: 1.75; }

.team-cta { }
.team-cta-inner { }
.team-cta-text { }

.team-bridge-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.team-bridge-photo img {
  width: 100%;
  object-fit: cover;
  max-height: 520px;
  filter: saturate(0.75);
}

.team-bridge a.btn { align-self: flex-start; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(56px, 7vh, 96px) 0;
  border-bottom: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(56px, 7vh, 96px) 0;
  border-bottom: 1px solid var(--border);
}

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

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.footer-contact-line a,
.footer-contact-item a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line a:hover,
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

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

.footer-col h4,
.footer-col-title,
.footer-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a,
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover,
.footer-col ul li a:hover { color: var(--ink); text-decoration: none; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 150ms; }
.footer-col ul a:hover { color: var(--ink); text-decoration: none; }

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

.footer-copy,
.footer-copyright {
  font-size: 12px;
  color: var(--muted);
}

.footer-certs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cert-badge,
.footer-cert {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 2px;
}

.footer-phone,
.footer-email {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.footer-phone:hover,
.footer-email:hover { color: var(--primary); }

address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.mobile-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
}
.mobile-call a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 200ms;
}
.mobile-call a:hover { filter: brightness(1.1); transform: translateY(-2px); color: #fff; text-decoration: none; }
.mobile-call a svg { width: 18px; height: 18px; flex-shrink: 0; }

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

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

.stagger.visible > *:nth-child(1)  { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { transition-delay: 60ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 120ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 180ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 240ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 300ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 360ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 420ms; }
.stagger.visible > *:nth-child(9)  { transition-delay: 480ms; }
.stagger.visible > *:nth-child(10) { transition-delay: 540ms; }
.stagger.visible > *:nth-child(n+11) { transition-delay: 580ms; }

/* Hero items already visible */
.hero .hero-eyebrow,
.hero .hero-title,
.hero .hero-sub,
.hero .hero-ctas,
.hero .hero-trust-chips {
  opacity: 1; transform: none;
}

/* ============================================================
   SVG CAPS
   ============================================================ */
svg { max-width: 100%; }
.text-link svg,
.services-footer svg { width: 16px; height: 16px; }
.hero-ctas svg,
.btn svg,
.btn-estimate svg,
.btn-ghost svg { width: 16px; height: 16px; }
.trust-chip svg { width: 14px; height: 14px; }
.footer-social svg,
.footer-social-link svg,
.social-link svg,
.social-icon svg { width: 18px; height: 18px; }
.mobile-call-pill svg,
.mobile-cta svg,
.mobile-call a svg { width: 18px; height: 18px; }
.faq-chevron { width: 20px; height: 20px; }

/* ============================================================
   MISC DISPLAY MOMENTS (unique move)
   — service names, about titles, founder names set in
     Cormorant Garamond italic at 1.25× surrounding size,
     tinted brand-color.
   ============================================================ */
.service-panel-title em,
.service-feature-body h2 em,
.about-display-headline em,
.value-title em,
.team-bridge-text h2 em,
.cta-banner-title em,
.section-title em,
.section-display-title em,
.hero-title em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--primary);
}

/* Inline display-font moment in body copy */
.about-body-text em,
.service-panel-body em,
.estimate-strip-text em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2em;
  color: var(--primary);
  line-height: 1.1;
}

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

/* ============================================================
   REVIEW CARDS (if present)
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 4px;
  background: var(--surface-raise);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; font-style: italic; color: var(--ink-dim); }
.review-attribution { font-size: 13px; color: var(--muted); }

/* ============================================================
   MARQUEE (if used)
   ============================================================ */
.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;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ============================================================
   FEATURED GALLERY CARD
   ============================================================ */
.featured {
  grid-column: span 2;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.full { grid-column: span 2; }
.reverse { }

/* ============================================================
   MEDIA: MOBILE ADJUSTMENTS
   ============================================================ */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 7px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 4px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.areas-title-block { grid-column: 1 / -1; }
.faq-list { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.cta-left { grid-column: 1 / -1; }
.cta-right { grid-column: 1 / -1; }
.about-story-copy { grid-column: 1 / -1; }
.specialty-item { grid-column: 1 / -1; }
.team-bridge-text { grid-column: 1 / -1; }
.service-areas-label { grid-column: 1 / -1; }
.area-pill { grid-column: 1 / -1; }
.form-field { 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; }
