/* ==============================
   Small Change Kids — styles
   ============================== */

:root {
  /* Brand palette */
  --cream:        #FAF6F0;
  --chocolate:    #3E2723;
  --gold:         #C68A2E;
  --brown-mid:    #5D4037;
  --taupe:        #D7CCC8;
  --brown-light:  #8D6E63;
  --deep-brown:   #2C1F1A;
  --green:        #6B8E4E;
  --cream-soft:   #A89080;

  /* Type scale */
  --f-heading: 'Baloo 2', system-ui, sans-serif;
  --f-body:    'Nunito', system-ui, sans-serif;

  /* Layout */
  --maxw: 1120px;
  --maxw-narrow: 640px;
  --pad-x: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vw, 140px);
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--chocolate);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.narrow { max-width: var(--maxw-narrow); }


/* ---------- Shared elements ---------- */

.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: currentColor;
  opacity: .35;
  transition: width .9s cubic-bezier(.2,.7,.2,1) .15s;
  transform: translateX(-50%);
}
.is-visible .eyebrow::after,
.hero .eyebrow::after { width: 32px; }
.eyebrow--gold   { color: var(--gold); }
.eyebrow--muted  { color: var(--brown-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              box-shadow .25s cubic-bezier(.2,.7,.2,1),
              background .25s ease,
              color .25s ease,
              border-color .25s ease;
  will-change: transform;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.28) 50%, transparent 75%);
  transform: translateX(-110%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(110%); }

.btn--primary {
  background: var(--gold);
  color: var(--cream);
  box-shadow: 0 2px 0 rgba(62,39,35,.10), 0 6px 18px -8px rgba(198,138,46,.4);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.015);
  background: #B57D27;
  box-shadow: 0 14px 34px -10px rgba(198,138,46,.55), 0 4px 0 rgba(62,39,35,.15);
}
.btn--primary:active { transform: translateY(0) scale(.99); }

.btn--large { padding: 20px 44px; font-size: 18px; }

.btn--ghost {
  background: transparent;
  color: var(--chocolate);
  border: 1.5px solid var(--taupe);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(198,138,46,.06);
}


/* ---------- Image placeholders ---------- */

.img-placeholder {
  border: 1.5px dashed var(--taupe);
  background: rgba(215, 204, 200, 0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}


/* ---------- Section 1: Hero ---------- */

.hero {
  padding: clamp(56px, 9vw, 96px) 0 var(--section-y);
}
.hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  margin-bottom: clamp(36px, 5vw, 52px);
  animation: fadeDown .9s cubic-bezier(.2,.7,.2,1) .1s backwards;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  width: 220px;
  max-width: 80%;
  animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .2s backwards;
}
.hero__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--taupe), transparent);
}
.hero__divider-coin {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(198,138,46,0.35));
  animation: coinNudge 5s ease-in-out infinite;
}
@keyframes coinNudge {
  0%, 92%, 100% { transform: rotate(0deg); }
  95%           { transform: rotate(-12deg); }
  98%           { transform: rotate(8deg); }
}
.hero__logo-img {
  width: clamp(240px, 30vw, 340px);
  height: auto;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__headline {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -.5px;
  color: var(--chocolate);
  max-width: 19ch;
  margin: 0 0 28px;
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) .25s backwards;
}
.hero__sub {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--brown-mid);
  max-width: 52ch;
  margin: 0 auto clamp(48px, 7vw, 72px);
  line-height: 1.6;
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) .4s backwards;
}
.hero__illustration-wrap {
  width: min(640px, 96%);
  margin: 0 auto clamp(40px, 6vw, 64px);
  animation: fadeUp 1.1s cubic-bezier(.2,.7,.2,1) .55s backwards;
}
.hero__illustration {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  animation: figgyFloat 7s ease-in-out infinite;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero__illustration-wrap:hover .hero__illustration {
  animation-play-state: paused;
  transform: scale(1.02);
}
@keyframes figgyFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .btn--primary {
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) .7s backwards;
}


/* ---------- Section 2: Problem ---------- */

.problem {
  padding: var(--section-y) 0;
  text-align: center;
}
.problem__headline {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.3;
  color: var(--chocolate);
  margin: 0 0 36px;
}
.problem__body p {
  color: var(--brown-mid);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 22px;
}


/* ---------- Section 3: Meet Figgy ---------- */

.figgy { padding: var(--section-y) 0; }
.figgy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.figgy__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.figgy__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.figgy__media:hover .figgy__img { transform: scale(1.04); }

.figgy__headline {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.3;
  color: var(--chocolate);
  margin: 0 0 26px;
}
.figgy__text p {
  color: var(--brown-mid);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
}

@media (max-width: 760px) {
  .figgy__grid { grid-template-columns: 1fr; }
  .figgy__media { order: -1; }
}


/* ---------- Section 3.5: What changes (outcomes) ---------- */

.changes {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.changes::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(198,138,46,0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(107,142,78,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.changes .container { position: relative; z-index: 1; }

.changes__headline {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.2;
  color: var(--chocolate);
  margin: 0 auto clamp(56px, 8vw, 80px);
  max-width: 22ch;
  letter-spacing: -.4px;
}
.changes__headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.changes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
}

.changes__col {
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 40px);
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
              box-shadow .4s ease,
              border-color .4s ease;
  overflow: hidden;
}
.changes__col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(.18);
  transform-origin: left center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.changes__col--parent::before { background: var(--green); }
.is-visible .changes__col::before { transform: scaleX(1); transition-delay: .3s; }
.changes__col:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -22px rgba(62,39,35,.24);
  border-color: rgba(198,138,46,.4);
}
.changes__col--parent:hover { border-color: rgba(107,142,78,.4); }

.changes__col-tag {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(198,138,46,0.1);
  border-radius: 999px;
}
.changes__col--parent .changes__col-tag {
  color: var(--green);
  background: rgba(107,142,78,0.1);
}
.changes__col-title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.3;
  color: var(--chocolate);
  margin: 0 0 32px;
  letter-spacing: -.2px;
}

.changes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.changes__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.is-visible .changes__list li { opacity: 1; transform: translateX(0); }
.is-visible .changes__list li:nth-child(1) { transition-delay: .35s; }
.is-visible .changes__list li:nth-child(2) { transition-delay: .5s; }
.is-visible .changes__list li:nth-child(3) { transition-delay: .65s; }

.changes__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198,138,46,0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
}
.changes__col--parent .changes__icon {
  background: rgba(107,142,78,0.14);
  color: var(--green);
}
.changes__icon svg { width: 22px; height: 22px; }
.changes__list li:hover .changes__icon {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(198,138,46,0.2);
}
.changes__col--parent .changes__list li:hover .changes__icon {
  background: rgba(107,142,78,0.22);
}

.changes__body { padding-top: 4px; }
.changes__lead {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: var(--chocolate);
  margin: 0 0 6px;
}
.changes__sub {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--brown-mid);
  margin: 0;
}

@media (max-width: 860px) {
  .changes__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ---------- Section 4: The Book ---------- */

.book {
  padding: var(--section-y) 0;
  background: var(--deep-brown);
  color: var(--cream);
  text-align: center;
}
.book__inner { display: flex; flex-direction: column; align-items: center; }
.book .eyebrow--gold { color: var(--gold); }
.book__title {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--cream);
}
.book__subtitle {
  color: var(--cream-soft);
  font-size: 17px;
  max-width: 56ch;
  margin: 0 auto clamp(40px, 6vw, 60px);
  line-height: 1.7;
}
.book__mockup {
  width: min(380px, 78%);
  height: auto;
  border-radius: 6px;
  margin-bottom: clamp(36px, 5vw, 56px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.55), 0 8px 24px -8px rgba(0,0,0,.4);
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s ease;
  cursor: default;
}
.book__mockup:hover {
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-4px) scale(1.02);
  box-shadow:
    -30px 40px 90px -20px rgba(0,0,0,.65),
    0 8px 24px -6px rgba(0,0,0,.5),
    0 0 0 1px rgba(198,138,46,.15);
}

.book__features-intro {
  color: var(--cream-soft);
  font-size: 15px;
  letter-spacing: 0.3px;
  margin: 0 0 28px;
}
.book__features {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  width: 100%;
}
.book__spec {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 clamp(36px, 5vw, 48px);
}
.book__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
  text-align: center;
  transition: transform .3s ease;
}
.book__features li:hover { transform: translateY(-3px); }
.book__features li:hover .feat-icon { transform: rotate(-8deg) scale(1.1); }
.feat-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}

.book__inside {
  color: var(--taupe);
  font-size: 15px;
  max-width: 60ch;
  margin: 0 auto clamp(40px, 6vw, 56px);
  line-height: 1.75;
}

.buy {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 760px;
}
.buy--single { max-width: 480px; }
.buy--single .buy__option { flex: 1 1 100%; }

.buy__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 0;
  line-height: 1;
}
.buy__price-old {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(168,144,128,0.7);
  text-decoration-thickness: 2px;
}
.buy__option {
  flex: 1 1 280px;
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(215, 204, 200, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              border-color .35s ease,
              background .35s ease,
              box-shadow .35s ease;
}
.buy__option:hover {
  transform: translateY(-4px);
  border-color: rgba(198,138,46,0.55);
  box-shadow: 0 20px 48px -20px rgba(0,0,0,.6);
}
.buy__option--primary {
  border-color: rgba(198,138,46,0.5);
  background: rgba(198,138,46,0.08);
}
.buy__label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.buy__price {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}
.buy__price--small { font-size: 32px; color: var(--cream); }
.buy__meta {
  font-size: 13px;
  color: var(--cream-soft);
  margin: 0 0 12px;
  line-height: 1.6;
  max-width: 32ch;
}
.buy__option .btn--ghost { color: var(--cream); border-color: rgba(215,204,200,.3); }
.buy__option .btn--ghost:hover { color: var(--gold); border-color: var(--gold); }


/* ---------- Section 5: Peek inside ---------- */

.peek {
  padding: var(--section-y) 0;
  text-align: center;
}
.peek__headline {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--chocolate);
  margin: 0 0 clamp(40px, 6vw, 56px);
  line-height: 1.3;
}
.peek__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.peek__card {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid var(--taupe);
  border-radius: 6px;
  box-shadow: 0 14px 36px -16px rgba(62,39,35,.25);
  display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  cursor: default;
}
.peek__card--tilt-l { transform: rotate(-2.5deg); }
.peek__card--tilt-r { transform: rotate(2.5deg); }
.peek__card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.04);
  box-shadow: 0 32px 60px -22px rgba(62,39,35,.35), 0 0 0 1px rgba(198,138,46,.15);
  z-index: 2;
  position: relative;
}

.peek__quote {
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--brown-mid);
  max-width: 36ch;
  margin: clamp(48px, 7vw, 72px) auto 0;
  line-height: 1.55;
  border: 0;
  padding: 0;
  position: relative;
}
.peek__quote::before, .peek__quote::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--taupe);
  margin: 18px auto;
}

@media (max-width: 720px) {
  .peek__cards {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 460px) {
  .peek__cards { grid-template-columns: 1fr; max-width: 280px; }
  .peek__card--tilt-l, .peek__card--tilt-r { transform: none; }
}


/* ---------- Section 5.5: Why this exists ---------- */

.why {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--taupe);
}
.why__headline {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  color: var(--chocolate);
  margin: 0 auto clamp(40px, 6vw, 56px);
  max-width: 22ch;
  letter-spacing: -.4px;
}
.why__headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.why__body {
  text-align: left;
  margin: 0 auto clamp(48px, 7vw, 72px);
}
.why__body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--brown-mid);
  margin: 0 0 22px;
}
.why__body p:first-child::first-letter {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 56px;
  float: left;
  line-height: 1;
  color: var(--gold);
  padding: 4px 12px 0 0;
  margin-top: 4px;
}

.why__pivot {
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 36px) clamp(28px, 3.5vw, 40px);
  margin: 0 0 clamp(48px, 7vw, 72px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.why__pivot:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(62,39,35,.22);
}
.why__pivot-title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  color: var(--chocolate);
  margin: 0 0 14px;
}
.why__pivot p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--brown-mid);
  margin: 0 0 14px;
}
.why__pivot p:last-child { margin-bottom: 0; }

.why__close {
  text-align: left;
  max-width: 56ch;
  margin: 0 auto;
}
.why__close p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--brown-mid);
  margin: 0 0 22px;
}
.why__close-line {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 26px) !important;
  font-family: var(--f-heading);
  color: var(--chocolate) !important;
  margin-top: 28px !important;
}
.why__close-line em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 600px) {
  .why__body p:first-child::first-letter {
    font-size: 44px;
    padding-right: 8px;
  }
}


/* ---------- Section 6: Series ---------- */

.series {
  padding: var(--section-y) 0;
  text-align: center;
}
.series__headline {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--chocolate);
  margin: 0 0 22px;
}
.series__body {
  color: var(--brown-mid);
  max-width: 56ch;
  margin: 0 auto clamp(40px, 6vw, 60px);
  font-size: 17px;
  line-height: 1.7;
}
.series__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: end;
}
.series__card {
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: 18px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease,
              opacity .35s ease,
              border-color .35s ease;
}
.series__card--available {
  transform: translateY(-12px);
  box-shadow: 0 24px 50px -22px rgba(62,39,35,.32);
  border-color: rgba(198,138,46,.4);
}
.series__card--available:hover {
  transform: translateY(-16px);
  box-shadow: 0 32px 60px -22px rgba(62,39,35,.4), 0 0 0 1px rgba(198,138,46,.3);
}
.series__card--soon {
  opacity: 0.65;
  filter: saturate(.85);
}
.series__card--soon:hover {
  opacity: 0.95;
  filter: saturate(1);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -18px rgba(62,39,35,.25);
  border-color: var(--brown-light);
}
.series__cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}
.series__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--taupe);
  background: rgba(215,204,200,.18);
  color: var(--brown-light);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
}
.series__title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--chocolate);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.badge {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge--available {
  background: var(--gold);
  color: var(--cream);
  box-shadow: 0 0 0 0 rgba(198,138,46,.5);
  animation: badgePulse 2.6s ease-in-out infinite;
}
.badge--soon { background: var(--brown-light); color: var(--cream); }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,138,46,.5); }
  50%      { box-shadow: 0 0 0 10px rgba(198,138,46,0); }
}

@media (max-width: 760px) {
  .series__row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .series__card--available { transform: none; }
}


/* ---------- Section 7: Final / footer ---------- */

.final {
  background: var(--deep-brown);
  color: var(--cream);
  padding: var(--section-y) 0 64px;
  text-align: center;
}
.final__inner { display: flex; flex-direction: column; align-items: center; }
.final__line {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
  color: var(--cream);
  max-width: 26ch;
  margin: 0 0 28px;
}
.final__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 0 0 24px;
}
.final__price-old {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--cream-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(168,144,128,0.7);
  text-decoration-thickness: 2px;
}
.final__price-tag {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(198,138,46,0.12);
  border: 1px solid rgba(198,138,46,0.3);
  border-radius: 999px;
  padding: 6px 14px;
}
.final__meta {
  color: var(--cream-soft);
  font-size: 14px;
  margin: 18px 0 0;
  max-width: 48ch;
  line-height: 1.6;
}
.final__footer {
  margin-top: clamp(64px, 9vw, 96px);
  padding-top: 36px;
  border-top: 1px solid rgba(215, 204, 200, 0.14);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.final__logo {
  width: clamp(280px, 38vw, 380px);
  height: auto;
  margin-bottom: 4px;
}
.final__info-link {
  color: var(--brown-light);
  text-decoration: none;
  transition: color .2s ease;
}
.final__info-link:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.final__copy {
  font-size: 13px;
  color: var(--brown-light);
  margin: 0;
}
.final__email {
  font-size: 15px;
  color: var(--cream);
  margin: 0;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}
.final__email::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.final__email:hover { color: var(--gold); }
.final__email:hover::after { transform: scaleX(1); }


/* ---------- Legal pages ---------- */

.legal {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  max-width: 720px;
  margin: 0 auto;
}
.legal__nav {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.legal__back {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--brown-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s ease, transform .25s ease;
}
.legal__back:hover { color: var(--gold); transform: translateX(-3px); }
.legal h1 {
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.15;
  color: var(--chocolate);
  margin: 0 0 12px;
}
.legal__updated {
  color: var(--brown-light);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 36px;
}
.legal h2 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--chocolate);
  margin: 36px 0 12px;
}
.legal p, .legal li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--brown-mid);
}
.legal ul { padding-left: 22px; }
.legal a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__notice {
  background: rgba(198,138,46,0.08);
  border: 1px solid rgba(198,138,46,0.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--chocolate);
}


/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(.99);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .btn::after { display: none; }
  .hero__illustration,
  .hero__logo,
  .hero__headline,
  .hero__sub,
  .hero .btn--primary { animation: none; }
  .badge--available { animation: none; }
}
