/* ==========================================================================
   Rave Cleaning Service — styles.css
   Palette: warm near-black + brand gold + ivory. Corporate editorial.
   ========================================================================== */

:root {
  --ink:        #12110e;
  --ink-2:      #2b2923;
  --ink-mute:   #6b675e;
  --bg:         #faf8f3;
  --bg-2:       #f1ede3;
  --paper:      #ffffff;
  --dark:       #0e0d0b;
  --dark-2:     #17150f;
  --dark-3:     #211e16;
  --cream:      #f4efe3;
  --cream-mute: rgba(244, 239, 227, 0.68);
  --gold:       #c79a2e;
  --gold-2:     #e2bd55;
  --gold-3:     #9c7518;
  --gold-grad:  linear-gradient(135deg, #f0cf6b 0%, #c99a2c 48%, #a47a1a 100%);
  --line:       rgba(18, 17, 14, 0.1);
  --line-light: rgba(244, 239, 227, 0.14);

  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 20px 60px -24px rgba(18, 17, 14, 0.35);
  --shadow-lg:  0 40px 90px -30px rgba(0, 0, 0, 0.55);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --nav-h:      84px;
  --container:  1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.12; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(80px, 11vw, 140px) 0; }

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 8px;
}
.skip:focus { left: 12px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.kicker-light { color: var(--gold-2); }
.kicker-gold { color: var(--gold-2); }
.kicker .dot { display: none; }
.kicker-light::before { display: none; }
.kicker-light .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2); box-shadow: 0 0 0 0 rgba(226,189,85,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226,189,85,.55); }
  70% { box-shadow: 0 0 0 12px rgba(226,189,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,189,85,0); }
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 20ch;
}
.section-title em, .statement-title em, .hero-title em {
  font-style: italic; font-weight: 500;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title.light { color: var(--cream); }
.section-lede { color: var(--ink-mute); font-size: 1.08rem; max-width: 46ch; }
.section-lede.light { color: var(--cream-mute); }
.section-lede a { color: var(--gold-3); font-weight: 600; }

.section-head {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-head.center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 15px; letter-spacing: .01em; text-decoration: none;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-sm { --pad-y: 10px; --pad-x: 18px; font-size: 14px; }
.btn-lg { --pad-y: 17px; --pad-x: 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-gold {
  background: var(--gold-grad); color: #17130a;
  box-shadow: 0 10px 30px -10px rgba(199, 154, 46, .7), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(199, 154, 46, .85), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-glass {
  background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28);
}
@supports (backdrop-filter: blur(10px)) {
  .btn-glass { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}
.btn-glass:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.link-arrow { font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link-arrow.light { color: var(--cream); }
.link-arrow:hover { color: var(--gold-2); }

/* ---------- Offer bar ---------- */
.offer-bar {
  background: var(--dark); color: var(--cream);
  text-align: center; font-size: 14px; padding: 9px 16px;
  border-bottom: 1px solid rgba(226,189,85,.25);
}
.offer-bar strong { color: var(--gold-2); }
.offer-bar a { color: var(--cream); font-weight: 700; margin-left: 6px; }
.offer-bar a:hover { color: var(--gold-2); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 243, .94);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
@supports (backdrop-filter: blur(14px)) {
  .nav { background: rgba(250, 248, 243, .82); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); }
}
.nav.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0,0,0,.35); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; gap: 28px; }
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  position: relative; text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink-2);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; font-size: 15px; }
.nav-phone svg { width: 18px; height: 18px; fill: var(--gold); }
.nav-phone:hover { color: var(--gold-3); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  position: relative;
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); transition: transform .3s, top .3s; }
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.nav-drawer { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: calc(100vh - var(--nav-h) - 38px);
  min-height: calc(100svh - var(--nav-h) - 38px);
  display: flex; align-items: center;
  color: #fff;
  padding: 72px 0 96px;
  background: var(--dark);
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
  filter: saturate(.9) contrast(1.05);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,9,7,.92) 0%, rgba(10,9,7,.74) 42%, rgba(10,9,7,.38) 100%),
    linear-gradient(180deg, rgba(10,9,7,.35) 0%, transparent 30%, transparent 70%, rgba(10,9,7,.7) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 16ch;
  margin-bottom: 26px;
}
.hero-sub { font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: rgba(255,255,255,.82); max-width: 54ch; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 14px 32px; font-size: 14.5px; color: rgba(255,255,255,.75); }
.hero-proof li { display: flex; align-items: center; gap: 10px; }
.hero-proof li::before {
  content: ""; width: 18px; height: 18px; flex: none; border-radius: 50%;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.5 14.5-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.5 14.5-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero-proof strong { color: #fff; }

.hero-card {
  background: rgba(250, 248, 243, .97);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px 30px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gold-grad);
}
.hero-card-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-3); background: rgba(199,154,46,.12); padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}
.hero-card h2 { font-family: var(--ff-display); font-size: 1.9rem; margin-bottom: 6px; }
.hero-card-sub { color: var(--ink-mute); font-size: 14.5px; margin-bottom: 18px; line-height: 1.5; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 20px;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px;
  background: var(--gold-2); animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 14px; }
.form-compact { gap: 11px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label, .field legend { font-size: 13px; font-weight: 700; color: var(--ink-2); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid rgba(18,17,14,.16); border-radius: 10px;
  padding: 12px 14px; transition: border-color .2s, box-shadow .2s;
}
.form-compact .field input, .form-compact .field select { padding: 10px 12px; }
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(199,154,46,.18);
}
.field.is-invalid input, .field.is-invalid select { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.chips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { margin-bottom: 8px; padding: 0; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block; padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(18,17,14,.16); background: var(--paper); transition: all .2s;
}
.chips input:checked + span { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 12.5px; color: var(--ink-mute); text-align: center; }
.form-note strong { color: var(--gold-3); }
.form-status { font-size: 14px; font-weight: 600; text-align: center; }
.form-status:empty { display: none; }
.form-status.is-ok { color: #1e7a4c; background: rgba(30,122,76,.08); padding: 12px; border-radius: 10px; }
.form-status.is-error { color: #a33224; background: rgba(163,50,36,.08); padding: 12px; border-radius: 10px; }
.form.is-sending button[type="submit"] { opacity: .7; pointer-events: none; }

/* ---------- Statement + marquee ---------- */
.statement { padding: clamp(80px, 10vw, 130px) 0 0; background: var(--bg); }
.statement-inner { text-align: center; display: grid; justify-items: center; }
.statement-inner .kicker::before { display: none; }
.statement-title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.7rem, 3.3vw, 2.8rem); line-height: 1.25; max-width: 30ch; text-wrap: balance;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; width: 100%;
  margin-top: clamp(48px, 6vw, 72px);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.stats li { background: var(--paper); padding: 30px 20px; display: grid; gap: 6px; justify-items: center; }
.stats strong {
  font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats span:not([data-count-to]) { font-size: 14px; color: var(--ink-mute); font-weight: 600; }
.stats a { color: var(--gold-3); }
.g-rating {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 9px 16px 9px 12px; border-radius: 999px; text-decoration: none; font-size: 14px; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  transition: background .3s, border-color .3s;
}
.g-rating:hover { background: rgba(255,255,255,.18); border-color: rgba(226,189,85,.6); }
.g-logo { width: 20px; height: 20px; background: #fff; border-radius: 50%; padding: 2px; }
.g-stars { color: #fbbc05; letter-spacing: 2px; font-size: 15px; }
.quote-area + .quote-area { margin-top: 22px; }
.hours p + p { margin-top: 6px; color: var(--cream); }
.hours .muted { color: var(--cream-mute); font-size: 13px; }
.open-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 10px; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; background: rgba(62,207,122,.14); color: #6fe3a0;
}
.open-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.open-badge.is-closed { background: rgba(244,239,227,.08); color: var(--cream-mute); }
.online.is-closed { background: #9a958a; }
.areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.areas li {
  font-size: 13.5px; font-weight: 600; color: var(--cream);
  padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(226,189,85,.35); background: rgba(226,189,85,.06);
}
.marquee {
  margin-top: clamp(56px, 7vw, 90px);
  border-block: 1px solid var(--line);
  overflow: hidden; padding: 26px 0; background: var(--paper);
}
.marquee-track {
  display: flex; gap: 38px; width: max-content; align-items: center;
  animation: marquee 42s linear infinite;
}
.marquee-track span { font-family: var(--ff-display); font-size: clamp(1.4rem, 2.4vw, 2rem); font-style: italic; color: var(--ink-2); white-space: nowrap; }
.marquee-track i { font-style: normal; color: var(--gold); font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(199,154,46,.45); }
.svc-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out), filter .6s; filter: saturate(.92); }
.svc-card:hover .svc-media img { transform: scale(1.08); filter: saturate(1.08); }
.svc-body { padding: 22px 22px 26px; position: relative; }
.svc-num { font-family: var(--ff-display); font-style: italic; color: var(--gold); font-size: 15px; display: block; margin-bottom: 6px; }
.svc-body h3 { font-family: var(--ff-display); font-size: 1.4rem; margin-bottom: 10px; }
.svc-body p { color: var(--ink-mute); font-size: 15px; line-height: 1.6; }

.inline-cta {
  margin-top: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 28px 34px; border-radius: var(--radius-lg); background: var(--bg-2); border: 1px solid var(--line);
}
.inline-cta p { font-family: var(--ff-display); font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ---------- Managers (video split) ---------- */
.managers {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--dark); color: var(--cream);
  min-height: 720px;
}
.managers-media { position: relative; overflow: hidden; }
.managers-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.managers-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(14,13,11,.85) 100%);
}
.managers-copy { padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 96px); align-self: center; }
.managers-copy .section-title { margin-bottom: 34px; }
.check-list { display: grid; gap: 18px; margin-bottom: 40px; }
.check-list li { position: relative; padding-left: 40px; color: var(--cream-mute); }
.check-list li strong { color: var(--cream); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(226,189,85,.5);
  background: radial-gradient(circle, var(--gold-2) 0 4px, transparent 5px);
}
.managers-ctas { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }

/* ---------- Industries ---------- */
.industries { background: var(--bg-2); }
.ind-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 290px; gap: 18px;
}
.ind-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); text-decoration: none; color: #fff;
  isolation: isolate; background: var(--dark);
}
.ind-lg { grid-column: span 2; grid-row: span 2; }
.ind-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease-out); }
.ind-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,7,.05) 20%, rgba(10,9,7,.85) 100%);
  transition: background .5s;
}
.ind-card:hover img { transform: scale(1.07); }
.ind-card:hover::before { background: linear-gradient(180deg, rgba(10,9,7,.2) 0%, rgba(10,9,7,.92) 100%); }
.ind-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; }
.ind-body h3 { font-family: var(--ff-display); font-size: 1.45rem; margin-bottom: 6px; }
.ind-lg .ind-body h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.ind-body p { color: rgba(255,255,255,.8); font-size: 14.5px; line-height: 1.5; }
.ind-body::after {
  content: "Get a quote →"; display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--gold-2);
  opacity: 0; transform: translateY(8px); transition: all .45s var(--ease-out);
}
.ind-card:hover .ind-body::after, .ind-card:focus-visible .ind-body::after { opacity: 1; transform: none; }

/* ---------- Standard ---------- */
.standard { background: var(--dark); color: var(--cream); position: relative; }
.standard::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 10% 0%, rgba(199,154,46,.16), transparent 70%);
}
.standard-inner { display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(40px, 6vw, 96px); position: relative; }
.standard-intro { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.standard-intro .section-title { margin-bottom: 22px; }
.standard-intro .section-lede { margin-bottom: 32px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; }
.pillar { background: var(--dark-2); padding: 34px 30px; transition: background .4s; }
.pillar:hover { background: var(--dark-3); }
.pillar-num { font-family: var(--ff-display); font-style: italic; font-size: 2.2rem; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 18px; }
.pillar h3 { font-family: var(--ff-display); font-size: 1.35rem; margin-bottom: 10px; color: var(--cream); }
.pillar p { color: var(--cream-mute); font-size: 15px; }

/* ---------- Process ---------- */
.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; counter-reset: s; }
.steps::before {
  content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px); opacity: .6;
}
.step { text-align: center; padding: 0 10px; position: relative; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px;
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-2);
  background: var(--ink); box-shadow: 0 0 0 8px var(--bg), 0 14px 30px -10px rgba(0,0,0,.4);
  position: relative;
}
.step h3 { font-family: var(--ff-display); font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--ink-mute); font-size: 15px; }

/* ---------- Offer ---------- */
.offer { position: relative; isolation: isolate; color: #fff; padding: clamp(80px, 10vw, 130px) 0; overflow: hidden; background: var(--dark); }
.offer-media { position: absolute; inset: 0; z-index: -1; }
.offer-media video { width: 100%; height: 100%; object-fit: cover; }
.offer-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,9,7,.94) 0%, rgba(10,9,7,.8) 50%, rgba(10,9,7,.55) 100%); }
.offer-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.offer-pct {
  font-family: var(--ff-display); font-weight: 700; line-height: .85;
  font-size: clamp(7rem, 17vw, 15rem);
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
}
.offer-copy .section-title { margin-bottom: 18px; }
.offer-copy > p:not(.kicker) { color: rgba(255,255,255,.8); max-width: 48ch; margin-bottom: 30px; }
.offer-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: .9fr 1.3fr; gap: clamp(40px, 6vw, 90px); }
.faq-intro .section-title { margin-bottom: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--ff-display); font-size: 1.28rem; font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; margin-top: -7px;
  background:
    linear-gradient(var(--gold), var(--gold)) center/14px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/2px 14px no-repeat;
  transition: transform .35s var(--ease-out);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 40px 26px 0; color: var(--ink-mute); }

/* ---------- Quote ---------- */
.quote { background: var(--dark); color: var(--cream); position: relative; }
.quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 50% at 90% 10%, rgba(199,154,46,.18), transparent 70%);
}
.quote-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; position: relative; }
.quote-copy .section-title { margin-bottom: 20px; }
.quote-copy .section-lede { margin-bottom: 36px; }
.channels { display: grid; gap: 14px; margin-bottom: 30px; }
.channel {
  display: flex; align-items: center; gap: 18px; text-decoration: none;
  padding: 18px 22px; border-radius: var(--radius); border: 1px solid var(--line-light);
  background: rgba(255,255,255,.03); transition: border-color .3s, background .3s, transform .4s var(--ease-out);
}
.channel:hover { border-color: rgba(226,189,85,.6); background: rgba(226,189,85,.06); transform: translateX(6px); }
.channel-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-grad); flex: none; }
.channel-ico svg { width: 22px; height: 22px; fill: #17130a; }
.channel small { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-mute); }
.channel strong { font-size: 1.12rem; color: var(--cream); }
.quote-area { color: var(--cream-mute); font-size: 15px; }
.quote-area strong { color: var(--cream); }
.quote-card {
  background: var(--bg); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-lg); position: relative;
}
.quote-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: var(--gold-grad); }
.quote-card h3 { font-family: var(--ff-display); font-size: 1.9rem; margin-bottom: 6px; }
.quote-card-sub { color: var(--ink-mute); margin-bottom: 24px; font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: #0a0907; color: var(--cream-mute); padding: 80px 0 28px; border-top: 1px solid rgba(226,189,85,.2); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-light); }
.footer-brand img { width: 230px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 36ch; font-size: 15px; }
.footer-col { display: grid; gap: 10px; align-content: start; font-size: 15px; }
.footer-col h4 { color: var(--gold-2); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--cream); }
.footer-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }

/* ---------- Chat ---------- */
.chat { position: fixed; right: 22px; bottom: 22px; z-index: 80; font-size: 15px; }
.chat-launcher {
  width: 62px; height: 62px; border-radius: 50%; border: 0; position: relative;
  background: var(--gold-grad); color: #17130a;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.55), 0 0 0 0 rgba(226,189,85,.5);
  display: grid; place-items: center;
  animation: ring 3.2s 4s infinite;
  transition: transform .3s var(--ease-out);
}
.chat-launcher:hover { transform: scale(1.06); }
@keyframes ring { 0% { box-shadow: 0 16px 40px -10px rgba(0,0,0,.55), 0 0 0 0 rgba(226,189,85,.55); } 60%,100% { box-shadow: 0 16px 40px -10px rgba(0,0,0,.55), 0 0 0 18px rgba(226,189,85,0); } }
.chat-launcher svg { width: 26px; height: 26px; fill: currentColor; grid-area: 1 / 1; transition: opacity .25s, transform .3s; }
.chat-launcher .ico-close { opacity: 0; transform: rotate(-90deg); }
.chat.is-open .chat-launcher .ico-open { opacity: 0; transform: rotate(90deg); }
.chat.is-open .chat-launcher .ico-close { opacity: 1; transform: none; }
.chat.is-open .chat-launcher { animation: none; }
.chat-badge {
  position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; border-radius: 10px;
  background: #d93a2b; color: #fff; font-size: 12px; font-weight: 800; display: grid; place-items: center; padding: 0 5px;
  border: 2px solid #fff;
}
.chat-badge[hidden] { display: none; }
.chat-teaser {
  position: absolute; right: 0; bottom: 78px; width: 280px;
  background: var(--paper); color: var(--ink); border-radius: 16px 16px 4px 16px; padding: 16px 34px 16px 18px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.45); border: 1px solid var(--line);
  font-size: 14px; line-height: 1.5; cursor: pointer;
  animation: teaserIn .5s var(--ease-out);
}
.chat-teaser[hidden] { display: none; }
@keyframes teaserIn { from { opacity: 0; transform: translateY(10px) scale(.96); } }
.chat-teaser-close { position: absolute; top: 6px; right: 8px; border: 0; background: none; font-size: 20px; color: var(--ink-mute); line-height: 1; }
.chat-panel {
  position: absolute; right: 0; bottom: 78px;
  width: min(390px, calc(100vw - 32px)); height: min(600px, calc(100vh - 140px)); height: min(600px, calc(100dvh - 140px));
  background: var(--bg); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.55); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform-origin: bottom right; animation: panelIn .4s var(--ease-out);
}
.chat-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px) scale(.96); } }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--dark); color: var(--cream); }
.chat-head img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(226,189,85,.5); }
.chat-head strong { display: block; font-size: 15px; }
.chat-head span { font-size: 12.5px; color: var(--cream-mute); display: flex; align-items: center; gap: 6px; }
.online { width: 8px; height: 8px; border-radius: 50%; background: #3ecf7a; display: inline-block; }
.chat-x { margin-left: auto; border: 0; background: none; color: var(--cream); font-size: 26px; line-height: 1; padding: 4px 8px; }
.chat-log { flex: 1; overflow-y: auto; padding: 18px 16px 8px; display: flex; flex-direction: column; gap: 10px; overscroll-behavior: contain; }
.msg { max-width: 86%; padding: 11px 14px; border-radius: 16px; line-height: 1.5; font-size: 14.5px; animation: msgIn .35s var(--ease-out); white-space: pre-line; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } }
.msg-bot { background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg-user { background: var(--ink); color: var(--cream); border-bottom-right-radius: 4px; align-self: flex-end; }
.msg a { color: var(--gold-3); font-weight: 700; }
.msg-typing { display: inline-flex; gap: 4px; }
.msg-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); animation: typing 1s infinite; }
.msg-typing i:nth-child(2) { animation-delay: .15s; }
.msg-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { opacity: .3; transform: none; } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 16px 12px; }
.chat-quick:empty { display: none; }
.chat-quick button, .chat-quick a {
  border: 1px solid rgba(199,154,46,.55); background: var(--paper); color: var(--ink);
  padding: 8px 13px; border-radius: 999px; font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: background .2s, color .2s;
}
.chat-quick button:hover, .chat-quick a:hover { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.chat-quick .is-primary { background: var(--gold-grad); border-color: transparent; color: #17130a; }
.chat-input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: var(--paper); }
.chat-input input { flex: 1; min-width: 0; border: 1px solid rgba(18,17,14,.14); border-radius: 999px; padding: 10px 16px; font: inherit; font-size: 14.5px; }
.chat-input input:focus { outline: none; border-color: var(--gold); }
.chat-input button { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--ink); display: grid; place-items: center; flex: none; }
.chat-input button svg { width: 18px; height: 18px; fill: var(--gold-2); }
.chat-direct { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); background: var(--bg-2); }
.chat-direct a { text-align: center; padding: 10px 0; font-size: 13px; font-weight: 700; text-decoration: none; color: var(--ink-2); }
.chat-direct a + a { border-left: 1px solid var(--line); }
.chat-direct a:hover { color: var(--gold-3); }

/* ---------- Reveal (IntersectionObserver) ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-links { gap: 22px; }
  .nav-phone span { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { flex-direction: row; }
  .svc-media { aspect-ratio: auto; width: 42%; flex: none; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
}

@media (max-width: 980px) {
  :root { --nav-h: 72px; }
  .nav-logo img { height: 48px; }
  .nav-links, .nav-actions .btn, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-actions { margin-left: auto; }
  .nav-drawer {
    display: grid; gap: 4px; padding: 0 20px; max-height: 0; overflow: hidden;
    transition: max-height .45s var(--ease-out), padding .45s var(--ease-out);
    background: var(--bg);
  }
  .nav-drawer.is-open { max-height: 640px; padding: 12px 20px 26px; border-top: 1px solid var(--line); }
  .nav-drawer > a:not(.btn) { padding: 12px 0; font-family: var(--ff-display); font-size: 1.4rem; text-decoration: none; border-bottom: 1px solid var(--line); }
  .nav-drawer .btn { margin-top: 16px; }
  .drawer-contact { display: grid; gap: 8px; margin-top: 16px; font-weight: 600; }
  .drawer-contact a { text-decoration: none; color: var(--gold-3); }

  .hero { padding: 56px 0 72px; min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .managers { grid-template-columns: 1fr; }
  .managers-media { min-height: 340px; }
  .managers-media::after { background: linear-gradient(180deg, transparent 50%, rgba(14,13,11,.9) 100%); }
  .standard-inner, .faq-inner, .quote-inner { grid-template-columns: 1fr; }
  .standard-intro { position: static; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .steps::before { display: none; }
  .offer-inner { grid-template-columns: 1fr; gap: 10px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }

  body { padding-bottom: 68px; }
  .action-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(14,13,11,.97); border-top: 1px solid rgba(226,189,85,.3);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    gap: 6px;
  }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    color: var(--cream); text-decoration: none; font-size: 12px; font-weight: 700; padding: 6px 4px; border-radius: 10px;
  }
  .action-bar svg { width: 20px; height: 20px; fill: var(--gold-2); }
  .action-bar a.is-primary { background: var(--gold-grad); color: #17130a; font-size: 14px; }
  .chat { bottom: 86px; right: 16px; }
  .chat-launcher { width: 56px; height: 56px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .offer-bar { font-size: 13px; }
  .hero-title { font-size: clamp(2.3rem, 10vw, 3rem); }
  .hero-ctas .btn { width: 100%; }
  .hero-proof { flex-direction: column; gap: 10px; }
  .hero-card { padding: 24px 20px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { flex-direction: column; }
  .svc-media { width: 100%; aspect-ratio: 16 / 10; }
  .ind-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .ind-lg { grid-column: auto; grid-row: auto; }
  .ind-body::after { opacity: 1; transform: none; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .inline-cta { padding: 24px; }
  .inline-cta .btn { width: 100%; }
  .offer-ctas .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .chat-teaser { width: min(270px, calc(100vw - 100px)); }
  .chat-panel { position: fixed; right: 8px; left: 8px; bottom: 150px; width: auto; height: min(560px, calc(100dvh - 170px)); }
}

/* Only truly intrusive motion is gated (Windows ships reduced-motion ON). */
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; transform: none; }
  .chat-launcher { animation: none; }
}
