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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #168214;
  --primary-dark:   #0f5e0e;
  --primary-light:  #e8f5e8;
  --accent:         #34C8CC;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #ede9e0;
  --ink:            #141414;
  --ink-mid:        #2d2d2d;
  --muted:          #6B665C;
  --border:         rgba(20,20,20,0.10);
  --border-primary: rgba(22,130,20,0.28);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:      0 18px 48px rgba(0,0,0,0.14);
  --radius:         0px;
  --section-py:     clamp(96px, 12vh, 180px);
  --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);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  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: 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; object-position: center 32%; 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;
}

.hero-split { display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0; }
.hero-split-text {
  background: var(--canvas); padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

/* Heading anchors */
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 {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

p { line-height: 1.68; }

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

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

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

/* ============================================================
   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);
  cursor: pointer; border: none;
  text-decoration: none; transition: filter 180ms, transform 180ms, background 180ms;
  white-space: nowrap; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

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

.btn-primary-svc {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border-radius: var(--radius);
  text-decoration: none; transition: filter 180ms, transform 180ms;
  border: none; cursor: pointer;
}
.btn-primary-svc svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary-svc:hover { filter: brightness(0.90); color: #fff; text-decoration: none; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

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

.btn-white {
  background: #fff; color: var(--primary);
}
.btn-white:hover { background: var(--surface); color: var(--primary-dark); }

.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  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);
  text-decoration: none; transition: background 180ms, border-color 180ms;
}
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-phone:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; border-color: rgba(255,255,255,0.9); }

.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
  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);
  text-decoration: none; transition: background 180ms, color 180ms;
}
.btn-cta-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }

.btn-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 18px 32px; border-radius: var(--radius);
  text-decoration: none; transition: filter 180ms, transform 180ms;
}
.btn-banner:hover { filter: brightness(0.95); transform: translateY(-1px); color: var(--primary); text-decoration: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex; flex-direction: column-reverse; gap: 4px;
  margin-bottom: 20px;
}
.form-group.full-width { grid-column: 1 / -1; }

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

.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--canvas);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 180ms;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-bottom-color: var(--primary);
}
.form-input:focus + .form-label,
.form-textarea:focus + .form-label {
  color: var(--primary);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%; background: var(--primary); color: #fff;
  border: none; cursor: pointer;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0;
  transition: filter 180ms, transform 180ms;
}
.form-submit:hover { filter: brightness(0.90); transform: translateY(-1px); }

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

.form-row {
  display: flex; flex-direction: column-reverse; gap: 4px;
  margin-bottom: 20px;
}
.form-row label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.form-row input, .form-row textarea {
  width: 100%; background: var(--canvas);
  border: 1px solid var(--border); border-bottom: 2px solid var(--border);
  padding: 14px 16px; font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--ink);
  border-radius: 0; transition: border-color 180ms; outline: none;
}
.form-row input:focus, .form-row textarea:focus { border-bottom-color: var(--primary); }
.form-row textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   SITE 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 {
  height: var(--header-height);
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}

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

.nav-pages {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
  list-style: none; gap: 28px; padding: 0; margin: 0;
}
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none;
  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;
  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: 16px; height: 16px; flex-shrink: 0; }
.nav-cta-text { font-size: 14px; }

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

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

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

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(10,22,10,0.22) 0%,
    rgba(10,22,10,0.18) 30%,
    rgba(14,30,14,0.72) 70%,
    rgba(10,22,10,0.92) 100%
  );
}

.hero-ribbon {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 10px 18px; border-radius: 999px;
  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);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(22,130,20,0.6); }
  50% { opacity: 0.85; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(22,130,20,0); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 72px);
  padding-bottom: clamp(64px, 10vh, 120px);
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 32px; height: 3px;
  background: var(--primary); flex-shrink: 0;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px, 8vw, 132px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff; max-width: 18ch;
  margin-bottom: 28px;
}
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

.hero-ctas {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-bottom: 48px;
}

.hero-trust-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  border: 1px solid var(--primary);
  padding: 7px 14px; border-radius: 0;
  background: rgba(22,130,20,0.12);
}

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); line-height: 1.2;
}
.marquee-sep { color: var(--primary); font-size: 18px; line-height: 1; align-self: center; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track,
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

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

.trust-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex; flex-wrap: wrap;
  gap: 20px; justify-content: center;
}

.trust-badge {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 22px 32px;
  border: 1px solid var(--border-primary);
  background: var(--canvas); flex: 0 0 auto;
  min-width: 160px;
}
.badge-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--primary); line-height: 1;
  margin-bottom: 4px;
}
.badge-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block; width: 24px; height: 3px;
  background: var(--primary); flex-shrink: 0;
}
.section-title, .section-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
}
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
}

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

.services-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

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

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 0;
  border: 1px solid var(--border-primary);
  background: var(--canvas); color: var(--ink);
  cursor: pointer; transition: background 180ms, color 180ms, border-color 180ms;
}
.service-tab:hover {
  background: var(--primary-light); border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}

.services-panels {
  position: relative; min-height: 480px;
}

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

.service-panel > img:first-of-type,
.service-panel > img {
  width: 100%; height: 480px;
  object-fit: cover; max-height: 480px;
  flex-shrink: 0;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: none;
}
.service-panel-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.service-panel-body h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 20px;
}
.service-panel-body p {
  color: var(--ink-mid); line-height: 1.68;
  margin-bottom: 14px; font-size: 16px;
}
.service-panel-body a {
  margin-top: 12px; align-self: flex-start;
  background: var(--primary); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 0;
  display: inline-block; text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.service-panel-body a:hover { filter: brightness(0.90); color: #fff; text-decoration: none; transform: translateY(-1px); }

.services-view-all {
  margin-top: 40px; display: flex; justify-content: flex-start; align-items: center; gap: 16px;
}
.services-view-all p {
  font-size: 13px; color: var(--muted); letter-spacing: 0.04em;
}
.services-view-all a {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary); text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel > img { height: 240px; max-height: 240px; }
  .services-panels { min-height: auto; }
}

/* ============================================================
   SERVICES PAGE — FEATURE BLOCKS
   ============================================================ */
.services-intro {
  max-width: 1440px; margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 72px) clamp(32px, 4vw, 56px);
}
.services-intro .section-eyebrow { margin-bottom: 16px; }
.services-intro h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 20px;
}
.services-intro p { font-size: 17px; color: var(--muted); max-width: 60ch; line-height: 1.65; }

.service-feature {
  border-top: 1px solid var(--border);
  padding: clamp(64px, 8vw, 120px) 0;
}
.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.service-feature.reverse .service-feature-inner { direction: rtl; }
.service-feature.reverse .service-feature-body,
.service-feature.reverse .service-feature-photo { direction: ltr; }

.service-feature-photo {
  position: relative; overflow: hidden;
}
.service-feature-photo img {
  width: 100%; height: clamp(320px, 45vw, 560px);
  object-fit: cover; max-height: 560px;
  display: block;
}

.service-feature-index {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--primary); line-height: 1;
  opacity: 0.85;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.service-feature-body { display: flex; flex-direction: column; gap: 0; }

.service-feature-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.service-feature-eyebrow::before {
  content: ''; display: inline-block;
  width: 20px; height: 3px; background: var(--primary); flex-shrink: 0;
}

.service-feature-body h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 20px;
}
.service-feature-body > p {
  color: var(--ink-mid); line-height: 1.68;
  margin-bottom: 14px; font-size: 16.5px;
}

.service-feature-bullets {
  list-style: none; padding: 0; margin: 18px 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-feature-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-mid); line-height: 1.5;
}
.service-feature-bullets li::before {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  background: var(--primary); flex-shrink: 0; margin-top: 5px;
}

@media (max-width: 900px) {
  .service-feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-feature.reverse .service-feature-inner { direction: ltr; }
  .service-feature-photo img { height: 280px; }
}

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

.gallery-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

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

.gallery-photo {
  overflow: hidden;
}
.gallery-photo img {
  width: 100%; height: clamp(320px, 45vw, 560px);
  object-fit: cover; max-height: 560px;
}

.gallery-text .section-eyebrow { margin-bottom: 16px; }
.gallery-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 24px;
}
.gallery-text p {
  font-size: 16.5px; color: var(--muted);
  line-height: 1.68; margin-bottom: 28px; max-width: 48ch;
}
.gallery-text a {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0; text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.gallery-text a:hover { filter: brightness(0.90); color: #fff; text-decoration: none; transform: translateY(-1px); }

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

/* ============================================================
   GALLERY PAGE — FULL GRID
   ============================================================ */
.gallery-section { background: var(--canvas); padding: var(--section-py) 0; }

.gallery-section-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.gallery-section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
}

.gallery-header-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 24px;
}
.gallery-header-row h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
}
.gallery-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  padding-top: 8px;
}
.gallery-rating {
  font-family: 'Anton', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--primary); line-height: 1;
}
.gallery-count {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--border-primary);
  background: var(--canvas); color: var(--ink); cursor: pointer;
  border-radius: 0; transition: background 180ms, color 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: 16px;
}

.gallery-card {
  background: var(--canvas); 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: var(--shadow-lg); }

.gallery-card.featured {
  grid-column: span 2; grid-row: span 2;
}
.gallery-card.featured .gallery-card-img-wrap img {
  height: 500px; max-height: 500px;
}

.gallery-card-img-wrap {
  position: relative; overflow: hidden;
}
.gallery-card-img-wrap img {
  width: 100%; height: 240px; object-fit: cover; max-height: 240px;
  transition: transform 400ms ease-out; display: block;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--primary); color: #fff; padding: 5px 10px; border-radius: 0;
}
.gallery-card-tag {
  position: absolute; bottom: 12px; right: 12px;
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,0,0,0.65); color: #fff; padding: 5px 10px; border-radius: 0;
}

.gallery-card-body { padding: 20px 22px; }
.gallery-card-body h3 {
  font-family: 'Anton', sans-serif;
  font-size: 17px; font-weight: 900;
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--ink); margin-bottom: 8px;
}
.gallery-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); margin-bottom: 6px;
}
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }
.gallery-card-title { font-family: 'Anton', sans-serif; font-size: 18px; font-weight: 900; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 8px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

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

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

.areas-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.areas-cloud {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.area-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-primary);
  background: var(--canvas); color: var(--ink);
  border-radius: 0;
}
.area-chip:hover { background: var(--primary-light); border-color: var(--primary); }

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

.areas-note {
  margin-top: 24px; font-size: 14px; color: var(--muted); line-height: 1.5;
}
.areas-note a { color: var(--primary); font-weight: 700; }

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

.faq-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-question {
  cursor: pointer; font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 17px; color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 4px 0;
  transition: color 150ms;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--primary); flex-shrink: 0;
  transition: transform 200ms;
}
.faq-item[open] > .faq-question { color: var(--primary); }
.faq-item[open] > .faq-question::after { transform: rotate(45deg); }

.faq-answer { padding: 14px 0 6px; }
.faq-answer p { font-size: 16px; line-height: 1.68; color: var(--muted); }

details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: '+'; font-weight: 300; transition: transform 200ms;
}
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

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

.contact-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-col .section-eyebrow { margin-bottom: 14px; }
.contact-form-col h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 16px;
}
.contact-lead {
  font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.65;
}

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

.info-block { margin-bottom: 28px; }
.info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 6px;
}
.info-val {
  font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.info-val a { color: var(--ink); font-weight: 700; }
.info-val a:hover { color: var(--primary); }

.social-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-primary);
  padding: 10px 18px; background: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: background 180ms, color 180ms;
  margin-top: 8px;
}
.social-chip svg { width: 16px; height: 16px; }
.social-chip:hover { background: var(--primary); color: #fff; text-decoration: none; border-color: var(--primary); }

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

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

.contact-section .contact-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-side { display: flex; flex-direction: column; }
.contact-section-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.contact-section-label::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--primary); flex-shrink: 0;
}

.contact-form-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 14px;
}
.contact-form-sub { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.65; }

.contact-info-card {
  background: var(--canvas); padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900; letter-spacing: -0.025em;
  line-height: 1.0; color: var(--ink); margin-bottom: 28px;
}

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

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

.info-icon { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.info-item-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 4px;
}
.info-item-value {
  font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.5;
}
.info-item-value a { color: var(--ink); font-weight: 700; }
.info-item-value a:hover { color: var(--primary); }

.info-social {
  margin-top: 20px; display: flex; align-items: center; gap: 12px;
}
.social-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--border-primary);
  background: var(--canvas); color: var(--ink);
  transition: background 180ms, color 180ms;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); color: #fff; text-decoration: none; }

.estimate-strip {
  background: var(--primary); padding: 24px clamp(24px, 5vw, 72px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.estimate-strip-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900; letter-spacing: -0.02em; color: #fff; line-height: 1;
}
.estimate-strip-text span { color: rgba(255,255,255,0.7); font-size: 0.65em; display: block; margin-top: 4px; font-family: 'Archivo', sans-serif; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; }
.estimate-strip a {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 14px 28px; background: #fff; color: var(--primary);
  border-radius: 0; text-decoration: none; transition: filter 180ms;
}
.estimate-strip a:hover { filter: brightness(0.95); color: var(--primary); text-decoration: none; }
.estimate-strip-cta { display: flex; align-items: center; gap: 12px; }

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

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

.page-header > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: grayscale(20%);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10,22,10,0.20) 0%, rgba(10,22,10,0.75) 100%);
}
.page-header-ribbon {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); padding: 10px 18px; border-radius: 999px;
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: clamp(32px, 5vw, 72px) clamp(24px, 5vw, 72px);
}
.page-header-inner h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff; max-width: 18ch;
}
.page-header-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.page-header-sub {
  font-size: 16px; color: rgba(255,255,255,0.78); margin-top: 12px;
  line-height: 1.55; max-width: 56ch;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding: clamp(64px, 8vw, 120px) 0;
}

.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0f1f0e 0%, var(--ink) 100%);
  opacity: 0.95;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.cta-banner-text .section-eyebrow { color: var(--accent); margin-bottom: 16px; }
.cta-banner-text .section-eyebrow::before { background: var(--accent); }
.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.cta-banner-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--accent); flex-shrink: 0;
}
.cta-banner-title, .cta-banner-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 16px;
}
.cta-banner-title span, .cta-banner-text h2 span { color: var(--primary); }
.cta-banner-text p, .cta-banner-phone {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.55; max-width: 52ch;
}

.cta-banner-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; flex-shrink: 0;
}
.cta-banner-actions a {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}

.cta-phone-big {
  display: flex; align-items: center;
}
.cta-phone-link, .info-phone-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900; letter-spacing: -0.02em; color: #fff;
  text-decoration: none;
}
.cta-phone-link:hover { color: var(--accent); text-decoration: none; }

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

/* ============================================================
   ABOUT PAGE — STORY
   ============================================================ */
.about-story {
  background: var(--canvas); padding: var(--section-py) 0;
}

.about-story-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 420px 1fr; gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-story-portrait-wrap {
  position: relative;
}
.about-story-portrait-wrap img {
  width: 100%; height: 560px; object-fit: cover; max-height: 560px;
  display: block;
}
.about-story-portrait-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: var(--primary); color: #fff;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.3;
}

.about-story-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.about-story-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--primary); flex-shrink: 0;
}
.about-story-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 28px;
}

.about-story-headline { font-family: 'Anton', sans-serif; }

.about-story-body p {
  font-size: 17px; line-height: 1.70; color: var(--ink-mid); margin-bottom: 18px;
}

.about-pull-quote {
  border-left: 4px solid var(--primary);
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--primary-light);
}
.about-pull-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500; line-height: 1.35;
  color: var(--ink); margin: 0;
  letter-spacing: -0.01em;
}

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

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

.values-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}
.values-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.values-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--primary); flex-shrink: 0;
}
.values-headline, .values-inner > h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 48px;
}

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

.value-card {
  padding: 32px 28px; background: var(--canvas);
  border-top: 3px solid var(--primary);
  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: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.04em; color: var(--primary);
  opacity: 0.18; margin-bottom: -12px;
}
.value-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 20px; font-weight: 900;
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--ink); margin-bottom: 12px;
}
.value-title { font-family: 'Anton', sans-serif; }
.value-body { 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: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  background: var(--canvas); padding: var(--section-py) 0;
}
.timeline-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}
.timeline-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.timeline-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--primary); flex-shrink: 0;
}
.timeline-headline, .timeline-inner > h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 48px;
}

.timeline-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-left: 2px solid var(--border);
  position: relative;
}
.timeline-step {
  padding: 28px 28px 28px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-dot {
  position: absolute; left: -9px; top: 32px;
  width: 16px; height: 16px;
  background: var(--canvas); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot-inner {
  width: 6px; height: 6px; background: var(--primary);
}
.timeline-era {
  font-family: 'Anton', sans-serif;
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.timeline-step h3 {
  font-family: 'Anton', sans-serif;
  font-size: 18px; font-weight: 900; letter-spacing: -0.01em;
  line-height: 1.1; color: var(--ink); margin-bottom: 10px;
}
.timeline-step-title { font-family: 'Anton', sans-serif; }
.timeline-step-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip {
  background: var(--ink); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.crew-strip-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 400px; gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.crew-strip-inner > img {
  width: 100%; height: 480px; object-fit: cover; max-height: 480px;
  display: block; filter: grayscale(30%);
  order: 2;
}

.crew-strip-header { margin-bottom: 28px; }
.crew-strip-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.crew-strip-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: var(--accent); flex-shrink: 0;
}
.crew-strip-headline, .crew-strip-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
}
.crew-strip-tag {
  font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65); margin-top: 14px;
}
.crew-strip-caption {
  display: flex; flex-direction: column; gap: 4px;
}
.crew-strip-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: -0.02em;
}
.crew-strip-role {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.crew-strip-photo img {
  width: 100%; height: 300px; object-fit: cover;
  max-height: 300px; filter: grayscale(20%);
}

@media (max-width: 900px) {
  .crew-strip-inner { grid-template-columns: 1fr; }
  .crew-strip-inner > img { order: 0; height: 280px; }
}

/* ============================================================
   ABOUT SECTION (stats + trust)
   ============================================================ */
.about-section {
  background: var(--primary); padding: var(--section-py) 0;
}
.about-section-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.about-section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.about-section-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 3px;
  background: rgba(255,255,255,0.5); flex-shrink: 0;
}
.about-section-inner > div > h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 20px;
}
.about-section-headline { color: #fff; }
.about-section-body {
  font-size: 16px; color: rgba(255,255,255,0.80); line-height: 1.68; margin-bottom: 14px;
}
.about-section-cta {
  display: inline-block; margin-top: 16px;
  background: #fff; color: var(--primary);
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 0; text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.about-section-cta:hover { filter: brightness(0.95); color: var(--primary); text-decoration: none; transform: translateY(-1px); }

.about-section-trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.trust-chip-sm {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.90); border-radius: 0;
  background: rgba(255,255,255,0.10);
}

.about-section-accent {
  display: flex; flex-direction: column; gap: 32px;
  justify-content: center;
}
.about-section-stat {}
.about-section-stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.04em; color: #fff;
}
.about-section-stat-label {
  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); margin-top: 6px;
}

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

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

.footer-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.footer-grid {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { max-height: 48px !important; width: auto; }
.footer-brand-logo { display: flex; align-items: center; }
.footer-brand-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px; font-weight: 900;
  letter-spacing: -0.01em; color: #fff;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.55; max-width: 28ch;
}
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 32ch;
}

.footer-col {}
.footer-col-title, .footer-col-heading, .footer-col-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 18px;
}

.footer-col ul, .footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul li a, .footer-links li a {
  font-size: 14px; color: rgba(255,255,255,0.72);
  font-weight: 500; text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover, .footer-links li a:hover {
  color: var(--primary); text-decoration: none;
}
.footer-col ul li.muted, .footer-col ul li.muted a {
  color: rgba(255,255,255,0.35); font-size: 13px;
}

.footer-phone {
  display: block; font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 8px; text-decoration: none;
}
.footer-phone:hover { color: var(--primary); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-badge {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55); border-radius: 0;
}

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

.footer-contact-item {
  display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px;
}
.footer-contact-label {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-contact-value {
  font-size: 14px; color: rgba(255,255,255,0.72);
}
.footer-contact-value a { color: rgba(255,255,255,0.72); }
.footer-contact-value a:hover { color: var(--primary); }
.footer-contact-line { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.footer-contact-line a { color: rgba(255,255,255,0.55); }
.footer-contact-line a:hover { color: var(--primary); }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px clamp(24px, 5vw, 72px);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  max-width: 100%;
}
.footer-bottom p, .footer-bottom span {
  font-size: 12px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-license { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.40); border-radius: 0;
}

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

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

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

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

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; padding: 80px 0; text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px); font-weight: 900; line-height: 1; color: var(--primary);
}
.stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); margin-top: 8px;
}

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card { padding: 28px; border-radius: 12px; background: var(--surface-2); }
.review-stars svg { color: var(--primary); 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; }

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

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

.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.muted { color: var(--muted) !important; font-size: 13px; }
.full-width { grid-column: 1 / -1; }
.reverse { }

/* Thumb tables */
thead .col-service, thead th { background: var(--ink); color: #fff; }
tbody .col-service, tbody td { background: var(--canvas); color: var(--ink); }

/* SVG caps */
svg { display: inline-block; vertical-align: middle; }
.info-icon,
.nav-cta-icon,
.cta-banner-actions a svg,
.btn svg,
.btn-primary svg,
.btn-outline svg,
.btn-phone svg,
.btn-primary-svc svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   MOBILE GLOBAL
   ============================================================ */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ribbon { top: 12px; right: 12px; font-size: 10px; padding: 8px 12px; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 8px 14px; }
  .trust-inner { gap: 10px; }
  .trust-badge { min-width: 130px; padding: 16px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.crew-strip-header { grid-column: 1 / -1; }
