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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #5C8A3C;
  --accent:         #2D5A1E;
  --primary-tint:   rgba(92,138,60,0.12);
  --primary-tint-8: rgba(92,138,60,0.08);
  --primary-tint-20:rgba(92,138,60,0.20);
  --canvas:         #F4EFE6;
  --canvas-dark:    #EDE7D9;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3A3630;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --shadow-sm:      0 2px 8px rgba(31,27,22,0.08);
  --shadow-md:      0 8px 32px rgba(31,27,22,0.12);
  --shadow-lg:      0 24px 64px rgba(31,27,22,0.16);
  --r-sm:           8px;
  --r-md:           12px;
  --r-lg:           20px;
  --r-pill:         999px;
  --section-py:     clamp(96px, 12vh, 152px);
  --max-w:          1240px;
  --header-height:  72px;
  --mounted-border: 12px;
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 17px;
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.68;
  -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; 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"] { position: relative; overflow: hidden; max-height: 64vh; }
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

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

/* SVG caps */
svg { display: block; }
.info-icon svg, .faq-chevron,
.nav-cta svg, .nav-toggle svg,
.btn svg, .service-cta svg,
.area-pill svg, .cert-chip svg,
.case-location svg, .footer-socials svg,
.guarantee-chip svg, .cta-banner-actions svg,
.btn-outline svg, .mobile-call svg,
.mobile-cta-pill svg, .mobile-sticky-cta svg,
.mobile-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

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

.scroll-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--primary); z-index: 9999; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.inner        { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-pad  { padding: var(--section-py) 0; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.8vw, 34px); line-height: 1.1; }

p { line-height: 1.7; }

.display-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.display-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.eyebrow, .eyebrow-label, .section-eyebrow,
.service-eyebrow, .page-header-eyebrow,
.cta-banner-eyebrow, .strip-label,
.info-label, .info-block-label, .footer-col-heading,
.footer-col-title, .footer-col-head, .credential-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.3;
}

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

.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; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0;
  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;
  white-space: nowrap;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.9); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta-label { }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-pages {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; display: block; }

  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px; border-radius: var(--r-pill); }
}

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

#hero.hero img,
#hero.hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none !important;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.30) 0%,
    rgba(31,27,22,0.62) 55%,
    rgba(44,90,30,0.42) 100%
  );
}

.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(64px, 9vh, 112px);
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.85);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(244,239,230,0.88);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: #C8E4A8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 180ms, transform 180ms, box-shadow 180ms;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn-primary, .btn-est, .btn-submit, .form-submit, .btn-banner-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-primary:hover, .btn-est:hover, .btn-submit:hover, .form-submit:hover, .btn-banner-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-ghost, .btn-light, .btn-phone, .btn-banner-secondary {
  background: rgba(244,239,230,0.18);
  color: #fff;
  border: 1.5px solid rgba(244,239,230,0.5);
  border-radius: 10px;
  padding: 15px 28px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 180ms, transform 180ms;
  backdrop-filter: blur(4px);
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-ghost:hover, .btn-light:hover, .btn-phone:hover, .btn-banner-secondary:hover {
  background: rgba(244,239,230,0.28);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 180ms, color 180ms, transform 180ms;
  font-family: var(--font-body);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 24px;
  transition: filter 150ms, transform 150ms;
  font-family: var(--font-body);
}
.service-cta:hover { filter: brightness(0.9); transform: translateY(-1px); color: #fff; text-decoration: none; }
.service-cta svg { width: 16px; height: 16px; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas-dark);
  max-height: 64px;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  line-height: 1.2;
}

.mdot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  vertical-align: middle;
}

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

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.strip-label {
  text-align: center;
  margin-bottom: 24px;
  color: var(--muted);
}

.cert-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.cert-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   MOUNTED PRINT PHOTO EFFECT (the signature move)
   ============================================================ */
.photo-mounted,
.founder-portrait-frame,
.crew-photo-frame.photo-mounted-surface,
.service-block-photo-frame {
  position: relative;
  background: var(--canvas);
  padding: var(--mounted-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.photo-mounted img,
.founder-portrait-frame img,
.crew-photo-frame img,
.service-block-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-md) - var(--mounted-border));
  max-height: none !important;
}

/* Service panel photo */
.panel-photo {
  position: relative;
  background: var(--canvas);
  padding: var(--mounted-border);
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
}
.panel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 440px !important;
  border-radius: calc(var(--r-md) - var(--mounted-border));
}

/* Gallery tiles get the mounted print treatment */
.gallery-tile {
  background: var(--canvas);
  padding: var(--mounted-border);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-md) - var(--mounted-border));
  max-height: none !important;
  display: block;
}
.gallery-tile.fade-up { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.gallery-tile.fade-up:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

#services .inner > .eyebrow,
#services .inner > p.eyebrow {
  margin-bottom: 12px;
}

#services .inner > h2 {
  margin-bottom: 36px;
}

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

.service-tab {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
  white-space: nowrap;
}
.service-tab:hover {
  background: var(--primary-tint);
  border-color: var(--primary);
  color: var(--accent);
}
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.services-panels { position: relative; }

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

.panel-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 0;
  padding: 0;
  background: var(--canvas-dark);
  overflow: hidden;
}
.panel-photo::before {
  content: '';
  position: absolute;
  inset: var(--mounted-border);
  border-radius: calc(var(--r-md) - var(--mounted-border));
  background: var(--canvas);
  z-index: 0;
}
/* Reset the generic override for panel photo since it's full bleed in the panel */
.service-panel .panel-photo {
  position: relative;
  padding: 16px;
  background: var(--canvas);
}
.service-panel .panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px !important;
  display: block;
  border-radius: calc(var(--r-md) - 6px);
  position: relative;
  z-index: 1;
}

.panel-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
.panel-body p {
  color: var(--ink-mid);
  line-height: 1.68;
  font-size: 16px;
}

@media (max-width: 760px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .panel-photo { min-height: 240px; }
  .panel-body { padding: 28px 24px; }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
  background: var(--surface);
  padding: var(--section-py) 0;
}

#gallery .inner > h2 { margin-bottom: 36px; }

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

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#service-areas {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

#service-areas .inner > h2 { margin-bottom: 16px; }

.areas-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 60ch;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.area-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Area pills in contact info card */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--surface);
  padding: var(--section-py) 0;
}

#faq .inner > h2 { margin-bottom: 40px; }

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

details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  user-select: none;
  gap: 16px;
}
details summary::-webkit-details-marker { display: none; }

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

.faq-answer {
  padding-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 720px;
}

/* ============================================================
   TEAM CTA
   ============================================================ */
#team-cta {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.team-cta-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.team-portrait {
  position: relative;
  background: var(--canvas-dark);
  padding: var(--mounted-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-md) - var(--mounted-border));
  max-height: 480px !important;
  display: block;
}

.team-cta-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-cta-text p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  color: var(--ink);
}

@media (max-width: 760px) {
  .team-cta-wrap { grid-template-columns: 1fr; gap: 32px; }
  .team-portrait img { max-height: 320px !important; }
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--surface);
  padding: var(--section-py) 0;
}
#contact .inner > h2 { margin-bottom: 40px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
}

label, .form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input, input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], .form-select, select, textarea, .form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
  appearance: none;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92,138,60,0.12);
}

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

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

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

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

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }

.info-icon {
  width: 40px; height: 40px;
  background: var(--primary-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.info-icon svg { width: 18px; height: 18px; }

.info-label { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.info-value { color: var(--ink); font-size: 15px; font-weight: 500; }
.info-value a { color: var(--primary); }

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

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

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none !important;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(31,27,22,0.25) 0%, rgba(31,27,22,0.65) 100%);
  pointer-events: none;
}

.page-header-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 48px);
}

.page-header-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.page-header-eyebrow {
  color: rgba(244,239,230,0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-header-sub {
  color: rgba(244,239,230,0.8);
  font-size: 16px;
  margin-top: 12px;
  max-width: 52ch;
}

/* ============================================================
   SERVICE BLOCKS (services.html)
   ============================================================ */
.service-nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.service-nav-inner {
  display: flex;
  gap: 4px;
  padding: 12px clamp(20px, 4vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
  white-space: nowrap;
}

.service-nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 150ms, color 150ms;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.service-nav-link:hover {
  background: var(--primary-tint);
  color: var(--accent);
  text-decoration: none;
}

.service-block {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) { background: var(--surface); }
.service-block:nth-child(odd)  { background: var(--canvas); }

.service-block-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-block.photo-right .service-block-inner {
  grid-template-columns: 1fr 1fr;
}
.service-block.photo-right .service-block-photo { order: 2; }
.service-block.photo-right .service-block-copy  { order: 1; }

.service-block-photo-frame {
  background: var(--canvas);
  padding: var(--mounted-border);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-block-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-md) - var(--mounted-border));
  display: block;
  max-height: none !important;
}

.service-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-block-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.service-block-desc {
  color: var(--ink-mid);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 12px;
}

@media (max-width: 760px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block.photo-right .service-block-photo { order: -1; }
  .service-block.photo-right .service-block-copy  { order: 2; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--accent);
  padding: clamp(72px, 9vh, 120px) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-supergraphic {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.06;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 2vw;
  pointer-events: none;
  user-select: none;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.cta-banner-eyebrow {
  color: rgba(244,239,230,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cta-banner-inner h2,
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-banner-sub {
  color: rgba(244,239,230,0.80);
  font-size: 17px;
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-banner-phone {
  color: rgba(244,239,230,0.70);
  font-size: 14px;
  margin-top: 16px;
  display: block;
}
.cta-banner-phone a { color: inherit; }

.cta-banner-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.cta-banner img.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.2;
  max-height: none !important;
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  letter-spacing: 0.03em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.eyebrow-rule {
  width: 36px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

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

.case-card {
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.case-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--canvas);
  padding: 10px;
}
.case-photo-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-sm);
  display: block;
  max-height: none !important;
}

.case-num-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.case-cat-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.case-body {
  padding: 20px 20px 24px;
}
.case-body h3 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
  font-family: var(--font-display);
}

.case-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.case-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-chip {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.case-headline { font-family: var(--font-display); font-weight: 400; }

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

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-story { background: var(--canvas); }

.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-portrait-col { }

.founder-portrait-frame.photo-mounted {
  aspect-ratio: 3/4;
  max-height: 600px;
}
.founder-portrait-frame.photo-mounted img {
  max-height: none !important;
}

.founder-story-col { padding-top: 8px; }

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 28px;
  color: var(--ink-mid);
  font-size: 16px;
}

.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-brand {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait-frame.photo-mounted { max-height: 360px; aspect-ratio: 4/3; }
}

/* Values Section */
.values-section { background: var(--surface); }

.values-header {
  margin-bottom: 48px;
}

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

.value-card {
  padding: 28px 24px;
  background: var(--canvas);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* Timeline */
.timeline-section { background: var(--canvas); }

.timeline-header { margin-bottom: 48px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border-strong);
  padding-left: 32px;
  max-width: 720px;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -41px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--canvas);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot-core {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-header h2 { font-family: var(--font-display); }

/* Crew Section */
.crew-section { background: var(--surface); }
.crew-header { margin-bottom: 36px; }

.crew-photo-frame.photo-mounted-surface {
  max-width: 880px;
  margin: 0 auto 32px;
  aspect-ratio: 16/7;
  background: var(--canvas);
}
.crew-photo-frame.photo-mounted-surface img {
  max-height: none !important;
}

.crew-desc {
  max-width: 640px;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* Credentials Section */
.credentials-section { background: var(--canvas); }
.credentials-header { margin-bottom: 48px; }

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

.credential-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.credential-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.credential-label {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.credential-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.awards-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.award-chip {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

.contact-form-col { display: flex; flex-direction: column; gap: 24px; }
.contact-form-col .section-eyebrow { margin-bottom: 4px; }
.contact-form-col h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
}

.contact-form-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.info-card-sub {
  font-size: 14px;
  color: var(--muted);
}

.info-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.info-block {
  padding: 8px 0;
}
.info-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-block-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.info-block-value a { color: var(--primary); }
.info-block > a { color: var(--primary); font-weight: 600; font-size: 18px; }

.info-hours-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.info-hours-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-tint-20);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  margin-top: 8px;
}
.guarantee-chip svg { width: 16px; height: 16px; }

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

/* Inline contact info (index.html contact section) */
.info-phone-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.75);
  padding: 72px 0 0;
}

.footer-inner,
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand,
.footer-brand-col { }

.footer-logo img,
.footer-brand img,
.footer-brand-col img {
  max-height: 36px !important;
  max-width: 160px !important;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(244,239,230,0.9);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(244,239,230,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 28ch;
}

.footer-contact-line,
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}
.footer-contact-row svg,
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }
.footer-contact-link,
.footer-phone-link,
.footer-phone-big,
.footer-email-link { color: rgba(244,239,230,0.75); font-size: 13px; }
.footer-phone-big { font-size: 16px; font-weight: 600; color: rgba(244,239,230,0.9); }

.footer-col-heading,
.footer-col-title,
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.45);
  margin-bottom: 18px;
  display: block;
}

.footer-links,
.footer-areas,
.footer-contact-list,
.footer-cert-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }

.footer-links a,
.footer-areas li,
.footer-contact-list li,
.footer-contact-list a {
  font-size: 13px;
  color: rgba(244,239,230,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: rgba(244,239,230,0.95); text-decoration: none; }

.footer-cert-item,
.footer-cert,
.f-cert-chip {
  font-size: 12px;
  color: rgba(244,239,230,0.50);
  line-height: 1.5;
}

.footer-certs { display: flex; flex-direction: column; gap: 6px; }

.footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.f-cert-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(92,138,60,0.18);
  color: #A8D080;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.footer-link-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.footer-link-block a {
  font-size: 13px;
  color: rgba(244,239,230,0.65);
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(244,239,230,0.08);
  color: rgba(244,239,230,0.7);
  transition: background 150ms;
  text-decoration: none;
}
.footer-socials a:hover { background: var(--primary); text-decoration: none; }
.footer-socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.08);
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244,239,230,0.35);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright { color: rgba(244,239,230,0.35); font-size: 12px; }
.footer-awards { color: rgba(244,239,230,0.35); font-size: 12px; }
.footer-copy { color: rgba(244,239,230,0.35); font-size: 12px; }

@media (max-width: 900px) {
  .footer-grid, .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand, .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid, .footer-inner { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: auto; }
}

/* ============================================================
   MOBILE CTA PILL (multiple variant names in HTML)
   ============================================================ */
.mobile-call-pill,
.mobile-call,
.mobile-cta-pill,
.mobile-sticky-cta,
.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .mobile-call-pill,
  .mobile-call,
  .mobile-cta-pill,
  .mobile-sticky-cta,
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
  }
  .mobile-call > a,
  .mobile-cta-pill > a,
  .mobile-sticky-cta > a,
  .mobile-cta > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: var(--r-pill);
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    text-decoration: none;
    transition: filter 150ms, transform 150ms;
    white-space: nowrap;
  }
  .mobile-call > a:hover,
  .mobile-cta-pill > a:hover,
  .mobile-sticky-cta > a:hover,
  .mobile-cta > a:hover {
    filter: brightness(0.92);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
  }
  .mobile-call svg,
  .mobile-cta-pill svg,
  .mobile-sticky-cta svg,
  .mobile-cta svg { width: 18px; height: 18px; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.94); }

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.stagger > *.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SECTION EYEBROW WITH RULE
   ============================================================ */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.eyebrow-rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
}

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

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font-display);
}

.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: var(--r-md);
  background: var(--canvas);
  border: 1px solid var(--border);
}

.review-stars svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink);
}

.review-attribution {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   MISC UTILITY
   ============================================================ */

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* Monochrome filter on prospect photos (unify photography) */
.photo-mounted img,
.founder-portrait-frame img,
.panel-photo img,
.service-block-photo-frame img {
  filter: saturate(0.85) contrast(1.05);
  transition: filter 400ms;
}
.photo-mounted:hover img,
.founder-portrait-frame:hover img,
.panel-photo:hover img,
.service-block-photo-frame:hover img {
  filter: saturate(1.0) contrast(1.0);
}

/* Review section inline styles for index */
#reviews, .reviews-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}

/* Credentials section on index */
.credentials-section, #credentials {
  background: var(--surface);
  padding: var(--section-py) 0;
}

/* Generic section-level backgrounds */
.section-pad { padding: var(--section-py) 0; }

/* General inline hero h1 (in case HTML uses it directly) */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}

/* Headings inside sections get the display font */
#services h2,
#gallery h2,
#service-areas h2,
#faq h2,
#contact h2,
#about h2,
.values-section h2,
.timeline-section h2,
.crew-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

/* Color blocking alternation */
#services     { background: var(--canvas); }
#gallery      { background: var(--surface); }
#service-areas{ background: var(--canvas); }
#faq          { background: var(--surface); }
#team-cta     { background: var(--canvas-dark); }
#contact      { background: var(--surface); }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .founder-grid { grid-template-columns: 360px 1fr; gap: 52px; }
  .team-cta-wrap { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  #hero.hero { min-height: 84vh; align-items: flex-end; }

  .service-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block.photo-right .service-block-photo { order: -1; }
  .service-block.photo-right .service-block-copy  { order: 2; }

  .contact-grid { grid-template-columns: 1fr; }

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

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn, .hero-ctas .btn-ghost { width: auto; }

  .services-tabs { gap: 6px; }
  .service-tab { font-size: 12px; padding: 8px 14px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .case-grid { grid-template-columns: 1fr; }

  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn,
  .cta-banner-actions .btn-ghost { text-align: center; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-split-inner { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.panel-photo { grid-column: 1 / -1; }
.panel-body { grid-column: 1 / -1; }
.team-portrait { grid-column: 1 / -1; }
.team-cta-text { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.founder-portrait-col { 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); }
