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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #30a692;
  --primary-dark:   #217a6c;
  --primary-light:  #4ec4ae;
  --accent:         #30a692;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --border:         #0C0C0F;
  --border-light:   rgba(12,12,15,0.14);
  --white:          #FFFFFF;

  --ff-display: 'Archivo Black', sans-serif;
  --ff-body:    'IBM Plex Sans', sans-serif;
  --ff-mono:    'IBM Plex Mono', monospace;

  --radius: 0;
  --section-py: clamp(72px, 9vh, 112px);
  --container-max: 1360px;
  --header-height: 72px;
}

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

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

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

body {
  font-family: var(--ff-body);
  font-weight: 500;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   UNIVERSAL IMAGE CAP — MANDATORY
   ============================================================ */
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; 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; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

/* ============================================================
   HEADING ANCHOR RULE
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ============================================================
   TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 38px); }

p { line-height: 1.68; }

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

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

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

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress,
#scrollProgress,
.scroll-progress,
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  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(12,12,15,0.08);
}

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.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: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--white); text-decoration: none; }
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(12,12,15,0.08);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { padding: 10px 0; font-size: 13px; display: block; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-submit,
.btn-banner-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.btn:hover,
.btn-primary:hover,
.btn-submit:hover,
.btn-banner-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-dark,
.btn-banner-outline,
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn-outline-dark:hover,
.btn-banner-outline:hover,
.btn-primary-dark:hover {
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: var(--radius);
  transition: border-color 150ms, background 150ms;
}
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; color: var(--white); }

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

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

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

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

.hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(12,12,15,0.88) 0%,
    rgba(12,12,15,0.70) 40%,
    rgba(12,12,15,0.30) 75%,
    rgba(12,12,15,0.10) 100%
  );
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
  padding-bottom: clamp(56px, 8vw, 96px);
  min-height: 92vh;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title,
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(64px, 8.5vw, 132px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  border: 1px solid rgba(255,255,255,0.25);
  width: fit-content;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.25);
}
.trust-chip:last-child { border-right: none; }

.trust-chip-star,
.trust-star,
.chip-star {
  color: var(--primary);
  font-size: 13px;
}

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

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin-inline: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid var(--ink);
  margin: 12px 0 12px 12px;
}
.trust-item:first-child { margin-left: 0; }

/* ============================================================
   BRAND BAND (Unique Move — full-bleed brand-color)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}

.brand-band-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-band-claim {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 22ch;
}

.brand-band-cta {
  display: inline-flex;
  margin-top: 16px;
}

.brand-band-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.brand-band-rating {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}

.brand-band-rating-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

/* ============================================================
   CLAIM BAND (services.html variant)
   ============================================================ */
.claim-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 72px) 0;
}

.claim-band-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.claim-band-text {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 22ch;
}

.claim-band-cta {
  flex-shrink: 0;
}

/* ============================================================
   SECTION EYEBROW
   ============================================================ */
.section-eyebrow,
.page-eyebrow,
.about-eyebrow,
.service-eyebrow,
.gallery-section-label,
.gallery-info-eyebrow,
.cta-banner-eyebrow,
.cta-banner-label,
.page-header-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* ============================================================
   SERVICES SECTION (index.html)
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

.services-inner > h2,
.services-inner > .section-title {
  margin-bottom: 48px;
}

.services-bento {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Flagship service */
.service-flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  min-height: 400px;
}

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

.service-flagship-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(20%);
  transition: filter 400ms, transform 400ms;
}
.service-flagship:hover .service-flagship-img img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.service-flagship-body {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-flagship-index {
  font-family: var(--ff-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.18;
  align-self: flex-end;
  margin-bottom: -20px;
}

.service-flagship-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.service-flagship-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  flex: 1;
}

/* Grid of secondary service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.service-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  text-decoration: none;
  color: var(--ink);
  transition: background 200ms;
  overflow: hidden;
}
.service-card:hover {
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  transform: none;
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(25%);
  transition: filter 300ms, transform 300ms;
}
.service-card:hover .service-card-img img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.service-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-card-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-card-name {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.service-card-arrow {
  font-family: var(--ff-mono);
  font-size: 18px;
  color: var(--primary);
  margin-top: 12px;
  align-self: flex-end;
  transition: transform 200ms;
}
.service-card:hover .service-card-arrow { transform: translateX(4px); }

/* ============================================================
   SERVICES DETAIL PAGE (services.html)
   ============================================================ */
.services-nav {
  background: var(--ink);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.services-nav-inner {
  display: flex;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.services-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.services-nav-link:hover,
.services-nav-link.active {
  color: var(--white);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.services-nav-num {
  font-size: 10px;
  opacity: 0.5;
}

/* Service block (detail article) */
.services-detail { background: var(--canvas); }

.service-block {
  border-bottom: 1px solid var(--border-light);
  padding-block: var(--section-py);
}
.service-block:nth-child(even) { background: var(--surface); }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  align-items: start;
}
.service-block:nth-child(even) .service-block-inner {
  direction: rtl;
}
.service-block:nth-child(even) .service-block-inner > * {
  direction: ltr;
}

.service-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.service-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: filter 400ms;
}
.service-block:hover .service-photo-wrap img { filter: grayscale(0%); }

.service-index-num {
  position: absolute;
  bottom: 0; left: 0;
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  background: var(--primary);
  padding: 8px 20px;
  letter-spacing: -0.03em;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  margin-top: 4px;
}

.service-bullet {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 150ms, border-color 150ms;
  margin-top: 8px;
  width: fit-content;
}
.service-cta:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); text-decoration: none; }
.service-cta svg { width: 18px; height: 18px; }

/* ============================================================
   ABOUT SECTION (about.html)
   ============================================================ */
.about-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.about-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-left {
  position: relative;
}

.about-supergraphic {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.12;
  margin-bottom: -32px;
  text-transform: uppercase;
}

.about-eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-left h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 24px;
}

.about-accent-bar {
  width: 48px;
  height: 4px;
  background: var(--primary);
  margin-bottom: 28px;
}

.about-credentials {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-top: 8px;
}

.about-cred-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.about-cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-cred-list li {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-left: 14px;
  position: relative;
}
.about-cred-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--primary);
}

.about-right { }

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

.about-body p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
}

.drop-cap::first-letter {
  font-family: var(--ff-display);
  font-size: 4.2em;
  font-weight: 900;
  line-height: 0.75;
  float: left;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--primary);
  text-transform: uppercase;
}

.cred-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 0;
  vertical-align: middle;
  margin: 0 6px;
}

/* Services teaser (about page) */
.services-teaser {
  background: var(--surface);
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-light);
}

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

.services-teaser-inner h2 {
  margin-bottom: 40px;
}

.services-list-simple {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.service-row-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 200ms, color 200ms;
}
.service-row-item:hover {
  padding-left: 12px;
  color: var(--primary);
  text-decoration: none;
}

.service-row-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  flex-shrink: 0;
  width: 32px;
}

.service-row-name {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1;
  flex: 1;
}

.service-row-arrow {
  font-size: 18px;
  color: var(--primary);
  transition: transform 200ms;
  flex-shrink: 0;
}
.service-row-item:hover .service-row-arrow { transform: translateX(6px); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.gallery-section-wrap {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

.gallery-section-title,
.gallery-inner h2,
.gallery-inner .section-title {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 40px;
}

.gallery-section-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

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

/* Filter pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

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

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

.gallery-tile.tile-featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(20%);
  transition: filter 350ms, transform 350ms;
}
.gallery-tile:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.80) 0%, rgba(12,12,15,0.0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.tile-category {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.tile-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.tile-location {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.70);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tile-location svg { width: 12px; height: 12px; }

.tile-index {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--primary);
  padding: 4px 8px;
}

.tile-featured { }

/* Gallery feature (index.html simplified gallery) */
.gallery-feature {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
}

.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 32px 0;
}

.gallery-info h3 {
  font-size: clamp(24px, 3vw, 40px);
}

.gallery-info-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.gallery-info-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-light);
}

.service-areas-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.areas-left {}
.areas-left h2,
.areas-left .section-title {
  font-size: clamp(32px, 4.5vw, 64px);
}

.areas-right {}
.areas-right p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 24px;
}
.areas-right p a { color: var(--primary); }

.areas-pills,
.areas-pill-cloud,
.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pill {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background 150ms, color 150ms;
  cursor: default;
}
.area-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   CONTACT SECTION (index.html)
   ============================================================ */
.contact {
  background: var(--canvas);
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-light);
}

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

.contact-inner h2 {
  font-size: clamp(32px, 4vw, 60px);
  margin-bottom: 32px;
}

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

.contact-form-block {
  display: flex;
  flex-direction: column;
}

.contact-form-block h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 32px;
}

.contact-info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
}

.contact-info-card h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-bottom: 28px;
}

.contact-info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-label,
.info-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.contact-info-value,
.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.5;
}

.contact-info-value-sm { font-size: 14px; color: var(--muted); }

.contact-rating {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.info-phone-big {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
}

.info-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.info-block:last-child { border-bottom: none; }

.info-card-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

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

.form-stacked { gap: 16px; }

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

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

.form-label,
label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
input,
textarea,
select {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 150ms;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}

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

.form-submit,
button[type="submit"],
.btn-submit {
  margin-top: 8px;
  cursor: pointer;
  font-size: 13px;
  border: none;
}

.form-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.80) 0%,
    rgba(12,12,15,0.60) 50%,
    rgba(12,12,15,0.35) 100%
  );
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  padding-block: clamp(48px, 6vw, 80px);
  width: 100%;
}

.page-header-title,
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 20ch;
  margin-bottom: 16px;
}

.page-header-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.page-header-sub,
.page-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  line-height: 1.6;
}

.page-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.cta-banner-bg-num {
  position: absolute;
  right: -2%;
  bottom: -10%;
  font-family: var(--ff-display);
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

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

.cta-banner-left { }

.cta-banner-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.cta-banner-heading,
.cta-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 18ch;
}

.cta-banner-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 44ch;
  margin-bottom: 28px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cta-banner-phone {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.cta-banner-phone:hover { color: var(--primary-light); text-decoration: none; }

.cta-banner-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.cta-banner-form {
  background: var(--surface);
  padding: 36px;
}

.cta-banner-form .form-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ============================================================
   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-light);
  border-radius: 0;
}

.step-num {
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
details.faq {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  transition: transform 200ms;
  flex-shrink: 0;
}
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
details.faq p { margin-top: 12px; line-height: 1.6; }

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

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

.marquee-item {
  font-family: var(--ff-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--ink);
}

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

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

/* Type-band variant */
.marquee.type-band { overflow: hidden; padding: 32px 0; max-height: 160px; }
.marquee.type-band .marquee-item {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
}

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

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

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 0;
  background: var(--surface);
  border: 1px solid var(--border-light);
}

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta,
.mobile-sticky-cta,
.mobile-cta-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 150ms, transform 150ms;
}
.mobile-call-pill:hover,
.mobile-cta:hover,
.mobile-sticky-cta:hover,
.mobile-cta-pill:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.mobile-cta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}
.mobile-cta-link:hover { color: var(--white); text-decoration: none; }

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

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

/* ============================================================
   FOOTER
   ============================================================ */
footer,
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(56px, 7vw, 96px);
}

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

.footer-brand { }

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.footer-brand img,
.footer-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 32ch;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 30ch;
}

.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item,
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg,
.footer-contact-line svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
.footer-contact-item a,
.footer-contact-line a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-item a:hover,
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

.footer-phone-link {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  text-decoration: none;
}
.footer-phone-link:hover { color: var(--primary-light); text-decoration: none; }

.footer-rating {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
}

.footer-stars {
  color: var(--primary);
  margin-right: 4px;
}

.footer-service-area,
.footer-service-area-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-mono);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-bottom-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ============================================================
   TABLE RULES (readable cells)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: var(--white);
}

/* ============================================================
   READABLE TABLE
   ============================================================ */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border-light); }
th { font-family: var(--ff-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--ink); color: var(--white); }
td { font-size: 15px; color: var(--ink); background: var(--canvas); }

/* ============================================================
   MISCELLANEOUS STRUCTURAL
   ============================================================ */
.section {
  padding-block: var(--section-py);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* Scroll bar (scroll progress element) */
#scrollBar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
}

/* Cap all SVGs without size attrs */
svg { max-width: 100%; }
.nav-cta svg,
.service-cta svg,
.footer-contact-item svg,
.footer-contact-line svg,
.mobile-cta svg,
.mobile-cta-link svg,
.mobile-call-pill svg,
.mobile-cta-pill svg,
.tile-location svg,
.trust-chip svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Prevent oversized SVGs inside flex/grid cells */
a svg, button svg, li svg, span svg { width: 20px; height: 20px; }
.service-row-arrow { font-size: 18px; }

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-flagship {
    grid-template-columns: 1fr;
  }
  .service-flagship-img { min-height: 300px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-areas-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-block:nth-child(even) .service-block-inner {
    direction: ltr;
  }

  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-feature {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-tile.tile-featured {
    grid-column: span 2;
  }

  .hero-inner {
    max-width: 100%;
    padding-inline: clamp(20px, 5vw, 40px);
  }

  .hero-trust-chips {
    flex-wrap: wrap;
  }
  .trust-chip {
    border-right: 1px solid rgba(255,255,255,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .trust-strip-inner {
    flex-direction: column;
    gap: 0;
  }
  .trust-item {
    margin: 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-tile.tile-featured {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .claim-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .services-nav-inner {
    gap: 0;
  }
  .services-nav-link {
    padding: 12px 14px;
    font-size: 10px;
  }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-flagship-img { grid-column: 1 / -1; }
.service-flagship-body { grid-column: 1 / -1; }
.service-card { grid-column: 1 / -1; }
.gallery-main { grid-column: 1 / -1; }
.gallery-info { grid-column: 1 / -1; }
.service-photo-wrap { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.form-field { 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; }
