@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:        #192f26;
  --primary-dark:   #0f1e18;
  --primary-mid:    #244036;
  --primary-tint:   #e8ede9;
  --accent:         #192f26;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9E0;
  --ink:            #141414;
  --ink-mid:        #2a2a2a;
  --muted:          #6B665C;
  --border:         rgba(25,47,38,0.15);
  --border-light:   rgba(0,0,0,0.08);
  --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;
}

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

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

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

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

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

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

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

.page-header, [class*="page-header"], .gallery-page-header, .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.gallery-page-header > img,
.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; }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container       { max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.wide-container  { max-width: 1440px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.bleed           { width: 100vw; margin-inline: calc(-1 * clamp(20px, 5vw, 64px)); }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 36px); letter-spacing: -0.02em; }
h4 { font-size: clamp(16px, 1.8vw, 22px); }

p { line-height: 1.7; }

.eyebrow, .eyebrow-label, .section-eyebrow, .page-eyebrow,
.page-header-eyebrow, .header-eyebrow, .service-eyebrow,
.bento-index, .contact-eyebrow, .contact-label,
.footer-col-head, .footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

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

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border-light);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff !important; text-decoration: none !important; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    justify-content: flex-start;
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 15px; padding: 10px 0; }
  .nav-cta span { display: none; }
}

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

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(25,47,38,0.18) 0%,
    rgba(25,47,38,0.22) 40%,
    rgba(10,20,15,0.82) 85%,
    rgba(10,20,15,0.94) 100%
  );
}

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

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

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

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  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: 24px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  line-height: 1.65;
  margin-bottom: 36px;
}

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

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-chips .trust-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(232,237,233,0.35);
  padding: 7px 14px;
  background: rgba(25,47,38,0.35);
  backdrop-filter: blur(8px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 32px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: filter 200ms, transform 150ms, background 200ms, color 200ms;
  border: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.88); color: #fff; }

.btn-ghost, .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover, .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.btn-phone {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-phone:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn-inv {
  background: #fff;
  color: var(--primary);
}
.btn-inv:hover { background: var(--surface); color: var(--primary); }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  transition: filter 200ms;
}
.btn-service:hover { filter: brightness(0.85); color: #fff; text-decoration: none; }

.btn-banner {
  background: #fff;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 200ms;
}
.btn-banner:hover { background: var(--surface); color: var(--primary); 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: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px 36px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: filter 200ms;
}
.btn-submit:hover { filter: brightness(0.85); }
.btn-submit-arrow { width: 18px; height: 18px; }

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 15px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
}
.marquee-item.accent { color: var(--primary); }

.marquee-sep {
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding: clamp(40px, 5vh, 72px) 0;
}

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

.trust-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.trust-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 9px 18px;
  background: transparent;
  display: inline-block;
}

/* ============================================================
   EYEBROW BARS + SECTION HEADS
   ============================================================ */
.eyebrow-bar {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 14px;
}

.section-head {
  margin-bottom: clamp(40px, 5vh, 72px);
}

.section-head h2 {
  margin-top: 12px;
  max-width: 20ch;
}

/* ============================================================
   SERVICES — BENTO GRID
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

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

/* Flagship card spans 2 columns and 2 rows */
.bento-flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* Other cards auto-place into remaining cells */
.bento-card:not(.bento-flagship) {
  grid-column: auto;
  grid-row: auto;
}

.bento-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--surface-2);
  min-height: 280px;
}
.bento-flagship { min-height: 560px; }

.bento-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}
.bento-card:hover > img { transform: scale(1.04); }

.bento-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,20,15,0.88) 0%, rgba(10,20,15,0.3) 50%, transparent 100%);
  transition: opacity 300ms;
}
.bento-card:hover .bento-overlay { opacity: 0.85; }

.bento-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: clamp(20px, 2.5vw, 32px);
}

.bento-index {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  color: var(--primary-tint);
  opacity: 0.3;
  display: block;
  margin-bottom: 8px;
}
.bento-flagship .bento-index { font-size: clamp(48px, 6vw, 96px); }

.bento-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.bento-flagship .bento-body h3 { font-size: clamp(24px, 3vw, 40px); }

.bento-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 52ch;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-tint);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 250ms, transform 250ms;
}
.bento-card:hover .bento-link { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-flagship {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 400px;
  }
  .bento-card:not(.bento-flagship) { min-height: 220px; }
}

@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .bento-flagship { grid-column: auto; min-height: 320px; }
  .bento-card:not(.bento-flagship) { min-height: 200px; }
}

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

/* ============================================================
   GALLERY PREVIEW (homepage)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.gallery-tile {
  overflow: hidden;
  aspect-ratio: unset;
  position: relative;
  background: var(--surface-2);
}
.gallery-tile.tall {
  grid-row: 1 / 3;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
  display: block;
  max-height: none;
}
.gallery-tile:hover img { transform: scale(1.04); }

.gallery-cta-row {
  margin-top: 36px;
  text-align: center;
}

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

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

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

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

.review-card {
  padding: 36px 32px;
  background: var(--surface);
  border-left: 3px solid transparent;
  transition: border-color 250ms;
}
.review-card:hover { border-left-color: var(--primary); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 16px; height: 16px;
  color: var(--primary);
  fill: var(--primary);
}

.review-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

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

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

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

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

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

.faq-item > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
}
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-q {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, border-color 200ms;
}
.faq-chevron svg { width: 14px; height: 14px; transition: transform 250ms; }

.faq-item[open] > summary .faq-chevron {
  background: var(--primary);
  border-color: var(--primary);
}
.faq-item[open] > summary .faq-chevron svg {
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 72ch;
}

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

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

.contact-form-col { grid-column: 1; }
.contact-info-col { grid-column: 2; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-col, .contact-info-col { grid-column: auto; }
}

.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-block:first-child { padding-top: 0; }

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

.contact-info-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact-info-val a { color: var(--primary); text-decoration: none; }
.contact-info-val a:hover { text-decoration: underline; }

.contact-info-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.contact-discount-note {
  margin-top: 24px;
  padding: 20px;
  background: var(--primary-tint);
  border-left: 3px solid var(--primary);
}
.contact-discount-note p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

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

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

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

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

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

.info-block-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

.info-block-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.6;
}

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

.contact-info-col > div { margin-bottom: 0; }

.rating-line { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.stars-row { display: flex; gap: 3px; }
.stars-row svg { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }
.rating-text { font-size: 13px; color: var(--muted); }

.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.area-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.social-links { display: flex; gap: 12px; margin-top: 10px; }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: background 200ms, color 200ms;
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 16px; height: 16px; }

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full-width { grid-column: 1 / -1; }

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

.form-field input,
.form-field textarea,
.form-field select {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 200ms;
  outline: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 48vh;
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

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

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

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

.page-header-sub, .header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  max-width: 60ch;
}

/* Gallery page header */
.gallery-page-header {
  min-height: 44vh;
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(25,47,38,0.2) 0%, rgba(10,20,15,0.8) 100%);
}

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

.header-inner h1 {
  font-size: clamp(40px, 6vw, 96px);
  color: #fff;
  margin: 10px 0 12px;
}

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

/* ============================================================
   SERVICE FEATURES (services.html)
   ============================================================ */
.services-list { background: var(--canvas); }

.service-feature,
.service-feature-even {
  padding: clamp(64px, 8vh, 120px) 0;
  border-bottom: 1px solid var(--border-light);
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.service-feature-even { background: var(--surface); }

.service-feature-even-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.service-feature-reverse {
  grid-template-areas: "body photo";
}
.service-feature-reverse .service-body { grid-area: body; }
.service-feature-reverse .service-feature-photo { grid-area: photo; }

.service-feature-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.service-feature-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-index {
  position: absolute;
  top: 20px; left: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 6px 12px;
  z-index: 2;
}

.service-body {
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

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

.service-bullets {
  padding-left: 0;
  list-style: none;
  margin-bottom: 28px;
}
.service-bullets li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 15px;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border-light);
}
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-feature,
  .service-feature-even-inner {
    grid-template-columns: 1fr;
    grid-template-areas: none !important;
  }
  .service-feature-reverse { grid-template-areas: none !important; }
  .service-feature-photo { min-height: 300px; }
  .service-feature-reverse .service-body,
  .service-feature-reverse .service-feature-photo { grid-area: auto; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(80px, 10vh, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}
section#contact.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.15; z-index: 0;
  max-height: none;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

.cta-banner-title, .cta-banner-text h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  line-height: 1.05;
}

.cta-banner-text p:not(.eyebrow):not(.cta-banner-eyebrow) {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 52ch;
}

.cta-banner-phone {
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
}

.cta-banner-btns, .cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-form {
  background: var(--canvas);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}

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

/* ============================================================
   GALLERY (gallery.html)
   ============================================================ */
.gallery-case-section {
  background: var(--canvas);
  padding: clamp(64px, 8vh, 120px) 0;
}

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

.gallery-count-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

.count-text {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.count-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--primary);
}

.gallery-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .gallery-case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-case-grid { grid-template-columns: 1fr; } }

.gallery-case-card {
  background: var(--surface);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.gallery-case-card.featured { grid-column: 1 / 3; }
@media (max-width: 900px) {
  .gallery-case-card.featured { grid-column: auto; }
}

.case-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.gallery-case-card.featured .case-img { aspect-ratio: 21 / 9; }
@media (max-width: 900px) {
  .gallery-case-card.featured .case-img { aspect-ratio: 16 / 10; }
}

.case-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  max-height: none;
  transition: transform 600ms ease-out;
}
.gallery-case-card:hover .case-img img { transform: scale(1.04); }

.case-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,20,15,0.6) 100%);
  z-index: 1;
}

.case-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  z-index: 2;
}

.case-category-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(10,20,15,0.65);
  padding: 4px 10px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.case-location {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,0.8);
  z-index: 2;
}
.case-location svg { width: 12px; height: 12px; }

.case-body {
  padding: 20px 20px 24px;
}
.case-body h3 {
  font-size: clamp(15px, 1.5vw, 20px);
  margin-bottom: 8px;
}

.case-desc {
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--muted);
  margin-bottom: 14px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.case-meta-item {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.case-meta-label { color: var(--muted); opacity: 0.7; }
.case-meta-val { color: var(--ink-mid); }

.case-title { display: block; }

/* ============================================================
   GALLERY FILTER
   ============================================================ */
.gallery-filter {
  background: var(--surface);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: var(--header-height);
  z-index: 10;
}

.filter-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-right: 8px;
}

.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 0;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   ABOUT — FOUNDER STORY
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding: clamp(96px, 12vh, 180px) 0;
}

.founder-story-grid {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.founder-portrait {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.founder-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: none;
}
.founder-caption {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 12px;
}

.founder-body { }
.section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.founder-body h2 { margin-bottom: 28px; }

.drop-cap::first-letter {
  float: left;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.8;
  color: var(--primary);
  margin-right: 8px;
  margin-top: 4px;
}

.founder-pullquote {
  margin: 36px 0;
  padding-left: 28px;
  border-left: 3px solid var(--primary);
}
.founder-pullquote blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.founder-pullquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.founder-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

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

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

.values-head {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vh, 64px);
}
.values-head h2 { max-width: 18ch; }

.values-grid {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 36px 28px;
  background: var(--canvas);
  border-top: 3px solid transparent;
  transition: border-color 250ms;
}
.value-card:hover { border-color: var(--primary); }

.value-index {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--muted);
}

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

.journey-head {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vh, 64px);
}

.journey-list {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: calc(clamp(20px, 5vw, 64px) + 16px);
  padding-left: clamp(20px, 4vw, 48px);
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.journey-dot {
  position: absolute;
  left: calc(-1 * clamp(20px, 4vw, 48px) - 9px);
  top: 32px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.journey-dot span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

.journey-content h3 { font-size: clamp(16px, 1.8vw, 22px); margin-bottom: 8px; }
.journey-content p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-section {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

.crew-head {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: 36px;
}

.crew-strip-wrap {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.crew-strip-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  max-height: 400px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.65);
  padding: clamp(64px, 8vh, 100px) 0 0;
}

.footer-grid, .footer-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 900px) {
  .footer-grid, .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand { grid-column: 1; }
.footer-brand img { margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
  margin-bottom: 20px;
}
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-contact-line, .footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-line a, .footer-contact-item a,
.footer-phone-link, .footer-email-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line a:hover, .footer-contact-item a:hover,
.footer-phone-link:hover, .footer-email-link:hover {
  color: var(--primary-tint);
  text-decoration: underline;
}

.footer-col { }
.footer-col-head, .footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  display: block;
}
.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

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

.footer-col ul li a,
.footer-links li a,
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover,
.footer-links li a:hover,
.footer-col a:hover {
  color: var(--primary-tint);
  text-decoration: underline;
}
.footer-col ul li span,
.footer-links li span { color: rgba(255,255,255,0.35); font-size: 13px; }

.footer-address { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 10px; line-height: 1.5; }
.footer-address strong { color: rgba(255,255,255,0.55); font-weight: 600; }

.footer-bottom {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: clamp(48px, 6vh, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span,
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; }
.footer-contact a:hover { color: var(--primary-tint); }

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

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

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

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

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

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger.visible .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger.visible .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger.visible .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger.visible .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger.visible .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger.visible .fade-up:nth-child(6) { transition-delay: 400ms; }
.stagger.visible .fade-up:nth-child(7) { transition-delay: 480ms; }
.stagger.visible .fade-up:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   PROCESS STRIP (generic)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 0;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.14em;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   SECTION PADDING DEFAULTS
   ============================================================ */
.section {
  padding: clamp(96px, 12vh, 180px) 0;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.featured { }
.accent { color: var(--primary) !important; }
.active { }
.tall { }
.full-width { width: 100%; }

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

/* Tagline */
.tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.founder-body { grid-column: 1 / -1; }
.journey-dot { grid-column: 1 / -1; }
.journey-content { 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; }
