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

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:        #d30e2b;
  --accent:         #d30e2b;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --ink:            #141414;
  --ink-mid:        #3a3630;
  --muted:          #6B665C;
  --border:         rgba(20,20,20,0.10);
  --border-brand:   rgba(211,14,43,0.30);
  --primary-dark:   #a80b22;
  --primary-tint:   rgba(211,14,43,0.07);
  --surface-2:      #eee9df;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 18px 48px rgba(0,0,0,0.14);
  --radius:         0px;
  --section-py:     clamp(96px, 12vh, 180px);
  --max-w:          1440px;
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── RESET + BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  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.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 45%; 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 45%; 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; }

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

/* ─── GLOBAL ANCHORS ─────────────────────────────────────── */
a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); }

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, .display-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.96;
  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.8vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 28px); }

.eyebrow, .section-eyebrow, .page-header-eyebrow,
.contact-info-eyebrow, .contact-section-eyebrow,
.service-block-eyebrow, .bento-num, .step-num,
.crew-text-eyebrow, .footer-col-label, .footer-col-title,
.footer-col-heading, .info-block-label, .areas-label,
.contact-item-label, .cta-banner-eyebrow, .gallery-card-tag,
.gallery-card-index, .page-header-pre {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

p { line-height: 1.68; }
ul { list-style: none; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container, .section-inner, .contact-inner, .gallery-section-inner,
.about-story-grid, .values-cards-inner, .journey-timeline-inner,
.crew-strip-inner, .about-editorial-inner, .cta-banner-inner,
.services-intro-inner, .footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  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: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 200ms ease-out;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(211,14,43,0.30);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.btn-service {
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0;
  border: none; background: none; cursor: pointer;
  text-decoration: none;
  transition: gap 200ms;
}
.btn-service:hover { gap: 10px; color: var(--primary); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px 36px;
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group {
  display: flex; flex-direction: column-reverse; gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-label, label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.form-control, input, textarea, select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 200ms;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
}
textarea { min-height: 140px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); }

/* ─── 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; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-pages {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
}
.nav-pages ul { display: flex; gap: 28px; align-items: center; }
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  position: relative;
}
.nav-pages a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms;
}
.nav-pages a:hover { color: var(--primary); }
.nav-pages a:hover::after { transform: scaleX(1); }
.nav-pages a[aria-current="page"] { color: var(--primary); }
.nav-pages a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none; white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; }
.nav-cta-text { display: inline; }
.nav-cta-icon { display: none; }
.nav-cta-icon svg, .nav-cta svg { width: 18px; height: 18px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--ink); font-size: 26px;
  cursor: pointer; padding: 0; line-height: 1;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column; align-items: flex-start;
    padding: 24px 28px; gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }
  .nav-pages ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-pages a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-pages.open { display: flex; }
  .nav-cta-text { display: none; }
  .nav-cta-icon { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
}

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform-origin: left; transform: scaleX(0);
  z-index: 9999;
}

/* ─── HERO ────────────────────────────────────────────────── */
#hero.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: #0a0a0a;
}
.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 0;
  filter: grayscale(15%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.22) 0%,
    rgba(20,20,20,0.15) 40%,
    rgba(211,14,43,0.10) 70%,
    rgba(14,14,14,0.85) 100%
  );
}
.hero-ribbon {
  position: absolute; top: 24px; right: 28px; z-index: 10;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  border-left: 3px solid var(--primary);
}
.ribbon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex: 0 0 auto;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  padding-top: 120px;
  min-height: 100svh;
  max-width: 1440px; margin-inline: auto; 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: block; width: 32px; height: 2px;
  background: var(--primary);
  flex: 0 0 auto;
}
.hero-title, .hero h1, #hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  letter-spacing: -0.03em;
  line-height: 0.94;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500; line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
  align-items: center;
}
.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  display: inline-flex; align-items: center;
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  border: 1px solid rgba(211,14,43,0.60);
  padding: 7px 14px;
  background: rgba(211,14,43,0.10);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ─── MARQUEE STRIP ───────────────────────────────────────── */
.marquee-strip, .marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  max-height: 64px;
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track,
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid); line-height: 1.2;
  flex: 0 0 auto;
}
.marquee-sep {
  color: var(--primary);
  font-size: 18px; line-height: 1;
  flex: 0 0 auto; align-self: center;
}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--primary);
  padding: 8px 18px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}
.trust-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex: 0 0 auto;
}

/* ─── SECTION BASE ────────────────────────────────────────── */
.services, .gallery, .faq,
.contact, .about-story, .values-cards,
.journey-timeline, .crew-strip, .about-editorial {
  padding-block: var(--section-py);
}
.services, .gallery, .faq { background: var(--canvas); }
.about-story, .values-cards { background: var(--surface); }
.journey-timeline { background: var(--canvas); }
.crew-strip { background: var(--surface); }
.about-editorial { background: var(--canvas); }
.contact { background: var(--surface); }

/* Section headers with eyebrow */
.services-header, .gallery-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.services-header div, .gallery-header div { flex: 1; }
.section-eyebrow { margin-bottom: 14px; display: block; }
.section-eyebrow::before {
  content: '';
  display: inline-block; width: 24px; height: 2px;
  background: var(--primary);
  margin-right: 10px; vertical-align: middle;
}
.all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
}
.all-link svg { width: 18px; height: 18px; }
.all-link:hover { color: var(--primary); gap: 12px; }

/* ─── BENTO GRID (SERVICES) ───────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}
.bento-card {
  display: block; position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 250ms ease-out;
}
.bento-card:hover { transform: scale(1.01); z-index: 2; }
.bento-flagship {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 540px;
}
.bento-support:nth-of-type(2) { grid-column: 8 / 10; grid-row: 1; min-height: 260px; }
.bento-support:nth-of-type(3) { grid-column: 10 / 13; grid-row: 1; min-height: 260px; }
.bento-support:nth-of-type(4) { grid-column: 8 / 10; grid-row: 2; min-height: 260px; }
.bento-support:nth-of-type(5) { grid-column: 10 / 13; grid-row: 2; min-height: 260px; }

.bento-img-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.bento-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  max-height: none;
  filter: grayscale(20%);
  transition: filter 300ms;
}
.bento-card:hover .bento-img-wrap img { filter: grayscale(0%); }
.bento-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.40) 55%, transparent 100%);
  z-index: 1;
}
.bento-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%; padding: 28px 32px;
  min-height: inherit;
}
.bento-flagship .bento-body { padding: 40px 48px; }
.bento-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 900; line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.bento-support .bento-num { font-size: clamp(24px, 2.5vw, 44px); }
.bento-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; color: #fff;
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: -0.02em; line-height: 1.0;
  margin-bottom: 10px;
}
.bento-flagship .bento-body h3 { font-size: clamp(28px, 3vw, 52px); }
.bento-desc {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bento-support .bento-desc { -webkit-line-clamp: 2; }
.bento-flagship .bento-desc { -webkit-line-clamp: 4; font-size: 15px; }
.bento-cta {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.bento-cta::after { content: '\2192'; }

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-flagship { grid-column: 1 / 3; grid-row: auto; min-height: 360px; }
  .bento-support:nth-of-type(2) { grid-column: 1; grid-row: auto; min-height: 220px; }
  .bento-support:nth-of-type(3) { grid-column: 2; grid-row: auto; min-height: 220px; }
  .bento-support:nth-of-type(4) { grid-column: 1; grid-row: auto; min-height: 220px; }
  .bento-support:nth-of-type(5) { grid-column: 2; grid-row: auto; min-height: 220px; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; gap: 2px; }
  .bento-flagship { grid-column: 1; min-height: 320px; }
  .bento-support:nth-of-type(n) { grid-column: 1; min-height: 200px; }
}

/* ─── GALLERY (INDEX PAGE) ────────────────────────────────── */
.gallery { background: var(--canvas); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.gallery-tile {
  display: block; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
  transition: transform 400ms ease;
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

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

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--canvas); }
.faq h2 { margin-bottom: 16px; }
.faq .section-eyebrow { margin-bottom: 12px; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item summary {
  cursor: pointer; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.01em; line-height: 1.2;
  color: var(--ink);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 24px; height: 24px;
  flex: 0 0 auto; color: var(--primary);
  transition: transform 250ms;
}
.faq-item[open] .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 24px;
  font-size: 16px; line-height: 1.7;
  color: var(--muted);
  max-width: 72ch;
}
.faq-answer a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* ─── TEAM CTA SECTION ────────────────────────────────────── */
.team-cta-section {
  background: var(--primary);
  padding-block: clamp(80px, 10vh, 140px);
}
.team-cta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  text-align: center;
}
.team-cta-head {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 80px);
  letter-spacing: -0.03em; line-height: 0.96;
  color: #fff;
}
.team-cta-accent { color: rgba(255,255,255,0.65); }
.team-cta-inner a.btn {
  margin-top: 40px;
  background: #fff; color: var(--primary);
  display: inline-flex;
}
.team-cta-inner a.btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* ─── CONTACT (INDEX) ─────────────────────────────────────── */
.contact { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-grid h2 { margin-bottom: 12px; }
.section-eyebrow.fade-up { margin-bottom: 12px; }
.contact-grid form { margin-top: 32px; }
.contact-info-eyebrow { margin-bottom: 24px; }
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact-item a {
  font-size: 18px; font-weight: 600; color: var(--ink);
}
.contact-item a:hover { color: var(--primary); }
.contact-hours {
  font-size: 15px; color: var(--muted); line-height: 1.5;
}
.areas-block { padding-top: 20px; }
.areas-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px; display: block;
}
.areas-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.areas-chips li {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--primary);
  color: var(--ink);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── CONTACT SECTION PAGE ────────────────────────────────── */
.contact-section { padding-block: var(--section-py); background: var(--surface); }
.contact-inner { display: flex; flex-direction: column; gap: 0; }
.contact-form-col, .contact-info-col { }
.contact-inner > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-form-col h2, .contact-info-col h3 { margin-bottom: 20px; }
.contact-section-eyebrow { margin-bottom: 16px; display: block; }
.contact-form { margin-top: 28px; }
.info-block { padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.info-block-value { font-size: 16px; font-weight: 500; color: var(--ink); }
.info-block-value a { color: var(--primary); }
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.area-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--primary); color: var(--ink);
}
.licensed-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--primary);
  margin-top: 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
}
.licensed-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex: 0 0 auto;
}
@media (max-width: 900px) {
  .contact-inner > div { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADER (SUB-PAGES) ─────────────────────────────── */
.page-header {
  min-height: clamp(280px, 38vh, 480px);
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.35) 0%,
    rgba(14,14,14,0.72) 100%
  );
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  width: 100%;
}
.page-header-inner h1 {
  font-size: clamp(44px, 6vw, 100px);
  color: #fff; max-width: 16ch;
}
.page-header-eyebrow, .page-header-pre {
  color: rgba(255,255,255,0.70);
  margin-bottom: 16px;
}
.page-header-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(15px, 1.6vw, 18px);
  margin-top: 16px; max-width: 52ch;
}

/* ─── SERVICES PAGE ───────────────────────────────────────── */
.services-intro { padding-block: var(--section-py); background: var(--canvas); }
.services-intro-headline {
  font-size: clamp(36px, 4.5vw, 72px);
  letter-spacing: -0.03em; line-height: 0.96;
}
.services-intro-body {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7;
  color: var(--muted); max-width: 60ch; margin-top: 24px;
}
.service-block {
  padding-block: var(--section-py);
  border-bottom: 1px solid var(--border);
}
.service-block:nth-of-type(odd) { background: var(--canvas); }
.service-block:nth-of-type(even) { background: var(--surface); }
.service-block-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.service-block.reverse .service-block-inner {
  direction: rtl;
}
.service-block.reverse .service-block-body,
.service-block.reverse .service-block-photo { direction: ltr; }
.service-block-photo {
  position: relative;
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--surface-2);
}
.service-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.service-block-index {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px; font-weight: 900; line-height: 1;
  color: var(--primary); letter-spacing: -0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.service-block-eyebrow { margin-bottom: 14px; display: block; }
.service-block-body h2 {
  font-size: clamp(28px, 3vw, 52px);
  margin-bottom: 20px;
}
.service-block-desc {
  font-size: 16px; line-height: 1.68;
  color: var(--muted); margin-bottom: 14px;
}
.service-block-features {
  margin-block: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-block-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-mid);
}
.service-block-features li::before {
  content: '';
  width: 18px; height: 2px; margin-top: 11px;
  background: var(--primary); flex: 0 0 auto;
}
.service-block-body a.btn { display: inline-flex; margin-top: 8px; }
@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .service-block-photo { aspect-ratio: 16/9; }
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding-block: clamp(80px, 10vh, 140px);
}
.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(40%);
  max-height: none;
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  background: rgba(14,14,14,0.75);
  backdrop-filter: blur(2px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-banner-eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.cta-banner-inner h2 {
  font-size: clamp(32px, 4vw, 64px); color: #fff;
  margin-bottom: 20px;
}
.cta-banner-note { color: rgba(255,255,255,0.70); font-size: 15px; }
.cta-banner-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.cta-form input, .cta-form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--primary); }
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; padding-block: 48px; }
}

/* ─── CTA PAIR ────────────────────────────────────────────── */
.cta-pair { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-banner-pre {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(28px, 4vw, 64px);
  letter-spacing: -0.03em; line-height: 0.96; color: #fff;
  display: block; margin-bottom: 20px;
}
.cta-banner-sub { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }

/* ─── GALLERY PAGE ────────────────────────────────────────── */
.gallery-section { padding-block: var(--section-py); background: var(--canvas); }
.gallery-section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px;
  margin-bottom: 40px;
}
.gallery-section-title { font-size: clamp(32px, 4vw, 64px); }
.gallery-section-title span { color: var(--primary); }
.gallery-project-count {
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); flex: 0 0 auto;
}
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border); background: none;
  color: var(--muted); cursor: pointer;
  transition: all 200ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-tint);
}
#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-card {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--ink);
  text-decoration: none;
}
.gallery-card-featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-card-img-wrap {
  position: absolute; inset: 0;
}
.gallery-card-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }
.gallery-card-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, transparent 50%);
  opacity: 0; transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-scrim { opacity: 1; }
.gallery-card-index {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px; font-weight: 900; color: var(--primary);
  line-height: 1; letter-spacing: -0.03em;
}
.gallery-card-tag {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--primary);
  padding: 5px 10px;
}
.gallery-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px 24px;
  transform: translateY(8px);
  opacity: 0; transition: all 300ms;
}
.gallery-card:hover .gallery-card-body { transform: translateY(0); opacity: 1; }
.gallery-card-body h3 {
  font-size: clamp(15px, 1.6vw, 20px);
  color: #fff; margin-bottom: 6px;
}
.gallery-card-location {
  font-size: 12px; color: rgba(255,255,255,0.70);
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 14px; height: 14px; }
.gallery-card-desc { font-size: 13px; color: rgba(255,255,255,0.70); margin-bottom: 10px; }
.gallery-card-meta { display: flex; gap: 16px; }
.gallery-meta-item { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.gallery-meta-label { color: var(--primary); margin-right: 4px; }
.gallery-meta-value { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
  #galleryGrid.gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card-featured { grid-column: span 2; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  #galleryGrid.gallery-grid { grid-template-columns: 1fr; }
  .gallery-card-featured { grid-column: 1; }
  .gallery-card-body { opacity: 1; transform: none; }
  .gallery-card-scrim { opacity: 1; }
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-story {
  padding-block: var(--section-py);
  background: var(--surface);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-story-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
}
.about-story-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.photo-caption-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--primary); height: 4px;
}
.about-story-eyebrow { margin-bottom: 16px; display: block; }
.about-story-eyebrow::before {
  content: ''; display: inline-block; width: 32px; height: 3px;
  background: var(--primary); margin-right: 10px; vertical-align: middle;
}
.about-story-text h2 { margin-bottom: 28px; }
.about-story-body p {
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.72;
  color: var(--muted); margin-bottom: 20px;
}
.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px; margin-block: 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.01em; line-height: 1.25;
  color: var(--ink);
  font-style: normal;
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-photo-wrap { aspect-ratio: 16/9; }
}

/* VALUES CARDS */
.values-cards { padding-block: var(--section-py); background: var(--canvas); }
.section-header-row { margin-bottom: 48px; }
.section-eyebrow-block { display: block; margin-bottom: 16px; }
.section-eyebrow-block::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--primary); margin-right: 10px; vertical-align: middle;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-card {
  padding: 36px 28px;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  transition: background 250ms;
}
.value-card:hover { background: var(--surface-2); }
.value-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 52px; font-weight: 900; line-height: 1;
  color: var(--primary); letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.value-body { font-size: 14px; line-height: 1.65; color: var(--muted); }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* JOURNEY TIMELINE */
.journey-timeline { padding-block: var(--section-py); background: var(--surface); }
.journey-timeline-inner h2 { margin-bottom: 48px; }
.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.timeline-row::before {
  content: '';
  position: absolute; top: 20px; left: 0; right: 0;
  height: 1px; background: var(--primary);
  z-index: 0;
}
.timeline-item {
  padding: 0 24px 0 0;
  position: relative; z-index: 1;
}
.t-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.t-dot-inner {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary);
}
.t-label {
  display: block; margin-bottom: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.timeline-item h3 { font-size: clamp(18px, 1.8vw, 24px); margin-bottom: 10px; }
.t-body { font-size: 14px; line-height: 1.65; color: var(--muted); }
@media (max-width: 900px) {
  .timeline-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline-row::before { display: none; }
}
@media (max-width: 480px) { .timeline-row { grid-template-columns: 1fr; } }

/* CREW STRIP */
.crew-strip { padding-block: var(--section-py); background: var(--canvas); }
.crew-strip-inner h2 { margin-bottom: 48px; }
.crew-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.crew-photo-col img {
  width: 100%; height: auto;
  object-fit: cover; max-height: 560px;
}
.crew-text-eyebrow { margin-bottom: 16px; display: block; }
.crew-text-col h3 { margin-bottom: 16px; }
.crew-text-body { font-size: 16px; line-height: 1.70; color: var(--muted); margin-bottom: 24px; }
.service-areas-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--primary); color: var(--ink);
}
@media (max-width: 900px) {
  .crew-split { grid-template-columns: 1fr; }
  .crew-photo-col img { max-height: 380px; }
}

/* ABOUT EDITORIAL */
.about-editorial { padding-block: var(--section-py); background: var(--surface); }
.about-editorial-inner { max-width: 800px; }
.about-editorial-inner h2 { margin-bottom: 32px; }
.about-editorial-body p {
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75;
  color: var(--muted); margin-bottom: 20px;
}
.about-editorial-body a { color: var(--primary); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.75);
  padding-top: clamp(64px, 8vh, 120px);
}
.footer-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand img { margin-bottom: 20px; }
.footer-tagline, .footer-brand-tagline, .footer-brand-tag {
  font-size: 14px; line-height: 1.60; color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
}
.footer-badge {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid rgba(211,14,43,0.50);
  color: rgba(255,255,255,0.75);
}
.footer-col-label, .footer-col-title, .footer-col-heading, .footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.70);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover { color: #fff; }
.footer-contact-item, .footer-contact-row {
  font-size: 14px; margin-bottom: 10px;
  color: rgba(255,255,255,0.70);
  display: flex; align-items: flex-start; gap: 8px;
}
.footer-contact-item a, .footer-contact-row a { color: rgba(255,255,255,0.70); }
.footer-contact-item a:hover, .footer-contact-row a:hover { color: var(--primary); }
.footer-contact-row svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 2px; }
.footer-contact-line { display: block; font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.70); }
.footer-contact-line a { color: rgba(255,255,255,0.70); }
.footer-contact-line a:hover { color: var(--primary); }
.footer-brand-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-brand-name { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 18px; margin-bottom: 8px; }
.footer-brand-logo img { margin-bottom: 16px; }
.footer-brand-tag { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-block: 28px;
}
.footer-copy, .footer-legal, .footer-bottom-copy, .footer-bottom-license,
.footer-bottom span {
  font-size: 12px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── MOBILE CALL PILL ────────────────────────────────────── */
.mobile-call-btn, .mobile-call-pill, .mobile-cta a, .mobile-sticky-cta a, .mobile-call {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(211,14,43,0.55), 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 200ms, box-shadow 200ms;
}
.mobile-call-btn:hover, .mobile-call-pill:hover,
.mobile-cta a:hover, .mobile-sticky-cta a:hover, .mobile-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(211,14,43,0.60), 0 6px 20px rgba(0,0,0,0.28);
  color: #fff;
}
.mobile-call-btn svg, .mobile-call-pill svg,
.mobile-cta svg, .mobile-sticky-cta svg, .mobile-call svg {
  width: 20px; height: 20px; flex: 0 0 auto;
}
.mobile-cta, .mobile-sticky-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
}
@media (min-width: 900px) {
  .mobile-call-btn, .mobile-call-pill,
  .mobile-cta, .mobile-sticky-cta, .mobile-call { display: none; }
}

/* ─── ANIMATION UTILITIES ─────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0; transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-up { transform: translateY(32px); }
.fade-left { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.scale-in { transform: scale(0.94); }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 550ms ease-out, transform 550ms ease-out;
}
.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; }

/* ─── MISC ────────────────────────────────────────────────── */
.display-heading { font-size: clamp(40px, 5.5vw, 88px); }
svg { flex-shrink: 0; }
button { font-family: inherit; }
::selection { background: var(--primary); color: #fff; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.bento-support { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.crew-photo-col { grid-column: 1 / -1; }
.crew-text-col { grid-column: 1 / -1; }
.cta-banner-pre { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-phone-giant { grid-column: 1 / -1; }
.cta-pair { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-group { 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; }
