/* ============================================================
   LAWN BUSTERS — Lawn Care Services
   Design system + components. Hand-written, no build step.
   ============================================================ */

@import url("../assets/fonts/fonts.local.css");

/* ---------- Design tokens ---------- */
:root {
  /* Greens — grass & garden (fresh, professional) */
  --forest-950: #123524;
  --forest-900: #194430;
  --pine-800:   #21583c;
  --grass-700:  #2a7349;
  --grass-600:  #36925c;
  --leaf-500:   #4bab6e;
  --lime-400:   #8ccf4c;
  --lime-300:   #aedd7a;

  /* Neutrals — soil & cream */
  --cream:      #f4f8ee;
  --cream-2:    #e8f0db;
  --card:       #ffffff;
  --ink:        #15271c;
  --muted:      #566a5d;
  --line:       #dde6d0;
  --white:      #ffffff;

  /* Roles */
  --bg: var(--cream);
  --cta: var(--lime-400);
  --cta-ink: #0c2a17;

  /* Type */
  --display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-scale */
  --z-nav: 50;
  --z-overlay: 40;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
h1.display { font-size: clamp(2.8rem, 8vw, 6.2rem); }
h2.display { font-size: clamp(2.1rem, 5vw, 3.8rem); }
.eyebrow {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grass-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--lime-400);
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 56ch; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; position: relative; }
.center { text-align: center; margin-inline: auto; }
.center .lead { margin-inline: auto; }
.text-lime { color: var(--lime-400); }
.text-grass { color: var(--grass-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 600; font-size: 1rem; line-height: 1.2;
  padding: 0.95rem 1.6rem; min-height: 52px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-cta {
  background: var(--cta); color: var(--cta-ink);
  box-shadow: 0 10px 24px -10px rgba(140, 207, 76, 0.7);
}
.btn-cta:hover { box-shadow: 0 16px 34px -10px rgba(140, 207, 76, 0.85); transform: translateY(-2px); }
.btn-dark { background: var(--forest-900); color: var(--white); }
.btn-dark:hover { background: var(--pine-800); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid currentColor; color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-outline { border: 1.5px solid var(--line); color: var(--ink); background: var(--card); }
.btn-outline:hover { border-color: var(--grass-600); color: var(--grass-700); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 24px -10px rgba(37,211,102,0.7); }
.btn-whatsapp:hover { background: #1fb457; transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(37,211,102,0.85); }
.btn-whatsapp svg { width: 1.35em; height: 1.35em; }

/* "or" divider inside the quote form card */
.form-divider { display: flex; align-items: center; gap: 0.8rem; margin: 1.2rem 0; color: var(--muted); font-size: 0.82rem; }
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* magnetic wrapper */
.magnetic { display: inline-flex; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 1rem 1rem auto 1rem;
  z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.7rem 0.6rem 1.4rem;
  max-width: var(--container);
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(12, 42, 23, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(12, 42, 23, 0.92);
  box-shadow: 0 14px 40px -18px rgba(0,0,0,0.6);
}
.nav-logo { height: 38px; width: auto; color: var(--white); display: flex; align-items: center; }
.nav-logo svg, .nav-logo img { height: 100%; width: auto; }
/* logo image sizing (custom PNG/SVG logo) */
[data-logo] img { display: block; }
.hero-logo img { width: 100%; height: auto; }
.footer-logo img { height: 100%; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--white); border-radius: 50%; }
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile CTA inside the dropdown menu (hidden on desktop) */
.nav-menu-cta { display: none; }

@media (max-width: 880px) {
  .nav { padding-left: 1.2rem; }
  .nav-logo { height: 46px; }
  .nav-links {
    position: absolute; top: calc(100% + 0.6rem); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: rgba(12, 42, 23, 0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px; padding: 0.7rem;
    backdrop-filter: blur(14px);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1rem; }
  .nav-menu-cta {
    display: block; text-align: center; margin-top: 0.4rem;
    background: var(--cta); color: var(--cta-ink) !important;
    font-weight: 700; border-radius: 999px;
  }
  .nav-menu-cta:hover { background: var(--lime-300); }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-cta { display: none; }
}

/* ============================================================
   HERO — full-bleed photo background, centered content
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-900);
  color: var(--white);
  overflow: hidden;
  padding-block: 7.5rem 6.5rem;
  text-align: center;
}
/* background photo (overscanned for parallax) */
.hero-media {
  position: absolute; inset: -8%; z-index: 0;
  background-image: url("../assets/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
/* dark green overlay for legibility */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(18,53,36,0.55) 0%, rgba(15,42,28,0.45) 40%, rgba(12,34,22,0.85) 100%),
    radial-gradient(120% 90% at 50% 40%, transparent 30%, rgba(12,34,22,0.6) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 820px; margin-inline: auto; }
.hero-logo { width: min(360px, 72%); margin: 0 auto 1.6rem; color: var(--white); }
.hero-logo img, .hero-logo svg { width: 100%; height: auto; }
.hero .eyebrow { color: var(--lime-300); justify-content: center; }
.hero .eyebrow::before { display: none; }
.hero h1 { margin: 1.1rem 0 1.4rem; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 56ch; margin-inline: auto; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; justify-content: center; align-items: center; }
.hero-trust { display: inline-flex; align-items: center; gap: 0.9rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; color: rgba(255,255,255,0.88); font-size: 0.92rem; background: rgba(8,24,16,0.4); border: 1px solid rgba(255,255,255,0.14); padding: 0.6rem 1.1rem; border-radius: 999px; backdrop-filter: blur(4px); }
.hero-trust .stars { color: var(--lime-400); letter-spacing: 2px; }

.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; background: var(--lime-400); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }
/* hide scroll cue when the hero is short, so it never overlaps the content */
@media (max-height: 860px) { .scroll-cue { display: none; } }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--forest-900); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--lime-400); line-height: 1; }
.stat .label { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 0.5rem; letter-spacing: 0.03em; }
@media (max-width: 680px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; } }

/* ============================================================
   SERVICES
   ============================================================ */
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.svc-card::after {
  content: ""; position: absolute; inset: auto -40% -60% auto; width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(140,207,76,0.18), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(12,42,23,0.45); border-color: transparent; }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--grass-600), var(--pine-800));
  color: var(--lime-300); display: grid; place-items: center; margin-bottom: 1.4rem;
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; }
.svc-card p { color: var(--muted); font-size: 0.98rem; }
.svc-card .price { margin-top: 1.2rem; font-weight: 600; color: var(--grass-700); font-size: 0.95rem; }
.svc-card .price b { font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   PROCESS (pinned horizontal)
   ============================================================ */
.process { background: var(--forest-900); color: var(--white); overflow: hidden; }
.process .section-head { color: var(--white); }
.process .lead { color: rgba(255,255,255,0.7); }
.process-track { display: flex; gap: 1.6rem; }
.step-card {
  flex: 0 0 min(80vw, 420px);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.4rem;
  position: relative;
}
.step-card .step-n { font-family: var(--display); font-size: 4rem; color: rgba(140,207,76,0.25); line-height: 1; }
.step-card h3 { font-size: 1.5rem; margin: 0.4rem 0 0.8rem; }
.step-card p { color: rgba(255,255,255,0.72); }
.process-hint { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }

/* On mobile there is no horizontal pin — stack the steps so all 3 show */
@media (max-width: 720px) {
  .process-track { flex-direction: column; }
  .step-card { flex: 1 1 auto; width: 100%; }
  .process-hint { display: none; }
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16 / 9; user-select: none; cursor: ew-resize;
  border: 1px solid var(--line); box-shadow: 0 30px 60px -36px rgba(12,42,23,0.5);
}
.ba-layer { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; width: 50%; border-right: 3px solid var(--lime-400); }
.ba-tag { position: absolute; bottom: 1rem; z-index: 3; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(12,42,23,0.8); color: #fff; padding: 0.4rem 0.8rem; border-radius: 999px; }
.ba-tag.b { left: 1rem; } .ba-tag.a { right: 1rem; background: var(--lime-400); color: var(--forest-900); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 44px; transform: translateX(-50%); display: grid; place-items: center; pointer-events: none; }
.ba-handle .grip { width: 44px; height: 44px; border-radius: 50%; background: var(--lime-400); color: var(--forest-900); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.ba-handle .grip svg { width: 22px; height: 22px; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.why { background: var(--cream-2, #eaf0dc); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feat {
  background: var(--card); border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--line); display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -24px rgba(12,42,23,0.4); }
.feat .fi { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--forest-900); color: var(--lime-400); display: grid; place-items: center; }
.feat .fi svg { width: 22px; height: 22px; }
.feat h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.25rem; }
.feat p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; position: relative;
}
.quote .stars { color: var(--lime-400); letter-spacing: 2px; margin-bottom: 0.8rem; }
.quote p { font-size: 1.02rem; }
.quote .who { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.8rem; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--grass-600), var(--pine-800)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote .who b { display: block; font-size: 0.95rem; }
.quote .who span { color: var(--muted); font-size: 0.82rem; }
@media (max-width: 860px) { .quotes-grid { grid-template-columns: 1fr; } }

/* ============================================================
   QUOTE / CTA + FORM
   ============================================================ */
.cta-final { background: radial-gradient(120% 120% at 20% 0%, var(--pine-800), var(--forest-900) 55%, var(--forest-950)); color: #fff; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cta-final h2 { margin-bottom: 1.2rem; }
.cta-final .lead { color: rgba(255,255,255,0.78); }
.cta-list { margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.cta-list li { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.9); }
.cta-list svg { width: 22px; height: 22px; color: var(--lime-400); flex: 0 0 auto; }
.form-card { background: var(--card); color: var(--ink); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6); }
.form-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.form-card .fc-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 0.95rem; background: #fbfdf6; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--grass-600); box-shadow: 0 0 0 4px rgba(42,139,78,0.12); }
.field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card .btn-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; }
.form-success { display: none; text-align: center; padding: 1.5rem 0; }
.form-success svg { width: 54px; height: 54px; color: var(--grass-600); margin: 0 auto 0.8rem; }
.form-card.sent .form-body { display: none; }
.form-card.sent .form-success { display: block; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   AREAS WE COVER
   ============================================================ */
.areas { background: var(--cream-2); }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; max-width: 760px; margin: 0 auto; }
.area-tags li {
  background: var(--card); border: 1px solid var(--line);
  color: var(--grass-700); font-weight: 600; font-size: 0.92rem;
  padding: 0.5rem 1.05rem; border-radius: 999px;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, color 0.2s ease;
}
.area-tags li:hover { transform: translateY(-2px); border-color: var(--grass-600); color: var(--grass-600); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-950); color: rgba(255,255,255,0.7); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { height: 38px; color: #fff; margin-bottom: 1.2rem; }
.footer-logo svg { height: 100%; width: auto; }
.footer p { font-size: 0.92rem; max-width: 32ch; }
.footer h5 { color: #fff; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { display: grid; gap: 0.6rem; }
.footer a { font-size: 0.93rem; transition: color 0.2s ease; }
.footer a:hover { color: var(--lime-400); }
.footer .socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer .socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background 0.2s ease, transform 0.2s ease; }
.footer .socials a:hover { background: var(--lime-400); color: var(--forest-900); transform: translateY(-3px); }
.footer .socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.85rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL (base states; JS adds .in)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* logo draw-on */
.lb-logo .stroke-anim { stroke-dasharray: 1; stroke-dashoffset: 1; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .ring, .scroll-cue .mouse::after { animation: none !important; }
}
