/* ================================================================
   Roma Studio — Fluffy Friends
   Pastel, hand-crafted, kawaii.
   ================================================================ */

:root{
  --cream:      #FFF0E5;
  --cream-deep: #FFE8DC;
  --peach:      #F8C5B5;
  --peach-deep: #F0A8B5;
  --rose:       #F5A0B0;
  --rose-deep:  #DD7585;
  --sage:       #A8D89A;
  --sage-deep:  #5FA050;
  --mauve:      #C5A8D8;
  --mauve-deep: #9A7DB0;
  --butter:     #F5D040;
  --butter-deep:#DDA535;
  --ink:        #2A1810;
  --ink-soft:   #5C3A28;
  --ink-mute:   #8B5A3C;
  --line:       #E0CCB8;

  --sky:        #5DB5DD;
  --sky-light:  #A5DDF0;
  --sky-high:   #F5D5DC;
  --grass:      #A8D89A;

  --f-serif: "Fraunces", "Georgia", serif;
  --f-sans:  "Inter", system-ui, sans-serif;
  --f-hand:  "Caveat", cursive;

  --r-s: 6px;
  --r-m: 14px;
  --r-l: 22px;
}

*{box-sizing:border-box}
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body{
  margin:0;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 45vh at 50% 0%, var(--sky-high) 0%, transparent 70%),
    radial-gradient(ellipse 140% 28vh at 50% 100%, var(--grass) 0%, transparent 75%);
  background-repeat: no-repeat;
  background-position: top, bottom;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* soft paper grain — SVG noise filter */
.grain{
  position: fixed; inset:0;
  pointer-events:none;
  z-index: 1000;
  opacity:.35;
  mix-blend-mode: darken;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* warm blobs in background */
body::before,
body::after{
  content:"";
  position:fixed; z-index:-1;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity:.7;
}
body::before{ background: var(--peach-deep); top:-18vw; left:-15vw;}
body::after{  background: var(--mauve); bottom:-20vw; right:-15vw;}

/* ================================================================
   Header
   ================================================================ */
.top{
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 36px 10px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 40px;
}
.brand{
  display:inline-flex; align-items:baseline; gap:10px;
  text-decoration:none; color: var(--ink);
  font-family: var(--f-serif);
  font-size: 22px;
  letter-spacing: .2px;
}
.brand-mark{
  color: var(--rose-deep);
  font-size: 20px;
  transform: translateY(-1px);
}
.brand-name em{ font-style: italic; color: var(--ink-soft); font-weight: 400;}

.brand-logo{
  display: block;
  height: 84px;
  width: auto;
}

.top-nav{ display:flex; gap: 28px; align-items:center; }
.top-nav a{
  color: var(--ink-soft);
  text-decoration:none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1px;
  transition: color .2s;
}
.top-nav a:hover{ color: var(--rose-deep); }
.top-nav a.pill{
  background: var(--ink);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.top-nav a.pill:hover{ background: var(--rose-deep); color: white;}

.lang-switch{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  margin-left: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-deep);
}
.lang-switch button{
  background: none;
  border: 0;
  padding: 2px 4px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color .18s;
}
.lang-switch button.active{ color: var(--ink); }
.lang-switch button:hover{ color: var(--rose-deep); }
.lang-switch > span{
  color: var(--ink-mute);
  font-size: 12px;
  opacity: .6;
}

/* ================================================================
   Hero
   ================================================================ */
.hero{
  max-width: 1180px;
  margin: 40px auto 60px;
  padding: 20px 36px 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--butter);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--butter-deep);
  box-shadow: 0 2px 0 var(--butter-deep);
}
.eyebrow-star{ width: 14px; height: 14px; color: var(--ink-soft); }

.hero-title{
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .98;
  margin: 22px 0 22px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.hero-title .tl-1{
  display:block;
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 120;
}
.hero-title .tl-2{
  display:block;
  font-size: .5em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: -.005em;
}
.hero-title .tl-2 em{
  font-family: var(--f-hand);
  font-style: normal;
  color: var(--rose-deep);
  font-size: 1.4em;
  margin: 0 .08em;
  display: inline-block;
  transform: translateY(6px) rotate(-3deg);
}

.hero-sub{
  max-width: 460px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-ctas{
  display:flex; gap: 18px; align-items:center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.btn-amazon{
  display:inline-flex; align-items:center; gap: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  letter-spacing: .1px;
  transition: transform .18s ease, background .18s ease;
  box-shadow: 0 4px 0 #1a0c06, 0 10px 22px rgba(42,24,16,.18);
}
.btn-amazon:hover{ transform: translateY(-2px); background: #1a0c06;}
.btn-amazon:active{ transform: translateY(1px); box-shadow: 0 2px 0 #1a0c06;}
.amz-ico{ width:22px; height:22px; color: var(--butter); }
.btn-amazon .price{
  border-left: 1px solid rgba(255,240,229,.25);
  padding-left: 12px;
  margin-left: 4px;
  font-weight: 500;
  color: var(--butter);
}
.btn-ghost{
  color: var(--ink);
  text-decoration:none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--rose);
  padding-bottom: 2px;
  font-size: 15px;
}
.btn-ghost:hover{ color: var(--rose-deep); border-bottom-color: var(--rose-deep);}

.hero-bullets{
  list-style:none; margin:0; padding: 18px 0 0;
  border-top: 1px dashed var(--line);
  display:flex; gap: 28px; flex-wrap:wrap;
  color: var(--ink-soft); font-size: 14px;
}
.hero-bullets b{ color: var(--ink); font-weight: 600;}

/* hero art */
.hero-art{
  position: relative;
  padding: 20px;
  aspect-ratio: 1/1.05;
  display: flex; align-items: center; justify-content: center;
}

.book-wrap{
  position: relative;
  width: 92%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(-1.8deg);
  box-shadow:
    0 18px 40px rgba(42,24,16,.18),
    0 4px 10px rgba(42,24,16,.08),
    0 0 0 1px rgba(255,255,255,.4) inset;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.book-wrap:hover{ transform: rotate(0deg) scale(1.02); }
.book-img{
  width:100%; height:100%; display:block; object-fit: cover;
}

/* decorative squiggles */
.sq{ position:absolute; pointer-events:none; }
.sq-1{ top: 8%; left: -4%; width: 140px; transform: rotate(-10deg); }
.sq-2{ top: 12%; right: 4%; width: 50px; transform: rotate(8deg); }
.sq-3{ bottom: 6%; left: 8%; width: 110px; transform: rotate(5deg); opacity:.8; }

/* tape strips */
.tape{
  position:absolute;
  width: 84px; height: 22px;
  background: rgba(245,208,64,.55);
  border-left: 1px solid rgba(221,165,53,.3);
  border-right: 1px solid rgba(221,165,53,.3);
  box-shadow: 0 1px 4px rgba(42,24,16,.1);
  z-index: 2;
}
.tape-tl{ top: 14px; left: 14px; transform: rotate(-18deg);}
.tape-br{ bottom: 40px; right: 20px; transform: rotate(26deg); background: rgba(197,168,216,.55);}

/* handmade stamp */
.stamp{
  position: absolute;
  bottom: -10px;
  right: -6px;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 2px dashed var(--butter-deep);
  color: var(--ink);
  font-family: var(--f-hand);
  font-size: 22px;
  line-height: 1.02;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--butter);
  transform: rotate(-8deg);
  padding: 4px;
  z-index: 3;
  box-shadow: 0 3px 0 var(--butter-deep), 0 6px 14px rgba(42,24,16,.15);
}

/* ================================================================
   Strip
   ================================================================ */
.strip{
  background: var(--ink);
  color: var(--cream);
  padding: 22px 36px;
  text-align:center;
  position: relative;
}
.strip-lead{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--butter);
  opacity:.8;
}
.strip-row{
  display:flex; gap: 14px;
  justify-content:center; align-items:center;
  flex-wrap: wrap;
  font-family: var(--f-serif);
  font-size: 18px;
  font-style: italic;
}
.strip-item{ color: var(--cream); }
.strip-dot{ color: var(--butter); }

/* ================================================================
   Section shared
   ================================================================ */
section{ position: relative; }
.section-head{
  max-width: 720px;
  margin: 0 auto 60px;
  text-align:center;
  padding: 0 24px;
}
.section-head--dark{ color: var(--cream); }
.k{
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-block;
  margin-bottom: 14px;
}
.section-head h2{
  font-family: var(--f-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.section-lead{
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}
.section-head--dark .section-lead{ color: rgba(255,240,229,.75); }
.section-head--dark .k{ color: var(--butter); }

/* ================================================================
   Qué hay dentro
   ================================================================ */
.dentro{
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 36px 90px;
}
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feat{
  padding: 28px 24px 24px;
  border-radius: 18px;
  position: relative;
  min-height: 240px;
  transition: transform .3s ease;
}
.feat:nth-child(1){ transform: rotate(-1deg);}
.feat:nth-child(2){ transform: rotate(0.6deg) translateY(10px);}
.feat:nth-child(3){ transform: rotate(-0.8deg);}
.feat:nth-child(4){ transform: rotate(1deg) translateY(10px);}
.feat:hover{ transform: rotate(0) translateY(0) scale(1.02); }

.feat-peach { background: var(--peach);}
.feat-sage  { background: var(--sage);}
.feat-mauve { background: var(--mauve);}
.feat-butter{ background: var(--butter); }

.feat-num{
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--ink);
  opacity:.55;
  display: block;
  margin-bottom: 6px;
}
.feat h3{
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -.005em;
  color: var(--ink);
}
.feat p{
  color: var(--ink);
  opacity:.82;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.handwave{
  display:block;
  margin: 60px auto 0;
  max-width: 420px;
  height: 18px;
  opacity:.7;
}

/* ================================================================
   Peek inside
   ================================================================ */
.peek{
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(93,181,221,.35) 0%, transparent 45%),
    linear-gradient(180deg, var(--sage-deep) 0%, #4E9A3F 100%);
  color: var(--cream);
  padding: 100px 36px;
  margin: 60px 0;
}
.peek-row{
  max-width: 1180px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.peek-card{
  margin: 0;
  text-align:center;
}
.peek-card.tilt-l{ transform: rotate(-2deg);}
.peek-card.tilt-r{ transform: rotate(2deg) translateY(30px);}

.peek-frame{
  background: var(--cream);
  padding: 18px 18px 44px;
  border-radius: 4px;
  box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.05);
  position: relative;
  margin-bottom: 14px;
}
.peek-frame::before{
  content:"";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 78px; height: 18px;
  background: rgba(245,208,64,.65);
  border-left: 1px solid rgba(221,165,53,.3);
  border-right: 1px solid rgba(221,165,53,.3);
}
.peek-frame img{
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  display:block;
  filter: contrast(1.02);
}
.peek-card figcaption{
  font-family: var(--f-sans);
  font-size: 13px;
  color: rgba(255,240,229,.65);
  letter-spacing: .5px;
}
.peek-card figcaption em{
  font-family: var(--f-hand);
  font-style: normal;
  font-size: 18px;
  color: var(--butter);
  margin-left: 6px;
}

/* ================================================================
   Historia
   ================================================================ */
.historia{
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 36px 90px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.historia-side{
  position: sticky;
  top: 40px;
  text-align: left;
}
.asterisk{
  width: 42px; height: 42px;
  margin-bottom: 18px;
}
.caveat{
  font-family: var(--f-hand);
  font-size: 30px;
  line-height: 1.15;
  color: var(--rose-deep);
  margin: 0;
  transform: rotate(-2deg);
  max-width: 260px;
}
.historia-body h2{
  font-family: var(--f-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  margin: 10px 0 26px;
  letter-spacing: -.01em;
}
.historia-body p{
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.historia-body p:first-of-type::first-letter{
  font-family: var(--f-serif);
  font-size: 3.6em;
  float: left;
  line-height: .88;
  padding: 6px 10px 0 0;
  color: var(--rose-deep);
  font-weight: 600;
  font-style: italic;
}

/* ================================================================
   Specs
   ================================================================ */
.specs{
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 36px 100px;
}
.specs-head{
  text-align: center;
  margin-bottom: 40px;
}
.specs-head h2{
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 10px 0 0;
}
.specs-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  background: var(--cream-deep);
  border-radius: 20px;
  padding: 10px 30px;
}
.specs-list > div{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 6px;
  border-bottom: 1px dashed var(--line);
}
.specs-list > div:nth-last-child(-n+2){
  border-bottom: none;
}
.specs-list > div:nth-child(odd){
  border-right: 1px dashed var(--line);
  padding-right: 28px;
}
.specs-list > div:nth-child(even){
  padding-left: 28px;
}
.specs-list dt{
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin:0;
}
.specs-list dd{
  margin:0;
  font-family: var(--f-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  text-align: right;
}

/* ================================================================
   Final CTA
   ================================================================ */
.cta{
  padding: 120px 36px;
  text-align: center;
  position: relative;
}
.cta-inner{
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  background: var(--peach);
  padding: 70px 40px 60px;
  border-radius: 28px;
  transform: rotate(-.6deg);
  box-shadow:
    0 30px 60px rgba(42,24,16,.12),
    0 0 0 1px rgba(255,255,255,.4) inset;
}
.cta-h{
  font-family: var(--f-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ink);
}
.cta-h em{
  font-family: var(--f-hand);
  font-style: normal;
  color: var(--rose-deep);
  font-size: 1.15em;
}
.cta-sub{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 34px;
}
.btn-amazon--big{
  padding: 18px 30px;
  font-size: 17px;
}
.cta-note{
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-style: italic;
}
.cta-regions{
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.cta-regions-lead{
  font-style: italic;
  margin-right: 4px;
}
.cta-regions-dot{ opacity: .5; }
.region-pill{
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(42,31,28,.12);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .2px;
  transition: background .18s, transform .18s, border-color .18s;
}
.region-pill:hover{
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.sparkle{ position: absolute; }
.sparkle-a{ width: 32px; top: -12px; right: 20%; transform: rotate(10deg);}
.sparkle-b{ width: 26px; bottom: 30px; left: 8%; transform: rotate(-15deg);}

/* ================================================================
   Footer
   ================================================================ */
.foot{
  background: var(--ink);
  color: rgba(255,240,229,.75);
  padding: 70px 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
}
.foot .brand{ color: var(--cream);}
.foot .brand-name em{ color: rgba(255,240,229,.55);}
.foot-p{
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(255,240,229,.6);
  max-width: 250px;
  line-height: 1.6;
}
.foot-langs{
  margin: 14px 0 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--butter);
  background: rgba(255,240,229,.06);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,240,229,.12);
}
.foot-langs .dot{ color: rgba(255,240,229,.45); }
.foot h4{
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 14px;
  color: var(--butter);
}
.foot a{
  display: block;
  color: rgba(255,240,229,.72);
  text-decoration: none;
  font-size: 14.5px;
  margin: 6px 0;
  transition: color .2s;
}
.foot a:hover{ color: var(--butter); }
.foot-col--last .foot-small{
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,240,229,.5);
  font-style: italic;
}

/* ================================================================
   Reveal animation
   ================================================================ */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in{
  opacity: 1;
  transform: none;
}

/* ================================================================
   Responsive — tablet 960, phone 640, small phone 400
   ================================================================ */
@media (max-width: 960px){
  body::before{ width: 80vw; height: 80vw; top: -30vw; left: -30vw;}
  body::after { width: 80vw; height: 80vw; bottom: -35vw; right: -30vw;}

  .top{ padding: 18px 20px 6px; gap: 16px;}
  .top-nav{ gap: 14px; font-size: 14px;}
  .top-nav a:not(.pill){ display: none;}
  .brand{ font-size: 19px;}
  .brand-logo{ height: 64px; }

  .hero{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 12px 24px 48px;
    margin: 20px auto 40px;
  }
  .hero-art{ order:-1; max-width: 440px; margin: 0 auto; padding: 16px;}
  .hero-title{ font-size: clamp(46px, 10vw, 72px);}
  .sq-1{ width: 90px; top: 2%;}
  .sq-2{ width: 38px; top: 4%; right: 2%;}
  .sq-3{ width: 80px; bottom: 2%;}

  .grid-4{ grid-template-columns: repeat(2, 1fr); gap: 16px;}
  .feat{ min-height: 210px; padding: 24px 22px 22px;}
  .feat:nth-child(n){ transform: rotate(0);}

  .peek{ padding: 70px 24px; margin: 40px 0;}
  .peek-row{ grid-template-columns: 1fr; gap: 48px; max-width: 360px; margin: 0 auto;}

  .historia{
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 80px 24px 60px;
  }
  .historia-side{ position: static; display: flex; align-items: center; gap: 18px;}
  .asterisk{ margin-bottom: 0; flex-shrink: 0;}
  .caveat{ font-size: 24px; max-width: none;}

  .specs{ padding: 40px 24px 70px;}
  .specs-list{ grid-template-columns: 1fr; padding: 4px 22px;}
  .specs-list > div{
    padding: 16px 4px;
    border-right: none !important;
    padding-right: 4px !important;
    padding-left: 4px !important;
    border-bottom: 1px dashed var(--line) !important;
  }
  .specs-list > div:last-child{ border-bottom: none !important;}

  .cta{ padding: 80px 20px;}
  .cta-inner{ transform: none; padding: 58px 28px 50px;}

  .foot{
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 54px 28px 34px;
    border-radius: 22px 22px 0 0;
  }
  .foot-col--last{ grid-column: 1 / -1;}
}

@media (max-width: 640px){
  body{ font-size: 16px;}

  .top{ padding: 14px 18px 4px; flex-wrap: wrap; gap: 10px;}
  .top-nav{
    margin-left: auto;
    gap: 10px;
  }
  .top-nav a.pill{ padding: 7px 14px; font-size: 13.5px;}
  .lang-switch{ padding: 3px 8px; margin-left: 2px;}
  .lang-switch button{ font-size: 12px;}
  .brand-logo{ height: 52px; }

  .hero{
    padding: 8px 20px 36px;
    margin-top: 10px;
    gap: 26px;
  }
  .hero-art{ max-width: 360px; aspect-ratio: 1/1.02;}
  .hero-title{
    font-size: clamp(42px, 12vw, 58px);
    margin: 18px 0 18px;
  }
  .hero-title .tl-2{ font-size: .48em;}
  .hero-sub{ font-size: 16.5px; margin-bottom: 22px;}
  .hero-ctas{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 26px;
  }
  .btn-amazon{ justify-content: center; padding: 14px 18px;}
  .btn-ghost{ text-align: center;}
  .hero-bullets{ gap: 16px; padding-top: 14px; font-size: 13.5px;}
  .hero-bullets li{ flex: 1 1 45%; min-width: 140px;}

  .tape-tl{ width: 64px; height: 18px; top: 10px; left: 10px;}
  .tape-br{ width: 64px; height: 18px; bottom: 26px; right: 14px;}
  .stamp{ width: 74px; height: 74px; font-size: 18px; right: -4px; bottom: -6px;}
  .sq-1{ display: none;}
  .sq-3{ display: none;}

  .strip{ padding: 18px 20px;}
  .strip-row{ font-size: 15.5px; gap: 10px;}
  .strip-lead{ font-size: 11px;}

  .section-head{ margin-bottom: 42px; padding: 0 8px;}
  .section-head h2{ font-size: clamp(30px, 7.5vw, 40px);}
  .section-lead{ font-size: 16px;}

  .dentro{ padding: 72px 20px 60px;}
  .grid-4{ grid-template-columns: 1fr; gap: 14px;}
  .feat{ min-height: 0; padding: 22px 22px 22px;}

  .peek{ padding: 60px 20px; margin: 30px 0;}
  .peek-row{ gap: 40px; max-width: 320px;}
  .peek-card.tilt-l,
  .peek-card.tilt-r{ transform: rotate(0) translateY(0);}
  .peek-frame{ padding: 14px 14px 34px;}

  .historia{ padding: 60px 20px 50px; gap: 22px;}
  .historia-side{ gap: 14px;}
  .asterisk{ width: 34px; height: 34px;}
  .caveat{ font-size: 20px; line-height: 1.2;}
  .historia-body h2{ font-size: clamp(28px, 7.5vw, 36px);}
  .historia-body p{ font-size: 16.5px;}
  .historia-body p:first-of-type::first-letter{ font-size: 3em; padding: 4px 8px 0 0;}

  .specs{ padding: 30px 20px 60px;}
  .specs-list{ padding: 2px 18px;}
  .specs-list > div{ flex-direction: column; align-items: flex-start; gap: 3px; padding: 13px 2px;}
  .specs-list dd{ text-align: left; font-size: 16.5px;}

  .cta{ padding: 60px 16px;}
  .cta-inner{ padding: 48px 22px 42px; border-radius: 22px;}
  .cta-h{ font-size: clamp(32px, 8vw, 44px);}
  .cta-sub{ font-size: 16px; margin-bottom: 28px;}
  .btn-amazon--big{ padding: 15px 22px; font-size: 15.5px;}
  .sparkle-a{ width: 24px; top: -8px; right: 10%;}
  .sparkle-b{ width: 20px; bottom: 20px; left: 6%;}

  .foot{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 22px 30px;
    text-align: left;
  }
  .foot-col--last{ grid-column: auto;}
  .foot h4{ margin-bottom: 10px;}
}

@media (max-width: 400px){
  .hero-title{ font-size: 40px;}
  .hero-title .tl-2{ font-size: .52em;}
  .top-nav{ gap: 8px;}
  .top-nav a.pill{ padding: 6px 12px;}
  .btn-amazon{ font-size: 14.5px; padding: 13px 16px;}
  .btn-amazon .price{ padding-left: 10px; margin-left: 2px;}
  .hero-bullets{ flex-direction: column; gap: 10px;}
  .hero-bullets li{ flex: auto;}
  .strip-row{ font-size: 14px;}
}

/* Touch devices — disable hover parallax & scale effects */
@media (hover: none){
  .book-wrap:hover{ transform: rotate(-1.8deg);}
  .feat:hover{ transform: rotate(0);}
  .btn-amazon:hover{ transform: none;}
  .top-nav a.pill:hover{ background: var(--ink);}
}

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

/* ================================================================
   Link page (index.html) — link-in-bio style
   ================================================================ */
.lp-body{
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 22px 56px;
}

.lp-stars{
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.lp-star{ position: absolute; opacity: .14; }
.lp-star-1{ width: 110px; top: 6%;  left: 7%;  color: var(--peach-deep);  transform: rotate(-12deg); }
.lp-star-2{ width: 70px;  top: 18%; right: 9%;  color: var(--sage-deep);   transform: rotate(20deg); }
.lp-star-3{ width: 90px;  bottom: 18%; left: 11%; color: var(--butter-deep); transform: rotate(-8deg); }
.lp-star-4{ width: 60px;  bottom: 7%;  right: 13%; color: var(--rose-deep);  transform: rotate(15deg); }

.lp-lang{
  position: fixed;
  top: 22px; right: 22px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-deep);
}
.lp-lang button{
  background: none;
  border: 0;
  padding: 2px 4px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color .18s;
}
.lp-lang button.active{ color: var(--ink); }
.lp-lang button:hover{ color: var(--rose-deep); }
.lp-lang > span{ color: var(--ink-mute); font-size: 12px; opacity:.6; }

.lp-card{
  position: relative;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.lp-head{ margin-bottom: 30px; }

.lp-avatar{
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  padding: 6px;
  box-shadow:
    0 14px 28px rgba(42,24,16,.18),
    0 2px 6px rgba(42,24,16,.08),
    0 0 0 1px rgba(255,255,255,.5) inset;
  transform: rotate(-2deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.lp-avatar:hover{ transform: rotate(0) scale(1.03); }
.lp-avatar img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.lp-brand{
  margin: 0 0 10px;
  display: block;
  line-height: 0;
}
.lp-mark{ color: var(--rose-deep); font-size: 24px; transform: translateY(-1px);}
.lp-name em{ font-style: italic; color: var(--ink-soft); font-weight: 400;}

.lp-logo{
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 6px;
}

.lp-tagline{
  margin: 0 0 8px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  color: var(--ink-mute);
  letter-spacing: .2px;
}
.lp-handwritten{
  margin: 0;
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--rose-deep);
  transform: rotate(-2deg);
  display: inline-block;
}

.lp-links{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.lp-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 18px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--f-sans);
  border: 1.5px solid var(--line);
  box-shadow:
    0 3px 0 rgba(42,24,16,.06),
    0 8px 16px rgba(42,24,16,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align: left;
  min-height: 64px;
}
.lp-btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 5px 0 rgba(42,24,16,.08),
    0 12px 22px rgba(42,24,16,.1);
}
.lp-btn:active{
  transform: translateY(0);
  box-shadow:
    0 2px 0 rgba(42,24,16,.06),
    0 5px 10px rgba(42,24,16,.05);
}

.lp-btn-icon{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-deep);
  color: var(--ink);
}
.lp-btn-icon svg{ width: 22px; height: 22px; }

.lp-btn-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.lp-btn-label{
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: .1px;
  line-height: 1.2;
}
.lp-btn-sub{
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: .2px;
}

.lp-btn-tag{
  font-family: var(--f-hand);
  font-size: 17px;
  color: var(--rose-deep);
  background: var(--cream);
  padding: 2px 10px 3px;
  border-radius: 999px;
  border: 1.5px dashed var(--rose);
  transform: rotate(-6deg);
  flex-shrink: 0;
  line-height: 1;
}

/* Featured (Fluffy Friends) */
.lp-btn--featured{
  background: var(--peach);
  border-color: var(--peach-deep);
  border-bottom-width: 4px;
}
.lp-btn--featured .lp-btn-icon{
  background: white;
  color: var(--rose-deep);
}

/* Brand-coloured icons (Simple Icons paths) on white containers
   with rotating pastel accent borders for visual cohesion */
.lp-btn--amazon   { border-color: var(--rose); }
.lp-btn--amazon .lp-btn-icon{
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.lp-btn-icon--img{
  overflow: hidden;
  padding: 0;
}
.lp-btn-icon--img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-btn--instagram { border-color: var(--butter-deep); }
.lp-btn--instagram .lp-btn-icon{
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  color: white;
}

.lp-btn--tiktok   { border-color: var(--sage-deep); }
.lp-btn--tiktok .lp-btn-icon{
  background: #000000;
  color: white;
}

.lp-btn--youtube  { border-color: var(--mauve-deep); }
.lp-btn--youtube .lp-btn-icon{
  background: white;
  color: #FF0000;
  box-shadow: inset 0 0 0 1.5px rgba(42,24,16,.08);
}

.lp-foot{
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-mute);
  font-family: var(--f-sans);
  letter-spacing: .3px;
}
.lp-foot p{ margin: 0; }

/* ===== Country flag grid (Amazon marketplaces) — 3D push buttons ===== */
.lp-flags{ margin: 4px 0 10px; }

.lp-flags-lead{
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 0 0 14px;
  letter-spacing: .3px;
  font-style: italic;
}

.lp-flags-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lp-flags-grid .lp-flag{
  /* 4 columns with 3 gaps of 10px = (100% - 30px) / 4 */
  flex: 0 0 calc((100% - 30px) / 4);
}

.lp-flag{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 1 / 1.05;
  padding: 10px 4px 8px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow:
    0 3px 0 rgba(42,24,16,.10),
    0 6px 12px rgba(42,24,16,.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s;
  -webkit-tap-highlight-color: transparent;
}

.lp-flag:hover{
  transform: translateY(-3px);
  border-color: var(--rose);
  box-shadow:
    0 6px 0 rgba(42,24,16,.12),
    0 12px 22px rgba(42,24,16,.12);
}

.lp-flag:active{
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(42,24,16,.08),
    0 2px 4px rgba(42,24,16,.05);
}

.lp-flag-img{
  display: block;
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  background: #f0e8dc;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.08),
    0 1px 2px rgba(0,0,0,.08);
  -webkit-user-drag: none;
  user-select: none;
}

.lp-flag-code{
  font-family: var(--f-sans);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 1.2px;
  line-height: 1;
}

@media (max-width: 520px){
  .lp-flags-grid{ gap: 8px; }
  .lp-flag{ padding: 9px 3px 7px; gap: 6px; }
  .lp-flag-img{ width: 42px; height: 28px; }
  .lp-flag-code{ font-size: 10.5px; letter-spacing: 1px; }
}

@media (max-width: 480px){
  .lp-body{ padding: 52px 16px 40px; }
  .lp-lang{ top: 16px; right: 16px; }
  .lp-avatar{ width: 124px; height: 124px; border-radius: 24px; }
  .lp-brand{ font-size: 26px; }
  .lp-logo{ max-width: 280px; }
  .lp-tagline{ font-size: 14px; }
  .lp-handwritten{ font-size: 19px; }
  .lp-btn{ padding: 10px 14px; min-height: 60px; }
  .lp-btn-label{ font-size: 14.8px; }
  .lp-btn-sub{ font-size: 12px; }
  .lp-btn-icon{ width: 36px; height: 36px; }
  .lp-btn-icon svg{ width: 20px; height: 20px; }
  .lp-star-1{ width: 80px; }
  .lp-star-2{ width: 50px; }
  .lp-star-3{ width: 64px; }
  .lp-star-4{ width: 44px; }
}

@media (max-width: 360px){
  .lp-btn-tag{ display: none; }
  .lp-flags-grid .lp-flag{ flex: 0 0 calc((100% - 20px) / 3); }
}

@media (hover: none){
  .lp-avatar:hover{ transform: rotate(-2deg); }
  .lp-btn:hover{ transform: none; box-shadow: 0 3px 0 rgba(42,24,16,.06), 0 8px 16px rgba(42,24,16,.06);}
  .lp-flag:hover{
    transform: none;
    border-color: var(--line);
    box-shadow: 0 3px 0 rgba(42,24,16,.10), 0 6px 12px rgba(42,24,16,.06);
  }
}

.lp-foot p{ margin: 0 0 4px; }
.lp-foot a{
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color .18s;
}
.lp-foot a:hover{ color: var(--rose-deep); }

/* book.html legal link in footer */
.foot-legal{
  margin: 14px 0 0;
  font-size: 12.5px;
}
.foot-legal a{
  color: rgba(255,240,229,.5) !important;
  text-decoration: underline;
  text-decoration-color: rgba(255,240,229,.2);
  text-underline-offset: 3px;
}
.foot-legal a:hover{ color: var(--butter) !important; }

/* ================================================================
   Legal page (legal.html)
   ================================================================ */
.legal-body{
  background: var(--cream);
  min-height: 100vh;
  padding: 0;
}

.legal-top{
  max-width: 820px;
  margin: 0 auto;
  padding: 26px 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-back-link{
  font-family: var(--f-sans);
  font-size: 13.5px;
  color: var(--ink-mute);
  text-decoration: none;
  letter-spacing: .3px;
  transition: color .18s;
}
.legal-back-link:hover{ color: var(--rose-deep); }

.legal-main{
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 36px 90px;
}

.legal-head{
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--line);
}
.legal-head h1{
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  margin: 12px 0 18px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.legal-intro{
  margin: 0 auto;
  max-width: 580px;
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.55;
  background: var(--cream-deep);
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.legal-intro a{ color: var(--ink-soft); }

.legal-section{
  margin-bottom: 48px;
}
.legal-section h2{
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.legal-section p{
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-section a{
  color: var(--rose-deep);
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-underline-offset: 2px;
}
.legal-section a:hover{ color: var(--ink); text-decoration-color: var(--ink); }
.legal-section strong{ color: var(--ink); font-weight: 600;}
.legal-section code{
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--cream-deep);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.legal-list{
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.legal-list li{ margin-bottom: 6px; }
.legal-list li::marker{ color: var(--rose-deep); }

.legal-dl{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 22px;
  margin: 0 0 18px;
  background: var(--cream-deep);
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.legal-dl dt{
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  align-self: center;
}
.legal-dl dd{
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}

.legal-table{
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 14.5px;
  background: var(--cream-deep);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.legal-table th,
.legal-table td{
  text-align: left;
  padding: 10px 14px;
  vertical-align: top;
}
.legal-table thead th{
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-mute);
  border-bottom: 1px dashed var(--line);
}
.legal-table tbody td{
  color: var(--ink);
  border-top: 1px dashed var(--line);
}

.legal-foot{
  margin: 60px 0 0;
  text-align: center;
  font-size: 14.5px;
}
.legal-foot a{
  color: var(--ink-mute);
  text-decoration: none;
  border-bottom: 1.5px solid var(--rose);
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.legal-foot a:hover{ color: var(--rose-deep); border-bottom-color: var(--rose-deep);}

@media (max-width: 640px){
  .legal-top{ padding: 18px 22px 0; }
  .legal-main{ padding: 36px 22px 70px; }
  .legal-head{ margin-bottom: 38px; padding-bottom: 22px; }
  .legal-section{ margin-bottom: 38px; }
  .legal-section p, .legal-list{ font-size: 15.5px; }
  .legal-dl{ grid-template-columns: 1fr; gap: 4px 0; padding: 16px 18px; }
  .legal-dl dt{ font-size: 11.5px; padding-top: 6px; }
  .legal-dl dt:first-child{ padding-top: 0; }
  .legal-table{ font-size: 13.5px; }
  .legal-table th, .legal-table td{ padding: 8px 10px; }
}
