/* ============ design tokens ============ */
:root {
  --porcelain: #F4F9FB;
  --mist: #E9F0F5;
  --teal-deep: #123C4E;
  --teal-btn: #1E6E7E;
  --teal-bright: #2AA3B8;
  --ink: #0E2A36;
  --gold: #C9A227;
  --white: #ffffff;
  --shadow: 0 24px 60px -24px rgba(14, 42, 54, 0.22);
  --radius: 20px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ============ shared ============ */
.accent { color: var(--teal-bright); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-btn);
  margin-bottom: 1rem;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
}
.section { padding: 6rem clamp(1.25rem, 5vw, 4rem); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.align-left { margin: 0 0 2rem; text-align: left; }
.section-sub { color: rgba(14, 42, 54, 0.72); margin-top: 0.6rem; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; color: var(--teal-deep); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-primary { background: var(--teal-btn); color: var(--white); box-shadow: 0 14px 30px -12px rgba(30, 110, 126, 0.55); }
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-2px); }
.btn-ghost { border-color: var(--teal-bright); color: var(--teal-btn); background: transparent; }
.btn-ghost:hover { background: var(--teal-bright); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============ top bar ============ */
.topbar { background: var(--teal-deep); color: rgba(244, 249, 251, 0.92); font-size: 0.82rem; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0.55rem 1.25rem; display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar-wa { margin-left: auto; font-weight: 600; color: #fff; }

/* ============ nav ============ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(244, 249, 251, 0.86); backdrop-filter: blur(12px); transition: box-shadow 0.3s var(--ease); }
.nav.scrolled { box-shadow: 0 8px 30px -18px rgba(14, 42, 54, 0.35); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: #fff; font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; letter-spacing: 0.03em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--teal-deep); }
.brand-sub { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(14, 42, 54, 0.6); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a:not(.nav-cta) { font-size: 0.92rem; font-weight: 500; color: var(--teal-deep); position: relative; padding: 0.25rem 0; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--teal-bright); transition: width 0.3s var(--ease); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--teal-btn); color: #fff; padding: 0.6rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem; transition: background 0.3s var(--ease); }
.nav-cta:hover { background: var(--teal-bright); }
.hamburger { display: none; background: none; border: 0; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal-deep); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ hero ============ */
.hero { position: relative; height: 300vh; overflow: clip; }
.hero-sticky { position: sticky; top: 0; min-height: 100vh; display: grid; place-items: center; overflow: hidden; }
.hero-video, .hero-fallback, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-fallback {
  display: none;
  background: radial-gradient(120% 90% at 75% 20%, #2AA3B8 0%, #123C4E 55%, #0E2A36 100%);
}
.hero-overlay { background: linear-gradient(100deg, rgba(10, 32, 44, 0.88) 0%, rgba(10, 32, 44, 0.5) 45%, rgba(10, 32, 44, 0.12) 75%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 7rem 1.25rem 5rem; color: var(--porcelain); }
.hero-text { transition: opacity 0.05s linear, transform 0.05s linear; }
.hero .eyebrow { color: #9FD6E0; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-sub { max-width: 560px; font-size: 1.08rem; color: rgba(244, 249, 251, 0.86); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero .btn-primary { background: var(--gold); color: var(--teal-deep); box-shadow: 0 16px 34px -12px rgba(201, 162, 39, 0.6); }
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-2px); }
.hero-rating { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22); padding: 0.55rem 1rem; border-radius: 999px; font-size: 0.9rem; backdrop-filter: blur(6px); }
.hero-rating .stars { color: var(--gold); letter-spacing: 0.1em; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--gold); z-index: 3; width: 0%; transition: width 0.05s linear; }
.scroll-cue { position: absolute; z-index: 2; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.6); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============ stats ============ */
.stats { background: var(--teal-deep); color: var(--porcelain); padding: 2.6rem 1.25rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.9rem); color: #fff; }
.stat strong::after { content: attr(data-suffix); color: var(--gold); margin-left: 0.2em; font-size: 0.7em; vertical-align: middle; }
.stat span { display: block; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; color: #9FD6E0; margin-top: 0.3rem; }

/* ============ services ============ */
.services { background: var(--mist); }
.services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 2.1rem 1.9rem;
  border: 1px solid rgba(14, 42, 54, 0.07); box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--teal-bright), var(--gold)); transition: transform 0.4s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 34px 70px -30px rgba(14, 42, 54, 0.35); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.6rem; color: var(--teal-bright); display: block; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.94rem; color: rgba(14, 42, 54, 0.75); margin-bottom: 1.1rem; }
.service-link { font-size: 0.9rem; font-weight: 600; color: var(--teal-btn); }

/* ============ about ============ */
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.about-media.media-missing img { display: none; }
.about-media.media-missing { min-height: 320px; border-radius: var(--radius); background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep)); }
.about-badge { position: absolute; right: -14px; bottom: 22px; background: #fff; border-radius: 14px; padding: 1rem 1.3rem; box-shadow: var(--shadow); text-align: center; border: 1px solid rgba(14, 42, 54, 0.06); }
.about-badge strong { display: block; font-family: var(--font-display); color: var(--teal-deep); font-size: 1.4rem; }
.about-badge span { font-size: 0.78rem; color: rgba(14, 42, 54, 0.65); }
.about-copy .section-head h2 { margin-bottom: 0.4rem; }
.about-list { margin: 1.5rem 0 2rem; display: grid; gap: 0.9rem; }
.about-list li { padding-left: 1.6rem; position: relative; color: rgba(14, 42, 54, 0.82); }
.about-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--teal-bright); font-weight: 700; }
.about-list strong { color: var(--teal-deep); }

/* ============ reviews ============ */
.reviews-summary { max-width: 1200px; margin: 0 auto 2.2rem; display: flex; align-items: center; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.reviews-summary .summary-score { font-family: var(--font-display); font-size: 2.6rem; color: var(--teal-deep); }
.reviews-summary .summary-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1.1rem; }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.7rem; border: 1px solid rgba(14, 42, 54, 0.07); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.85rem; }
.review-top { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.review-who strong { display: block; color: var(--teal-deep); font-size: 0.98rem; }
.review-who span { font-size: 0.8rem; color: rgba(14, 42, 54, 0.55); }
.review-stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.95rem; }
.review-text { font-size: 0.94rem; color: rgba(14, 42, 54, 0.82); }
.review-google { margin-top: auto; font-size: 0.8rem; color: rgba(14, 42, 54, 0.5); display: inline-flex; align-items: center; gap: 0.35rem; }
.review-google svg { width: 13px; height: 13px; }

/* ============ booking ============ */
.booking { background: linear-gradient(135deg, var(--teal-deep) 0%, #0E2A36 100%); color: var(--porcelain); }
.booking-card { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.booking .eyebrow { color: #9FD6E0; }
.booking h2 { color: #fff; margin-bottom: 1.1rem; }
.booking-copy > p { color: rgba(244, 249, 251, 0.82); margin-bottom: 1.6rem; }
.booking-steps { display: grid; gap: 0.8rem; }
.booking-steps li { display: flex; gap: 0.7rem; align-items: center; color: rgba(244, 249, 251, 0.9); }
.booking-steps li::before { content: "\2713"; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: var(--teal-deep); font-weight: 700; display: grid; place-items: center; font-size: 0.8rem; flex: none; }
.booking-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); display: grid; gap: 1.15rem; }
.booking-form .btn-primary { background: var(--gold); color: var(--teal-deep); }
.booking-form .btn-primary:hover { background: #D4AF37; }
.form-alt { font-size: 0.84rem; color: rgba(14, 42, 54, 0.7); text-align: center; }
.link-btn { background: none; border: 0; color: var(--teal-bright); font-weight: 600; text-decoration: underline; }

/* ============ forms (shared) ============ */
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.05rem 1rem 0.55rem; border: 1px solid rgba(14, 42, 54, 0.18);
  border-radius: 12px; background: var(--porcelain); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 60px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-bright); box-shadow: 0 0 0 3px rgba(42, 163, 184, 0.18); }
.field label { position: absolute; left: 1rem; top: 0.95rem; color: rgba(14, 42, 54, 0.5); transition: all 0.25s var(--ease); pointer-events: none; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label
{ top: 0.32rem; font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-btn); }
.field select + label { top: 0.32rem; font-size: 0.7rem; text-transform: uppercase; color: var(--teal-btn); }
.field select:required:invalid { color: rgba(14, 42, 54, 0.5); }
.field select:required:invalid option { color: var(--ink); }
.field.error input, .field.error select { border-color: #C0392B; }
.field-error { display: none; color: #C0392B; font-size: 0.78rem; margin-top: 0.35rem; }
.field.error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row .field input[type="date"], .field-row .field input[type="time"] { padding: 1.05rem 0.8rem 0.55rem; }
.form-note { font-size: 0.84rem; color: rgba(14, 42, 54, 0.65); text-align: center; }
.form-note a { color: var(--teal-bright); font-weight: 600; }

/* ============ contact ============ */
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-cards { display: grid; gap: 1.2rem; align-content: start; }
.contact-card { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border-radius: 16px; padding: 1.4rem 1.5rem; border: 1px solid rgba(14, 42, 54, 0.07); box-shadow: 0 14px 36px -24px rgba(14, 42, 54, 0.25); transition: transform 0.3s var(--ease); }
a.contact-card:hover { transform: translateY(-4px); }
.contact-icon { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--mist); color: var(--teal-btn); display: grid; place-items: center; font-size: 1.15rem; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 0.15rem; }
.contact-card p { font-size: 0.92rem; color: rgba(14, 42, 54, 0.72); }
.contact-link { font-size: 0.85rem; font-weight: 600; color: var(--teal-bright); }
.contact-form { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(14, 42, 54, 0.07); box-shadow: var(--shadow); display: grid; gap: 1.1rem; align-content: start; }
.contact-form h3 { margin-bottom: 0.2rem; }

/* ============ macro banner ============ */
.macro-banner { padding: 0; }
.macro-img-container { position: relative; height: 50vh; min-height: 350px; overflow: hidden; }
.macro-img { width: 100%; height: 100%; object-fit: cover; }
.macro-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 32, 44, 0.88) 0%, rgba(10, 32, 44, 0.5) 45%, rgba(10, 32, 44, 0.12) 75%); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 2rem; color: var(--porcelain); }
.macro-eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.macro-overlay h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #fff; margin-bottom: 0.5rem; }
.macro-overlay .section-sub { color: rgba(244, 249, 251, 0.86); max-width: 500px; }

/* ============ technology video section ============ */
.tech { padding: 0; }
.tech-video-container { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.tech-video { width: 100%; height: 100%; object-fit: cover; }
.tech-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 32, 44, 0.88) 0%, rgba(10, 32, 44, 0.5) 45%, rgba(10, 32, 44, 0.12) 75%); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 2rem; color: var(--porcelain); }
.tech-eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 600; color: var(--teal-bright); margin-bottom: 1rem; }
.tech-overlay h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #fff; margin-bottom: 0.5rem; }
.tech-overlay .section-sub { color: rgba(244, 249, 251, 0.86); max-width: 500px; }

/* ============ footer ============ */
.footer { background: #0A232E; color: rgba(244, 249, 251, 0.8); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 1.25rem 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: #9FD6E0; }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; color: rgba(244, 249, 251, 0.7); max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(244, 249, 251, 0.12); text-align: center; padding: 1.4rem 1.25rem; font-size: 0.82rem; color: rgba(244, 249, 251, 0.55); }

/* ============ whatsapp float ============ */
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.6); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.6); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }

/* ============ reveal ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid, .booking-card, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .about-badge { right: 12px; }
}
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: var(--nav-h); right: -100%; width: min(320px, 80vw); height: calc(100vh - var(--nav-h)); background: #fff; flex-direction: column; align-items: flex-start; padding: 2rem 1.75rem; gap: 1.4rem; box-shadow: -18px 0 40px -24px rgba(14, 42, 54, 0.3); transition: right 0.4s var(--ease); }
  .nav-links.open { right: 0; }
  .nav-links a:not(.nav-cta) { font-size: 1.05rem; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .topbar-hide-sm { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding-top: 5rem; }
  .hero-actions .btn { width: 100%; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; opacity: 1; }
  .wa-float::after { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
