/* ============================================================
   MAYA Y CHIWY — mayachiwy.com
   Dreamy, kid-friendly, llano-golden design system
   © Hurricane Technologies LLC
   ============================================================ */

/* ---------- Self-hosted fonts (no external requests) ---------- */
@font-face {
  font-family: "Baloo 2"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/baloo-2-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Baloo 2"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/baloo-2-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Baloo 2"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/baloo-2-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/nunito-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/nunito-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/nunito-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/nunito-latin-800-normal.woff2") format("woff2");
}

:root {
  /* Palette pulled from the book art */
  --cream: #FFF8E3;
  --cream-deep: #FFEFC2;
  --sun: #FFC93C;
  --mango: #F49D1A;
  --rojo: #E23B3B;
  --rojo-deep: #C42B2B;
  --azul: #2456A6;
  --azul-deep: #1D3F7A;
  --leaf: #6FA35B;
  --night: #2C2A6B;
  --brown: #7A5233;
  --ink: #43321F;
  --ink-soft: #6B573D;
  --white: #FFFFFF;

  --font-display: "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 10px 30px rgba(122, 82, 51, 0.16);
  --shadow-lift: 0 22px 44px rgba(122, 82, 51, 0.24);
  --max-w: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--azul); }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Sparkle cursor canvas ---------- */
#sparkle-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 227, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 82, 51, 0.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(122, 82, 51, 0.12); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-w); margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.55rem; line-height: 1;
  text-decoration: none; letter-spacing: .5px;
  display: flex; align-items: center; gap: 8px;
}
.logo .l-maya { color: var(--rojo); }
.logo .l-y    { color: var(--mango); }
.logo .l-chiwy{ color: var(--azul); }
.logo-mark { width: 34px; height: 34px; border-radius: 50%; box-shadow: 0 2px 8px rgba(122,82,51,.25); }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-weight: 700; font-size: .95rem; color: var(--ink);
  text-decoration: none; position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 3px; width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rojo), var(--sun), var(--azul));
  transition: width .28s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.7rem; color: var(--ink); line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  padding: 13px 26px; border-radius: 999px; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rojo), #F06543);
  color: #fff; box-shadow: 0 8px 22px rgba(226, 59, 59, .35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px rgba(226, 59, 59, .42); }
.btn-secondary {
  background: #fff; color: var(--azul);
  box-shadow: inset 0 0 0 2.5px var(--azul), 0 6px 16px rgba(36, 86, 166, .15);
}
.btn-secondary:hover { transform: translateY(-3px); background: #F2F7FF; }
.btn-amazon {
  background: linear-gradient(135deg, var(--mango), var(--sun));
  color: #5A3A00; box-shadow: 0 8px 20px rgba(244, 157, 26, .38);
  width: 100%;
}
.btn-amazon:hover { transform: translateY(-3px) scale(1.02); }
.btn-amazon.is-pending {
  background: var(--cream-deep); color: var(--ink-soft);
  box-shadow: inset 0 0 0 2px rgba(122,82,51,.18); cursor: default;
}
.btn-amazon.is-pending:hover { transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #FFE9A8 0%, #FFF3C9 34%, #FFD98F 72%, #FFC97C 100%);
  overflow: hidden;
  padding: 70px 0 0;
}
.hero-inner {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px;
  align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 20px 24px 90px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 8px 18px;
  font-weight: 800; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--azul-deep); box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: var(--rojo); } .dot-y { background: var(--sun); } .dot-b { background: var(--azul); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 10px;
}
.hero h1 .h-maya { color: var(--rojo); }
.hero h1 .h-y { color: var(--mango); }
.hero h1 .h-chiwy { color: var(--azul); }

.hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700; color: var(--brown);
  margin-bottom: 16px;
}
.hero p.lede {
  font-size: 1.08rem; color: var(--ink-soft); max-width: 520px;
  margin-bottom: 30px;
}
.hero p.lede strong { color: var(--rojo-deep); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { position: relative; }
.hero-art .art-main {
  border-radius: 36% 64% 55% 45% / 48% 40% 60% 52%;
  box-shadow: var(--shadow-lift);
  animation: float-slow 7s ease-in-out infinite;
  border: 6px solid #fff;
}
.hero-art .art-badge {
  position: absolute; bottom: 6%; left: -4%;
  background: #fff; border-radius: 20px; padding: 12px 18px;
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-lift);
  animation: float-slow 6s ease-in-out infinite reverse;
  font-size: .95rem;
}
.hero-art .art-badge span { color: var(--rojo); }

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50% { transform: translateY(-16px) rotate(.8deg); }
}

/* drifting clouds */
.cloud {
  position: absolute; background: rgba(255,255,255,.75);
  border-radius: 999px; filter: blur(2px); z-index: 1;
  animation: drift linear infinite;
}
.cloud::before, .cloud::after {
  content: ""; position: absolute; background: inherit; border-radius: 50%;
}
.cloud-1 { width: 180px; height: 52px; top: 12%; animation-duration: 58s; }
.cloud-1::before { width: 80px; height: 80px; top: -36px; left: 28px; }
.cloud-1::after { width: 56px; height: 56px; top: -22px; left: 92px; }
.cloud-2 { width: 130px; height: 40px; top: 32%; animation-duration: 74s; animation-delay: -30s; opacity: .65; }
.cloud-2::before { width: 58px; height: 58px; top: -26px; left: 20px; }
.cloud-2::after { width: 42px; height: 42px; top: -16px; left: 66px; }
.cloud-3 { width: 220px; height: 60px; top: 58%; animation-duration: 90s; animation-delay: -55s; opacity: .5; }
.cloud-3::before { width: 92px; height: 92px; top: -42px; left: 36px; }
.cloud-3::after { width: 64px; height: 64px; top: -26px; left: 118px; }

@keyframes drift {
  from { left: -260px; }
  to { left: 110%; }
}

/* section wave divider */
.wave { display: block; width: 100%; height: 70px; margin-bottom: -1px; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section-pad { padding: 84px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head .kicker {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mango);
  display: block; margin-bottom: 8px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; color: var(--ink);
  margin-bottom: 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* ---------- Books ---------- */
.books { background: var(--cream); }
.book-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.book-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d; will-change: transform;
}
.book-card:hover { box-shadow: var(--shadow-lift); }
.book-cover-wrap {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(122,82,51,.22);
}
.book-cover-wrap::after { /* shine sweep */
  content: ""; position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
}
.book-card:hover .book-cover-wrap::after { left: 130%; }
.book-num {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--rojo); font-family: var(--font-display);
  font-weight: 800; font-size: .8rem; letter-spacing: .05em;
  border-radius: 999px; padding: 5px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.book-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  line-height: 1.2; margin-bottom: 2px;
}
.book-card .subtitle-en {
  font-family: var(--font-display); font-weight: 700; color: var(--mango);
  font-size: 1rem; margin-bottom: 10px;
}
.book-card p.desc { color: var(--ink-soft); font-size: .96rem; flex: 1; margin-bottom: 14px; }
.book-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.tag {
  font-size: .74rem; font-weight: 800; letter-spacing: .03em;
  padding: 4px 11px; border-radius: 999px;
}
.tag-blue { background: #E7EFFC; color: var(--azul-deep); }
.tag-yellow { background: #FFF1CC; color: #8A5B00; }
.tag-red { background: #FDE4E4; color: var(--rojo-deep); }
.tag-green { background: #E8F2E3; color: #3E6B2F; }

/* ---------- Coming soon ---------- */
.coming { background: linear-gradient(180deg, var(--cream) 0%, #FFEFC9 100%); }
.coming-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.soon-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 16px 16px 20px; text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease;
}
.soon-card:hover { transform: translateY(-8px) rotate(-1deg); }
.soon-cover {
  border-radius: 14px; overflow: hidden; margin-bottom: 14px; position: relative;
  aspect-ratio: 1 / 1;
}
.soon-cover img { width: 100%; height: 100%; object-fit: cover; }
.soon-cover.mock { display: flex; align-items: center; justify-content: center; }
.soon-cover.mock svg { width: 54%; height: 54%; }
.mock-rojo { background: radial-gradient(circle at 30% 25%, #FF9A7B, var(--rojo)); }
.mock-azul { background: radial-gradient(circle at 30% 25%, #7FA8E8, var(--azul)); }
.mock-teal { background: radial-gradient(circle at 30% 25%, #9BD8CE, #2E8C7E); }
.soon-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.25; }
.soon-card .line { font-size: .8rem; font-weight: 800; color: var(--mango); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; display: block; }
.soon-card p { font-size: .86rem; color: var(--ink-soft); }
.soon-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--night); color: #FFE9A8;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  padding: 4px 11px; border-radius: 999px;
}

/* ---------- Familia ---------- */
.familia { background: linear-gradient(180deg, #FFEFC9, #FFE6B0); }
.familia-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.char-card {
  background: #fff; border-radius: 24px; padding: 14px 14px 20px;
  text-align: center; box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .25s ease;
}
.char-card:hover { transform: translateY(-10px); }
.char-card:hover .char-img { transform: rotate(-3deg) scale(1.05); }
.char-img-wrap { border-radius: 18px; overflow: hidden; margin-bottom: 12px; aspect-ratio: 1/1; }
.char-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.char-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; }
.char-card .role { font-size: .78rem; font-weight: 800; color: var(--mango); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 6px; }
.char-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.45; }
.char-bubble {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) scale(0);
  background: var(--night); color: #FFE9A8;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  z-index: 3; pointer-events: none;
}
.char-bubble::after {
  content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: var(--night); border-bottom: 0;
}
.char-card:hover .char-bubble { transform: translateX(-50%) scale(1); }

/* ---------- Peluches teaser ---------- */
.peluches { background: #FFE6B0; }
.plush-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  max-width: 780px; margin: 0 auto 34px;
}
.plush-card {
  background: #fff; border-radius: var(--radius-lg); padding: 18px 18px 22px;
  text-align: center; box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plush-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow-lift); }
.plush-photo { position: relative; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; aspect-ratio: 1 / 1; }
.plush-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transition: transform .35s ease; }
.plush-card:hover .plush-photo img { transform: scale(1.05); }
.plush-price {
  position: absolute; top: 12px; right: 12px;
  background: var(--sun); color: #5A3A00;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  padding: 8px 16px; border-radius: 999px; transform: rotate(6deg);
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}
.plush-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin-bottom: 4px; }
.plush-card p { font-size: .92rem; color: var(--ink-soft); }
.peluches-card {
  background: #fff; border-radius: 30px; padding: 34px 38px;
  max-width: 620px; margin: 0 auto; text-align: center;
  box-shadow: var(--shadow-lift);
  border: 3px dashed var(--mango); /* stitched, plush-pattern look */
}
.peluches-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; margin-bottom: 6px; }
.peluches-card p { color: var(--ink-soft); margin-bottom: 20px; }
.peluches-card .signup-form { max-width: 440px; margin: 0 auto; }

@media (max-width: 700px) {
  .plush-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, #FFE6B0, #FFDFA0); }
.gallery-row {
  display: flex; gap: 22px; overflow-x: auto; padding: 10px 24px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.gallery-row::-webkit-scrollbar { height: 10px; }
.gallery-row::-webkit-scrollbar-thumb { background: var(--mango); border-radius: 5px; }
.gallery-row::-webkit-scrollbar-track { background: rgba(122,82,51,.1); border-radius: 5px; }
.gal-item {
  flex: 0 0 320px; scroll-snap-align: center;
  border-radius: var(--radius-md); overflow: hidden; cursor: zoom-in;
  box-shadow: var(--shadow-soft); border: 5px solid #fff;
  transition: transform .3s ease, box-shadow .3s ease;
  background: #fff; padding: 0;
}
.gal-item:hover { transform: scale(1.04) rotate(-1deg); box-shadow: var(--shadow-lift); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; }

.lightbox {
  border: none; padding: 0; background: transparent; max-width: min(92vw, 860px);
}
.lightbox::backdrop { background: rgba(44, 42, 107, .82); backdrop-filter: blur(4px); }
.lightbox img { border-radius: var(--radius-md); width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: -16px; right: -14px;
  background: var(--rojo); color: #fff; border: 3px solid #fff;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.2rem; font-weight: 800; cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

/* ---------- Story ---------- */
.story { background: linear-gradient(180deg, #FFDFA0, #FFD48E); }
.story-grid {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center;
}
.story-art img {
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  border: 6px solid #fff; box-shadow: var(--shadow-lift);
  animation: float-slow 8s ease-in-out infinite;
}
.story-copy .kicker {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rojo); display: block; margin-bottom: 8px;
}
.story-copy h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; margin-bottom: 18px;
}
.story-copy p { color: var(--ink-soft); margin-bottom: 14px; font-size: 1.04rem; }
.story-copy .pull {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--azul-deep);
  border-left: 5px solid var(--sun); padding-left: 18px; margin: 22px 0;
  line-height: 1.4;
}

/* ---------- Signup ---------- */
.signup { background: linear-gradient(180deg, #FFD48E 0%, #FFC97C 100%); padding-bottom: 110px; }
.signup-card {
  background: #fff; border-radius: 34px; padding: 54px 48px;
  max-width: 720px; margin: 0 auto; text-align: center;
  box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden;
}
.signup-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, var(--rojo) 0 33%, var(--sun) 33% 66%, var(--azul) 66% 100%);
}
.signup-card h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 10px; }
.signup-card > p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 28px; }
.signup-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.signup-form input {
  flex: 1; border: 2.5px solid var(--cream-deep); border-radius: 999px;
  padding: 14px 22px; font-family: var(--font-body); font-size: 1rem;
  outline: none; transition: border-color .2s ease; min-width: 0;
}
.signup-form input:focus { border-color: var(--sun); }
.signup-msg { margin-top: 16px; font-weight: 700; min-height: 1.5em; }
.signup-msg.ok { color: #3E6B2F; }
.signup-msg.err { color: var(--rojo-deep); }
.signup-fine { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; opacity: .8; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night); color: #EDE6FF;
  padding: 54px 0 34px;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px;
  background: linear-gradient(90deg, var(--rojo) 0 33%, var(--sun) 33% 66%, var(--azul) 66% 100%);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: .92rem; color: #C9C2E8; max-width: 300px; }
.site-footer h5 {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sun);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #EDE6FF; text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: #B7AEDF;
}
.footer-bottom .chevere { font-family: var(--font-display); font-weight: 700; color: var(--sun); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 70px; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-art { max-width: 480px; margin: 0 auto; }
  .book-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
  .familia-grid { grid-template-columns: repeat(2, 1fr); }
  .familia-grid .char-card:last-child { grid-column: 1 / -1; max-width: 260px; margin: 0 auto; width: 100%; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-art { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255, 248, 227, .98);
    flex-direction: column; gap: 0; padding: 10px 24px 22px;
    display: none; box-shadow: 0 18px 30px rgba(122,82,51,.18);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; padding: 11px 0; }
  .nav-toggle { display: block; }
  .signup-form { flex-direction: column; }
  .signup-card { padding: 40px 24px; }
  .coming-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gal-item { flex-basis: 260px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
