/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0d2818;
  --bg-2:      #15301f;
  --bg-3:      #1c3a26;
  --cream:     #f4ecd8;
  --cream-2:   #ddd2bc;
  --cream-3:   #9fb39f;
  --accent:    #c9a05a;
  --accent-2:  #b8893f;
  --line:      rgba(244,236,216,.14);
  --paper:     #fffdf8;
  --ink:       #1a1714;

  --serif: "Newsreader", Georgia, serif;
  --sans:  "Inter", 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);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@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(--cream);
  -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; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--cream); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 1rem; }
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.4rem; }
.eyebrow { font-family: var(--sans); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.eyebrow.center { text-align: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .95rem; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,160,90,.32); }
.btn-large { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* =============================================================
   4. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
.splash-logo { width: clamp(120px, 22vw, 200px); animation: splashPulse 1.6s ease-in-out infinite; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
@keyframes splashPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .85; } }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.4rem;
  background: linear-gradient(180deg, rgba(13,40,24,.85), transparent);
  transition: background .4s var(--ease-out);
}
.nav.is-solid { background: rgba(13,40,24,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; }
.nav-brand img { width: 34px; }
.nav-links { display: none; gap: 1.6rem; font-size: .92rem; }
.nav-links a { opacity: .85; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease-out); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: .85rem; padding: .6rem 1.2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }

/* =============================================================
   6. Hero (foto real + eslogan que se desvanece al bajar)
   ============================================================= */
.hero { position: relative; height: 100vh; min-height: 100svh; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -2%; width: 104%; height: 104%; object-fit: cover;
  animation: heroKenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -2%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,12,.32) 0%, rgba(6,20,12,.05) 30%, rgba(6,20,12,.12) 65%, rgba(6,20,12,.62) 100%);
}
.hero-content {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  text-align: center; width: min(90%, 720px); z-index: 2;
  will-change: opacity, transform;
  padding: 2.2rem 2.6rem;
  border-radius: 22px;
  background: rgba(8,24,15,.4);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(244,236,216,.12);
}
@supports not (backdrop-filter: blur(8px)) {
  .hero-content { background: rgba(8,24,15,.7); }
}
.hero-logo { width: clamp(70px, 9vw, 110px); margin-inline: auto; margin-bottom: 1.4rem; filter: drop-shadow(0 10px 24px rgba(0,0,0,.4)); }
.hero-content .kicker { font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.hero-content h1 { font-size: clamp(2rem, 5.4vw, 3.6rem); color: var(--cream); max-width: 17ch; margin-inline: auto; text-shadow: 0 4px 24px rgba(0,0,0,.5); }
.hero-content h1 em { color: var(--accent); }

/* =============================================================
   7. Sections / typography
   ============================================================= */
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section-title { font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 22ch; margin-bottom: 2rem; }
.history-lead { font-size: 1.25rem; line-height: 1.55; color: var(--cream); margin-bottom: 1.3rem; max-width: 68ch; }
.history-body { color: var(--cream-2); max-width: 64ch; margin-bottom: 1.2rem; }
.history-grid { margin-bottom: 3.6rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow.center { justify-content: center; }

.reveal {
  opacity: 0; transform: translateY(40px) scale(.97); filter: blur(6px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }
.reveal[data-split] { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; }
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 3.5rem; }
.stat { display: flex; flex-direction: column; gap: .3rem; }
.stat-value { font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--accent); }
.stat-label { font-size: .85rem; color: var(--cream-3); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* Founders */
.founders { display: grid; gap: 1.8rem; }
.founder-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.founder-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(5,18,11,.45); }
.founder-card { overflow: hidden; }
.founder-card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; transition: transform .8s var(--ease-out); }
.founder-card:hover img { transform: scale(1.06); }
.founder-card h3 { padding: 1.5rem 1.6rem 0; font-size: 1.4rem; }
.founder-role { padding: .25rem 1.6rem 0; color: var(--accent); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.founder-card p:last-child { padding: .8rem 1.6rem 1.6rem; color: var(--cream-2); font-size: .96rem; }
@media (min-width: 720px) { .founders { grid-template-columns: repeat(2, 1fr); } }

/* Reviews belt */
.reviews-belt { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.reviews-heading { font-size: clamp(1.3rem, 2.6vw, 1.7rem); text-align: center; margin-bottom: 1.6rem; color: var(--cream); }
.reviews-viewport { overflow: hidden; padding: 1rem 0 2rem; mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); }
.reviews-track {
  display: flex; gap: 1.2rem; width: max-content;
  animation: reviewsMarquee 220s linear infinite;
}
.reviews-viewport:hover .reviews-track { animation-play-state: paused; }
@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-viewport { overflow-x: auto; }
}
.review-card { flex: 0 0 280px; background: var(--paper); color: var(--ink); border-radius: 16px; padding: 1.4rem; box-shadow: 0 18px 40px rgba(5,18,11,.35); }
.review-card img { width: 40px; height: 40px; border-radius: 50%; margin-bottom: .8rem; object-fit: cover; }
.review-stars { color: var(--accent-2); letter-spacing: .1em; margin-bottom: .5rem; }
.review-text { font-size: .92rem; color: #3a342e; margin-bottom: .8rem; }
.review-name { font-size: .82rem; color: #6e6760; font-weight: 600; }

/* Appraisal */
.appraisal-grid { display: grid; gap: 2.4rem; }
.appraisal-list { list-style: none; display: grid; gap: .6rem; color: var(--cream-2); margin-top: 1rem; }
.appraisal-list li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.newsletter-form { display: grid; gap: 1rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; }
.newsletter-form input {
  font: inherit; padding: .75rem .9rem; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); color: var(--cream);
}
.newsletter-form input:focus { border-color: var(--accent); }
.form-note { color: var(--accent); font-size: .9rem; }
.tally-wrapper { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; overflow: hidden; }
.tally-wrapper iframe { display: block; width: 100%; border: none; }
@media (min-width: 960px) { .appraisal-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }

/* Shop */
.shop-intro { margin-bottom: 1.6rem; }
.shop-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip { padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); font-size: .85rem; color: var(--cream-2); transition: background .25s, color .25s, border-color .25s; }
.chip:hover { border-color: var(--accent); }
.chip.is-active { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.shop-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.product-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); cursor: pointer; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(5,18,11,.5); }
.product-slideshow { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg); }
.product-slideshow { overflow: hidden; }
.product-slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s var(--ease-soft), transform .8s var(--ease-out); }
.product-slideshow img.is-active { opacity: 1; }
.product-card:hover .product-slideshow img.is-active { transform: scale(1.06); }
.product-dots { position: absolute; left: 0; right: 0; bottom: .7rem; display: flex; justify-content: center; gap: .4rem; z-index: 2; }
.product-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(244,236,216,.4); transition: background .3s, transform .3s; }
.product-dots span.is-active { background: var(--accent); transform: scale(1.3); }
.product-body { padding: 1rem 1.2rem 1.3rem; }
.product-cat { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; }
.product-name { font-size: 1.05rem; margin-bottom: .3rem; }
.product-meta { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .78rem; color: var(--cream-3); margin-bottom: .7rem; }
.product-meta span { border: 1px solid var(--line); border-radius: 999px; padding: .15rem .6rem; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--serif); font-size: 1.2rem; color: var(--accent); }
.product-price.pending { font-size: .85rem; color: var(--cream-3); font-family: var(--sans); }
.product-buy { font-size: .82rem; padding: .5rem 1rem; border-radius: 999px; background: var(--accent); color: var(--bg); font-weight: 600; }

/* Product modal (ficha de producto) */
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.product-modal {
  padding: 0; border: 0; background: transparent;
  max-width: min(1040px, 94vw); width: 100%; max-height: 90vh; border-radius: 22px; overflow: hidden;
  position: fixed; inset: 0; margin: auto;
}
.product-modal[open] { display: block; }
.product-modal::backdrop { background: rgba(5,14,9,.78); backdrop-filter: blur(4px); }
.product-modal-inner {
  position: relative; display: grid; grid-template-columns: 1fr;
  background: var(--bg-2); max-height: 90vh; overflow-y: auto;
}
@media (min-width: 860px) {
  .product-modal-inner { grid-template-columns: 1fr 1fr; max-height: 86vh; align-items: stretch; }
  .product-modal-gallery { display: flex; flex-direction: column; }
  .product-modal-main { flex: 1; aspect-ratio: auto; min-height: 0; }
}

/* position:absolute saca el botón del flujo del grid: si no, ocupa una
   celda más y descoloca galería/info a filas distintas (bug de desalineación). */
.product-modal-close {
  position: absolute; top: .8rem; right: .8rem; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(8,24,15,.7);
  color: var(--cream); font-size: 1rem; display: flex; align-items: center; justify-content: center;
}
.product-modal-close:hover { background: var(--accent); color: var(--bg); }

.product-modal-gallery { background: var(--bg); }
.product-modal-main { position: relative; aspect-ratio: 1/1; background: #06140c; }
.product-modal-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px;
  border-radius: 50%; background: rgba(8,24,15,.6); color: var(--cream); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.gallery-nav:hover { background: var(--accent); color: var(--bg); }
.gallery-prev { left: .8rem; }
.gallery-next { right: .8rem; }
.gallery-counter { position: absolute; right: .8rem; bottom: .8rem; background: rgba(8,24,15,.6); color: var(--cream); font-size: .78rem; padding: .25rem .6rem; border-radius: 999px; }
.product-modal-thumbs { display: flex; gap: .5rem; padding: .8rem; overflow-x: auto; }
.product-modal-thumbs img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; cursor: pointer; opacity: .55; border: 2px solid transparent; transition: opacity .25s, border-color .25s; }
.product-modal-thumbs img.is-active { opacity: 1; border-color: var(--accent); }

.product-modal-info { padding: 1.8rem; }
.product-modal-cat { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.product-modal-info h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .8rem; }
.product-modal-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.product-modal-meta span { border: 1px solid var(--line); border-radius: 999px; padding: .25rem .8rem; font-size: .82rem; color: var(--cream-2); }
.product-modal-price { font-family: var(--serif); font-size: 1.9rem; color: var(--accent); margin-bottom: 1.4rem; }
.product-modal-desc-title { font-size: .95rem; color: var(--cream-3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
.product-modal-desc { white-space: pre-line; color: var(--cream-2); font-size: .94rem; line-height: 1.65; margin-bottom: 1.6rem; max-height: 480px; overflow-y: auto; }
.product-modal-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1rem; }
.product-offer-form { display: grid; gap: .7rem; margin-bottom: 1.2rem; }
.product-offer-form input {
  font: inherit; padding: .7rem .9rem; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); color: var(--cream);
}
.product-offer-form input:focus { border-color: var(--accent); }
.product-modal-note { font-size: .8rem; color: var(--cream-3); }

/* Workshop */
.workshop-gallery { display: grid; gap: 1rem; margin: 1.6rem 0 2.6rem; grid-template-columns: 1fr; }
.workshop-gallery img { border-radius: 16px; aspect-ratio: 16/10; object-fit: cover; }
@media (min-width: 720px) { .workshop-gallery { grid-template-columns: repeat(3, 1fr); } }
.workshop-services { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.service-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--accent); }
.service-card p { color: var(--cream-2); font-size: .92rem; }
@media (min-width: 720px) { .workshop-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .workshop-services { grid-template-columns: repeat(3, 1fr); } }

/* Newsletter */
.newsletter { background: var(--bg-2); }
.newsletter-grid { display: grid; gap: 2.2rem; align-items: start; }
.form-fine { font-size: .78rem; color: var(--cream-3); }
@media (min-width: 960px) { .newsletter-grid { grid-template-columns: 1.1fr 1fr; } }

/* Final CTA */
/* Contacto */
.contact-people { display: grid; gap: 1.2rem; margin: 2rem 0 2.6rem; }
.contact-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.contact-phone { color: var(--cream-2); font-size: .95rem; margin-bottom: 1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.contact-actions .btn { font-size: .85rem; padding: .6rem 1.1rem; }
@media (min-width: 720px) { .contact-people { grid-template-columns: repeat(2, 1fr); } }

.contact-channels { display: grid; gap: 1rem; }
.channel-card {
  display: flex; align-items: center; gap: .9rem; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 1rem 1.2rem; transition: border-color .25s, transform .25s var(--ease-out);
}
.channel-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.channel-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--bg); color: var(--accent); flex-shrink: 0; font-weight: 700; }
.channel-card strong { display: block; font-size: .95rem; color: var(--cream); }
.channel-card span span { font-size: .85rem; color: var(--cream-3); }
@media (min-width: 720px) { .contact-channels { grid-template-columns: repeat(3, 1fr); } }

.final-cta { text-align: center; }
.final-cta .history-body { margin-inline: auto; }

/* Footer */
.footer { padding: 3rem 0 1.4rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; flex-direction: column; gap: .5rem; }
.footer-brand img { width: 44px; border-radius: 8px; }
.footer-brand p { color: var(--cream-3); font-size: .85rem; }
.footer-founders { color: var(--cream-2) !important; font-weight: 600; }
.footer-col-title { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .55rem; font-size: .9rem; color: var(--cream-2); }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-instagram { display: flex; flex-direction: column; gap: .6rem; }
.footer-ig-link { font-size: .9rem; color: var(--cream-2); }
.footer-ig-link:hover { color: var(--accent); }
.footer-qr-link { width: 96px; display: block; }
.footer-qr-link img { width: 96px; height: 122px; object-fit: contain; border-radius: 10px; background: #fff; padding: 4px; }
.footer-copy { text-align: center; color: var(--cream-3); font-size: .78rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }

/* WhatsApp flotante */
.whatsapp-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: .8rem; }
.whatsapp-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #06140c;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.35); transition: transform .25s var(--ease-out);
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-menu { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: .6rem; box-shadow: 0 18px 40px rgba(5,18,11,.45); min-width: 220px; }
.whatsapp-menu a { display: flex; flex-direction: column; padding: .6rem .8rem; border-radius: 10px; transition: background .2s; }
.whatsapp-menu a:hover { background: var(--bg); }
.whatsapp-name { font-size: .9rem; font-weight: 600; color: var(--cream); }
.whatsapp-number { font-size: .8rem; color: var(--cream-3); }

/* =============================================================
   8. Reduced motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash-logo { animation: none; }
  .clouds span { animation: none; }
}
