@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:        #F37C24;
  --primary-dark:   #C9621A;
  --primary-glow:   rgba(243,124,36,0.18);
  --accent:         #A4BCC4;
  --canvas:         #0E0E0E;
  --surface:        #1A1A1A;
  --surface-2:      #242424;
  --surface-3:      #2E2E2E;
  --ink:            #FFFFFF;
  --muted:          rgba(255,255,255,0.65);
  --muted-2:        rgba(255,255,255,0.38);
  --border:         rgba(255,255,255,0.10);
  --border-brand:   rgba(243,124,36,0.45);
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

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

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

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

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

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

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

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

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

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

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

ul, ol { list-style: none; }

svg { display: block; }

/* SVG caps for unsized icons */
.faq-chevron, .hero-ctas svg, .contact-info-item svg,
.rating-stars svg, .footer-stars svg,
.gallery-card-location svg, .gallery-card-rating svg,
.cta-banner-actions svg, .btn svg,
.mobile-call-pill svg, .mobile-call svg, .mobile-cta svg,
.mobile-sticky-cta svg, .form-submit svg {
  width: 20px; height: 20px;
}
.footer-stars svg { width: 16px; height: 16px; color: var(--primary); }
.rating-stars svg { width: 18px; height: 18px; color: var(--primary); }
.gallery-card-location svg, .gallery-card-rating svg { width: 14px; height: 14px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.wide-container { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.bleed          { width: 100%; }

@media (max-width: 640px) {
  .container, .wide-container { padding: 0 18px; }
}

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

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

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 180px !important;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.nav-pages li { display: flex; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Archivo', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover,
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

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

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

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

  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a {
    display: block;
    padding: 14px 28px;
    font-size: 15px;
  }

  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 14px; }
}
@media (min-width: 901px) {
  .nav-pages { display: flex !important; }
}

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

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.22) 0%,
    rgba(14,14,14,0.45) 45%,
    rgba(14,14,14,0.88) 80%,
    rgba(14,14,14,0.97) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.ribbon-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-inner {
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px) clamp(56px, 8vw, 96px);
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-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;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--primary);
}

.hero-inner h1, .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: var(--ink);
  max-width: 18ch;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-trust-chips .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-brand);
  padding: 6px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: filter 150ms, transform 150ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

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

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-dark {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline-dark {
  background: transparent;
  color: var(--canvas);
  border: 1px solid rgba(14,14,14,0.35);
}
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: filter 150ms;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { filter: brightness(0.88); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-brand);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  white-space: nowrap;
}

.trust-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-item span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 4px;
}

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

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-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;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary);
}

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

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

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

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

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

/* Flagship card spans 2 cols × 2 rows */
.service-card.flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  min-height: 560px;
}

/* Remaining 5 cards: positions 3–7 */
.services-bento .service-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.services-bento .service-card:nth-child(3) { grid-column: 3; grid-row: 2; }
.services-bento .service-card:nth-child(4) { grid-column: 1; grid-row: 3; }
.services-bento .service-card:nth-child(5) { grid-column: 2; grid-row: 3; }
.services-bento .service-card:nth-child(6) { grid-column: 3; grid-row: 3; }

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  background: var(--surface);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(243,124,36,0.25); text-decoration: none; }

.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: none !important;
  z-index: 0;
  transition: transform 600ms ease-out;
}
.service-card:hover > img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(14,14,14,0.96) 0%,
    rgba(14,14,14,0.60) 50%,
    rgba(14,14,14,0.18) 100%
  );
}

.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card.flagship .service-card-body {
  padding: 40px 44px;
}

.service-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-card.flagship h3 {
  font-size: clamp(28px, 3.5vw, 48px);
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
  display: none;
}
.service-card.flagship .service-card-desc {
  display: block;
  font-size: 16px;
  margin-top: 6px;
}

.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 8px;
  transition: gap 200ms;
}
.service-card:hover .service-learn { gap: 10px; }
.service-learn::after { content: '->'; }

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

@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; gap: 2px; }
  .service-card.flagship,
  .services-bento .service-card:nth-child(n) {
    grid-column: 1; grid-row: auto; min-height: 280px;
  }
}

/* ============================================================
   SERVICES FEATURE (services.html)
   ============================================================ */
.services-feature {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.services-feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.feature-block.reverse {
  direction: ltr;
}
.feature-block.reverse .feature-photo { order: 2; }
.feature-block.reverse .feature-body  { order: 1; }

.feature-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 420px;
}
.feature-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
}
.feature-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(14,14,14,0.28);
  z-index: 1;
}
.feature-index {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.55;
  letter-spacing: -0.04em;
}

.feature-body {
  background: var(--surface);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

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

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

.feature-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.feature-bullets li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.feature-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 900px) {
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-block.reverse .feature-photo,
  .feature-block.reverse .feature-body { order: unset; }
  .feature-photo { min-height: 300px; }
}

/* ============================================================
   GALLERY (index.html)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

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

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease-out;
}
.gallery-tile:hover > img { transform: scale(1.06); }

.gallery-inner > div {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

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

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

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

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

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

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

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

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

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

#galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.gallery-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  overflow: hidden;
  transition: transform 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-2px); text-decoration: none; }

.gallery-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease-out;
}
.gallery-card:hover .gallery-card-img-wrap > img { transform: scale(1.06); }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.75) 0%, transparent 60%);
  z-index: 1;
}

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

.gallery-card-body {
  padding: 18px 20px;
}

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

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

.gallery-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.gallery-card-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.gallery-card-location,
.gallery-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted-2);
}

.gallery-summary {
  background: var(--surface);
  margin-top: 32px;
  padding: 40px 48px;
}

.gallery-summary-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gallery-summary-stat { text-align: center; }

.gallery-summary-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}

.gallery-summary-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.gallery-summary-divider {
  width: 1px; height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.gallery-summary-quote {
  flex: 1;
  min-width: 200px;
}
.gallery-summary-quote p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}
.gallery-summary-quote cite {
  font-size: 12px;
  color: var(--muted-2);
  font-style: normal;
  margin-top: 6px;
  display: block;
}

@media (max-width: 900px) {
  #galleryGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #galleryGrid { grid-template-columns: 1fr; }
  .gallery-summary { padding: 28px 20px; }
}

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

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

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

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

.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: 22px 0;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink);
  gap: 24px;
  transition: color 150ms;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--primary); }

.faq-chevron {
  width: 18px !important; height: 18px !important;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms, color 220ms;
}
.faq-item[open] > summary .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-body {
  padding: 0 0 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-body a { color: var(--primary); }

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

.team-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--canvas);
}

.team-cta-text span {
  color: var(--canvas);
}

.team-cta-inner a {
  color: var(--canvas);
  text-decoration: none;
}

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

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

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

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

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

.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-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 18px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  outline: none;
  transition: border-color 150ms;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }

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

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter 150ms;
  width: auto;
  justify-content: center;
}
.form-submit:hover { filter: brightness(0.88); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

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

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

.contact-guarantee {
  padding: 28px;
  border: 1px solid var(--border-brand);
  margin-top: 24px;
  background: var(--primary-glow);
}
.contact-guarantee .contact-info-label { color: var(--primary); }
.contact-guarantee p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.contact-guarantee strong { color: var(--ink); }

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

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

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

.contact-form-side h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 40px;
}

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

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-block {
  padding: 24px 0;
}
.info-block a { color: var(--ink); }
.info-block a:hover { color: var(--primary); }

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

.info-block-sub {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.info-block-value {
  font-size: 15px;
  color: var(--muted);
}

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

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.area-pill {
  display: inline-block;
  border: 1px solid var(--border-brand);
  padding: 4px 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-rating-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}

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

.rating-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}

.rating-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.guarantee-callout {
  padding: 24px;
  border: 1px solid var(--border-brand);
  background: var(--primary-glow);
  margin-top: 24px;
}

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

.guarantee-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.cta-banner-bg {
  position: absolute; inset: 0;
  background: var(--surface);
  z-index: 0;
}

.cta-banner-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 1;
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.cta-banner-text h2, .cta-banner-headline, .cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cta-banner-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 48ch;
}

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.cta-banner-phone:hover { color: var(--primary-dark); }

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

.cta-note {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

.cta-form-wrap {
  background: var(--surface-2);
  padding: 40px;
}

.cta-form-wrap h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cta-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 52vh;
  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(14,14,14,0.35) 0%,
    rgba(14,14,14,0.92) 100%
  );
}

.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  max-width: 1280px;
}

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

.page-header-inner h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 16ch;
}

.page-header-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 52ch;
}

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

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

.about-story-photo-col {
  position: relative;
  flex: 0 0 auto;
}

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

.about-story-photo-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%;
  height: 60%;
  background: var(--primary);
  z-index: -1;
  opacity: 0.25;
}

.about-story-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-story-body p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.7;
}

.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 28px;
  margin: 8px 0;
}

.pull-quote p {
  font-family: 'Archivo Black', sans-serif !important;
  font-size: clamp(18px, 2vw, 24px) !important;
  line-height: 1.25 !important;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
}

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

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

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.values-header {
  margin-bottom: 56px;
}

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

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

.value-card {
  background: var(--surface-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid transparent;
  transition: border-color 200ms;
}
.value-card:hover { border-top-color: var(--primary); }

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.55;
  letter-spacing: -0.04em;
}

.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

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

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

.journey-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.journey-header {
  margin-bottom: 64px;
}

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

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  position: relative;
}

.journey-step {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
  border-top: 2px solid var(--border);
  transition: border-top-color 200ms;
}
.journey-step:hover { border-top-color: var(--primary); }

.journey-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 16px;
}

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

.journey-step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.journey-step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* ============================================================
   ABOUT EDITORIAL
   ============================================================ */
.about-editorial {
  background: var(--surface);
  padding: clamp(96px, 12vh, 180px) 0;
}

.about-editorial-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-editorial-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 16px;
}

.about-editorial-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-editorial-body p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.7;
}

.about-guarantee {
  border: 1px solid var(--border-brand);
  padding: 36px;
  background: var(--primary-glow);
}

.about-guarantee h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.guarantee-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.guarantee-list li {
  font-size: 14.5px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.guarantee-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

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

/* ============================================================
   CTA BANNER (about.html variant)
   ============================================================ */
section.cta-banner {
  padding: clamp(80px, 10vh, 140px) 0;
}

section.cta-banner .cta-banner-inner {
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  section.cta-banner .cta-banner-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

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

.footer-brand-logo { margin-bottom: 4px; }

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 34ch;
}

.footer-brand-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.footer-brand-contact a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.footer-brand-contact a:hover { color: var(--primary); }

.footer-rating {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-top: 4px;
}

.footer-stars { display: flex; gap: 2px; }

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

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

.footer-col ul li a,
.footer-links li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover,
.footer-links li a:hover { color: var(--primary); text-decoration: none; }

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-col address a { color: var(--muted); text-decoration: none; }
.footer-col address a:hover { color: var(--primary); }

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

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.footer-contact-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-contact-value {
  font-size: 14px;
  color: var(--muted);
}
.footer-contact-value a { color: var(--muted); text-decoration: none; }
.footer-contact-value a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.footer-copy, .footer-copyright {
  font-size: 13px;
  color: var(--muted-2);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--primary); }

.footer-insured {
  font-size: 12px;
  color: var(--muted-2);
}

.footer-bottom p a {
  color: var(--muted-2);
  text-decoration: none;
}
.footer-bottom p a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .footer-top, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 640px) {
  .footer-top, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   MOBILE STICKY CTAs
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  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.04em;
  text-decoration: none;
  transition: filter 150ms;
}
.mobile-call-pill:hover { filter: brightness(0.88); text-decoration: none; color: var(--canvas); }
.mobile-call-pill svg { width: 18px; height: 18px; }

.mobile-call,
.mobile-cta,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--canvas);
  width: 56px; height: 56px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: filter 150ms;
}
.mobile-call:hover,
.mobile-cta:hover,
.mobile-sticky-cta:hover { filter: brightness(0.88); }
.mobile-call svg,
.mobile-cta svg,
.mobile-sticky-cta svg,
.mobile-sticky-cta a svg { width: 22px; height: 22px; color: var(--canvas); }
.mobile-sticky-cta a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; color: var(--canvas); text-decoration: none;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.95); }

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }

/* ============================================================
   MISC GUARDS
   ============================================================ */
/* Readable table cells */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--surface);
  color: var(--ink);
}

/* No mirror transform */
.reverse { direction: ltr; }

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

/* Process */
.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: 14px; font-weight: 700; color: var(--primary);
  margin-bottom: 12px; letter-spacing: 0.12em;
  font-family: 'Archivo', sans-serif;
}

/* Review cards */
.review-card { padding: 28px; border-radius: 0; background: var(--surface-2); }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* Service card hover — shared rule */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.feature-photo { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-text-col { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-banner-actions { 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; }
