/* =============================================================
   1. Tokens — Desert Resort Living brand palette
   ============================================================= */
:root {
  --bg:        #0D0D0D;   /* Negro */
  --bg-2:      #171717;   /* section alternation */
  --paper:     #1E1E1E;   /* Gris Oscuro — card surfaces */
  --ink:       #F2E6C9;   /* Arena — main text on dark */
  --ink-soft:  rgba(242,230,201,0.85);
  --ink-mute:  rgba(242,230,201,0.58);
  --accent:    #D4AF37;   /* Dorado */
  --accent-2:  #B8860B;   /* Dorado Oscuro */
  --line:      rgba(242,230,201,0.14);

  --serif: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 600; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container { width: min(1320px, 92%); margin-inline: auto; }
.container-wide { width: min(1640px, 95%); margin-inline: auto; }
.eyebrow {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: .5rem; }
.section-head p { color: var(--ink-mute); margin-top: 1rem; font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.btn-primary { background: var(--accent); color: var(--bg); box-shadow: 0 8px 24px rgba(212,175,55,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212,175,55,.4); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Reveal on scroll — defensive CSS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(13,13,13,0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out);
}
.nav.is-scrolled { background: rgba(13,13,13,.92); border-color: var(--line); backdrop-filter: blur(10px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .7rem; height: var(--nav-h); }
.nav-brand img { height: 40px; width: auto; max-width: none; }
.nav-brand-text { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; letter-spacing: .04em; color: var(--ink); line-height: 1.15; }
.nav-brand-text em { display: block; font-style: normal; font-size: .68rem; letter-spacing: .22em; color: var(--accent); font-weight: 500; }
.nav-links { display: none; gap: 2rem; font-size: .92rem; font-weight: 500; }
.nav-links a { position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--accent);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}
.nav-toggle { display: inline-flex; align-items: center; min-height: 44px; background: var(--accent); color: var(--bg); border-radius: 999px; padding: .7rem 1.1rem; font-size: .85rem; font-weight: 600; }
@media (min-width: 960px) { .nav-toggle { display: none; } }

.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px;
  border: 1.5px solid var(--line); border-radius: 999px; color: var(--ink); font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; cursor: pointer; transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-toggle-mobile { margin-top: .5rem; border-color: var(--line); color: var(--ink); font-family: var(--sans); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateY(-100%); transition: transform .45s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }

/* =============================================================
   5. Hero
   ============================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: clip; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.25) 0%, rgba(13,13,13,.2) 40%, rgba(13,13,13,.85) 100%);
}
.hero-content {
  position: relative; z-index: 1; color: #fff; padding-block: clamp(3rem, 8vw, 5rem);
  width: 100%;
}
.hero-content .eyebrow { color: var(--accent); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem); color: #fff; margin-top: .6rem;
  max-width: 16ch;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub { max-width: 46ch; margin-top: 1.2rem; font-size: 1.15rem; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-actions .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-scroll {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); bottom: clamp(1.2rem, 4vw, 2.5rem);
  z-index: 1; color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  writing-mode: vertical-rl; display: flex; align-items: center; gap: .6rem; opacity: .8;
}
.hero-scroll::before { content: ""; width: 1px; height: 48px; background: rgba(255,255,255,.6); }
@media (max-width: 719px) { .hero-scroll { display: none; } }

/* =============================================================
   6. Manifesto
   ============================================================= */
.manifesto { background: var(--bg); }
#servicios { background: var(--bg); }
#proyectos { background: var(--bg-2); }
#proceso { background: var(--bg-2); }
.why-us { background: var(--bg); }
.manifesto-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .manifesto-grid { grid-template-columns: .8fr 1.6fr; align-items: start; }
}
.manifesto-num { font-family: var(--serif); font-size: clamp(3rem, 8vw, 5rem); color: var(--accent); line-height: 1; }
.manifesto-text p { font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--ink-soft); }
.manifesto-text p + p { margin-top: 1.2rem; color: var(--ink-mute); font-size: 1.05rem; }
.manifesto-text em { font-style: normal; color: var(--accent); }

/* =============================================================
   7. Services marquee
   ============================================================= */
.services { background: var(--bg-2); overflow: clip; padding-block: 2.6rem; border-block: 1px solid var(--line); }
.marquee { display: flex; white-space: nowrap; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 28s linear infinite; padding-right: 3rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--accent); opacity: .95; letter-spacing: .02em; }
.marquee-track span::after { content: "—"; margin-left: 3rem; color: var(--ink-mute); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 60s; }
}

/* =============================================================
   8. Packages
   ============================================================= */
.packages-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; max-width: 1100px; margin-inline: auto; }
@media (min-width: 720px) { .packages-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  position: relative; background: var(--paper); border-radius: 20px; overflow: clip;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,.6), 0 0 40px rgba(212,175,55,.08); }
.pkg-card.is-featured { border-color: var(--accent); }
.pkg-card-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--accent); color: var(--bg); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px;
}
.pkg-card-photo { height: 200px; overflow: clip; position: relative; }
.pkg-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.pkg-card:hover .pkg-card-photo img { transform: scale(1.08); }
.pkg-card-photo-btn {
  position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer;
  display: block;
}
.pkg-card-photo-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .9rem;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  color: #fff; font-size: .82rem; font-weight: 600; text-align: right;
  opacity: 0; transition: opacity .3s var(--ease-out);
}
.pkg-card:hover .pkg-card-photo-overlay, .pkg-card-photo-btn:focus-visible .pkg-card-photo-overlay { opacity: 1; }
.pkg-card-gallery-link {
  align-self: flex-start; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  border-bottom: 1px solid var(--line); padding-bottom: .1rem; cursor: pointer;
}
.pkg-card-gallery-link:hover { color: var(--accent); border-color: var(--accent); }
.pkg-card-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.pkg-card-body h3 { font-size: 1.5rem; }
.pkg-card-price { font-family: var(--sans); font-weight: 700; color: var(--accent); font-size: 1.1rem; }
.pkg-card-blurb { color: var(--ink-mute); font-size: .95rem; }
.pkg-card-list { display: flex; flex-direction: column; gap: .5rem; margin-top: .3rem; }
.pkg-card-list li { font-size: .88rem; color: var(--ink-soft); padding-left: 1.1rem; position: relative; }
.pkg-card-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.pkg-card-cta { margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: .4rem; }
.pkg-card-cta::after { content: "→"; transition: transform .3s var(--ease-out); }
.pkg-card:hover .pkg-card-cta::after { transform: translateX(4px); }

/* =============================================================
   8b. Projects gallery
   ============================================================= */
.projects-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.projects-empty { color: var(--ink-mute); grid-column: 1 / -1; }
.project-card {
  display: block; border-radius: 18px; overflow: clip; border: 1px solid var(--line);
  background: var(--paper); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.project-card-photo { height: 230px; overflow: clip; }
.project-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.project-card:hover .project-card-photo img { transform: scale(1.06); }
.project-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.project-card-pkg { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.project-card-body h3 { font-size: 1.15rem; margin-top: .4rem; }
.project-card-city { color: var(--ink-mute); font-size: .85rem; margin-top: .2rem; }

/* =============================================================
   9. Zones
   ============================================================= */
.zones { background: var(--bg); }
.zones-grid { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.zone-chip {
  border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.2rem;
  font-size: .9rem; color: var(--ink-soft); background: var(--paper);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.zone-chip:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }

/* =============================================================
   10. Process
   ============================================================= */
.process-list { display: grid; gap: 0; }
.process-item {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.4rem;
  padding-block: 1.6rem; border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--serif); color: var(--accent); font-size: 1.4rem; }
.process-item h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.process-item p { color: var(--ink-mute); font-size: .95rem; max-width: 60ch; }

/* =============================================================
   11. Why / guarantee
   ============================================================= */
.why-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem; }
.why-card h3 { font-size: 1.2rem; margin-bottom: .6rem; color: var(--accent); }
.why-card p { color: var(--ink-mute); font-size: .92rem; }

/* =============================================================
   12. Final CTA
   ============================================================= */
.cta-final {
  position: relative; background: var(--bg-2); color: var(--ink); overflow: clip;
  border-top: 1px solid var(--line);
}
.cta-final::before {
  content: ""; position: absolute; inset: -40% -10% -60% -10%;
  background: radial-gradient(45% 45% at 30% 30%, rgba(212,175,55,.3), transparent 70%),
              radial-gradient(40% 40% at 80% 60%, rgba(184,134,11,.3), transparent 70%);
  filter: blur(90px); pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; display: grid; gap: 2.4rem; }
@media (min-width: 960px) { .cta-final-inner { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.cta-final h2 { color: var(--accent); font-size: clamp(2rem, 4.5vw, 3rem); }
.cta-final p { color: var(--ink-mute); margin-top: 1rem; max-width: 46ch; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; background: rgba(242,230,201,.05); border: 1px solid rgba(242,230,201,.14); border-radius: 18px; padding: 1.8rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-form label { font-size: .82rem; color: var(--ink-mute); display: flex; flex-direction: column; gap: .4rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: rgba(242,230,201,.07); border: 1px solid rgba(242,230,201,.2); border-radius: 10px;
  padding: .8rem .9rem; color: var(--ink); font: inherit; font-size: 16px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(242,230,201,.35); }
.contact-form button { align-self: flex-start; }
.form-note { font-size: .78rem; color: var(--ink-mute); }

/* =============================================================
   13. Footer
   ============================================================= */
.footer { padding-block: 2.6rem; border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-brand { font-family: var(--serif); font-weight: 600; color: var(--ink); }
.footer-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .85rem; color: var(--ink-mute); }
.footer-meta a:hover { color: var(--accent); }

/* =============================================================
   14. Credits page
   ============================================================= */
.page-credits main { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; }
.page-credits h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.credits-list { display: flex; flex-direction: column; gap: .9rem; max-width: 720px; }
.credits-list li { font-size: .92rem; color: var(--ink-mute); border-bottom: 1px solid var(--line); padding-bottom: .9rem; }
.credits-list a { color: var(--accent); }
.credits-list a:hover { text-decoration: underline; }
.back-link { display: inline-block; margin-bottom: 1rem; color: var(--ink-mute); }
.back-link:hover { color: var(--accent); }

/* =============================================================
   14b. Package process modal
   ============================================================= */
html.modal-open { overflow: hidden; }
.pkg-modal { position: fixed; inset: 0; z-index: 900; display: none; }
.pkg-modal.is-open { display: block; }
.pkg-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(4px); }
.pkg-modal-panel {
  position: relative; z-index: 1; margin: 3vh auto; width: min(920px, 94%); max-height: 94vh; overflow-y: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 800px) { .pkg-modal-panel { grid-template-columns: 1.1fr .9fr; } }
.pkg-modal-close {
  position: absolute; top: .8rem; right: .8rem; z-index: 2; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(13,13,13,.65); color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
}
.pkg-modal-close:hover { background: var(--accent); color: var(--bg); }
.pkg-modal-gallery { display: flex; flex-direction: column; background: var(--bg-2); }
.pkg-modal-main-photo { aspect-ratio: 4 / 3; overflow: clip; }
.pkg-modal-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.pkg-modal-caption { padding: .8rem 1rem 0; font-size: .85rem; color: var(--ink-mute); font-style: italic; }
.pkg-modal-thumbs { display: flex; gap: .6rem; padding: .8rem 1rem 1.1rem; flex-wrap: wrap; }
.pkg-modal-thumb {
  width: 64px; height: 48px; border-radius: 8px; overflow: clip; padding: 0; cursor: pointer;
  border: 2px solid transparent; opacity: .6; transition: opacity .2s var(--ease-out), border-color .2s var(--ease-out);
}
.pkg-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pkg-modal-thumb:hover { opacity: .85; }
.pkg-modal-thumb.is-active { opacity: 1; border-color: var(--accent); }
.pkg-modal-body { padding: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.pkg-modal-price { font-family: var(--sans); font-weight: 700; color: var(--accent); font-size: 1.05rem; }
.pkg-modal-body h3 { font-size: 1.6rem; }
.pkg-modal-blurb { color: var(--ink-mute); }
.pkg-modal-list { display: flex; flex-direction: column; gap: .5rem; margin: .3rem 0 .6rem; }
.pkg-modal-list li { font-size: .9rem; color: var(--ink-soft); padding-left: 1.1rem; position: relative; }
.pkg-modal-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.pkg-modal-body .btn { align-self: flex-start; }

/* =============================================================
   15. Responsive helpers
   ============================================================= */
@media (min-width: 540px) { }
@media (min-width: 720px) { }
@media (min-width: 960px) { }
@media (min-width: 1280px) { }

/* =============================================================
   16. Custom cursor (desktop only, hover-capable)
   ============================================================= */
.cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  pointer-events: none; z-index: 9998; opacity: 0; transition: opacity .25s var(--ease-out); transform: translate3d(-50%,-50%,0); }
.cursor-ring { position: fixed; top: 0; left: 0; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--ink);
  pointer-events: none; z-index: 9997; opacity: 0; transition: opacity .25s var(--ease-out), width .25s var(--ease-out), height .25s var(--ease-out);
  mix-blend-mode: difference; transform: translate3d(-50%,-50%,0); }
.cursor.is-ready, .cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-active { width: 54px; height: 54px; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* =============================================================
   17. Reduced motion — intrusive only
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .cta-final::before { animation: none; }
}
