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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #1B4D8E;
  --primary-dark:   #143d70;
  --primary-light:  #e8eef7;
  --accent:         #2E7D32;
  --accent-dark:    #1b5e20;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #ede9e0;
  --ink:            #141414;
  --muted:          #6B665C;
  --border:         rgba(27,77,142,0.18);
  --border-ink:     rgba(20,20,20,0.12);
  --header-height:  72px;
  --radius:         0px;
  --shadow-card:    0 12px 40px -12px rgba(20,20,20,0.14);
  --shadow-pill:    0 18px 40px -10px rgba(0,0,0,0.45);
  --transition:     250ms ease-out;
}

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

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

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

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

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

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 1.6vw, 20px); }

p { line-height: 1.7; }

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

ul { list-style: none; }

/* Label style */
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.page-header-breadcrumb,
.service-eyebrow,
.cta-eyebrow,
.info-card-label,
.contact-form-label,
.footer-col-title,
.footer-col-heading,
.footer-col h4,
.quicknav-label,
.crew-specialties-block .section-eyebrow,
.gallery-intro-text p:first-child {
  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: 12px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wide-container { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.section-inner { max-width: 1440px; margin: 0 auto; padding: clamp(96px,12vh,180px) 28px; }
.bleed { width: 100%; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress,
#scrollProgress,
#scroll-progress,
#progress-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; display: flex; align-items: center; }
.nav-logo img { max-height: 44px; max-width: 200px; }

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
  font-family: 'Inter Tight', sans-serif;
}

.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: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Archivo', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover { filter: brightness(0.88); text-decoration: none; color: #fff; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    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 a { font-size: 18px; padding: 10px 0; }

  .nav-cta span:not(:first-child) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.25) 0%,
    rgba(27,77,142,0.18) 40%,
    rgba(20,20,20,0.82) 100%
  );
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) 28px clamp(72px, 10vh, 128px);
  width: 100%;
}

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

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

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

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
  font-family: 'Inter Tight', sans-serif;
}

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

/* Hero ribbon */
.hero-ribbon {
  position: absolute;
  top: calc(var(--header-height) + 20px);
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 10px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.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% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Trust chips in hero */
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.hero-trust-chips .trust-chip {
  border: 1px solid rgba(27,77,142,0.6);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
}

/* ============================================================
   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;
  align-items: center;
}

.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);
  white-space: nowrap;
}

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

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

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

.trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

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

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services {
  background: var(--canvas);
}

.services .section-inner { padding-bottom: clamp(96px,12vh,180px); }

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

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-ink);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

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

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

.services-panels { position: relative; }

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

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

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

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

.service-panel-body h3 {
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.0;
  margin-bottom: 8px;
}

.service-panel-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.service-panel-body p + p { margin-top: 12px; }

.service-panel-body a { margin-top: auto; }

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

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--surface);
  padding: clamp(96px,12vh,180px) 0;
}

.reviews-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.reviews-inner h2 { margin-bottom: 48px; }

.rating-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  background: var(--canvas);
  padding: clamp(32px, 4vw, 56px);
  border-left: 4px solid var(--primary);
}

.rating-left { display: flex; flex-direction: column; gap: 10px; }

.rating-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  fill: var(--primary);
}

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

.rating-copy h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 16px;
}

.rating-copy p { color: var(--muted); max-width: 560px; }

.rating-copy a { margin-top: 20px; display: inline-block; }

.rating-promo {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 640px) {
  .rating-banner { grid-template-columns: 1fr; gap: 24px; }
}

/* Review cards (generic — also used in reviews grids) */
.review-card {
  padding: 28px;
  border-radius: 0;
  background: var(--surface-2);
}

.review-stars svg { color: var(--primary); width: 18px; height: 18px; fill: var(--primary); }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   GALLERY — INDEX PAGE PREVIEW
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(96px,12vh,180px) 0;
}

.gallery-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.gallery-inner h2 { margin-bottom: 32px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-top: 40px;
}

.gallery-tile-main {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 480px;
}

.gallery-tile-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-tile {
  display: block;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-stat-card {
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  aspect-ratio: 4 / 3;
}

.gallery-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gallery-stat-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.8;
}

.gallery-cta {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile-main { grid-column: 1 / -1; grid-row: 1; min-height: 56vw; }
}

/* ============================================================
   GALLERY PAGE — FILTER GRID
   ============================================================ */
.gallery-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px,8vh,120px) 28px;
}

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

.gallery-intro-text h2 { font-size: clamp(32px, 4vw, 56px); }
.gallery-intro-text p { color: var(--muted); margin-top: 8px; }

.gallery-count {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--surface);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--border-ink);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}

.project-card-featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.project-card-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.project-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  position: absolute;
  inset: 0;
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.72) 0%, transparent 55%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0;
}

.project-card:hover .project-card-body { transform: translateY(0); opacity: 1; }

.project-card-body h3 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.project-card-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  display: block;
}

.project-card-cat {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

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

.project-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.project-card-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .project-card-featured { grid-column: 1 / -1; }
}

/* ============================================================
   SERVICE AREAS — INDEX PAGE
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: clamp(96px,12vh,180px) 0;
}

.areas-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.areas-inner h2 { margin-bottom: 40px; }

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

.area-pill {
  border: 1px solid var(--primary);
  background: var(--canvas);
  color: var(--ink);
  padding: 8px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  white-space: nowrap;
  display: inline-block;
}

.area-chip {
  border: 1px solid var(--border);
  background: var(--canvas);
  color: var(--ink);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  white-space: nowrap;
  display: inline-block;
}

/* ============================================================
   SERVICE AREAS — CONTACT PAGE
   ============================================================ */
.service-areas-section {
  background: var(--canvas);
  padding: clamp(96px,12vh,180px) 0;
}

.service-areas-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.service-areas-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.service-areas-top p { color: var(--muted); max-width: 420px; margin-top: 12px; }

.service-areas-intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(96px,12vh,180px) 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.areas-columns {
  columns: 3;
  column-gap: 24px;
  list-style: none;
  padding: 0;
}

.areas-columns li {
  font-size: 15px;
  color: var(--muted);
  padding: 5px 0;
  break-inside: avoid;
  border-bottom: 1px solid var(--border-ink);
}

@media (max-width: 900px) {
  .service-areas-intro { grid-template-columns: 1fr; gap: 32px; }
  .areas-columns { columns: 2; }
  .service-areas-top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .areas-columns { columns: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--canvas);
  padding: clamp(96px,12vh,180px) 0;
}

.faq-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.faq-inner h2 { max-width: 640px; margin-bottom: 48px; }

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

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

details.faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 17px;
  font-family: 'Archivo', sans-serif;
  gap: 16px;
}

details.faq-item > summary::-webkit-details-marker { display: none; }

.faq-q { flex: 1; }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 200ms;
  color: var(--primary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

details.faq-item[open] > summary .faq-icon {
  transform: rotate(45deg);
}

details.faq-item[open] > summary .faq-icon::after { content: none; }

.faq-a {
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: 48px 28px;
}

.team-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.team-cta-text span { color: rgba(255,255,255,0.7); }

.team-cta a { flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding: clamp(96px,12vh,180px) 0;
}

.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-col h2 { margin-bottom: 8px; }

.contact-split {
  background: var(--surface);
  padding: clamp(96px,12vh,180px) 0;
}

.contact-split-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-side h2 { margin-bottom: 8px; }
.contact-form-label { margin-bottom: 4px; }

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

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

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

.form-group.full { grid-column: 1 / -1; }

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-ink);
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 150ms;
  appearance: none;
}

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

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--primary);
}

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

.contact-info-col,
.contact-info-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-info-value {
  font-size: 17px;
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
}

.contact-info-value a { color: var(--primary); }
.contact-info-note { color: var(--muted); font-size: 15px; line-height: 1.6; }

.info-card-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

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

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

.info-icon svg { width: 20px; height: 20px; color: var(--primary); }

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

.info-value { font-size: 16px; font-weight: 500; color: var(--ink); }
.info-value a { color: var(--primary); }

.info-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 20px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter var(--transition);
}

.info-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.info-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.info-socials { display: flex; gap: 12px; margin-top: 16px; }

.info-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.info-social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }
.info-social-link svg { width: 18px; height: 18px; }

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

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

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

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px,7vw,96px) 28px;
  width: 100%;
}

.page-header-inner h1,
.page-header-title {
  font-size: clamp(40px, 6vw, 96px);
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.page-header-inner h1 em,
.page-header-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
}

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

.page-header-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.page-header-breadcrumb span { color: rgba(255,255,255,0.4); }

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

.page-header-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.6;
}

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

.page-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-top: 12px;
  max-width: 500px;
}

.page-title {
  font-size: clamp(36px, 5vw, 72px);
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

/* ============================================================
   SERVICES PAGE — FEATURE BLOCKS
   ============================================================ */
.services-list { background: var(--canvas); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border-ink);
}

.service-block.flip { direction: rtl; }
.service-block.flip > * { direction: ltr; }

.service-block-img {
  position: relative;
  overflow: hidden;
}

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

.service-block-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--primary);
  padding: 6px 12px;
  z-index: 2;
}

.service-block-body {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--canvas);
}

.service-block.flip .service-block-body { background: var(--surface); }

.service-block-body h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.0;
}

.service-block-body p { color: var(--muted); line-height: 1.7; }

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

.service-features li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--primary);
}

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

@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr;
  }
  .service-block.flip { direction: ltr; }
  .service-block-img { min-height: 56vw; }
  .service-block-img > img { position: absolute; }
}

/* ============================================================
   SERVICES QUICKNAV
   ============================================================ */
.services-quicknav {
  background: var(--surface);
  border-bottom: 1px solid var(--border-ink);
  position: sticky;
  top: var(--header-height);
  z-index: 800;
}

.services-quicknav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-quicknav-inner::-webkit-scrollbar { display: none; }

.quicknav-chips {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.quicknav-chip {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--border-ink);
  background: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.quicknav-chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(80px, 10vh, 140px) 0;
}

.cta-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-banner-inner h2,
.cta-banner-title {
  font-size: clamp(36px, 5vw, 80px);
  color: #fff;
  max-width: 16ch;
  line-height: 0.96;
}

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

.cta-sub,
.cta-banner-sub {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
}

.cta-banner-btns,
.cta-banner-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* About Story */
.about-story {
  background: var(--canvas);
  padding: clamp(96px,12vh,180px) 0;
}

.about-story-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about-story-photo {
  position: relative;
}

.about-story-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  display: block;
}

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

.drop-cap::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4.2em;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin: 8px 12px 0 0;
  color: var(--primary);
}

.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--surface);
}

.pull-quote em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  display: block;
}

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

/* Values section */
.values-section {
  background: var(--surface);
  padding: clamp(96px,12vh,180px) 0;
}

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

.value-card {
  background: var(--canvas);
  padding: 32px 28px 28px;
  border-top: 3px solid var(--primary);
}

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.value-card h3 { font-size: 18px; margin-bottom: 12px; }
.value-body { color: var(--muted); font-size: 15px; 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-section {
  background: var(--canvas);
  padding: clamp(96px,12vh,180px) 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border-ink);
}

.timeline-step {
  padding: 32px 28px 28px 0;
  padding-right: 24px;
  border-right: 1px solid var(--border-ink);
  position: relative;
}

.timeline-step:last-child { border-right: 0; padding-right: 0; }

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  position: absolute;
  top: -7px;
  left: 0;
}

.timeline-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
  margin-top: 16px;
}

.timeline-step h3 { font-size: 18px; margin-bottom: 10px; }
.timeline-step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; border-top: 0; }
  .timeline-step { border-right: 0; border-top: 1px solid var(--border-ink); padding-right: 0; }
}

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

/* Crew strip */
.crew-strip {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

.crew-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.crew-specialties-block h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 24px; }

.crew-creds {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crew-creds li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-ink);
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.crew-creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 2px;
  background: var(--primary);
}

.crew-text { display: flex; flex-direction: column; gap: 20px; }
.crew-body { color: var(--muted); line-height: 1.7; font-size: 16.5px; }
.crew-text a { align-self: flex-start; }

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

/* About full */
.about-full {
  background: var(--primary);
  padding: clamp(80px,10vh,140px) 0;
}

.about-full-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-full-text h2,
.about-full-title {
  font-size: clamp(28px, 3.2vw, 48px);
  color: #fff;
  margin-bottom: 20px;
}

.about-full-text p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 16px; }
.about-full-text a { margin-top: 16px; display: inline-block; }
.about-full-text .section-eyebrow { color: rgba(255,255,255,0.65); }

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

.about-portrait-wrap img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}

.about-portrait-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--ink);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

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

@media (max-width: 900px) {
  .about-full-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait-badge { left: 0; bottom: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-cta,
.btn-service,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: filter var(--transition), background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary,
.btn-cta,
.btn-service,
.btn-submit {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-cta:hover,
.btn-service:hover,
.btn-submit:hover {
  filter: brightness(0.88);
  color: #fff;
  text-decoration: none;
}

.btn-outline,
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  transition: filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-white:hover { filter: brightness(0.92); text-decoration: none; color: var(--primary); }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition);
}

.btn-phone:hover { background: rgba(255,255,255,0.12); text-decoration: none; color: #fff; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-family: 'Archivo Black', sans-serif;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}

.footer-inner,
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px,8vh,96px) 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img,
.footer-logo img,
.footer-inner > div:first-child img {
  max-height: 44px !important;
  max-width: 180px !important;
  margin-bottom: 16px;
  filter: brightness(10);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col-title,
.footer-col-heading,
.footer-col h4,
.footer-brand-logo + p,
.footer-inner > div > p:first-child:not(.footer-tagline) {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: block;
}

.footer-links,
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

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

.footer-links a:hover,
.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-phone { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-contact a,
.footer-contact-info a { color: rgba(255,255,255,0.65); font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

@media (max-width: 900px) {
  .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; align-items: flex-start; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-pill);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter var(--transition), transform var(--transition);
}

.mobile-call-pill:hover,
.mobile-cta-pill:hover {
  filter: brightness(0.88);
  transform: scale(1.02);
  text-decoration: none;
  color: #fff;
}

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

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

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

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s 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; }

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

/* ============================================================
   SVG CAPS
   ============================================================ */
.rating-stars svg,
.review-stars svg { width: 20px; height: 20px; flex-shrink: 0; }

.info-icon svg { width: 20px; height: 20px; }
.btn svg, .btn-primary svg, .btn-cta svg, .btn-submit svg,
.btn-outline svg, .btn-outline-white svg, .btn-white svg,
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.project-card-meta-item svg { width: 14px; height: 14px; }
.info-social-link svg { width: 18px; height: 18px; }
.info-cta svg { width: 18px; height: 18px; }
nav svg { width: 22px; height: 22px; }

/* ============================================================
   TABLE RULES (defensive)
   ============================================================ */
table { border-collapse: collapse; width: 100%; }
thead th { padding: 14px 16px; text-align: left; }
tbody td { padding: 14px 16px; background: var(--canvas); color: var(--ink); border-bottom: 1px solid var(--border-ink); }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.full { grid-column: 1 / -1; }

/* Flip layout only — NO mirror transforms */
.flip { direction: rtl; }
.flip > * { direction: ltr; }

@media (max-width: 900px) {
  .flip { direction: ltr; }
}

/* ============================================================
   RESPONSIVE OVERFLOW GUARD
   ============================================================ */
@media (max-width: 640px) {
  .hero-title { max-width: 100%; font-size: clamp(44px, 11vw, 72px); }
  .hero-ctas { flex-direction: column; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 8px 12px; }
  .trust-inner { justify-content: flex-start; }
  .gallery-intro { flex-direction: column; align-items: flex-start; }
  .section-inner { padding-left: 20px; padding-right: 20px; }
  .areas-inner,
  .faq-inner,
  .gallery-inner,
  .reviews-inner,
  .footer-inner,
  .footer-grid,
  .footer-bottom,
  .contact-inner,
  .contact-split-inner,
  .service-areas-inner,
  .crew-strip-inner,
  .about-story-inner,
  .about-full-inner { padding-left: 20px; padding-right: 20px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.rating-left { grid-column: 1 / -1; }
.rating-copy { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.gallery-stat-card { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.service-block-img { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { 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; }
