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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #D91E26;
  --primary-dark:   #B01820;
  --primary-light:  #F5C6C8;
  --accent:         #2C4CA4;
  --accent-dark:    #1E3578;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9DF;
  --ink:            #141414;
  --ink-mid:        #3A3630;
  --muted:          #6B665C;
  --border:         rgba(20,20,20,0.10);
  --border-brand:   rgba(217,30,38,0.25);
  --header-height:  72px;
  --radius:         0px;
  --section-y:      clamp(96px, 12vh, 180px);
  --container:      1440px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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) {
  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; }

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

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

ul { list-style: none; }

svg { display: block; }

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

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

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

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

.top-nav {
  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;
  text-decoration: none;
  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;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-pages li { display: flex; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  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;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms, filter 150ms;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  filter: brightness(0.92);
}

.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.nav-toggle svg { width: 24px; height: 24px; }

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

  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }

  .nav-pages.open { display: flex; }

  .nav-pages a {
    font-size: 15px;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta span { display: none; }

  .nav-cta {
    padding: 10px 12px;
    margin-left: auto;
  }

  .top-nav { position: relative; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20,10,10,0.88) 0%,
    rgba(20,10,10,0.55) 40%,
    rgba(20,10,10,0.18) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-top: clamp(80px, 14vh, 160px);
  padding-bottom: clamp(64px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh;
}

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

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

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

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

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

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

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.80);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--primary);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

.trust-chip svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }

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

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(217,30,38,0.45);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}

.btn-service svg { width: 16px; height: 16px; }

.btn-service:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}

.btn-cta-white:hover {
  background: var(--surface);
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-form-submit, .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
  width: 100%;
}

.btn-form-submit svg, .btn-submit svg { width: 18px; height: 18px; }

.btn-form-submit:hover, .btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--primary);
  padding: 16px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms;
}

.btn-banner:hover { background: var(--surface); color: var(--primary); text-decoration: none; }

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

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

.marquee-strip: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;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 0;
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

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

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

.trust-badge svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.trust-badge-award {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.trust-badge-award svg { color: #fff; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-eyebrow, .page-eyebrow, .section-label, .reviews-eyebrow,
.contact-eyebrow, .credentials-eyebrow, .cta-banner-eyebrow,
.service-areas-header .section-eyebrow,
.cta-banner-label, .about-story-label,
.page-header-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before, .section-label::before, .about-story-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title, .section-headline, .reviews-title, .contact-title,
.credentials-heading, .gallery-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-lead, .areas-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

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

.services-header {
  margin-bottom: 48px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: transparent;
  color: var(--muted);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  margin-bottom: -2px;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}

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

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

.services-panels { margin-top: 0; }

.service-panel {
  display: none;
}

.service-panel.active {
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 480px;
  gap: 0;
}

.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  min-height: 480px;
}

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

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

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

.service-panel-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-panel-desc {
  font-size: 16px;
  line-height: 1.70;
  color: var(--ink-mid);
  max-width: 52ch;
}

@media (max-width: 900px) {
  .service-panel.active {
    grid-template-columns: 1fr;
  }

  .service-panel-img { min-height: 260px; }

  .services-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    gap: 4px;
  }

  .service-tab { font-size: 12px; padding: 10px 14px; white-space: nowrap; }
}

/* ============================================================
   GALLERY PREVIEW (index)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: var(--section-y) 0;
}

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

.gallery-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-preview-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.gallery-feature {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--ink);
}

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

.gallery-feature:hover > img { transform: scale(1.03); }

.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(20,20,20,0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 32px;
}

.gallery-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.gallery-feature-cta svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .gallery-feature { aspect-ratio: 4/3; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

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

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.reviews-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.reviews-header > div:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.reviews-header svg { width: 28px; height: 28px; color: var(--primary); }

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

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

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

.review-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.review-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.review-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.review-verified {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: var(--section-y) 0;
}

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

.service-areas-header {
  margin-bottom: 48px;
}

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

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

.area-pill:hover { border-color: var(--primary); background: rgba(217,30,38,0.04); }

.area-pill.primary-area {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

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

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: var(--section-y) 0;
}

.team-cta-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.team-cta-text {
  display: flex;
  gap: 32px;
  align-items: center;
}

.team-cta-text img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

.team-cta-copy h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.team-cta-copy p { color: rgba(255,255,255,0.65); font-size: 16px; }

.team-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.team-cta .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--surface);
  padding: var(--section-y) 0;
}

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

.contact-inner > div:first-child,
.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-inner > div:first-child h2,
.contact-form-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-intro {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

.form-submit { margin-top: 8px; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

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

.contact-info, .contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: 40px;
}

.info-card-head {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-info-block, .info-block {
  margin-bottom: 24px;
}

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

.contact-phone-link, .info-block-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-phone-link:hover { color: var(--primary); text-decoration: none; }
.contact-phone-link svg { width: 24px; height: 24px; color: var(--primary); }

.info-block a { color: var(--ink); font-size: 16px; }
.info-block a:hover { color: var(--primary); text-decoration: underline; }

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

.hours-grid { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.social-links { display: flex; gap: 12px; margin-top: 8px; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  color: var(--ink);
  transition: background 150ms, color 150ms;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

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

  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 38vh, 480px);
  max-height: 64vh;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}

.page-header > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  max-height: none;
}

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

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

.page-header-inner h1,
.page-header-h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
  max-width: 20ch;
}

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

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

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-quick-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.services-quick-nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  gap: 0;
  min-width: max-content;
}

.quick-nav-link {
  display: inline-block;
  padding: 16px 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}

.quick-nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.services-detail {
  background: var(--canvas);
}

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

.service-block-wrap:nth-child(even) {
  background: var(--surface);
}

.service-block-wrap-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-block-wrap:nth-child(even) .service-block-wrap-inner {
  direction: rtl;
}

.service-block-wrap:nth-child(even) .service-block-wrap-inner > * {
  direction: ltr;
}

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

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

.service-index-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.90;
  line-height: 1;
}

.service-block-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

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

.service-block-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary);
}

.service-block-copy h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.service-block-body p {
  font-size: 16px;
  line-height: 1.70;
  color: var(--ink-mid);
  margin-bottom: 8px;
}

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

.service-block-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

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

@media (max-width: 900px) {
  .service-block-wrap-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr !important;
  }

  .service-block-wrap:nth-child(even) .service-block-wrap-inner {
    direction: ltr;
  }

  .service-block-wrap:nth-child(even) .service-block-wrap-inner > * {
    direction: ltr;
  }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--ink);
  padding: var(--section-y) 0;
}

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

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

.credentials-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
}

.credentials-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 48px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.credential-badge {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 200ms, background 200ms;
}

.credential-badge:hover {
  border-color: var(--primary);
  background: rgba(217,30,38,0.06);
}

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

.credential-badge-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  display: block;
  font-variant-numeric: tabular-nums;
}

.credential-badge-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1.5;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 32px,
      rgba(255,255,255,0.04) 32px,
      rgba(255,255,255,0.04) 33px
    );
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-banner-copy, .cta-banner-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-banner-eyebrow, .cta-banner-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-banner-heading,
.cta-banner-copy h2,
.cta-banner-left h2,
.cta-banner-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-banner-copy p, .cta-banner-left p, .cta-banner-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 54ch;
}

.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  transition: opacity 150ms;
}

.cta-banner-phone:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.cta-banner-phone svg { width: 32px; height: 32px; flex-shrink: 0; }

.cta-banner-actions, .cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: flex-start;
}

.cta-banner-actions a, .cta-banner-right a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms, color 150ms;
}

.cta-banner-actions a:first-child,
.cta-banner-right a:first-child {
  background: #fff;
  color: var(--primary);
}

.cta-banner-actions a:first-child:hover,
.cta-banner-right a:first-child:hover {
  background: var(--surface);
  text-decoration: none;
  color: var(--primary-dark);
}

.cta-banner-actions a:last-child,
.cta-banner-right a:last-child {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}

.cta-banner-actions a:last-child:hover,
.cta-banner-right a:last-child:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}

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

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

.about-story-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-visual {
  position: relative;
  min-height: 520px;
}

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

.about-story-brand-block {
  position: absolute;
  bottom: -24px;
  right: -32px;
  z-index: 2;
  background: var(--primary);
  padding: 28px 32px;
  min-width: 200px;
}

.about-story-brand-block-inner {
  color: #fff;
}

.about-story-brand-block-inner strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-story-brand-block-inner span {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  line-height: 1.4;
}

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

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

.about-story-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-story-body p {
  font-size: 16.5px;
  line-height: 1.70;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.about-pull-quote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  margin: 24px 0;
}

.about-pull-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0 !important;
}

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

  .about-story-visual {
    min-height: 360px;
    margin-bottom: 24px;
  }

  .about-story-brand-block {
    bottom: -16px;
    right: -16px;
  }
}

/* ============================================================
   VALUES
   ============================================================ */
.values-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}

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

.values-inner > h2,
.values-inner .section-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
}

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

@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: 32px 28px;
  background: var(--canvas);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.value-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.20;
  display: block;
}

.value-card-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.value-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

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

.timeline-inner > h2,
.timeline-inner .section-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 64px;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
}

.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  position: relative;
}

.timeline-dot-col::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -48px;
  left: 50%;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item:last-child .timeline-dot-col::before { display: none; }

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.timeline-item-content {
  padding: 0 32px 48px;
}

.timeline-item-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

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

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

.timeline-content-empty { padding: 0 32px 48px; }

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

  .timeline-content-empty { display: none; }

  .timeline-item-content {
    padding: 0 0 40px 16px;
    grid-column: 2;
  }

  .timeline-dot-col {
    grid-column: 1;
    padding: 0;
  }
}

/* ============================================================
   CREW SECTION
   ============================================================ */
.crew-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}

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

.crew-inner > h2,
.crew-inner .section-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
}

.crew-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}

.crew-photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: none;
  filter: grayscale(30%);
  transition: filter 300ms;
}

.crew-photo-strip img:hover { filter: grayscale(0%); }

.crew-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.crew-caption-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 64ch;
}

.crew-caption-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.crew-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--primary);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
}

@media (max-width: 640px) {
  .crew-photo-strip { grid-template-columns: 1fr 1fr; }
  .crew-caption { grid-template-columns: 1fr; }
  .crew-caption-right { justify-content: flex-start; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

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

.faq-inner > h2,
.faq-inner .section-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
}

.faq-list {
  max-width: 840px;
  margin-inline: auto;
}

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

.faq-list details summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 60px;
  padding: 4px 0;
}

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

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

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

.faq-list details[open] summary { color: var(--primary); }

.faq-answer {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.70;
  color: var(--ink-mid);
  padding-right: 44px;
  padding-bottom: 8px;
}

/* ============================================================
   GALLERY FULL (gallery.html)
   ============================================================ */
.gallery-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gallery-filter-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding-block: 0;
}

.filter-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 20px 16px 0;
  margin-right: 8px;
  border-right: 1px solid var(--border);
}

.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 16px 18px;
  background: transparent;
  color: var(--muted);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  margin-bottom: 0;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}

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

.gallery-full {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

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

.gallery-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

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

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

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

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  cursor: pointer;
}

.gallery-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
  filter: grayscale(15%);
}

.gallery-card:hover > img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

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

.gallery-card-index {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
}

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

.gallery-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}

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

.gallery-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.gallery-card-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.gallery-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  margin-bottom: 8px;
}

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

.gallery-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.gallery-card-meta-item svg { width: 13px; height: 13px; }

/* Gallery text card */
.gallery-card-text {
  background: var(--ink);
  aspect-ratio: 4 / 3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gc-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-card-text h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.gc-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.gc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.gc-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  bottom: 24px;
  right: 24px;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

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

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

.footer-brand img {
  max-height: 48px !important;
  max-width: 160px !important;
}

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

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

.footer-license, .footer-lic {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.04em;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  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: var(--primary);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.80); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-contact-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 4px;
}

.footer-contact-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: block;
}

.footer-contact-value a { color: rgba(255,255,255,0.80); text-decoration: none; }
.footer-contact-value a:hover { color: var(--primary); }

.footer-phone-link, .footer-email-link {
  color: rgba(255,255,255,0.80) !important;
  transition: color 150ms;
}

.footer-phone-link:hover, .footer-email-link:hover {
  color: var(--primary) !important;
}

.footer-hours-block {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 8px;
}

.footer-hours-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.day { color: rgba(255,255,255,0.60); }
.time { color: rgba(255,255,255,0.80); }

.footer-service-areas {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-top: 8px;
}

.footer-social { display: flex; gap: 10px; margin-top: 8px; }

.footer-social a, .footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.60);
  transition: background 150ms, color 150ms;
}

.footer-social a svg, .footer-social .social-link svg { width: 16px; height: 16px; }

.footer-social a:hover, .footer-social .social-link:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.footer-contact-items { display: flex; gap: 12px; margin-top: 8px; }

.footer-contact-items a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}

.footer-contact-items a svg { width: 15px; height: 15px; }
.footer-contact-items a:hover { color: var(--primary); text-decoration: none; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

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

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

.footer-certs, .footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cert, .footer-cred-badge {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================
   MOBILE CALL PILL / STICKY CTA
   ============================================================ */
.mobile-sticky-call,
.mobile-call-pill {
  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;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}

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

.mobile-sticky-call:hover,
.mobile-call-pill:hover {
  background: var(--primary-dark);
  transform: scale(1.03);
  color: #fff;
  text-decoration: none;
}

.mobile-cta-sticky,
.mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
}

.mobile-cta-sticky a,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}

.mobile-cta-sticky a svg,
.mobile-cta a svg {
  width: 20px;
  height: 20px;
}

.mobile-cta-sticky a:hover,
.mobile-cta a:hover {
  background: var(--primary-dark);
  transform: scale(1.03);
  color: #fff;
  text-decoration: none;
}

.mobile-cta a span { font-size: 14px; }

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.stagger > .fade-up,
.stagger > .fade-left,
.stagger > .fade-right {
  transition-delay: 0ms;
}

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

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

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

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

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

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

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

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

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

/* ============================================================
   MISC
   ============================================================ */
.section-eyebrow, .reviews-eyebrow { margin-bottom: 12px; }

/* Fix: unsized inline SVGs capped universally */
.hero-ctas svg,
.btn svg,
.trust-chip svg,
.nav-cta svg,
.social-link svg,
.footer-contact-item svg,
.gallery-feature-cta svg,
.cta-banner-phone svg,
.contact-phone-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

/* Capping any stray unsized SVGs */
svg:not([width]):not([height]):not(.value-card-icon) {
  max-width: 24px;
  max-height: 24px;
}

.value-card-icon { width: 32px; height: 32px; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .hero-inner { min-height: 85vh; }
  .hero-title { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
  .reviews-header { flex-direction: column; }
  .gallery-preview-header { flex-direction: column; }
  .team-cta-text { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .about-story-brand-block { right: 0; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.team-cta-text { grid-column: 1 / -1; }
.btn-ghost { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.timeline-content-empty { grid-column: 1 / -1; }
.crew-caption-left { grid-column: 1 / -1; }
.crew-caption-right { grid-column: 1 / -1; }
.cta-banner-label { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
