/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #f6efe1;
  --bg-2:       #ecdfc4;
  --paper:      #fffcf6;
  --ink:        #2b2317;
  --ink-soft:   #3c3223;
  --ink-mute:   #7c7160;
  --accent:     #c1794b;
  --accent-dark:#a15f38;
  --accent-2:   #5c8b85;
  --accent-2-dark:#456965;
  --rose:       #d98f92;
  --line:       rgba(43, 35, 23, 0.14);
  --line-soft:  rgba(43, 35, 23, 0.08);
  --shadow-soft: 0 20px 50px -30px rgba(43, 35, 23, 0.4);
  --shadow-card: 0 14px 34px -20px rgba(43, 35, 23, 0.35);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans:  "Inter", -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", cursive;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  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 { font-family: var(--serif); text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-weight: 600; }
em { font-style: italic; color: var(--accent-dark); }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.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;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--paper);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent-dark);
  display: inline-block;
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: .6rem; }
.section-sub { color: var(--ink-mute); font-size: 1.05rem; margin-top: .9rem; max-width: 52ch; }
.section-head.center .section-sub { margin-inline: auto; }

.badge-script {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--accent-2-dark);
  display: inline-block;
  transform: rotate(-2deg);
}

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

/* =============================================================
   4. Typography
   ============================================================= */
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 14px 30px -14px rgba(161, 95, 56, 0.65);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -14px rgba(161, 95, 56, 0.75); background: var(--accent-dark); }
.btn-ghost {
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent-2); background: rgba(255,255,255,0.85); }
.btn-outline {
  border: 1.5px solid var(--accent-2);
  color: var(--accent-2-dark);
}
.btn-outline:hover { background: var(--accent-2); color: var(--paper); transform: translateY(-3px); }
.btn-whatsapp {
  background: var(--accent-2);
  color: var(--paper);
  box-shadow: 0 14px 30px -14px rgba(69, 105, 101, 0.65);
}
.btn-whatsapp:hover { background: var(--accent-2-dark); transform: translateY(-3px); }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.card {
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding-block: .9rem;
  background: rgba(246, 239, 225, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .3s var(--ease-out);
}
.nav.is-scrolled { border-color: var(--line-soft); box-shadow: 0 12px 30px -26px rgba(43,35,23,0.5); padding-block: .55rem; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-logo {
  width: 44px; height: 44px; border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px -8px rgba(43,35,23,0.5);
  border: 1px solid var(--line-soft);
}
.nav-name { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; line-height: 1.1; }
.nav-name small { display: block; font-family: var(--sans); font-weight: 500; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin-top: .15rem; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: .92rem; font-weight: 500; position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--accent); transition: right .35s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: none; }
.nav-burger { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); }
.nav-burger svg { width: 20px; height: 20px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* --- Mobile menu --- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 1.4rem;
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; }
.mobile-menu-close { position: absolute; top: 1.3rem; right: var(--gutter); width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(0deg, rgba(43,35,23,0.82) 0%, rgba(43,35,23,0.4) 46%, rgba(43,35,23,0.18) 68%, rgba(43,35,23,0.32) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero .eyebrow { color: #f0d9b8; }
.hero .eyebrow::before { background: #f0d9b8; }
.hero-title {
  color: var(--paper);
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  margin-top: .9rem;
  text-wrap: balance;
  max-width: 15ch;
}
.hero-title em { color: #f2c893; font-style: italic; }
.hero-sub {
  color: rgba(255,250,240,0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  margin-top: 1.15rem;
  max-width: 46ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-scroll {
  position: absolute; bottom: 1.6rem; right: var(--gutter); z-index: 1;
  display: none; align-items: center; gap: .6rem;
  color: rgba(255,250,240,0.75); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 34px; background: rgba(255,250,240,0.5); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: #f2c893; animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 50% { top: 0; } 100% { top: 100%; } }
@media (min-width: 720px) { .hero-scroll { display: flex; } }

/* --- Advantages --- */
.advantages-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }

.advantage-card {
  padding: 2rem 1.7rem;
  position: relative;
}
.advantage-num {
  font-family: var(--script);
  font-size: 2.6rem;
  color: var(--accent-2);
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
}
.advantage-card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.advantage-card p { color: var(--ink-mute); font-size: .95rem; }

/* --- Steps: cómo comprar --- */
.steps-section { background: var(--bg-2); }
.steps-row {
  display: grid; gap: 1.6rem 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .steps-row { grid-template-columns: repeat(5, 1fr); } }

.step {
  position: relative;
  padding-top: .3rem;
}
.step-n {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: .5rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { color: var(--ink-mute); font-size: .9rem; }
.step:not(:last-child)::after {
  content: "→";
  display: none;
  position: absolute; top: .35rem; right: -1.1rem;
  color: var(--accent-2); font-size: 1.2rem;
}
@media (min-width: 1280px) { .step:not(:last-child)::after { display: block; } }

/* --- Catalog --- */
.catalog-filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.2rem;
}
.filter-pill {
  padding: .5rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: .86rem; font-weight: 600;
  color: var(--ink-mute);
  transition: all .3s var(--ease-out);
}
.filter-pill:hover { border-color: var(--accent-2); color: var(--ink); }
.filter-pill.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.catalog-grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .catalog-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -24px rgba(43,35,23,0.45); }
.product-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .7s var(--ease-out); }
.product-card:hover .product-media img { transform: scale(1.08); filter: saturate(1.12); }
.product-cat {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(255,252,246,0.92);
  color: var(--accent-dark);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 999px;
}
.product-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.product-body h3 { font-size: 1.02rem; }
.product-body p { font-size: .84rem; color: var(--ink-mute); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; gap: .6rem; }
.product-price { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--accent-dark); }
.product-price small { font-family: var(--sans); font-weight: 500; font-size: .68rem; color: var(--ink-mute); display: block; text-transform: uppercase; letter-spacing: .04em; }
.product-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-2); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease-bounce), background .3s var(--ease-out);
  flex-shrink: 0;
}
.product-link:hover { transform: scale(1.12) rotate(8deg); background: var(--accent-2-dark); }
.product-link svg { width: 18px; height: 18px; }

/* --- About --- */
.about-section { background: var(--paper); }
.about-grid {
  display: grid; gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.85fr 1fr; gap: 3.5rem; } }
.about-media { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { aspect-ratio: 4/5; object-fit: cover; }
.about-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(43,35,23,0.35));
}
.about-tag {
  position: absolute; bottom: 1.1rem; left: 1.1rem; z-index: 1;
  background: rgba(255,252,246,0.92);
  padding: .6rem 1.1rem; border-radius: 14px;
  font-family: var(--script); font-size: 1.15rem; color: var(--accent-2-dark);
  box-shadow: 0 10px 24px -14px rgba(43,35,23,0.5);
}
.about-text .section-title { text-align: left; }
.about-text p + p { margin-top: 1rem; }
.about-text p { color: var(--ink-soft); }
.about-signature { margin-top: 1.6rem; font-family: var(--script); font-size: 1.6rem; color: var(--accent-dark); }

/* --- Testimonials --- */
.testi-section { background: var(--bg-2); }
.testi-note {
  display: inline-block; font-size: .78rem; color: var(--ink-mute);
  border: 1px dashed var(--line); border-radius: 999px; padding: .4rem 1rem;
  margin-bottom: 2.2rem;
}
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { padding: 1.8rem 1.6rem; position: relative; }
.testi-quote-mark { font-family: var(--serif); font-size: 3rem; color: var(--accent-2); line-height: 1; opacity: .5; }
.testi-card p.quote { font-size: .98rem; color: var(--ink-soft); margin-top: .3rem; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 600; color: var(--ink-mute); }
.testi-author .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: .8rem; max-width: 780px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; transition: transform .4s var(--ease-out), background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: opacity .3s var(--ease-out); }
.faq-icon::before { width: 11px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 11px; }
.faq-item[open] .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(180deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--paper); }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-answer { padding: 0 1.5rem 1.3rem; color: var(--ink-mute); font-size: .95rem; max-width: 62ch; }

/* --- Contact --- */
.contact-section { background: var(--ink); color: var(--paper); position: relative; overflow: clip; }
.contact-section .eyebrow { color: #f0d9b8; }
.contact-section .eyebrow::before { background: #f0d9b8; }
.contact-section .section-title { color: var(--paper); }
.contact-section .section-sub { color: rgba(255,250,240,0.7); }
.contact-grid { display: grid; gap: 2.4rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; } }

.contact-card {
  background: rgba(255,252,246,0.06);
  border: 1px solid rgba(255,252,246,0.14);
  border-radius: 24px;
  padding: 2.2rem;
  backdrop-filter: blur(6px);
}
.contact-whatsapp-big {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.3rem 1.6rem; border-radius: 18px;
  background: var(--accent-2);
  margin-bottom: 1.6rem;
  transition: transform .4s var(--ease-out), background .3s var(--ease-out);
}
.contact-whatsapp-big:hover { transform: translateY(-3px); background: var(--accent-2-dark); }
.contact-whatsapp-big svg { width: 34px; height: 34px; flex-shrink: 0; }
.contact-whatsapp-big strong { display: block; font-size: 1.08rem; }
.contact-whatsapp-big span { font-size: .85rem; opacity: .85; }

.info-list { display: flex; flex-direction: column; gap: 1.3rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row .icon-wrap {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,252,246,0.1); display: inline-flex; align-items: center; justify-content: center;
}
.info-row .icon-wrap svg { width: 19px; height: 19px; }
.info-row h4 { font-size: .95rem; margin-bottom: .2rem; color: var(--paper); font-family: var(--sans); font-weight: 600; }
.info-row p { font-size: .88rem; color: rgba(255,250,240,0.65); }

.social-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.social-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,252,246,0.18);
  font-size: .8rem; color: rgba(255,250,240,0.55);
  position: relative;
}
.social-chip svg { width: 15px; height: 15px; }
.social-chip .soon { font-size: .64rem; text-transform: uppercase; letter-spacing: .05em; background: rgba(255,252,246,0.12); padding: .15rem .45rem; border-radius: 999px; margin-left: .2rem; }
.social-chip.is-active {
  color: var(--paper);
  border-color: rgba(255,252,246,0.4);
  font-weight: 600;
  transition: transform .35s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.social-chip.is-active:hover {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  background: rgba(255,252,246,0.08);
}

/* --- Footer --- */
.footer {
  background: var(--ink); color: rgba(255,250,240,0.55);
  padding-block: 2rem; border-top: 1px solid rgba(255,252,246,0.1);
  font-size: .82rem;
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer a:hover { color: var(--paper); }

/* --- Sticky WhatsApp float --- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 30px -12px rgba(69,105,101,0.7);
  transition: transform .4s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: var(--paper); }

/* =============================================================
   7. Effects
   ============================================================= */
.tilt-hover { transform-style: preserve-3d; will-change: transform; }

.marquee-wrap { overflow: hidden; border-block: 1px solid var(--line-soft); background: var(--bg-2); }
.marquee-track { display: flex; width: max-content; gap: 3rem; padding-block: .9rem; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--script); font-size: 1.3rem; color: var(--accent-2-dark); white-space: nowrap; display: inline-flex; align-items: center; gap: .8rem; }
.marquee-track span::after { content: "•"; color: var(--accent); font-family: var(--sans); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   9. Reduced-motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 60s; }
  .hero-scroll-line::after { animation: none; }
}

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
