/* ============================================================
   VESTA — Premium Cleaning Services
   Master Stylesheet
   ------------------------------------------------------------
   Sections (Ctrl/Cmd-F to jump):
   01. DESIGN TOKENS
   02. RESET & BASE
   03. TYPOGRAPHY UTILITIES
   04. BUTTONS
   05. UTILITY BAR (top)
   06. HEADER & NAVIGATION
   07. PAGE HERO (sub-pages)
   08. HOME HERO
   09. TRUST STRIP
   10. SECTION FRAMEWORK + SECTION HEADS
   11. SERVICES GRID
   12. PROCESS / HOW IT WORKS
   13. WHY US / FEATURES
   14. BEFORE & AFTER SLIDER
   15. INDUSTRIES GRID
   16. SERVICE AREAS
   17. TESTIMONIALS
   18. FORMS (Quote + Contact)
   19. CTA BAND
   20. FOOTER
   21. REVEAL ANIMATIONS
   22. RESPONSIVE
   ============================================================ */


/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
  /* ---- Neutrals ---- */
  --bg:            #FAFAF6;
  --surface:       #FFFFFF;
  --surface-2:     #F3F2EC;
  --ink:           #0F1411;
  --ink-2:         #1F2823;
  --muted:         #5E6660;
  --muted-2:       #8B928A;
  --border:        rgba(15, 20, 17, 0.08);
  --border-strong: rgba(15, 20, 17, 0.16);

  /* ---- Brand (Vesta deep emerald) ---- */
  --brand:       #0E5239;
  --brand-2:     #144A37;
  --brand-3:     #0A3D2A;
  --brand-soft:  #EEF4EE;
  --brand-tint:  #DCE8DC;

  /* ---- Accent (amber — Vesta hearth nod) ---- */
  --amber:       #C8954E;
  --amber-soft:  #FAF1E0;

  /* ---- Status ---- */
  --success:     #10B981;
  --error:       #DC2626;

  /* ---- Typography ---- */
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "Geist Mono", "SF Mono", Menlo, monospace;
  --serif: "Instrument Serif", "Times New Roman", serif;

  /* ---- Spacing (4px base) ---- */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;
  --s-40: 160px;

  /* ---- Radius ---- */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 999px;

  /* ---- Shadows (multi-layer) ---- */
  --shadow-xs: 0 1px 2px rgba(15, 20, 17, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 20, 17, 0.06), 0 1px 2px rgba(15, 20, 17, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 20, 17, 0.06), 0 2px 4px rgba(15, 20, 17, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 20, 17, 0.08), 0 4px 8px rgba(15, 20, 17, 0.04);
  --shadow-xl: 0 24px 60px rgba(15, 20, 17, 0.12), 0 8px 16px rgba(15, 20, 17, 0.06);
  --shadow-brand: 0 8px 24px rgba(14, 82, 57, 0.25);

  /* ---- Layout ---- */
  --container: 1240px;
  --gutter:    clamp(20px, 4vw, 48px);

  /* ---- Motion ---- */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

input, select, textarea { font: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 880px; }


/* ============================================================
   03. TYPOGRAPHY UTILITIES
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Small pill-style eyebrow (used in CTA band, etc.) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brand);
  padding: 6px 12px;
  background: var(--brand-soft);
  border-radius: var(--r-full);
  border: 1px solid var(--brand-tint);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.eyebrow--amber {
  color: var(--amber);
  background: var(--amber-soft);
  border-color: rgba(200, 149, 78, 0.25);
}
.eyebrow--amber::before { background: var(--amber); }

.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
}


/* ============================================================
   04. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow {
  display: inline-flex;
  width: 16px;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--brand);
  color: var(--surface);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: var(--brand-2);
  box-shadow: 0 12px 28px rgba(14, 82, 57, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  border-radius: 0;
}
.btn--text:hover { color: var(--brand); }
.btn--text:hover .arrow { transform: translateX(4px); }

.btn--white {
  background: var(--surface);
  color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--lg { padding: 16px 28px; font-size: 0.98rem; }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }
.btn--full { width: 100%; }


/* ============================================================
   05. UTILITY BAR (top)
   ============================================================ */
.utility-bar {
  background: var(--ink);
  color: rgba(250, 250, 246, 0.85);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: -0.005em;
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: var(--s-6);
}
.utility-bar__left,
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.utility-bar a { color: var(--surface); transition: color 0.2s; }
.utility-bar a:hover { color: var(--brand-tint); }
.utility-bar .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  background: rgba(220, 232, 220, 0.12);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  color: var(--brand-tint);
}
.utility-bar .badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}
.utility-bar .sep { color: rgba(250, 250, 246, 0.3); }


/* ============================================================
   06. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 246, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 250, 246, 0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: var(--s-8);
  transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled .header-inner { padding: 12px 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  background: var(--brand);
  border-radius: 9px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}
.brand__mark svg {
  width: 20px;
  height: 20px;
  color: var(--surface);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand__tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: -0.005em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease);
}
.primary-nav a:hover {
  background: rgba(15, 20, 17, 0.04);
  color: var(--ink);
}
.primary-nav a.is-active {
  color: var(--brand);
  background: var(--brand-soft);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: background 0.2s;
}
.header-phone:hover { background: rgba(15, 20, 17, 0.04); }
.header-phone svg { width: 14px; color: var(--brand); }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border-strong);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--surface);
  z-index: 90;
  padding: 90px var(--gutter) 32px;
  transform: translateY(-110%);
  transition: transform 0.5s var(--ease);
  box-shadow: var(--shadow-xl);
  border-bottom-left-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mobile-menu__list a:hover,
.mobile-menu__list a.is-active {
  background: var(--brand-soft);
  border-color: var(--brand-tint);
  color: var(--brand);
}
.mobile-menu__list a::after {
  content: "→";
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.9rem;
}
.mobile-menu__cta {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}


/* ============================================================
   07. PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  padding: var(--s-20) 0 var(--s-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: var(--s-6);
}
.page-hero__breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: var(--brand); }
.page-hero__breadcrumb .sep { opacity: 0.4; }
.page-hero__breadcrumb .current { color: var(--ink); }

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: var(--s-5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-hero__label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--brand);
}
.page-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: var(--s-5);
}
.page-hero__title .serif-italic { color: var(--brand); }
.page-hero__sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
}


/* ============================================================
   08. HOME HERO
   ============================================================ */
.hero {
  padding: var(--s-20) 0 var(--s-24);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__text { display: flex; flex-direction: column; gap: var(--s-6); }

.hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.8s var(--ease) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: 0.1s; }
.hero__title .word:nth-child(2) { animation-delay: 0.18s; }
.hero__title .word:nth-child(3) { animation-delay: 0.26s; }
.hero__title .word:nth-child(4) { animation-delay: 0.34s; }
.hero__title .word:nth-child(5) { animation-delay: 0.42s; }
.hero__title .accent {
  color: var(--brand);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding-right: 4px;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  font-size: 1.13rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.8s var(--ease) 0.55s forwards;
}

.hero__cta {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.8s var(--ease) 0.7s forwards;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-top: var(--s-6);
  margin-top: var(--s-3);
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.8s var(--ease) 0.85s forwards;
}
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-item .num {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.hero__trust-item .lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
}
.hero__trust .divider { width: 1px; height: 32px; background: var(--border); }
.hero__trust .stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }

/* Hero visual — layered card */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 480px;
}
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--r-2xl);
  background:
    linear-gradient(135deg, rgba(14, 82, 57, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #C9D7C8 0%, #DDE6D5 35%, #EFE4D0 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  animation: hero-photo 1s var(--ease) 0.5s forwards;
}
@keyframes hero-photo {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero__photo::before {
  content: "";
  position: absolute;
  top: 8%; left: 12%;
  width: 38%;
  height: 55%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  border-radius: var(--r-lg);
  filter: blur(2px);
}
.hero__photo::after {
  content: "";
  position: absolute;
  bottom: 15%; right: 8%;
  width: 60%;
  height: 32%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 70%);
  border-radius: var(--r-md);
  filter: blur(1px);
}

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  opacity: 0;
}
.float-card--rating {
  top: 8%;
  right: -16px;
  animation: float-in 0.7s var(--ease) 1.1s forwards, gentle-float 6s ease-in-out 2s infinite;
}
.float-card--book {
  bottom: 12%;
  left: -20px;
  animation: float-in 0.7s var(--ease) 1.3s forwards, gentle-float 7s ease-in-out 2.5s infinite;
}
.float-card--badge {
  top: 50%;
  right: -40px;
  padding: 10px 14px;
  animation: float-in 0.7s var(--ease) 1.5s forwards, gentle-float 5.5s ease-in-out 3s infinite;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card--rating .icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--amber-soft);
  display: grid; place-items: center;
  color: var(--amber);
  font-size: 1.1rem;
}
.float-card .title { font-size: 0.78rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.float-card .sub { font-family: var(--mono); font-size: 0.66rem; color: var(--muted); margin-top: 2px; }
.float-card--rating .big { font-size: 1rem; font-weight: 600; color: var(--ink); }
.float-card--book .check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  display: grid; place-items: center;
  font-size: 1rem;
  animation: pulse-ring 2.4s ease-out infinite 2s;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(14, 82, 57, 0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(14, 82, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 82, 57, 0); }
}


/* ============================================================
   09. TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-8) 0;
  background: var(--surface);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-strip__label {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: -0.005em;
  max-width: 200px;
  line-height: 1.4;
}
.trust-strip__items {
  display: flex;
  align-items: center;
  gap: var(--s-10);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-item svg { width: 18px; color: var(--brand); }


/* ============================================================
   10. SECTION FRAMEWORK + SECTION HEADS
   ============================================================
   Note: section heads are LEFT-ALIGNED with a prominent
   dark-green label. This is a deliberate choice per
   client direction. */
.section {
  padding: var(--s-32) 0;
  position: relative;
}
.section--soft  { background: var(--surface-2); }
.section--dark  { background: var(--ink); color: var(--surface); }
.section--brand { background: var(--brand); color: var(--surface); }

.section-head {
  margin-bottom: var(--s-16);
  max-width: 900px;
  text-align: left;
}
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

.section-head__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: var(--s-5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-head__label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--brand);
}
.section--dark .section-head__label,
.section--brand .section-head__label {
  color: var(--brand-tint);
}
.section--dark .section-head__label::before,
.section--brand .section-head__label::before {
  background: var(--brand-tint);
}

.section-head__title {
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: var(--s-5);
}
.section-head__title .serif-italic { color: var(--brand); }
.section--dark .section-head__title,
.section--brand .section-head__title { color: var(--surface); }
.section--dark .section-head__title .serif-italic,
.section--brand .section-head__title .serif-italic { color: var(--amber); }

.section-head__sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
  line-height: 1.55;
}
.section--dark .section-head__sub,
.section--brand .section-head__sub { color: rgba(255, 255, 255, 0.75); }


/* ============================================================
   11. SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at top right, var(--brand-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-tint);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__arrow {
  background: var(--brand);
  color: var(--surface);
  transform: rotate(-45deg);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  color: var(--brand);
  position: relative;
  z-index: 1;
}
.service-card__icon svg { width: 26px; }
.service-card__title {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.service-card__desc {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.service-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.service-card__price {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}
.service-card__price strong { color: var(--ink); font-weight: 600; }
.service-card__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.4s var(--ease);
}


/* ============================================================
   12. PROCESS / HOW IT WORKS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--border-strong) 0, var(--border-strong) 4px, transparent 4px, transparent 10px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--s-5);
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-step__num {
  background: var(--brand);
  color: var(--surface);
  border-color: var(--brand);
  transform: scale(1.05);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: var(--s-2); }
.process-step p { font-size: 0.92rem; color: var(--muted); margin: 0; max-width: 240px; }


/* ============================================================
   13. WHY US / FEATURES
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-20);
  align-items: center;
}
.why-text h2 { margin-bottom: var(--s-5); margin-top: var(--s-4); }
.why-text p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 0 var(--s-8);
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.feature-card {
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  border-color: var(--brand-tint);
  background: var(--brand-soft);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  color: var(--brand);
  margin-bottom: var(--s-4);
  transition: all 0.3s;
}
.feature-card:hover .feature-card__icon { background: var(--brand); color: var(--surface); }
.feature-card__icon svg { width: 20px; }
.feature-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.5; }


/* ============================================================
   14. BEFORE & AFTER SLIDER
   ============================================================ */
.ba-section {
  padding: var(--s-32) 0;
  background: var(--surface-2);
}

.ba-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-10);
  align-items: stretch;
}

.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  background: var(--ink);
}

.ba-slider__panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-slider__panel--before {
  background:
    linear-gradient(135deg, rgba(80, 70, 60, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, #A89A88 0%, #8A7D6B 60%, #6E6354 100%);
}
.ba-slider__panel--before::before,
.ba-slider__panel--after::before {
  /* simulated room features */
  content: "";
  position: absolute;
  top: 12%; left: 10%;
  width: 32%;
  height: 48%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  border-radius: var(--r-lg);
  filter: blur(3px);
}
.ba-slider__panel--before::after {
  /* dust/grime overlay */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.25 0 0 0 0 0.2 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.ba-slider__panel--after {
  background:
    linear-gradient(135deg, rgba(14, 82, 57, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #DDE6D5 0%, #EFE4D0 50%, #F8F4EA 100%);
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.1s linear;
}
.ba-slider__panel--after::after {
  content: "";
  position: absolute;
  bottom: 15%; right: 8%;
  width: 60%;
  height: 28%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 70%);
  border-radius: var(--r-md);
  filter: blur(1px);
}

.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--surface);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(14, 82, 57, 0.2), 0 0 16px rgba(0, 0, 0, 0.2);
}
.ba-slider__handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-lg);
}
.ba-slider__handle::after {
  content: "⇄";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand);
  z-index: 1;
}

.ba-slider__label {
  position: absolute;
  top: var(--s-5);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--surface);
  background: rgba(15, 20, 17, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  z-index: 2;
}
.ba-slider__label--before { left: var(--s-5); }
.ba-slider__label--after  { right: var(--s-5); background: rgba(14, 82, 57, 0.9); }

.ba-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
}
.ba-text h2 { margin: 0; }
.ba-text p { color: var(--muted); font-size: 1.05rem; max-width: 460px; margin: 0; }

/* Before/after caption strip below */
.ba-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--s-6);
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
}
.ba-caption strong { color: var(--ink); font-weight: 600; }

/* Thumbnail gallery (additional before/afters) */
.ba-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.ba-thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.ba-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-thumb__before,
.ba-thumb__after {
  position: absolute;
  inset: 0;
}
.ba-thumb__before {
  background: linear-gradient(180deg, #A89A88, #6E6354);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.ba-thumb__after {
  background: linear-gradient(180deg, #DDE6D5, #F8F4EA);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.ba-thumb__divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: var(--surface);
  transform: translateX(-50%);
}
.ba-thumb__cap {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-4);
  right: var(--s-4);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--surface);
  background: rgba(15, 20, 17, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: var(--r-sm);
}


/* ============================================================
   15. INDUSTRIES GRID
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
}
.industry-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-3);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.industry-tile:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-tile:hover .industry-tile__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
}
.industry-tile__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: all 0.3s;
}
.industry-tile__icon svg { width: 22px; }
.industry-tile span { font-size: 0.88rem; font-weight: 500; }


/* ============================================================
   16. SERVICE AREAS
   ============================================================ */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-16);
  align-items: center;
}
.areas-wrap h2 { margin: var(--s-4) 0 var(--s-5); }
.areas-wrap > div > p {
  color: var(--muted);
  max-width: 420px;
  font-size: 1.05rem;
  margin: 0 0 var(--s-6);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.areas-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.areas-list li:hover {
  background: var(--brand-soft);
  border-color: var(--brand-tint);
  transform: translateX(4px);
}
.areas-list li::after {
  content: "→";
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.3s var(--ease);
  transform: translateX(-4px);
}
.areas-list li:hover::after { opacity: 1; transform: translateX(0); color: var(--brand); }
.areas-list .zone {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}


/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: all 0.3s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint);
}
.testimonial__rating {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-2);
  flex-grow: 1;
  margin: 0;
}
.testimonial__attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--surface);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial__name { font-size: 0.92rem; font-weight: 600; line-height: 1.2; }
.testimonial__role { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); margin-top: 2px; }


/* ============================================================
   18. FORMS (Quote + Contact)
   ============================================================ */
.form-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s-12);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.form-grid--single { grid-template-columns: 1fr; }

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

.form-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-label .req { color: var(--brand); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: var(--sans);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-2); }

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23636' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

/* Radio cards (for service type / frequency) */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.radio-grid--four { grid-template-columns: repeat(4, 1fr); }

.radio-card {
  position: relative;
  padding: var(--s-5);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card:hover { border-color: var(--brand); }
.radio-card:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.radio-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.radio-card__desc {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.radio-card .check {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--surface);
  font-size: 0.7rem;
  transition: all 0.2s;
}
.radio-card:has(input:checked) .check {
  background: var(--brand);
  border-color: var(--brand);
}
.radio-card:has(input:checked) .check::before {
  content: "✓";
}

.form-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}
.form-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  flex-grow: 1;
}

/* Quote page split layout */
.quote-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: var(--s-10);
  align-items: start;
}
.quote-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.quote-aside__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.quote-aside__card h4 {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: var(--s-4);
}
.quote-aside__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.quote-aside__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; line-height: 1.5; }
.quote-aside__list svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; width: 18px; }
.quote-aside__contact { display: flex; flex-direction: column; gap: var(--s-3); }
.quote-aside__contact a { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 0.95rem; }
.quote-aside__contact a svg { width: 16px; color: var(--brand); }


/* ============================================================
   19. CTA BAND
   ============================================================ */
.cta-band {
  background: var(--brand);
  color: var(--surface);
  padding: var(--s-24) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 149, 78, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(220, 232, 220, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: var(--s-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--surface);
  margin-bottom: var(--s-5);
  margin-top: var(--s-4);
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.cta-band h2 .serif-italic { color: var(--amber); }
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0 0 var(--s-8);
}
.cta-band__contact {
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.cta-band__contact div { display: flex; flex-direction: column; gap: 4px; }
.cta-band__contact .lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-band__contact .val { color: var(--surface); font-weight: 500; font-size: 1rem; }


/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--s-20) 0 var(--s-6);
}
.site-footer .brand__name { color: var(--surface); }
.site-footer .brand__tag { color: rgba(255, 255, 255, 0.5); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  margin: var(--s-5) 0 var(--s-6);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.55;
}
.footer-brand__socials { display: flex; gap: 10px; }
.footer-brand__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.footer-brand__socials a:hover { background: var(--brand); color: var(--surface); }
.footer-brand__socials svg { width: 16px; }

.site-footer h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--s-5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.site-footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--surface); }
.site-footer ul li:not(:has(a)) { color: rgba(255, 255, 255, 0.7); font-size: 0.94rem; }

.footer-bottom {
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer-bottom .legal { display: flex; gap: var(--s-5); }
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }


/* ============================================================
   21. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }


/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) { display: none; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-aside { position: static; }
  .ba-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .primary-nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero__visual { min-height: 420px; margin-right: 30px; }
  .why-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .areas-wrap { grid-template-columns: 1fr; gap: var(--s-10); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-10); }
  .process-grid::before { display: none; }
  .cta-band__inner { grid-template-columns: 1fr; gap: var(--s-8); }
  .form-grid { grid-template-columns: 1fr; }
  .radio-grid--four { grid-template-columns: repeat(2, 1fr); }
  .ba-thumbs { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .utility-bar__inner { flex-direction: column; gap: 4px; padding: 8px 0; }
  .utility-bar__right { font-size: 0.72rem; gap: var(--s-3); }
  .utility-bar__left .badge { font-size: 0.66rem; }
  .form-shell { padding: var(--s-6); }
}
@media (max-width: 600px) {
  .section { padding: var(--s-20) 0; }
  .hero { padding: var(--s-12) 0 var(--s-16); }
  .ba-section { padding: var(--s-20) 0; }
  .services-grid, .why-features, .areas-list { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .radio-grid { grid-template-columns: 1fr; }
  .hero__trust { flex-wrap: wrap; gap: var(--s-4); }
  .hero__trust .divider { display: none; }
  .float-card--rating { right: 8px; }
  .float-card--book { left: 8px; }
  .float-card--badge { right: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__inner { gap: var(--s-6); }
  .trust-strip__items { gap: var(--s-5); }
  .section-head__label { font-size: 0.85rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
