@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700&family=Fraunces:ital,wght@1,300;1,400;1,500&family=Inter+Tight:wght@400;500;600&display=swap');

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --primary:        #048454;
  --primary-dark:   #035e3c;
  --primary-light:  #06a868;
  --primary-tint:   #e6f4ef;
  --accent:         #F7B235;
  --accent-dark:    #d4921a;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #f0ece3;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --border:         rgba(4, 132, 84, 0.18);
  --border-neutral: rgba(20, 20, 20, 0.10);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.14);
  --header-height:  72px;
  --radius:         0px;
  --section-py:     clamp(96px, 12vh, 180px);
  --content-max:    1440px;
  --wide-max:       1400px;
}

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

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

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; 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; 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 anchor fix */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

ul { list-style: none; }
svg { display: block; }

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.wide-container {
  width: 100%;
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.section-inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

/* ─────────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────────── */
#scroll-progress,
#scrollProgress,
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 8vw, 132px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 36px); letter-spacing: -0.02em; }

p { line-height: 1.65; }

.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.story-eyebrow,
.cta-banner-eyebrow,
.team-cta-eyebrow,
.contact-form-eyebrow,
.info-card-eyebrow,
.financing-text-eyebrow,
.feature-block-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title,
.page-title {
  font-size: clamp(36px, 5vw, 72px);
  max-width: 18ch;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-title-sm { font-size: clamp(24px, 3vw, 44px); }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, color 200ms, border-color 200ms, filter 200ms, transform 180ms;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary,
.btn-cta-primary,
.btn-submit,
.feature-block-cta {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-cta-primary:hover,
.btn-submit:hover,
.feature-block-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  filter: brightness(0.94);
}

.btn-outline,
.btn-cta-outline,
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover,
.btn-cta-outline:hover,
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.btn-phone {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-phone:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  text-decoration: none;
}

.btn-financing {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-financing:hover { background: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; color: var(--ink); }

.cta-btn-pair {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─────────────────────────────────────────────
   FORM ELEMENTS
───────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label,
label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea,
.form-textarea {
  width: 100%;
  background: var(--canvas);
  border: 1.5px solid var(--border-neutral);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 180ms;
  outline: none;
  appearance: none;
}
.form-input:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,132,84,0.10);
}
textarea { min-height: 120px; resize: vertical; }

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { 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: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }

.nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta-text { }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; border-radius: 50%; }

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

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
section#hero.hero,
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(4, 132, 84, 0.08) 0%,
    rgba(20, 20, 20, 0.30) 40%,
    rgba(4, 20, 12, 0.82) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.ribbon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(4,132,84,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(4,132,84,0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-bottom: clamp(64px, 8vh, 120px);
  padding-top: clamp(80px, 10vh, 140px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

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

.hero-title,
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.55;
}

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

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

.trust-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1px solid var(--primary);
  padding: 7px 14px;
  background: rgba(4,132,84,0.12);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  section#hero.hero, .hero { min-height: 88vh; }
  .hero-ribbon { top: 16px; right: 16px; font-size: 10px; padding: 8px 12px; }
}

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

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 48px;
}

.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */
.trust-strip {
  padding: clamp(48px, 6vh, 80px) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-neutral);
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px 32px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--primary);
  background: var(--canvas);
}

.trust-badge-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge-icon svg { width: 24px; height: 24px; color: var(--primary); }

.trust-badge p,
.trust-badge span:not(.trust-badge-icon) {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   SERVICES — TABBED PANEL
───────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.services .section-inner { }

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

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border-neutral);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); }
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels {
  position: relative;
}

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
}

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

.service-panel-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.14;
  margin-bottom: -20px;
  margin-top: -10px;
}

.service-panel-title,
.service-panel-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-panel-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

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

/* ─────────────────────────────────────────────
   GALLERY SECTION (index.html)
───────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.gallery-feature {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 50vh, 640px);
  margin-bottom: 24px;
}
.gallery-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%);
  transition: transform 600ms ease;
}
.gallery-feature:hover img { transform: scale(1.03); }

.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.70) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.gallery-feature-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.gallery-feature-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.gallery-cta-row {
  text-align: center;
  margin-top: 40px;
}

/* ─────────────────────────────────────────────
   GALLERY PAGE (gallery.html)
───────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.gallery-section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

.gallery-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  max-width: 18ch;
}

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

.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border-neutral);
  color: var(--muted);
  cursor: pointer;
  transition: all 180ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.gallery-card {
  background: var(--canvas);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-card-featured {
  grid-column: span 2;
}

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-card-featured .gallery-card-img-wrap {
  aspect-ratio: 16 / 9;
}

.gallery-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(8%);
  transition: transform 500ms ease;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.gallery-card-category {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

.gallery-card-body {
  padding: 20px;
}
.gallery-card-body h3 {
  font-size: clamp(16px, 1.6vw, 22px);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gallery-card-location {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

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

.gallery-card-meta {
  display: flex;
  gap: 16px;
}

.gallery-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.gallery-meta-item svg { width: 14px; height: 14px; }

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

/* ─────────────────────────────────────────────
   SERVICE AREAS
───────────────────────────────────────────── */
.service-areas {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.service-areas-intro {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

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

.area-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--primary);
  color: var(--ink);
  background: var(--canvas);
}

.area-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--primary);
  color: var(--ink);
  background: var(--canvas);
  display: inline-block;
}

.specialties-list { display: flex; flex-direction: column; gap: 14px; }

.specialty-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
}

.specialty-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.specialty-icon svg { width: 20px; height: 20px; color: var(--primary); }

.specialty-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

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

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

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.faq-list {
  max-width: 860px;
  margin-top: 8px;
}

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

details summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  color: var(--ink);
  transition: color 150ms;
}
details summary::-webkit-details-marker { display: none; }

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

details p {
  padding-bottom: 22px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

/* ─────────────────────────────────────────────
   TEAM CTA BAND
───────────────────────────────────────────── */
.team-cta {
  padding: clamp(64px, 9vh, 120px) 0;
  background: var(--primary);
}

.team-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.team-cta-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.team-cta-inner h2 {
  font-size: clamp(28px, 4vw, 54px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
}

.team-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
}

.team-cta-inner .btn {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  white-space: nowrap;
}
.team-cta-inner .btn:hover { background: var(--surface); border-color: var(--surface); color: var(--primary); text-decoration: none; }

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

/* ─────────────────────────────────────────────
   CONTACT SECTION (index.html)
───────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-grid > div:first-child h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group:last-of-type { grid-column: 1 / -1; }
.contact-form button { grid-column: 1 / -1; justify-self: start; }

.contact-info {
  background: var(--canvas);
  padding: 36px;
  border: 1px solid var(--border-neutral);
}

.contact-info h3 {
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 6px;
}
.contact-info-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.contact-info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-info-value { font-size: 15px; font-weight: 500; line-height: 1.5; }
.contact-info-value a { color: var(--primary); }

.financing-box {
  background: var(--primary-tint);
  border: 1px solid var(--primary);
  padding: 22px;
  margin-top: 8px;
}
.financing-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.financing-list { display: flex; flex-direction: column; gap: 8px; }
.financing-list li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 16px;
  position: relative;
}
.financing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.contact-info-label { }
.social-links { display: flex; gap: 12px; margin-top: 6px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  color: var(--ink);
  transition: background 180ms, color 180ms;
  text-decoration: none;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); color: #fff; text-decoration: none; }

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form button { width: 100%; }
}

/* ─────────────────────────────────────────────
   CONTACT PAGE (contact.html)
───────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 8px;
}
.contact-form-eyebrow { }
.form-intro { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

.contact-form-wrap form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.contact-form-wrap .form-group { margin-bottom: 20px; }
.contact-form-wrap .full { grid-column: 1 / -1; }
.contact-form-wrap button { grid-column: 1 / -1; justify-self: start; }

.contact-info-card {
  background: var(--canvas);
  padding: 36px;
  border: 1px solid var(--border-neutral);
}

.info-card-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-card-phone a {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.info-card-phone a:hover { color: var(--primary); text-decoration: none; }

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

.info-block { margin-bottom: 0; }
.info-block-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-block-value { font-size: 15px; line-height: 1.6; }
.info-block-value a { color: var(--primary); }

.info-socials { display: flex; gap: 10px; margin-top: 6px; }

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

/* ─────────────────────────────────────────────
   FINANCING STRIP (contact.html)
───────────────────────────────────────────── */
.financing-strip {
  padding: clamp(64px, 8vh, 120px) 0;
  background: var(--ink);
}

.financing-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.financing-text h2 {
  font-size: clamp(28px, 4vw, 54px);
  color: #fff;
  margin-bottom: 20px;
}
.financing-text-eyebrow { color: var(--primary); }
.financing-text p { color: rgba(255,255,255,0.70); font-size: 16px; margin-bottom: 20px; }
.financing-text .financing-list li { color: rgba(255,255,255,0.75); }
.financing-text .financing-list li::before { background: var(--accent); }
.financing-text .btn { margin-top: 8px; }

.financing-quote {
  background: var(--primary);
  padding: 40px;
}
.financing-quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}
.financing-quote-attr {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .financing-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: clamp(80px, 10vh, 160px) 0;
  background: var(--ink);
  overflow: hidden;
}

.cta-banner-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.cta-banner-eyebrow { color: var(--primary); }

.cta-banner-inner h2,
.cta-banner-headline,
.cta-banner-title {
  font-size: clamp(32px, 5vw, 72px);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 16px;
}
.cta-banner-inner h2 span { color: var(--primary); }

.cta-banner-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 48ch;
}

.cta-banner-actions,
.cta-banner-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner-form {
  background: var(--canvas);
  padding: 36px;
}

.cta-form-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}

.cta-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-form-submit { width: 100%; justify-content: center; }

.cta-btn-pair { display: flex; gap: 16px; flex-wrap: wrap; }

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

/* ─────────────────────────────────────────────
   PAGE HEADER (sub-pages)
───────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 38vh, 520px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

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

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(4,132,84,0.12) 0%,
    rgba(20,20,20,0.25) 30%,
    rgba(4,20,12,0.80) 100%
  );
}

.page-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-bottom: clamp(40px, 6vh, 80px);
}

.page-header-eyebrow { color: rgba(255,255,255,0.65); }

.page-header h1,
.page-header-title {
  font-size: clamp(40px, 7vw, 100px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 12px;
}

.page-header-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: 24px;
}

.page-header-cta { }

.page-eyebrow { color: rgba(255,255,255,0.65); }

/* ─────────────────────────────────────────────
   SERVICES PAGE — FEATURE BLOCKS
───────────────────────────────────────────── */
.services-nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-neutral);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  overflow-x: auto;
}

.services-nav-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  gap: 0;
  height: 60px;
  align-items: stretch;
}

.svc-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid var(--border-neutral);
  transition: color 150ms, background 150ms;
}
.svc-nav-link:first-child { border-left: 1px solid var(--border-neutral); }
.svc-nav-link:hover { color: var(--primary); background: var(--canvas); text-decoration: none; }

.svc-nav-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.6;
}

.services-features { }

.feature-block {
  display: grid;
  grid-template-columns: 50% 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--border-neutral);
}

.feature-block.reverse {
  direction: ltr;
}
.feature-block.reverse .feature-block-photo { order: 2; }
.feature-block.reverse .feature-block-body { order: 1; }

.feature-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.feature-block-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
  filter: grayscale(10%);
}
.feature-block:hover .feature-block-photo img { transform: scale(1.03); }

.feature-block-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(20,20,20,0.08), transparent);
}
.feature-block.reverse .feature-block-photo-overlay {
  background: linear-gradient(to left, rgba(20,20,20,0.08), transparent);
}

.feature-block-body {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--canvas);
}
.feature-block:nth-child(even) .feature-block-body {
  background: var(--surface);
}

.feature-block-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--primary);
  opacity: 0.10;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}

.feature-block-eyebrow { }

.feature-block-body h2 {
  font-size: clamp(26px, 3.5vw, 52px);
  margin-bottom: 16px;
  line-height: 1.05;
}

.feature-block-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.70;
  margin-bottom: 14px;
}

.feature-block-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.feature-block-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.feature-block-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.feature-block-cta {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; min-height: auto; }
  .feature-block.reverse .feature-block-photo { order: -1; }
  .feature-block.reverse .feature-block-body { order: 0; }
  .feature-block-photo { min-height: 280px; }
  .feature-block-photo img { position: relative; inset: auto; width: 100%; height: 280px; max-height: 280px; }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */

/* Magazine Story */
.magazine-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.magazine-story-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.story-portrait-col {
  position: relative;
}
.story-portrait-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  max-height: 520px;
  filter: grayscale(12%);
}
.story-portrait-caption {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.story-eyebrow { }

.story-text-col h2 {
  font-size: clamp(28px, 4vw, 54px);
  margin-bottom: 24px;
  line-height: 1.05;
}

.story-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-pullquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--surface);
}
.story-pullquote p,
.story-pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.5;
}

.story-signature {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .magazine-story-inner { grid-template-columns: 1fr; }
  .story-portrait-col img { height: 340px; }
}

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

.values-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

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

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.20;
  margin-bottom: 4px;
  letter-spacing: -0.04em;
}

.value-card h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.value-title { }
.value-text { font-size: 15px; color: var(--muted); line-height: 1.65; }

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

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

.timeline-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--border-neutral);
  z-index: 0;
}

.timeline-step {
  padding: 0 24px 0 0;
  position: relative;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-neutral);
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.timeline-dot-fill {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline-era {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-step h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 8px;
}
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* About Magazine Section */
.about-magazine {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.about-magazine-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-photo-collage {
  position: relative;
  min-height: 480px;
}
.about-photo-collage img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  max-height: 540px;
  position: relative;
  z-index: 1;
  filter: grayscale(10%);
}

.about-color-block {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--primary);
  z-index: 0;
}

.about-text-col .section-eyebrow { }
.about-text-col h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 20px;
}
.about-text-col > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-pullquote {
  border-left: 4px solid var(--primary);
  padding: 14px 20px;
  margin: 24px 0;
  background: rgba(4,132,84,0.05);
}
.about-pullquote p,
.about-pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--ink);
  line-height: 1.5;
}

.about-text-col .btn { margin-top: 24px; }

@media (max-width: 900px) {
  .about-magazine-inner { grid-template-columns: 1fr; }
  .about-photo-collage { min-height: 320px; }
  .about-photo-collage img { height: 320px; }
  .about-color-block { bottom: -16px; right: -8px; width: 80px; height: 80px; }
}

/* Crew Strip */
.crew-strip {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.crew-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.crew-inner h2 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 40px;
}

.crew-photo-wrap {
  overflow: hidden;
  height: clamp(320px, 40vh, 560px);
}
.crew-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: none;
  filter: grayscale(10%);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(64px, 8vh, 100px);
}

.footer-inner,
.footer-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vh, 80px);
}

.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand img,
.footer-brand-col img {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand-name,
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

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

.footer-col-title,
.footer-col-label,
.footer-col-heading {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col-label-gap { margin-top: 32px; }
.footer-financing-note { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

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

.footer-areas { display: flex; flex-wrap: wrap; gap: 6px; }

.footer-area-item,
.footer-area-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
}

.footer-socials,
.footer-socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover { background: var(--primary); color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--content-max);
  margin-inline: auto;
}

.footer-copy,
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-copy a { color: rgba(255,255,255,0.50); }
.footer-copy a:hover { color: #fff; }

.footer-legal-links { display: flex; gap: 24px; list-style: none; }
.footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.40); text-decoration: none; }
.footer-legal-links a:hover { color: #fff; text-decoration: none; }

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

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

/* ─────────────────────────────────────────────
   MOBILE CALL PILL
───────────────────────────────────────────── */
.mobile-cta,
.mobile-cta-pill,
.mobile-call-pill,
.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: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 180ms, transform 180ms;
}
.mobile-cta svg,
.mobile-cta-pill svg,
.mobile-call-pill svg,
.mobile-sticky-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-cta a,
.mobile-cta-pill a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.mobile-cta:hover,
.mobile-cta-pill:hover,
.mobile-call-pill:hover,
.mobile-sticky-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

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

/* ─────────────────────────────────────────────
   ANIMATION UTILITIES
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease, transform 600ms ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

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

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

/* ─────────────────────────────────────────────
   SVG CAPS
───────────────────────────────────────────── */
.nav-cta-icon { width: 18px; height: 18px; }
.nav-toggle svg { width: 24px; height: 24px; }
.faq-chevron { width: 20px; height: 20px; }
.trust-badge-icon svg,
.specialty-icon svg,
.contact-info-icon svg,
.footer-contact-row svg,
.footer-contact-item svg,
.gallery-card-location svg,
.gallery-meta-item svg,
.footer-social-link svg { display: block; }

/* Generic SVG inside grid/flex */
svg { max-width: 100%; }
button svg { pointer-events: none; }

/* ─────────────────────────────────────────────
   MISC COMPONENTS
───────────────────────────────────────────── */

/* Stats (if used) */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; padding: 80px 0; text-align: center; }
.stat-num { font-family: 'Archivo Black', sans-serif; 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; font-family: 'Archivo', sans-serif; font-weight: 700; }

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

/* Review cards */
.review-card { padding: 28px; background: var(--surface-2); }
.review-stars svg { color: var(--accent); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* Table cells */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.services-table tbody td {
  background: var(--canvas);
  color: var(--ink);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-neutral);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 640px) {
  .section-inner,
  .container,
  .wide-container { padding-inline: 20px; }

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

  .trust-strip-inner { grid-template-columns: 1fr 1fr; }

  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 14px 20px; font-size: 13px; }

  .feature-block-body { padding: 32px 20px; }
  .feature-block-num { font-size: 64px; }
}

@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-trust-chips { gap: 6px; }
  .trust-chip { font-size: 9px; padding: 6px 10px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.team-cta-eyebrow { grid-column: 1 / -1; }
.team-cta-title { grid-column: 1 / -1; }
.team-cta-sub { grid-column: 1 / -1; }
.btn-ghost { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.btn-primary { grid-column: 1 / -1; }
.feature-block-photo { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-btn-pair { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.btn-submit { grid-column: 1 / -1; }
.financing-text { grid-column: 1 / -1; }
.financing-quote { 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; }
