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

/* ── Custom properties ───────────────────────────────────────────── */
:root {
  --primary:        #046494;
  --primary-dark:   #034f76;
  --primary-light:  #0578b0;
  --accent:         #A4C4BC;
  --accent-muted:   #c8ddd9;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9E0;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --muted-light:    #9b9690;
  --border:         rgba(4,100,148,0.18);
  --border-subtle:  rgba(0,0,0,0.08);
  --invert-bg:      #0d1f29;
  --invert-text:    #F7F4ED;
  --header-height:  72px;
  --radius:         0px;
  --section-py:     clamp(96px, 12vh, 180px);
  --container:      1440px;
  --container-wide: 1440px;
}

@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', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  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: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  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; object-position: center 30%;
  z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

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

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

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.02em; }

p { line-height: 1.68; }

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; padding: 0; margin: 0; }

/* ── Layout ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-primary, button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, transform 150ms;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-outline, button.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
  text-decoration: none;
}

.btn-white, button.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms;
}
.btn-white:hover {
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--canvas);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  transition: border-color 200ms;
}
.btn-phone:hover { border-color: #fff; color: #fff; text-decoration: none; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms;
}
.btn-submit:hover { background: var(--primary-dark); }
.btn-submit svg { width: 18px; height: 18px; }

/* ── 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;
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
}

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
}
.nav-pages ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.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;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta-text { display: inline; }

.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; margin-left: auto; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }

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

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(4, 100, 148, 0.15) 0%,
    rgba(13, 20, 26, 0.55) 45%,
    rgba(4, 20, 32, 0.85) 100%
  );
}

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

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

.hero-inner {
  padding: clamp(48px, 8vh, 120px) clamp(24px, 6vw, 96px);
  max-width: 900px;
}

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

.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);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-ctas .btn-primary { background: var(--primary); }
.hero-ctas .btn-phone { font-family: 'Inter Tight', sans-serif; }

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(164,196,188,0.5);
  padding: 7px 14px;
  border-radius: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-ribbon { display: none; }
  .hero-ctas { flex-direction: column; }
}

/* ── Marquee ─────────────────────────────────────────────────────── */
.marquee, .marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  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(--muted);
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

/* ── Trust strip ─────────────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.trust-strip-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

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

/* ── Eyebrow system ──────────────────────────────────────────────── */
.section-eyebrow, .eyebrow-label,
.services-intro-eyebrow, .service-block-eyebrow,
.gallery-section-label, .page-header-eyebrow,
.about-editorial-col .eyebrow-label,
.info-card-eyebrow, .cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--primary);
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

.section-eyebrow {
  display: flex;
  align-items: center;
}

/* ── Section headline ────────────────────────────────────────────── */
.section-title, .section-headline, .gallery-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vh, 72px);
}

/* ── Services (bento) ────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border-subtle);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ink);
  text-decoration: none;
  min-height: 360px;
  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.28);
  text-decoration: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: none !important;
  transition: transform 500ms ease;
  filter: grayscale(20%) brightness(0.85);
}
.service-card:hover img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,40,0.88) 0%, rgba(4,20,40,0.2) 60%, transparent 100%);
  z-index: 1;
}

.service-card-flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  min-height: 480px;
}

/* non-flagship cards: each gets one cell */
.service-card:not(.service-card-flagship) {
  grid-column: auto;
  grid-row: auto;
}

/* layout: flagship spans col 1-2 row 1; 4 others fill 2-4 col 1, and row 2 */
.service-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 4; grid-row: 1; }
.service-card:nth-child(4) { grid-column: 3; grid-row: 2; }
.service-card:nth-child(5) { grid-column: 4; grid-row: 2; }

.service-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.service-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.service-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  display: none;
}
.service-card-flagship .service-desc { display: block; }

.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-learn svg { width: 16px; height: 16px; }

.services-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .service-card-flagship { grid-column: 1 / 3; grid-row: auto; min-height: 340px; }
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship { grid-column: 1; min-height: 280px; }
  .service-card { min-height: 240px; }
}

/* ── Services alternating (services.html) ────────────────────────── */
.page-header {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,20,40,0.75) 0%, rgba(4,20,40,0.2) 70%, transparent 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 6vw, 96px);
}

.page-header-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  margin-bottom: 12px;
}

.page-header-eyebrow, .page-header-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.page-header-sub { font-weight: 400; letter-spacing: 0.05em; text-transform: none; font-size: 17px; color: rgba(255,255,255,0.82); margin-top: 14px; }

.services-intro {
  max-width: var(--container);
  margin-inline: auto;
  padding: 64px clamp(20px, 5vw, 80px) 48px;
  border-bottom: 1px solid var(--border-subtle);
}
.services-intro-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}
.services-intro-body {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 68ch;
}

.services-alternating {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  border-bottom: 1px solid var(--border-subtle);
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 400px;
}
.service-block-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(15%) brightness(0.82);
  transition: transform 500ms;
}
.service-block:hover .service-block-photo img { transform: scale(1.03); }

.service-block-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,100,148,0.15), rgba(4,20,40,0.3));
  z-index: 1;
}

.service-block-index {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

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

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

.service-block-desc {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.service-block-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-features li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
}
.service-block-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--primary);
}

.service-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: gap 200ms;
}
.service-block-cta:hover { gap: 14px; text-decoration: none; color: var(--primary-dark); }
.service-block-cta svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block:nth-child(even) { direction: ltr; }
  .service-block-photo { min-height: 56vw; order: -1; }
  .service-block-body { padding: 36px 24px; }
}

/* ── Gallery (index) ─────────────────────────────────────────────── */
.gallery {
  background: var(--surface);
  padding-block: var(--section-py);
}

.gallery-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border-subtle);
  margin-bottom: 32px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  position: relative;
  background: var(--ink);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease, filter 300ms;
  filter: grayscale(10%) brightness(0.9);
}
.gallery-tile:hover img { transform: scale(1.05); filter: grayscale(0%) brightness(1); }

.gallery-tile-tall {
  aspect-ratio: 3 / 4;
  grid-row: span 2;
}

.gallery-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
}

/* ── Gallery page ────────────────────────────────────────────────── */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.gallery-section-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.gallery-section-title {
  font-size: clamp(36px, 5vw, 72px);
}

/* Filter pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Gallery cards (gallery.html) */
#galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border-subtle);
}

.gallery-card {
  background: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms;
  filter: grayscale(15%);
}
.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); filter: grayscale(0%); }

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

.gallery-card-num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

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

.gallery-card-body {
  background: var(--canvas);
  padding: 20px 22px;
  flex: 1;
}
.gallery-card-body h3 {
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 14px; height: 14px; color: var(--primary); }

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

.gallery-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.gallery-meta-item {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

@media (max-width: 900px) {
  #galleryGrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #galleryGrid { grid-template-columns: 1fr; }
}

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

.faq-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.faq-list {
  margin-top: 0;
  border-top: 1px solid var(--border-subtle);
}

details {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}
details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  min-height: 64px;
  gap: 20px;
  user-select: none;
}
details > summary::-webkit-details-marker { display: none; }

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

details p {
  padding: 0 0 22px;
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-mid);
  max-width: 72ch;
}

/* ── Team CTA ────────────────────────────────────────────────────── */
.team-cta {
  background: var(--primary);
  padding: 64px clamp(24px, 5vw, 80px);
  text-align: center;
}
.team-cta-inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

/* ── Contact (index) ─────────────────────────────────────────────── */
.contact {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.contact-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-form-col h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 10px;
}
.contact-form-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

.contact-info {
  padding: 40px;
  background: var(--surface);
  border-left: 4px solid var(--primary);
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { border-left: none; border-top: 4px solid var(--primary); }
}

/* ── Contact split (contact.html) ───────────────────────────────── */
.contact-split {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.contact-split-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-form-label-block {
  margin-bottom: 32px;
}
.contact-form-label-block h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 10px;
}
.form-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-card {
  background: var(--surface);
  padding: 40px;
  border-left: 4px solid var(--primary);
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.info-card-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-card-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.info-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.info-row-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.info-row-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.info-row-value a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.info-row-value a:hover { text-decoration: underline; }

.info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  display: block;
  margin-bottom: 6px;
}
.info-label-first { margin-top: 0; }
.info-value {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
}
.info-value a { color: var(--primary); font-weight: 600; }

.info-link, .info-phone-large, .info-phone-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--primary);
  padding: 5px 12px;
}
.info-chip svg { width: 14px; height: 14px; color: var(--primary); }

.info-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.info-stars {
  display: flex;
  gap: 3px;
}
.info-stars svg { width: 18px; height: 18px; color: var(--primary); }
.info-rating-text { font-size: 14px; color: var(--muted); }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  color: var(--ink-mid);
  text-decoration: none;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}

.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

@media (max-width: 900px) {
  .contact-split-inner { grid-template-columns: 1fr; }
  .contact-info-card { position: static; border-left: none; border-top: 4px solid var(--primary); }
}

/* ── Forms ───────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group.full { grid-column: 1 / -1; }

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

.form-control, input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  outline: none;
  transition: border-color 200ms;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,100,148,0.1);
}

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

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-form .form-group { grid-column: auto; }
.contact-form .form-group.full { grid-column: 1 / -1; }
.contact-form .btn-submit { grid-column: 1 / -1; justify-self: start; }

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

/* ── CTA banner ──────────────────────────────────────────────────── */
.cta-banner {
  background: var(--invert-bg);
  padding-block: clamp(80px, 10vh, 140px);
}

.cta-banner-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  text-align: center;
}

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

.cta-banner-headline, .cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner-headline span { color: var(--accent); }

.cta-banner-sub, .cta-banner-text { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 40px; }

.cta-banner-actions, .cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 200ms;
}
.cta-banner-phone:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.cta-banner-phone svg { width: 18px; height: 18px; }

.cta-banner-form-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 200ms;
}
.cta-banner-form-link:hover { border-color: #fff; color: #fff; text-decoration: none; }
.cta-banner-form-link svg { width: 18px; height: 18px; }

/* ── About (about.html) ──────────────────────────────────────────── */
.founder-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.founder-story-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.founder-portrait-wrap {
  position: relative;
}
.founder-portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(20%);
}
.founder-portrait-caption {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-portrait-caption strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.founder-portrait-caption span { font-size: 12px; opacity: 0.8; }

.founder-text-col { padding-top: 8px; }
.founder-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--ink);
}
.founder-body { font-size: 17px; line-height: 1.7; color: var(--ink-mid); }
.founder-body p { margin-bottom: 18px; }

.founder-pullquote blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding: 16px 0 16px 28px;
  margin: 28px 0;
}

@media (max-width: 900px) {
  .founder-story-grid { grid-template-columns: 1fr; }
  .founder-portrait-wrap { max-width: 380px; }
}

/* ── Values ──────────────────────────────────────────────────────── */
.values-section {
  background: var(--surface);
  padding-block: var(--section-py);
}
.values-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  margin-top: 40px;
}
.value-card {
  background: var(--canvas);
  padding: clamp(28px, 3vw, 48px);
  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.14); }

.value-card-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 12px;
  color: var(--ink);
}
.value-card-body { font-size: 15px; line-height: 1.65; color: var(--muted); }

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

/* ── Journey timeline ────────────────────────────────────────────── */
.journey-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.journey-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.journey-inner h2 { margin-bottom: 56px; }
.journey-list { display: flex; flex-direction: column; }
.journey-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.journey-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.journey-dot {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.journey-dot-inner {
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}
.journey-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--primary);
  white-space: nowrap;
  text-align: center;
}

.journey-content h3 { font-size: clamp(18px, 2vw, 24px); margin-bottom: 8px; }
.journey-content-body { font-size: 16px; line-height: 1.65; color: var(--muted); }

@media (max-width: 640px) {
  .journey-item { grid-template-columns: 80px 1fr; gap: 20px; }
}

/* ── Crew strip ──────────────────────────────────────────────────── */
.crew-strip {
  background: var(--invert-bg);
  padding-block: clamp(64px, 8vh, 112px);
}
.crew-strip-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.crew-strip-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 48px;
}
.crew-strip-heading em { color: var(--accent); font-style: italic; }

.crew-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.crew-fact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 2.5vw, 40px);
  background: rgba(255,255,255,0.03);
}
.crew-fact-icon { color: var(--accent); }
.crew-fact-icon svg { width: 28px; height: 28px; }
.crew-fact-body { display: flex; flex-direction: column; gap: 4px; }
.crew-fact-body strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.crew-fact-body span { font-size: 13px; color: rgba(255,255,255,0.55); }

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

/* ── About editorial ─────────────────────────────────────────────── */
.about-editorial {
  background: var(--surface);
  padding-block: var(--section-py);
}
.about-editorial-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.about-editorial-col {
  max-width: 760px;
}
.about-editorial-col h2 { font-size: clamp(32px, 4.5vw, 64px); margin-bottom: 24px; }
.about-editorial-body { font-size: 17px; line-height: 1.7; color: var(--ink-mid); }
.about-editorial-body p { margin-bottom: 16px; }
.about-editorial-cta { margin-top: 32px; }

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

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

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name, .footer-brand-name p {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-brand-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 28ch; }

.footer-contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.footer-contact-line a, .footer-phone-link, .footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line a:hover { color: var(--accent); }

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title, .footer-col-head {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 10px;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 5vw, 80px);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright, .footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-vet { font-size: 12px; color: rgba(255,255,255,0.3); }

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badge {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
}

.footer-rating-badge { display: flex; align-items: center; gap: 6px; }
.footer-rating-badge svg { width: 16px; height: 16px; color: var(--accent); }

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}

/* ── Mobile call pill / sticky CTA ──────────────────────────────── */
.mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta, .mobile-call {
  display: none;
}

@media (max-width: 900px) {
  .mobile-call-pill, .mobile-cta-pill {
    display: flex;
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    text-decoration: none;
    transition: background 200ms, transform 150ms;
  }
  .mobile-call-pill:hover, .mobile-cta-pill:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
  }
  .mobile-call-pill svg, .mobile-cta-pill svg { width: 20px; height: 20px; }

  .mobile-sticky-cta, .mobile-call {
    display: flex;
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    align-items: center;
    justify-content: center;
  }
  .mobile-sticky-cta a, .mobile-call a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }
  .mobile-sticky-cta svg, .mobile-call svg { width: 20px; height: 20px; }
}

/* ── Animation utilities ─────────────────────────────────────────── */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms ease; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 650ms ease, transform 650ms ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 650ms ease, transform 650ms ease; }
.scale-in   { opacity: 0; transform: scale(0.94); transition: opacity 600ms ease, transform 600ms ease; }
.stagger    { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }

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

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

/* ── SVG caps ────────────────────────────────────────────────────── */
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; }
.nav-cta svg, .nav-toggle svg { width: 20px; height: 20px; }
.service-learn svg { width: 16px; height: 16px; }
.crew-fact-icon svg { width: 28px; height: 28px; }
.social-link svg { width: 18px; height: 18px; }
.info-chip svg { width: 14px; height: 14px; }
.info-stars svg { width: 18px; height: 18px; }
.gallery-card-location svg { width: 14px; height: 14px; }
.footer-rating-badge svg { width: 16px; height: 16px; }
.cta-banner-phone svg, .cta-banner-form-link svg { width: 18px; height: 18px; }
.btn-submit svg { width: 18px; height: 18px; }
.service-block-cta svg { width: 18px; height: 18px; }
.mobile-call-pill svg, .mobile-cta-pill svg,
.mobile-sticky-cta svg, .mobile-call svg { width: 20px; height: 20px; }

/* ── Table cells (readable in tbody) ────────────────────────────── */
thead .col-service,
thead .col-desc,
thead .col-timeline,
thead .col-price {
  background: var(--ink);
  color: #fff;
}
tbody .col-service,
tbody .col-desc,
tbody .col-timeline,
tbody .col-price {
  background: var(--canvas);
  color: var(--ink);
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.visible { grid-column: 1 / -1; }
.journey-dot-col { grid-column: 1 / -1; }
.journey-content { grid-column: 1 / -1; }
.crew-fact { 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; }
