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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #048C4C;
  --accent:         #549F4C;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --ink:            #F4F1EA;
  --muted:          #8E8A82;
  --primary-dim:    rgba(4,140,76,0.18);
  --primary-glow:   rgba(4,140,76,0.32);
  --ink-dim:        rgba(244,241,234,0.55);
  --border:         rgba(244,241,234,0.10);
  --border-brand:   rgba(4,140,76,0.40);
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL 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;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', 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: 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; }

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

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display, h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
em.accent, em {
  font-style: italic;
  color: var(--primary);
}
.section-eyebrow,
.section-eyebrow,
.services-intro-label,
.about-eyebrow,
.faq-header p,
.areas-label,
.contact-form-label,
.cta-banner-eyebrow,
.cta-banner-label,
.page-header-eyebrow,
.service-block-eyebrow,
.service-areas-eyebrow,
.reviews-header p,
.gallery-header p {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.section-heading,
h2.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.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;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.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-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  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"],
.nav-pages a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: filter 150ms;
  font-family: 'Inter Tight', sans-serif;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none !important; color: var(--ink) !important; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(244,241,234,0.08);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 8px 0; width: 100%; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 0; }
  .nav-cta::before { content: "\2706"; font-size: 18px; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}
#hero.hero > img {
  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;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(4,140,76,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.78) 100%);
}
.hero-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 60%);
  z-index: 3;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-bottom: clamp(64px, 9vw, 120px);
  padding-top: clamp(40px, 6vw, 80px);
  width: 100%;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: 'Cormorant Garamond', 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.accent {
  font-style: italic;
  color: var(--primary);
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 46ch;
  margin-bottom: 36px;
  font-family: 'Inter Tight', sans-serif;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink) !important;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none !important;
  transition: filter 200ms, transform 200ms;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover, .btn-primary-cta:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  text-decoration: none !important;
}
.btn-ghost, .btn-ghost-cta, .btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink) !important;
  padding: 17px 31px;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none !important;
  border: 1px solid var(--border);
  transition: border-color 200ms, background 200ms;
  white-space: nowrap;
}
.btn-ghost:hover, .btn-ghost-cta:hover, .btn-outline-light:hover {
  border-color: var(--primary);
  background: var(--primary-dim);
  text-decoration: none !important;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink) !important;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: filter 200ms;
}
.btn-submit:hover { filter: brightness(0.9); }
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   TRUST CHIPS — hero
   ============================================================ */
.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(12,12,15,0.5);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.trust-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.trust-sep, .trust-dot {
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  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;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2;
  color: var(--muted);
}
.marquee-item::before {
  content: "\25CF";
  color: var(--primary);
  margin-right: 24px;
  font-size: 8px;
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: clamp(80px, 10vw, 160px);
}
.services-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.services-header {
  margin-bottom: 48px;
}
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
  white-space: nowrap;
}
.service-tab:hover {
  color: var(--ink);
  border-color: var(--border-brand);
}
.service-tab.active {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-dim);
}
.services-panels {
  position: relative;
}
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-panel.active { display: grid; }
.service-panel-img {
  position: relative;
  overflow: hidden;
}
.service-panel-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.9);
  max-height: none !important;
}
.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: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.service-panel-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-panel-body h3 em {
  font-style: italic;
  color: var(--primary);
}
.service-panel-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 52ch;
}
.service-panel-body a {
  margin-top: 8px;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 240px; position: relative; }
  .service-panel-img img { position: absolute; max-height: none !important; }
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}
.service-block-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  max-height: none !important;
}
.service-block-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.5) 0%, transparent 60%);
  z-index: 1;
}
.service-block-index {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(12,12,15,0.7);
  padding: 4px 10px;
  border-radius: 2px;
}
.service-block-body { padding: 8px 0; }
.service-block-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.service-block-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.service-block-body h2 em {
  font-style: italic;
  color: var(--primary);
}
.service-block-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-features li {
  font-size: 14px;
  color: var(--ink-dim);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
}

/* ============================================================
   SERVICES INTRO
   ============================================================ */
.services-intro {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(48px, 6vw, 80px) 0;
}
.services-intro-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.services-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.services-intro h2 em { font-style: italic; color: var(--primary); }
.services-intro p { font-size: 16px; line-height: 1.7; color: var(--ink-dim); max-width: 60ch; }

/* ============================================================
   AREAS STRIP
   ============================================================ */
.areas-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.areas-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex: 0 0 auto;
}
.areas-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.area-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.area-sep {
  color: var(--primary);
  font-size: 8px;
}

/* ============================================================
   GALLERY (index.html)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding-block: clamp(80px, 10vw, 160px);
}
.gallery-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.gallery-header { margin-bottom: 48px; }
.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 480px;
  max-height: 640px;
}
.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
}
.gallery-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, rgba(12,12,15,0.2) 60%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
}
.gallery-feature-overlay h3 {
  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);
  margin-bottom: 12px;
}
.gallery-feature-overlay h3 em { font-style: italic; color: var(--primary); }
.gallery-feature-overlay p { font-size: 14px; color: var(--ink-dim); margin-bottom: 20px; }
.gallery-feature-overlay a { align-self: flex-start; }

/* Gallery section page (gallery.html) */
.gallery-section {
  background: var(--canvas);
  padding-block: clamp(48px, 7vw, 96px);
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: 1400px;
  margin-inline: auto;
}
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
}
.filter-pill:hover, .filter-pill.active {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-dim);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--surface);
}
.gallery-card.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 400ms;
  filter: saturate(0.8);
  max-height: none !important;
}
.gallery-card:hover img { transform: scale(1.04); filter: saturate(1.0); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, transparent 55%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.gallery-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.gallery-card-desc {
  font-size: 12px;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.gallery-card-location {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.gallery-card-location svg { width: 12px; height: 12px; }
.gallery-card-label {
  position: absolute;
  bottom: 10px; left: 10px;
  z-index: 3;
}
.gallery-card-label-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(12,12,15,0.7);
  padding: 3px 8px;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.tall { grid-row: auto; aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding-block: clamp(80px, 10vw, 160px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.reviews-header { margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(4,140,76,0.18);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  fill: var(--primary);
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}
.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviewer-name { color: var(--ink); }
.review-platform {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--canvas);
  padding-block: clamp(80px, 10vw, 140px);
}
.service-areas-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.service-areas-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.service-areas-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}
.service-areas-title em { font-style: italic; color: var(--primary); }
.areas-header { margin-bottom: 40px; }
.areas-header h2 em { font-style: italic; color: var(--primary); }
.areas-body { display: flex; flex-direction: column; gap: 24px; }
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  transition: border-color 150ms, color 150ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.specialty-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.area-sep { color: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding-block: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--border);
}
.faq-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.faq-header { margin-bottom: 48px; }
.faq-header h2 em { font-style: italic; color: var(--primary); }
.faq-list { max-width: 760px; }
details.faq, details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-family: 'Inter Tight', sans-serif;
  color: var(--ink);
  transition: color 150ms;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  transition: transform 200ms, color 200ms;
  flex: 0 0 auto;
  margin-left: 16px;
  color: var(--muted);
}
details[open] > summary { color: var(--primary); }
details[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer, details p {
  margin-top: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  font-size: 15px;
}
.faq-answer a { color: var(--primary); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--canvas);
  padding-block: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-form-wrap h2,
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.contact-form-wrap h2 em,
.contact-form-title em { font-style: italic; color: var(--primary); }
.contact-form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.section-eyebrow + h2 { margin-top: 0; }

/* Forms */
.contact-form, .estimate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full, .form-field:last-of-type { grid-column: 1 / -1; }
.form-label, label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], select, .form-textarea, textarea {
  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;
  outline: none;
  transition: border-color 150ms;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
}
.form-input::placeholder, input::placeholder, textarea::placeholder {
  color: var(--muted);
}
select option { background: var(--surface); color: var(--ink); }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
textarea, .form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Contact info */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 4px;
  padding: 36px;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-value a { color: var(--primary); }
.contact-emergency {
  background: rgba(4,140,76,0.12);
  border: 1px solid var(--border-brand);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.contact-emergency-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-emergency-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.contact-emergency-value a { color: var(--ink); }
.contact-divider { height: 1px; background: var(--border); margin: 4px 0; }
.info-card-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}
.info-card-heading em { font-style: italic; color: var(--primary); }
.emergency-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(4,140,76,0.10);
  border: 1px solid var(--border-brand);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.emergency-banner svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--primary); }
.emergency-banner-text { font-size: 14px; line-height: 1.5; color: var(--ink-dim); }
.info-divider { height: 1px; background: var(--border); margin: 4px 0; }
.info-block { padding: 16px 0; }
.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-block a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--ink);
}
.info-block a svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; }
.info-block a:hover { color: var(--primary); }
.hours-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.hours-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-dim);
}
.hours-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

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

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--canvas);
  padding-block: clamp(80px, 10vw, 160px);
}
.about-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.about-portrait-col { position: relative; }
.about-portrait-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 600px;
}
.about-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.92);
  max-height: none !important;
}
.about-portrait-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 72px; height: 72px;
  background: var(--primary);
  border-radius: 4px;
  z-index: -1;
}
.about-content-col { padding-top: 8px; }
.about-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-headline em { font-style: italic; color: var(--primary); }
.about-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 24px;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.about-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.about-body p em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25em;
  color: var(--primary);
  font-weight: 400;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait-wrap { aspect-ratio: 16 / 9; max-height: 360px; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 38vw, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--surface);
}
.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
  max-height: none !important;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.5) 60%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 5vw, 60px);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-header-title em { font-style: italic; color: var(--primary); }
.page-header-sub {
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 52ch;
  line-height: 1.65;
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin-inline: auto;
  padding: 16px clamp(20px, 5vw, 60px);
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.sep { color: var(--primary); }
.current { color: var(--ink); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(4,140,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-border-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.cta-banner-border-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.cta-banner-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-banner-inner > :only-child,
.cta-banner-inner.fade-up {
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.cta-banner-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.cta-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-banner-title em { font-style: italic; color: var(--primary); }
.cta-banner-sub {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 52ch;
}
.cta-phone-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.cta-phone-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--primary) !important;
  text-decoration: none !important;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cta-banner-actions .btn-primary-cta svg,
.cta-banner-actions .btn-ghost-cta svg { width: 18px; height: 18px; }
.cta-banner-left { display: flex; flex-direction: column; align-items: flex-start; }
.cta-banner-right { display: flex; align-items: center; }
.estimate-form { width: 100%; }
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: clamp(56px, 8vw, 96px);
}
.footer-inner, .footer-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.footer-tagline, .footer-brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.3;
}
.footer-tagline em { color: var(--primary); }
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 32ch;
}
.footer-col-heading, .footer-col-title, .footer-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.footer-links, .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a, .footer-col ul a {
  font-size: 14px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-col ul a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex: 0 0 auto; }
.footer-contact-item a { color: var(--ink-dim); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-line {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-contact-line a { font-size: 13px; color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(20px, 5vw, 60px);
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
}
.footer-bottom-right {
  display: flex;
  gap: 16px;
}
.footer-bottom-right a {
  font-size: 12px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-emergency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.emergency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.6s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.scale-in   { transform: scale(0.94); }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 400ms; }

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

/* SVG caps */
.review-stars svg { width: 16px !important; height: 16px !important; }
.gallery-card-location svg { width: 12px !important; height: 12px !important; }
.footer-contact-item svg { width: 16px !important; height: 16px !important; }
.btn svg, .btn-primary svg, .btn-primary-cta svg,
.btn-ghost svg, .btn-ghost-cta svg { width: 18px; height: 18px; }
.info-block a svg { width: 18px !important; height: 18px !important; }
.emergency-banner svg { width: 20px !important; height: 20px !important; }
.btn-submit svg { width: 18px !important; height: 18px !important; }
.mobile-cta svg, .mobile-cta-pill svg, .mobile-sticky-cta svg {
  width: 20px !important; height: 20px !important;
}

/* Unique move: display-font inline words in body copy */
body em,
.about-body em,
.service-panel-body em,
.service-block-body em,
.cta-banner-title em,
.services-intro em,
.page-header-title em,
.footer-tagline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--primary);
}

/* Inline em at 1.25x in body paragraphs */
.about-body p em,
.service-block-desc em,
.service-panel-body p em {
  font-size: 1.25em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

/* Scroll padding */
html { scroll-padding-top: calc(var(--header-height) + 16px); }


/* === 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-block-photo { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.gallery-card { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
/* 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; }
