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

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --primary:       #248C5C;
  --accent:        #1B6945;
  --canvas:        #FFFFFF;
  --surface:       #F7F4ED;
  --ink:           #141414;
  --muted:         #6B665C;
  --ink-mid:       #3A3730;
  --border:        rgba(36,140,92,0.22);
  --border-neutral:rgba(0,0,0,0.09);
  --shadow-card:   0 8px 32px -8px rgba(0,0,0,0.13);
  --shadow-pill:   0 18px 40px -10px rgba(0,0,0,0.45);
  --header-height: 72px;
  --radius:        0px;
  --section-y:     clamp(96px, 12vh, 180px);
  --max-w:         1440px;
  --wide-w:        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; }
body { font-family: 'Inter Tight', sans-serif; font-weight: 500; font-size: 16.5px; line-height: 1.68; color: var(--ink); background: var(--canvas); -webkit-font-smoothing: antialiased; }

/* ─── UNIVERSAL IMAGE CAP ─────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }
section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}
.nav img, header img, .header img, .nav-logo img, .logo img { max-height: 44px !important; max-width: 200px !important; width: auto !important; align-self: flex-start !important; object-fit: contain !important; flex: 0 0 auto !important; }
.footer img, footer img { max-height: 48px !important; max-width: 200px !important; width: auto !important; align-self: flex-start !important; object-fit: contain !important; flex: 0 0 auto !important; }
.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.page-header, [class*="page-header"], .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; } }

/* ─── ANCHOR HEADING RULE ─────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a { color: inherit; text-decoration: none; border-bottom: 0; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { 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, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; letter-spacing: -0.01em; }
p { line-height: 1.7; }
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; }

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

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

/* ─── 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 {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}
.nav-logo { flex: 0 0 auto; }
.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;
  gap: 28px;
  list-style: none;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  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: 0;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Archivo', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ─── MOBILE NAV ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    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 li { width: 100%; }
  .nav-pages a { font-size: 17px; padding: 10px 0; display: block; width: 100%; }
  .nav-cta span { display: none; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: filter 180ms, background 180ms, color 180ms;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary, .btn-estimate, .btn-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-estimate:hover, .btn-submit:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.btn-outline, .btn-phone, .btn-phone-large, .btn-phone-lg {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover, .btn-phone:hover, .btn-phone-large:hover, .btn-phone-lg:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary-lg, .btn-phone-large { font-size: 17px; padding: 20px 40px; }

/* ─── HERO ────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
}
#hero.hero > img:first-of-type,
.hero > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.10) 0%,
    rgba(27,105,69,0.28) 55%,
    rgba(20,20,20,0.82) 100%
  );
}
.hero-inner {
  padding: clamp(48px, 8vh, 120px) clamp(24px, 5vw, 80px) clamp(64px, 10vh, 120px);
  max-width: 860px;
}
.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,255,255,0.92);
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-ribbon {
  position: absolute;
  top: clamp(80px, 10vh, 120px);
  right: clamp(16px, 4vw, 48px);
  z-index: 3;
  background: rgba(255,255,255,0.96);
  border: 2px solid var(--primary);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.ribbon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.35); }
}
.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 14px;
  backdrop-filter: blur(4px);
}
@media (max-width: 640px) {
  #hero.hero { min-height: 88vh; }
  .hero-ribbon { top: 70px; right: 12px; font-size: 11px; }
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.marquee, .marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track,
.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;
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.marquee-item.marquee-highlight { color: var(--primary); }
.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
}

/* ─── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  padding: clamp(40px, 5vh, 64px) 0;
  border-bottom: 1px solid var(--border-neutral);
}
.trust-strip-inner, .trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
}
.trust-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-stars {
  color: #F5A623;
  font-size: 20px;
  letter-spacing: 2px;
}
.trust-rating-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-neutral);
  flex-shrink: 0;
}
.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 7px 14px;
  background: var(--canvas);
}

/* ─── TRUST BAND (contact page) ─────────────────────────────── */
.trust-band {
  background: var(--surface);
  padding: 24px 0;
  border-top: 1px solid var(--border-neutral);
}
.trust-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-band-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}

/* ─── SECTION EYEBROWS ────────────────────────────────────────── */
.section-eyebrow, .page-eyebrow, .page-header-eyebrow, .cta-banner-eyebrow, .cta-banner-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 10px;
}

/* ─── SERVICES SECTION ────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.services-header {
  margin-bottom: 40px;
}
.services-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 18ch;
}
.section-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  margin-top: 14px;
  line-height: 1.65;
}
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border-neutral);
  padding-bottom: 0;
}
.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 160ms, border-color 160ms;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active { color: var(--primary); border-bottom-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, .service-panel > img:first-of-type {
  position: relative !important;
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 540px;
  object-fit: cover;
  display: block;
}
.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
.service-panel-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.18;
  margin-bottom: -16px;
}
.service-panel-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
  line-height: 1.05;
}
.service-panel-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 12px;
}
.service-panel-cta, .service-panel-body > a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  text-decoration: none;
  transition: filter 160ms;
  align-self: flex-start;
  margin-top: 24px;
}
.service-panel-cta:hover, .service-panel-body > a:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel > img, .service-panel > img:first-of-type { min-height: 240px; max-height: 300px; }
}

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

/* ─── GALLERY SECTION ─────────────────────────────────────────── */
.gallery, .gallery-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.gallery-header { margin-bottom: 40px; }
.gallery-header h2 { font-size: clamp(36px, 5vw, 64px); }
.gallery-feature { margin-bottom: 32px; }
.gallery-feature img { width: 100%; max-height: 560px; object-fit: cover; }
.gallery-cta { margin-top: 32px; }
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-heading-block h2 { font-size: clamp(32px, 4vw, 56px); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 160ms, color 160ms;
}
.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: 2px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-card:nth-child(4n+1) { grid-column: span 2; }
.gallery-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none; transition: transform 500ms ease; }
.gallery-card:hover > img { transform: scale(1.04); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.gallery-card-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.gallery-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 18px 18px;
  transform: translateY(8px);
  transition: transform 300ms;
}
.gallery-card:hover .gallery-card-body { transform: translateY(0); }
.gallery-card-body h3 { font-size: 16px; color: #fff; margin-bottom: 4px; letter-spacing: -0.01em; }
.gallery-card-location { font-size: 12px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 4px; }
.gallery-card-location svg, .gallery-card-desc svg { width: 12px; height: 12px; flex-shrink: 0; }
.gallery-card-desc { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:nth-child(4n+1) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── SERVICE AREAS ───────────────────────────────────────────── */
.service-areas {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.areas-inner, .service-areas-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.areas-header, .service-areas-text { }
.areas-header h2, .service-areas-text h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 16px; }
.areas-intro { font-size: 16px; color: var(--muted); max-width: 40ch; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.area-item {
  padding: 14px 16px;
  background: var(--surface);
  border-left: 2px solid transparent;
  transition: border-color 160ms, background 160ms;
}
.area-item:hover { border-left-color: var(--primary); background: rgba(36,140,92,0.05); }
.area-name {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.area-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.area-chip {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 4px;
  transition: background 160ms, color 160ms;
}
.area-chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.area-pill {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 3px;
}
.service-areas-chips { display: flex; flex-wrap: wrap; align-items: flex-start; }
.areas-footer { margin-top: 24px; grid-column: 1 / -1; font-size: 15px; color: var(--muted); }
.areas-footer a { color: var(--primary); font-weight: 600; }
@media (max-width: 900px) {
  .areas-inner, .service-areas-inner { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.faq-inner, .faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-inner {
  padding: 0 clamp(20px, 4vw, 64px);
}
.faq-header, .faq-lead { margin-bottom: 48px; }
.faq-header h2, .faq-lead h2 { font-size: clamp(32px, 4vw, 56px); max-width: 18ch; }
.faq-lead p:not(.section-eyebrow) { font-size: 17px; color: var(--muted); margin-top: 12px; }
.faq-lead a { color: var(--primary); font-weight: 600; }

details.faq-item { border-bottom: 1px solid var(--border-neutral); padding: 0; }
details.faq-item > summary.faq-question {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  line-height: 1.35;
}
details.faq-item > summary.faq-question::-webkit-details-marker { display: none; }
details.faq-item > summary.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms;
  line-height: 1;
}
details.faq-item[open] > summary.faq-question::after { transform: rotate(45deg); color: var(--accent); }
.faq-answer, details.faq-item > div, details.faq-item > p {
  padding-bottom: 22px;
  padding-top: 2px;
}
.faq-answer p, details.faq-item > div p, details.faq-item > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-cta { margin-top: 40px; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details.faq-item summary .faq-chevron,
details summary .faq-chevron { flex-shrink: 0; }
details summary .faq-chevron svg { width: 20px; height: 20px; }

/* Services page FAQ (no .faq-item wrapper) */
.faq-list > details {
  border-bottom: 1px solid var(--border-neutral);
  padding: 0;
}
.faq-list > details > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}
.faq-list > details > summary::-webkit-details-marker { display: none; }
.faq-list > details > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ─── TEAM CTA ────────────────────────────────────────────────── */
.team-cta {
  background: var(--ink);
  padding: clamp(64px, 8vh, 100px) 0;
}
.team-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.team-cta-inner .section-eyebrow { color: var(--primary); }
.team-cta-inner .section-eyebrow::before { background: var(--primary); }
.team-cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  max-width: 20ch;
}
.team-cta-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  padding: 18px 36px;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: filter 160ms;
  flex-shrink: 0;
}
.team-cta-inner > a:hover { filter: brightness(0.88); text-decoration: none; color: #fff; }

/* ─── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: clamp(80px, 10vh, 140px) 0;
}
.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text { max-width: 640px; }
.cta-banner-eyebrow, .cta-banner-label { color: var(--primary); }
.cta-banner-title, .cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 16px;
}
.cta-banner-title span, .cta-banner-headline span { color: var(--primary); }
.cta-banner-sub { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 48ch; }
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-banner-actions .btn, .cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 32px;
  text-decoration: none;
  transition: filter 160ms, background 160ms;
}
.cta-banner-actions .btn-primary, .cta-banner-actions a:first-child {
  background: var(--primary);
  color: #fff;
}
.cta-banner-actions .btn-primary:hover, .cta-banner-actions a:first-child:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.cta-banner-actions .btn-outline, .cta-banner-actions a:last-child {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.cta-banner-actions .btn-outline:hover, .cta-banner-actions a:last-child:hover { border-color: #fff; text-decoration: none; color: #fff; }
.btn-phone-lg { display: inline-flex; align-items: center; gap: 8px; }
.btn-phone-lg svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── CONTACT SECTION ─────────────────────────────────────────── */
.contact {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-form-col, .contact-form-side { }
.contact-form-col h2, .contact-form-side h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 8px; }
.contact-section-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: block; }
.contact-form-intro { font-size: 16px; color: var(--muted); margin-top: 8px; margin-bottom: 28px; max-width: 44ch; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group, .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label, .form-field label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border-neutral);
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--primary); }
.form-group textarea, .form-field textarea { min-height: 120px; resize: vertical; }
.form-field.full { grid-column: 1 / -1; }
.form-guarantee { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.form-guarantee svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 160ms;
}
.btn-submit:hover { filter: brightness(0.88); }
.btn-arrow { font-size: 18px; }
.contact-info-col, .contact-info-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border-neutral);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.contact-info-block { margin-bottom: 28px; }
.contact-info-label, .info-card-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;
}
.contact-info-block a, .info-row-value a { color: var(--ink); font-weight: 600; font-size: 17px; }
.contact-info-block a:hover { color: var(--primary); }
.contact-address, .contact-hours { font-size: 15px; color: var(--muted); line-height: 1.65; }
.contact-phone { font-size: 22px; font-weight: 700; color: var(--ink); }
.contact-email { font-size: 16px; color: var(--primary); font-weight: 600; }
.contact-guarantee { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-neutral); }
.guarantee-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.guarantee-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.guarantee-list li { font-size: 14px; color: var(--muted); padding-left: 20px; position: relative; }
.guarantee-list li::before { content: "✓"; color: var(--primary); position: absolute; left: 0; font-weight: 700; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.info-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.info-icon svg { width: 20px; height: 20px; }
svg.info-icon { width: 20px; height: 20px; color: var(--primary); }
.info-row-body { flex: 1; }
.info-row-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.info-row-value { font-size: 15px; color: var(--ink); line-height: 1.55; }
.info-row-value a { color: var(--primary); font-weight: 600; }
.info-phone { font-size: 26px; font-family: 'Archivo Black', sans-serif; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.info-phone-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.info-divider { height: 1px; background: var(--border-neutral); margin: 20px 0; }
.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.info-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.info-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-neutral);
  color: var(--muted);
  transition: background 160ms, color 160ms;
}
.info-social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }
.info-social-link svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-col, .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── GUARANTEE STRIP ─────────────────────────────────────────── */
.guarantee-strip {
  background: var(--surface);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-neutral);
}
.guarantee-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.guarantee-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.guarantee-items { display: flex; flex-wrap: wrap; gap: 12px; }
.guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: 8px 14px;
}
.guarantee-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ─── PAGE HEADER (sub-pages) ────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.32) 0%, rgba(20,20,20,0.68) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 80px);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-header-inner h1 {
  font-size: clamp(40px, 7vw, 96px);
  color: #fff;
  margin-bottom: 12px;
  max-width: 18ch;
}
.page-eyebrow, .page-header-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,255,255,0.92);
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
}

/* ─── ABOUT STORY (about page) ───────────────────────────────── */
.about-story {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.about-story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-story-portrait { position: relative; }
.about-story-portrait img { width: 100%; max-height: 640px; object-fit: cover; }
.about-story-portrait-caption {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.about-story-text h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 24px; }
.about-story-text p { font-size: 16.5px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.drop-cap-para::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4em;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--primary);
}
.pull-quote {
  border-left: 4px solid var(--primary);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--surface);
}
.pull-quote p, .pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.4;
  font-weight: 600;
}
@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
}

/* ─── ABOUT MAGAZINE (about page) ───────────────────────────── */
.about-magazine {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.about-magazine-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.about-magazine-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-mag-photos {
  position: relative;
  height: 520px;
}
.about-mag-photo-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 76%;
  object-fit: cover;
  z-index: 2;
  max-height: none !important;
}
.about-mag-photo-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 56%;
  object-fit: cover;
  z-index: 3;
  max-height: none !important;
}
.about-mag-color-block {
  position: absolute;
  bottom: 32px;
  left: 24px;
  width: 48%;
  height: 36%;
  background: var(--primary);
  z-index: 1;
}
.about-mag-text h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 20px; }
.about-mag-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
@media (max-width: 900px) {
  .about-magazine-layout { grid-template-columns: 1fr; }
  .about-mag-photos { height: 320px; }
}

/* ─── VALUES CARDS ────────────────────────────────────────────── */
.values-cards {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.values-cards-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.values-cards-inner > h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--surface);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 200ms, box-shadow 200ms;
}
.value-card:hover { border-top-color: var(--primary); box-shadow: var(--shadow-card); }
.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -8px;
}
.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  margin-top: 8px;
}
.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; }
}

/* ─── JOURNEY TIMELINE ───────────────────────────────────────── */
.journey-timeline {
  background: var(--ink);
  padding: var(--section-y) 0;
}
.journey-timeline-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.journey-timeline-inner > h2 { font-size: clamp(28px, 4vw, 52px); color: #fff; margin-bottom: 56px; }
.journey-timeline-inner .section-eyebrow { color: var(--primary); }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.timeline-step { position: relative; padding-top: 40px; }
.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--ink);
  z-index: 1;
}
.timeline-date {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-milestone {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.timeline-detail { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
@media (max-width: 900px) {
  .timeline-track { grid-template-columns: repeat(2, 1fr); }
  .timeline-track::before { display: none; }
}
@media (max-width: 640px) {
  .timeline-track { grid-template-columns: 1fr; }
}

/* ─── CREW STRIP ──────────────────────────────────────────────── */
.crew-strip {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.crew-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.crew-strip-inner > h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 48px; }
.crew-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.crew-card {
  background: var(--canvas);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-neutral);
  transition: box-shadow 200ms, transform 200ms;
}
.crew-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.crew-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.crew-initials {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.crew-role {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.crew-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}
.crew-bio { font-size: 13px; color: var(--muted); line-height: 1.55; }
@media (max-width: 1200px) {
  .crew-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CREDENTIALS ─────────────────────────────────────────────── */
.credentials {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.credentials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.credentials-inner > h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 48px; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cred-card {
  background: var(--surface);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 200ms;
}
.cred-card:hover { border-top-color: var(--primary); }
.cred-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.cred-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.cred-card-number {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--muted);
  background: var(--canvas);
  padding: 6px 12px;
  display: inline-block;
  border: 1px solid var(--border-neutral);
}
@media (max-width: 900px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cred-grid { grid-template-columns: 1fr; }
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(64px, 8vh, 100px) 0 0;
}
.footer-inner, .footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.footer-brand { }
.footer-brand-logo, .footer-logo { display: block; margin-bottom: 20px; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 18px; }
.footer-address, .footer-about { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 8px; }
.footer-hours-text { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-contact-line { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-contact-line a { color: rgba(255,255,255,0.75); transition: color 150ms; }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }
.footer-col { }
.footer-col-label, .footer-col-title, .footer-col-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col h4, .footer-col > h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links, .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a, .footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul li a:hover { color: var(--primary); text-decoration: none; }
.footer-cred-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-cred-list li, .footer-cred { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.footer-creds { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-cred-badge {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
}
.footer-credentials { }
.footer-certs { display: flex; flex-direction: column; gap: 8px; }
.footer-cert-item { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-cert-item span { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer-bottom {
  margin-top: clamp(40px, 5vh, 64px);
  padding: 24px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-bottom p, .footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-licenses { font-size: 13px; color: rgba(255,255,255,0.3); }
@media (max-width: 1200px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── MOBILE CALL PILL ────────────────────────────────────────── */
.mobile-call-pill, .mobile-call, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter 180ms;
}
.mobile-call-pill:hover, .mobile-call:hover, .mobile-sticky-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.mobile-call-pill svg, .mobile-call svg, .mobile-sticky-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-sticky-cta a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.mobile-sticky-cta a svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (min-width: 900px) {
  .mobile-call-pill, .mobile-call, .mobile-sticky-cta { display: none; }
}

/* ─── ANIMATION UTILITIES ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 680ms cubic-bezier(.22,.68,0,1.2), transform 680ms cubic-bezier(.22,.68,0,1.2); }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 680ms cubic-bezier(.22,.68,0,1.2), transform 680ms cubic-bezier(.22,.68,0,1.2); }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 680ms cubic-bezier(.22,.68,0,1.2), transform 680ms cubic-bezier(.22,.68,0,1.2); }
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 640ms ease, transform 640ms ease; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 560ms ease, transform 560ms ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
.stagger.visible > *:nth-child(n+9) { transition-delay: 640ms; }

/* ─── SVG CAPS ────────────────────────────────────────────────── */
svg { flex-shrink: 0; }
.hero-ctas svg { width: 18px; height: 18px; }
.trust-stars svg { width: 18px; height: 18px; }
.gallery-card-location svg { width: 12px; height: 12px; }
.faq-chevron svg { width: 20px; height: 20px; }
.info-social-link svg { width: 16px; height: 16px; }
.guarantee-item svg { width: 16px; height: 16px; }
.form-guarantee svg { width: 16px; height: 16px; }
.btn-arrow { display: inline-block; }

/* ─── SCROLL PROGRESS FILL (JS sets width) ───────────────────── */
#scrollProgress, #scroll-progress, #scroll-bar { width: 0%; }

/* ─── SECTION ALTERNATION ─────────────────────────────────────── */
.services { background: var(--canvas); }
.gallery, .gallery-section { background: var(--surface); }
.service-areas { background: var(--canvas); }
.faq { background: var(--surface); }
.contact { background: var(--canvas); }
.credentials { background: var(--canvas); }
.values-cards { background: var(--surface); }
.about-story { background: var(--canvas); }
.about-magazine { background: var(--surface); }
.crew-strip { background: var(--surface); }
.journey-timeline { background: var(--ink); }

/* ─── MISC HELPERS ────────────────────────────────────────────── */
.section-headline, .section-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 5vw, 64px); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; }
.section-intro { font-size: 17px; color: var(--muted); max-width: 60ch; margin-top: 14px; line-height: 1.65; }

/* ─── RESPONSIVE POLISH ───────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-inner { flex-direction: column; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions a { width: 100%; justify-content: center; text-align: center; }
  .team-cta-inner { flex-direction: column; }
  .guarantee-inner { flex-direction: column; align-items: flex-start; }
  .trust-strip-inner, .trust-inner { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.area-item { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-links { grid-column: 1 / -1; }
.footer-credentials { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
