@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');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand */
  --primary:        #217B25;
  --primary-tint:   rgba(33, 123, 37, 0.12);
  --primary-tint8:  rgba(33, 123, 37, 0.08);
  --primary-dark:   #195e1d;
  --accent:         #E77A77;
  --accent-tint:    rgba(231, 122, 119, 0.12);

  /* Canvas / surfaces */
  --canvas:         #F4EFE6;
  --canvas-dark:    #EDE7DB;
  --surface:        #FFFFFF;
  --surface-2:      #F9F7F3;

  /* Ink */
  --ink:            #1F1B16;
  --ink-mid:        #3A342A;
  --muted:          #7A7268;
  --muted-light:    #B0A99F;

  /* Borders */
  --border:         rgba(31, 27, 22, 0.10);
  --border-strong:  rgba(31, 27, 22, 0.18);

  /* Mounted-print frame — sand color matching canvas */
  --photo-mount:    #F4EFE6;
  --photo-mount-w:  12px;

  /* Layout */
  --max-w:          1240px;
  --wide-w:         1400px;
  --section-py:     clamp(96px, 12vh, 152px);
  --radius:         12px;
  --radius-pill:    999px;
  --header-height:  72px;
}

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

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

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

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  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 45%; 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 45%; z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}

section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.8vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

p { line-height: 1.68; }

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

em { font-style: italic; }

strong { font-weight: 600; }

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

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

/* Section alternation */
section:nth-of-type(even):not(.hero):not(.trust-strip-section):not(.cta-banner):not(.footer) {
  background: var(--surface);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 16px 30px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, filter 180ms, background 180ms;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(33,123,37,0.38);
}
.btn-primary:hover { filter: brightness(0.92); transform: translateY(-1px); color: #fff; }

.btn-primary-dark {
  background: var(--primary-dark); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(33,123,37,0.38);
}
.btn-primary-dark:hover { filter: brightness(0.9); transform: translateY(-1px); color: #fff; }

.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

.btn-outline-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.22); color: #fff; }

.btn-primary svg, .btn-ghost svg, .btn-outline-light svg, .btn-primary-dark svg {
  width: 18px; height: 18px;
}

/* ============================================================
   EYEBROW / LABELS
   ============================================================ */
.eyebrow, .section-eyebrow, .page-eyebrow, .page-header-eyebrow,
.team-cta-eyebrow, .cta-banner-eyebrow, .info-card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 14px;
}

.section-eyebrow-line {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.section-eyebrow-line .section-eyebrow { margin-bottom: 0; }
.section-eyebrow-line::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--primary); flex-shrink: 0;
}

.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header h2 { margin-bottom: 12px; }
.section-sub, .section-intro { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-mid); max-width: 580px; line-height: 1.6; }

/* ============================================================
   PHOTO MOUNT — the distinctive "mounted print" frame
   ============================================================ */
.photo-plate {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  display: inline-block;
  width: 100%;
}

.photo-plate img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; border-radius: calc(var(--radius) - 2px);
  outline: var(--photo-mount-w) solid var(--photo-mount);
  outline-offset: calc(-1 * var(--photo-mount-w));
}

/* White-surface variant — mount frame matches white surface */
.photo-plate-white img {
  outline-color: var(--surface);
}

/* Gallery tiles and service panel images also get the mount */
.gallery-tile img {
  outline: var(--photo-mount-w) solid var(--photo-mount);
  outline-offset: calc(-1 * var(--photo-mount-w));
}

.service-panel-img img,
.service-panel-photo img {
  outline: var(--photo-mount-w) solid var(--photo-mount);
  outline-offset: calc(-1 * var(--photo-mount-w));
}

/* ============================================================
   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; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { max-height: 44px !important; width: auto !important; }

.nav-pages {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
}

.nav-pages ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 28px;
}

.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

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

.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;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px; gap: 8px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
  .nav-cta .nav-cta-label { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 92vh; display: flex; flex-direction: column;
  justify-content: flex-end;
}

#hero > img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%; z-index: 0;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.32) 0%,
    rgba(31,27,22,0.55) 50%,
    rgba(33,123,37,0.28) 100%
  );
}

.hero-inner {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 80px);
  display: flex; align-items: flex-end;
  min-height: 92vh;
}

.hero-content {
  max-width: 720px;
  display: flex; flex-direction: column; gap: 20px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); margin-bottom: 0;
}

.hero-title, .hero-content h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff; max-width: 14ch;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.55; max-width: 480px;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px;
}

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

.trust-chip {
  display: inline-flex; align-items: center;
  background: var(--primary-tint);
  color: #fff;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

/* ============================================================
   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: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}

.trust-badge {
  display: inline-flex; align-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--radius-pill);
}

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

.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

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

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.2; color: var(--ink-mid);
}

.marquee-sep {
  color: var(--primary); font-weight: 700; font-size: 18px;
  display: inline-flex; align-items: center;
}

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

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

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: var(--canvas-dark); color: var(--ink-mid);
  border: 1px solid var(--border);
  cursor: pointer; transition: background 180ms, color 180ms, border-color 180ms;
}

.service-tab:hover { background: var(--primary-tint); color: var(--primary); border-color: transparent; }
.service-tab.active { background: var(--primary); color: #fff; border-color: transparent; }

.services-panels { position: relative; }

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

.service-panel.active { display: grid; }

.service-panel-img,
.service-panel-photo {
  position: relative; overflow: hidden; min-height: 420px;
}

.service-panel-img img,
.service-panel-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  outline: var(--photo-mount-w) solid var(--surface);
  outline-offset: calc(-1 * var(--photo-mount-w));
  max-height: none;
}

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

.service-panel-body h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05; color: var(--ink);
}

.service-panel-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}

.service-panel-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--ink);
}

.service-panel-desc { color: var(--ink-mid); line-height: 1.65; }
.service-panel-desc p + p { margin-top: 12px; }

/* services.html variant */
.services-section { background: var(--canvas); padding: var(--section-py) 0; }
.services-section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.services-section-inner h2 { margin-bottom: 40px; }

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

/* ============================================================
   ABOUT / FOUNDER STORY
   ============================================================ */
.founder-story { background: var(--surface); padding: var(--section-py) 0; }
.founder-story .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.founder-story-grid {
  display: grid; grid-template-columns: 40% 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.founder-portrait-wrap { position: relative; }

.founder-portrait-wrap .photo-plate {
  aspect-ratio: 3/4; overflow: hidden;
}

.founder-portrait-wrap .photo-plate img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none;
}

.founder-text { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.founder-text .section-eyebrow { margin-bottom: 8px; }
.founder-story-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05; letter-spacing: -0.02em;
}

.founder-body p + p { margin-top: 14px; }
.founder-body { color: var(--ink-mid); line-height: 1.7; }

.founder-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-chip {
  background: var(--primary-tint); color: var(--primary);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}

/* About split section */
.about-split-section { background: var(--canvas); padding: var(--section-py) 0; }
.about-split-section .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.about-split-grid {
  display: grid; grid-template-columns: 45% 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}

.about-split-photo { position: relative; }
.about-split-photo .photo-plate { aspect-ratio: 4/5; overflow: hidden; }
.about-split-photo .photo-plate img { width: 100%; height: 100%; object-fit: cover; max-height: none; }

.about-split-text { display: flex; flex-direction: column; gap: 18px; }
.about-split-text .section-eyebrow { margin-bottom: 8px; }
.about-split-text h2 { margin-bottom: 8px; }
.about-split-text p + p { margin-top: 12px; }
.about-split-text p { color: var(--ink-mid); line-height: 1.7; }

.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.about-chip {
  background: var(--primary-tint); color: var(--primary);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .founder-story-grid, .about-split-grid {
    grid-template-columns: 1fr;
  }
  .founder-portrait-wrap .photo-plate { aspect-ratio: 4/3; }
  .about-split-photo .photo-plate { aspect-ratio: 4/3; }
}

/* ============================================================
   VALUES
   ============================================================ */
.values-section { background: var(--surface); padding: var(--section-py) 0; }
.values-section .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

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

.value-card {
  padding: 28px 24px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }

.value-card h3 { font-size: 20px; line-height: 1.15; }

.value-card-icon { width: 40px; height: 40px; }
.value-card-icon svg { width: 28px; height: 28px; color: var(--primary); }

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

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

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { background: var(--canvas); padding: var(--section-py) 0; }
.timeline-section .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.timeline-header { margin-bottom: 56px; }
.timeline-header h2 { margin-top: 8px; }

.timeline-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}

.timeline-track::before {
  content: ''; position: absolute;
  top: 18px; left: calc(100% / 8); right: calc(100% / 8);
  height: 2px; background: var(--border-strong); z-index: 0;
}

.timeline-step {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 1;
}

.timeline-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary); margin-bottom: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(33,123,37,0.18);
}

.timeline-date {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
}

.timeline-step h3 { font-size: 18px; line-height: 1.2; }
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--surface); }
.gallery-section { background: var(--surface); padding: var(--section-py) 0; }
.gallery-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

.gallery-tile {
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.gallery-tile:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(0,0,0,0.22); }

.gallery-tile > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease-out;
  outline: var(--photo-mount-w) solid var(--canvas-dark);
  outline-offset: calc(-1 * var(--photo-mount-w));
  max-height: none;
}

.gallery-tile:hover > img { transform: scale(1.04); }

/* Gallery cards (gallery.html) */
.gallery-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.15); }

.gallery-photo-wrap { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.gallery-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease-out; max-height: none;
  outline: var(--photo-mount-w) solid var(--canvas);
  outline-offset: calc(-1 * var(--photo-mount-w));
}
.gallery-card:hover .gallery-photo-wrap img { transform: scale(1.04); }

.gallery-card.featured .gallery-photo-wrap { aspect-ratio: 16/9; }

.gallery-card-body {
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.gallery-card-body h3 { font-size: 18px; line-height: 1.2; }
.gallery-card-category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
}
.gallery-card-location { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.gallery-card-location svg { width: 13px; height: 13px; }
.gallery-card-desc { font-size: 14px; color: var(--ink-mid); line-height: 1.55; margin-top: 4px; }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}

.filter-pill {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--radius-pill);
  background: var(--canvas-dark); color: var(--ink-mid);
  border: 1px solid var(--border); cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); color: #fff; border-color: transparent;
}

.gallery-no-results { display: none; text-align: center; color: var(--muted); padding: 48px 0; font-size: 17px; }

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

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials-section { background: var(--canvas); padding: var(--section-py) 0; }
.credentials-section .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.credentials-header { margin-bottom: 48px; }
.credentials-header h2 { margin-top: 8px; }

.credentials-band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
}

.credential-badge {
  padding: 28px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}

.credential-badge-accent {
  background: var(--primary); border-color: var(--primary);
}
.credential-badge-accent .credential-badge-label,
.credential-badge-accent .credential-badge-value,
.credential-badge-accent .credential-badge-sub { color: #fff; }

.credential-badge-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.credential-badge-accent .credential-badge-label { color: rgba(255,255,255,0.75); }

.credential-badge-value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink); line-height: 1.1;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.credential-badge-sub {
  font-size: 13px; color: var(--muted); line-height: 1.4;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#service-areas { background: var(--surface); }
.services-grid-section { background: var(--surface); padding: var(--section-py) 0; }
.services-grid-section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.areas-intro { font-size: 18px; color: var(--ink-mid); margin-bottom: 32px; max-width: 600px; }

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

.area-chip {
  display: inline-flex; align-items: center;
  background: var(--primary-tint); color: var(--primary);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  padding: 8px 18px; border-radius: var(--radius-pill);
  text-decoration: none; transition: background 180ms, color 180ms;
}
.area-chip:hover { background: var(--primary); color: #fff; text-decoration: none; }

.area-pill {
  display: inline-flex; align-items: center;
  background: var(--primary-tint); color: var(--primary);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: var(--radius-pill);
}

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

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--canvas); }

.faq-list { max-width: 800px; }

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

details summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-weight: 600; font-size: 17px; line-height: 1.4;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }

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

.faq-answer { padding-bottom: 20px; color: var(--ink-mid); line-height: 1.68; }
.faq-answer p + p { margin-top: 10px; }

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
#team-cta { background: var(--primary); padding: clamp(64px, 8vh, 96px) 0; }
#team-cta .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.team-cta-band {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}

.team-cta-left { display: flex; flex-direction: column; gap: 8px; }

.team-cta-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.70);
}

.team-cta-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff; line-height: 1.0;
}

.team-cta-sub { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.55; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--ink); padding: clamp(80px, 10vh, 120px) 0; }
.cta-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 24px;
}
.cta-banner-inner h2, .cta-banner-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  color: #fff; line-height: 1.0; letter-spacing: -0.02em;
}
.cta-banner-inner h2 em { color: var(--accent); font-style: italic; }
.cta-banner-inner .section-eyebrow { color: rgba(255,255,255,0.6); }
.cta-banner-inner p:not(.section-eyebrow):not(.cta-banner-eyebrow):not(.cta-phone-label) {
  color: rgba(255,255,255,0.72); font-size: 18px; max-width: 520px;
}

.cta-pair, .cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cta-banner-eyebrow { color: rgba(255,255,255,0.6); }
.cta-banner-sub { color: rgba(255,255,255,0.72) !important; }

.cta-phone-link, .cta-phone-label {
  color: rgba(255,255,255,0.65); font-size: 14px;
}
.cta-phone-link a { color: #fff; font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--surface); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.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 400px;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}

.contact-form-wrap {
  display: flex; flex-direction: column; gap: 24px;
}
.contact-form-wrap h2 { margin-bottom: 4px; }
.contact-form-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
}
.contact-form-sub { color: var(--muted); font-size: 16px; }

/* Forms */
.form-group, .form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }

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

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

.form-input, input[type="text"], input[type="email"],
input[type="tel"], select, .form-textarea, textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 450;
  padding: 13px 16px;
  background: var(--canvas); color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33,123,37,0.14);
}
textarea, .form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 16px 32px; border-radius: 10px;
  border: none; cursor: pointer;
  transition: filter 180ms, transform 180ms;
}
.form-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

.form-note { font-size: 13px; color: var(--muted); line-height: 1.5; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Info column */
.contact-info-card {
  padding: 32px; background: var(--canvas);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 24px;
}
.contact-info-card h3 { font-size: 22px; }
.info-card-eyebrow { margin-bottom: 8px; }

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

.info-block, .info-row {
  display: flex; align-items: flex-start; gap: 16px;
}

.info-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }

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

.info-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.info-chip {
  background: var(--primary-tint); color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}

.info-areas { display: flex; flex-direction: column; gap: 8px; }
.info-areas-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.info-socials, .contact-socials { display: flex; gap: 12px; }
.social-link, .social-pill, .contact-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-tint); color: var(--primary);
  transition: background 180ms, color 180ms;
}
.social-link:hover, .social-pill:hover, .contact-socials a:hover {
  background: var(--primary); color: #fff; text-decoration: none;
}
.social-link svg, .social-pill svg, .contact-socials a svg { width: 18px; height: 18px; }

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

/* ============================================================
   PAGE HEADER (sub-page banners)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 38vh, 480px);
  display: flex; flex-direction: column; justify-content: flex-end;
}

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

.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 80px);
  display: flex; flex-direction: column; gap: 10px;
}

.page-header-inner h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 80px);
  color: #fff; line-height: 0.98;
}

.page-header-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}

.page-header-sub { font-size: 17px; color: rgba(255,255,255,0.80); }

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews { background: var(--canvas); }

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

.review-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  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(0,0,0,0.12); }

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; color: var(--primary); }

.review-quote { font-size: 16px; line-height: 1.58; color: var(--ink-mid); margin-bottom: 16px; font-style: italic; }

.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.9; }
.review-attribution strong { color: var(--ink); font-weight: 600; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer, footer {
  background: var(--ink); color: rgba(255,255,255,0.72);
  padding: clamp(64px, 8vh, 96px) 0 0;
}

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

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 48px);
  padding-bottom: 56px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 44px !important; filter: brightness(10); }
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: #fff; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 280px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 280px; }

.footer-col h4, .footer-col h5, .footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a, .footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul a:hover { color: #fff; text-decoration: none; }

.footer-contact-item, .footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px;
}
.footer-contact-item svg, .footer-contact-row svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-row a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover, .footer-contact-row a:hover { color: #fff; text-decoration: none; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-list li a { color: rgba(255,255,255,0.65); }
.footer-contact-list li a:hover { color: #fff; text-decoration: none; }

.footer-social, .footer-socials, .info-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-social-link, .footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  transition: background 180ms, color 180ms;
}
.footer-social-link:hover, .footer-social a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.footer-social-link svg, .footer-social a svg { width: 16px; height: 16px; }

.footer-phone, .footer-phone-link, .footer-email-link {
  color: rgba(255,255,255,0.65); font-size: 14px;
}
.footer-phone:hover, .footer-phone-link:hover, .footer-email-link:hover { color: #fff; text-decoration: none; }

.footer-divider, hr.footer-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.10); margin: 0;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px; color: rgba(255,255,255,0.35);
}

.footer-copy, .footer-lic { font-size: 12px; color: rgba(255,255,255,0.35); }

.footer-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cert, .footer-cert-badge, .footer-cert-chip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55);
}

.footer-lic { font-family: monospace; letter-spacing: 0.04em; }

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

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

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

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

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

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

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

/* 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: 8px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* 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); }
.stat-label { font-size: clamp(11px, 1vw, 14px); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; }

/* display-title utility */
.display-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; line-height: 1.0; letter-spacing: -0.02em;
}

/* Featured item */
.featured { border: 2px solid var(--primary-tint); }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--primary); z-index: 1001; width: 0; transition: width 80ms linear; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-inner { min-height: 85vw; padding: 40px 24px 48px; align-items: flex-end; }
  .hero-title, .hero-content h1 { font-size: clamp(48px, 10vw, 80px); }
  .service-panel, .service-panel.active { grid-template-columns: 1fr; }
  .team-cta-band { flex-direction: column; align-items: flex-start; }
  .contact-grid, .contact-split-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(40px, 10vw, 64px); }
  h2 { font-size: clamp(30px, 8vw, 48px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOW-OPACITY TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 10000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.028;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-col { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.gallery-no-results { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
