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

/* =====================================================
   TOKENS
   ===================================================== */
:root {
  --primary:       #3CB44C;
  --accent:        #216329;
  --canvas:        #FFFFFF;
  --surface:       #F7F4ED;
  --ink:           #141414;
  --muted:         #6B665C;
  --border:        rgba(20,20,20,0.10);
  --border-brand:  rgba(60,180,76,0.35);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 18px 64px 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', system-ui, sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 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;
}

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

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

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.eyebrow, .section-eyebrow, .page-header-eyebrow,
.hero-eyebrow, .service-eyebrow, .about-eyebrow,
.tct-eyebrow, .contact-form-eyebrow, .cta-banner-eyebrow,
.cta-banner-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

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

/* =====================================================
   LAYOUT CONTAINERS
   ===================================================== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.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-inline: auto;
  padding: 0 28px;
  height: var(--header-height);
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; color: inherit; }

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

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

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  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;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .nav-pages.open { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    175deg,
    rgba(20,20,20,0.10) 0%,
    rgba(33,99,41,0.25) 50%,
    rgba(20,20,20,0.82) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--canvas);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
}

.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

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

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 48ch;
  margin-bottom: 40px;
  font-weight: 500;
}

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

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.hero-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(60,180,76,0.5);
  background: rgba(20,20,20,0.4);
  backdrop-filter: blur(4px);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: filter 180ms, background 180ms, color 180ms;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary, .btn-cta-main {
  background: var(--primary);
  color: var(--canvas);
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn-cta-main:hover {
  filter: brightness(0.9);
  color: var(--canvas);
  text-decoration: none;
}

.btn-ghost, .btn-outline, .btn-phone {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover, .btn-outline:hover, .btn-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-service {
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 28px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: filter 150ms;
}
.btn-service:hover { filter: brightness(0.9); color: var(--canvas); text-decoration: none; }

.btn-submit {
  background: var(--primary);
  color: var(--canvas);
  padding: 18px 40px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: filter 150ms;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.btn-submit:hover { filter: brightness(0.9); }
.btn-submit svg { width: 18px; height: 18px; }

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================
   CHIP / TRUST BADGE
   ===================================================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
}

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2;
  color: var(--ink);
  flex-shrink: 0;
}

.marquee-item b { color: var(--primary); }

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

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust-strip {
  background: var(--surface);
  padding: 48px 0;
}

.trust-strip-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
}

/* =====================================================
   SERVICES (index.html tabbed panel)
   ===================================================== */
.services {
  background: var(--canvas);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.services-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 12px;
}

.services-inner .eyebrow {
  margin-bottom: 12px;
}

.sec-intro {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 48px;
  line-height: 1.65;
}

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

.service-tab {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  white-space: nowrap;
}

.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.service-tab.active {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

.services-panels {
  position: relative;
}

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

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

.service-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  position: relative;
}

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

.sp-num {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--primary);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  user-select: none;
}

.sp-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 20px;
  line-height: 1.0;
}

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

.sp-body a {
  margin-top: 24px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .service-panel.active {
    display: flex;
    flex-direction: column;
  }
  .service-panel > img { max-height: 260px; width: 100%; }
}

/* =====================================================
   SERVICES DETAIL (services.html)
   ===================================================== */
.services-detail {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: var(--section-py);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 480px;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.service-row:nth-child(even) {
  grid-template-columns: 1fr 480px;
  background: var(--surface);
}

.service-row:nth-child(even) .service-row-photo {
  order: 2;
}
.service-row:nth-child(even) .service-row-body {
  order: 1;
}

.service-row-photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.service-row-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-row-photo-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(20,20,20,0.35), transparent);
}

.service-numeral {
  position: absolute;
  top: 20px; left: 20px; z-index: 2;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
  user-select: none;
}

.service-row-body {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.service-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-row-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
}

.service-row-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.service-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
}

.service-row-body a {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-row,
  .service-row:nth-child(even) {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
  }
  .service-row-photo { order: -1 !important; min-height: 240px; }
  .service-row-body { order: 1 !important; }
  .service-row:nth-child(even) .service-row-photo { order: -1 !important; }
}

/* Services trust strip */
.services-trust-strip {
  background: var(--surface);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.services-trust-strip-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* =====================================================
   GALLERY (index.html inline grid)
   ===================================================== */
.gallery {
  background: var(--surface);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.gallery-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 3px;
  margin-top: 40px;
}

.gcell {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.gcell.tall {
  grid-row: span 2;
}

.gcell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}

.gcell:hover img { transform: scale(1.04); }

.gcell-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.45), transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
}

.gcell:hover .gcell-scrim { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gcell.tall { grid-row: span 1; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}

/* =====================================================
   GALLERY PAGE (gallery.html)
   ===================================================== */
.gallery-section {
  background: var(--canvas);
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: var(--section-py);
}

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

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

.gallery-section-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
}

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

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

.filter-pill {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 150ms;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--canvas);
}

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

.project-card {
  background: var(--surface);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.project-card-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}

.project-card:hover .project-card-img-wrap img { transform: scale(1.04); }

.project-card-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.5), transparent 50%);
}

.project-card-num {
  position: absolute;
  top: 14px; left: 14px; z-index: 2;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

.project-card-category {
  position: absolute;
  bottom: 14px; left: 14px; z-index: 2;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: var(--primary);
  padding: 4px 10px;
}

.project-card-body {
  padding: 20px 22px 24px;
}

.project-card-title {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.15;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.project-card-location svg {
  width: 14px; height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

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

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

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

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

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

.service-areas-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.service-areas-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 12px;
}

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

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--border-brand);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 150ms, background 150ms;
}

.area-pill:hover {
  border-color: var(--primary);
  background: var(--canvas);
}

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

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  background: var(--surface);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.faq-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

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

details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink);
  list-style: none;
  gap: 24px;
}

details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 220ms ease;
}

details[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* =====================================================
   TEAM CTA (about-teaser)
   ===================================================== */
.team-cta {
  background: var(--ink);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.team-cta-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  text-align: center;
}

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

.tct-headline {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  margin-bottom: 32px;
}

.tct-headline em {
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--primary);
}

.tct-quote {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  margin: 0 auto 40px;
}

.tct-quote strong { color: var(--canvas); }

.team-cta-inner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 18px 40px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 150ms;
}
.team-cta-inner a:hover { filter: brightness(0.9); color: var(--canvas); text-decoration: none; }

/* =====================================================
   CONTACT (index.html)
   ===================================================== */
.contact {
  background: var(--canvas);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

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

/* =====================================================
   CONTACT SPLIT (contact.html)
   ===================================================== */
.contact-split {
  background: var(--canvas);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.contact-form-col h2,
.contact-form-col .contact-form-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 8px;
}

.contact-form-eyebrow {
  display: block;
  margin-bottom: 8px;
}

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

/* =====================================================
   FORMS
   ===================================================== */
.contact-form,
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field, .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-inp, input[type="text"],
input[type="email"],
input[type="tel"],
input[type="phone"],
select,
textarea,
.form-ta {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  outline: none;
  transition: border-color 150ms;
  appearance: none;
}

.form-inp:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: var(--canvas);
}

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

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(60,180,76,0.12);
  border: 1px solid var(--primary);
  color: var(--accent);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

.form-success.visible { display: block; }

/* Contact info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

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

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.cinfo-lbl {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.cinfo-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.cinfo-val a { color: var(--ink); }
.cinfo-val a:hover { color: var(--primary); }

.promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.p-icon {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Info block (contact page) */
.info-block {
  padding: 28px 0;
}

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

.info-block-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.info-block-value a { color: var(--ink); }
.info-block-value a:hover { color: var(--primary); }

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

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  list-style: none;
}

.promise-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.promise-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

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

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--ink);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.cta-banner-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

/* layout variants */
.cta-banner-inner.fade-up h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--canvas);
  margin-bottom: 32px;
}

.cta-banner-text h2,
.cta-banner-title {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--canvas);
  margin-bottom: 24px;
}

.cta-banner-text h2 span,
.cta-banner-title span {
  color: var(--primary);
}

.cta-banner-eyebrow {
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-banner-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 52ch;
  line-height: 1.6;
}

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

.cta-banner-phone, .cta-phone-big {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--canvas);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 32px;
}

.cta-banner-actions,
.cta-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Split cta-banner with form */
.cta-banner-inner:has(.cta-banner-left),
.gallery .cta-banner .cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
}

.cta-banner-left h2 {
  font-size: clamp(32px, 4vw, 60px);
  color: var(--canvas);
  margin-bottom: 16px;
}

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

.cta-form-title {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-form form {
  gap: 16px;
}

.cta-form input,
.cta-form textarea {
  background: var(--surface);
}

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

/* =====================================================
   PAGE HEADER (sub-pages)
   ===================================================== */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  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;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(175deg, rgba(20,20,20,0.4) 0%, rgba(20,20,20,0.75) 100%);
}

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

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 96px);
  color: var(--canvas);
  line-height: 0.96;
  max-width: 16ch;
}

.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
  max-width: 52ch;
  line-height: 1.55;
}

.breadcrumb {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary); text-decoration: none; }

.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--primary); }

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

.about-story-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.about-story-portrait {
  position: relative;
  overflow: hidden;
}

.about-story-portrait img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  max-height: none;
}

.about-story-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}

.about-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

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

.about-owner-credit {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

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

/* =====================================================
   ABOUT MAGAZINE
   ===================================================== */
.about-magazine {
  background: var(--surface);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.about-mag-photos {
  position: relative;
  min-height: 560px;
}

.about-mag-photos img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  max-height: none;
  position: relative;
  z-index: 2;
}

.about-mag-color-block {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 60%; height: 60%;
  background: var(--primary);
  z-index: 1;
}

.about-mag-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}

.about-mag-text .section-eyebrow {
  margin-bottom: 16px;
}

.about-mag-text .about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-magazine-inner { grid-template-columns: 1fr; }
  .about-mag-photos { min-height: auto; }
  .about-mag-color-block { bottom: -16px; right: -16px; }
}

/* =====================================================
   VALUES
   ===================================================== */
.values {
  background: var(--canvas);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.values-inner h2,
.section-title {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

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

.value-card {
  background: var(--canvas);
  padding: 40px 32px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.value-num {
  display: block;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.85;
  color: var(--primary);
  opacity: 0.25;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  user-select: none;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

@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(--surface);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.timeline-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 56px;
}

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

.timeline-track::before {
  content: '';
  position: absolute;
  top: 16px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  position: relative;
  padding-top: 48px;
  padding-right: 24px;
}

.timeline-dot {
  position: absolute;
  top: 8px; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  z-index: 1;
}

.timeline-year {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.timeline-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr; }
  .timeline-track::before { display: none; }
  .timeline-step { padding-top: 0; padding-left: 32px; margin-bottom: 32px; }
  .timeline-dot { top: 4px; left: 0; }
}

/* =====================================================
   CREW
   ===================================================== */
.crew {
  background: var(--canvas);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.crew-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

.crew-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.crew-photo-main {
  overflow: hidden;
}

.crew-photo-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  max-height: none;
}

.crew-info {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.crew-info-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.96;
  margin-bottom: 8px;
}

.crew-info-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 48ch;
}

.crew-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.crew-stat-num {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

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

@media (max-width: 900px) {
  .crew-photo-strip { grid-template-columns: 1fr; }
  .crew-photo-main img { height: 300px; }
}

/* =====================================================
   CREDENTIALS
   ===================================================== */
.credentials {
  background: var(--surface);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

.credentials-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.cred-card {
  background: var(--canvas);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.cred-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.cred-value {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.cred-detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img { max-height: 44px !important; }

.footer-brand-name,
.footer-brand-desc,
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact-item:hover { color: var(--primary); text-decoration: none; }

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-trust-chip,
.footer-cert-chip,
.footer-cert-badge,
.fcert {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(60,180,76,0.3);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

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

.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links li { list-style: none; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 150ms;
  font-weight: 500;
}

.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-links span {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-areas a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 150ms;
}
.footer-areas a:hover { color: var(--primary); text-decoration: none; }

.footer-cert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-cert-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

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

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-trust-item {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-phone, .footer-phone-link {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.footer-phone-link:hover { color: var(--primary); text-decoration: none; }

.footer-license {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

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

/* =====================================================
   MOBILE CALL PILL / BUTTON
   ===================================================== */
.mobile-call,
.mobile-call-btn,
.mobile-cta,
.mobile-cta-pill {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  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: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: filter 150ms, transform 150ms;
}

.mobile-call:hover,
.mobile-call-btn:hover,
.mobile-cta:hover,
.mobile-cta-pill:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  color: var(--canvas);
  text-decoration: none;
}

.mobile-call svg,
.mobile-call-btn svg,
.mobile-cta svg,
.mobile-cta-pill svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

.mobile-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--canvas);
  text-decoration: none;
}

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

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

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.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(9) { transition-delay: 640ms; }
.stagger.visible > *:nth-child(10) { transition-delay: 720ms; }
.stagger.visible > *:nth-child(n+11) { transition-delay: 800ms; }

/* =====================================================
   SERVICE CARD HOVER (generic)
   ===================================================== */
.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);
}

/* =====================================================
   REVIEW CARDS
   ===================================================== */
.review-card {
  padding: 28px;
  border-radius: 0;
  background: var(--surface);
}

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

/* =====================================================
   FAQ (standalone details — supplement above styles)
   ===================================================== */
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;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

details.faq p { margin-top: 12px; line-height: 1.6; }

/* =====================================================
   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;
  font-family: 'Cormorant Garamond', sans-serif;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

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

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

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

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

/* =====================================================
   MISC UTILITIES
   ===================================================== */
.sec-title { font-size: clamp(36px, 5vw, 72px); }
.info-email { color: var(--ink); }
.info-email:hover { color: var(--primary); }

/* Anchors in headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* Responsive base */
@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .hero-ctas { flex-direction: column; }
  .btn { padding: 16px 24px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.sp-img { grid-column: 1 / -1; }
.sp-body { grid-column: 1 / -1; }
.gcell { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.service-row-photo { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.crew-photo-main { grid-column: 1 / -1; }
.crew-info { grid-column: 1 / -1; }
.cta-banner-label { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.btn-group { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
