@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fredoka:wght@500;600;700&display=swap");

:root {
  --ink: #17323d;
  --muted: #60727a;
  --paper: #fffdf8;
  --surface: #ffffff;
  --lime: #b7dc43;
  --lime-dark: #6f9e20;
  --coral: #ff6b5e;
  --orange: #ff9e3f;
  --sky: #49b8e8;
  --plum: #6f3279;
  --purple: #7258c9;
  --yellow: #ffd85a;
  --green: #22b573;
  --wa: #24b867;
  --line: rgba(23, 50, 61, 0.12);
  --shadow-sm: 0 10px 30px rgba(34, 66, 75, 0.10);
  --shadow-lg: 0 24px 70px rgba(34, 66, 75, 0.16);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-tint {
  background: #f3f8ec;
}

.section-sky {
  background: #eff9fd;
}

.section-books {
  color: #fffaf2;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(255,216,90,.12), transparent 24%),
    #3f214e;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head p {
  max-width: 590px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-books .section-head p,
.section-books .eyebrow {
  color: rgba(255, 250, 242, .75);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Fredoka", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7vw, 6.65rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}

h4 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--lime-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: .9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 12px;
  border: 1px solid rgba(23, 50, 61, .1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.86);
  font-size: .78rem;
  font-weight: 700;
}

.tag-dark {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn::after {
  display: inline-block;
  content: "→";
  transition: transform .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  color: #17323d;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 181, 54, .28);
}

.btn-primary:hover {
  background: #ffe47c;
  box-shadow: 0 16px 34px rgba(255, 181, 54, .35);
}

.btn-secondary {
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-wa {
  color: #fff;
  background: var(--wa);
  box-shadow: 0 12px 30px rgba(36, 184, 103, .26);
}

.btn-wa::before,
.floating-wa::before {
  width: 20px;
  height: 20px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.04 2a9.84 9.84 0 0 0-8.51 14.78L2 22l5.36-1.48A9.97 9.97 0 1 0 12.04 2Zm0 17.98a8.1 8.1 0 0 1-4.13-1.13l-.3-.18-3.18.88.85-3.1-.2-.32A8.06 8.06 0 1 1 12.04 20Zm4.43-6.06c-.24-.12-1.44-.7-1.66-.79-.22-.08-.38-.12-.55.12-.16.24-.63.79-.77.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.95-1.2a7.29 7.29 0 0 1-1.35-1.67c-.14-.24-.01-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.55-1.31-.75-1.8-.2-.47-.4-.41-.55-.42h-.46c-.16 0-.42.06-.65.3-.22.24-.85.83-.85 2.02s.87 2.34.99 2.5c.12.16 1.7 2.6 4.13 3.65.58.25 1.03.4 1.38.51.58.18 1.1.16 1.52.1.46-.07 1.44-.59 1.64-1.16.2-.57.2-1.06.14-1.16-.06-.1-.22-.16-.46-.28Z'/%3E%3C/svg%3E");
  content: "";
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.text-link::after {
  content: "↗";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

button.text-link {
  min-height: 44px;
  padding: 10px 12px 10px 17px;
  border: 1px solid rgba(111, 158, 32, .2);
  border-radius: 999px;
  color: #35570d;
  background: #edf8d2;
  box-shadow: 0 7px 18px rgba(72, 108, 24, .1);
  font-size: .88rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

button.text-link::after {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--lime-dark);
  font-size: .82rem;
  transition: transform .25s ease, background .25s ease;
}

button.text-link:hover {
  color: #fff;
  border-color: var(--lime-dark);
  background: var(--lime-dark);
  box-shadow: 0 12px 25px rgba(72, 108, 24, .2);
  transform: translateY(-2px);
}

button.text-link:hover::after {
  color: var(--lime-dark);
  background: #fff;
  transform: rotate(45deg);
}

button.text-link:active {
  box-shadow: 0 4px 10px rgba(72, 108, 24, .14);
  transform: translateY(0);
}

.service-card:nth-child(3n + 2) button.text-link {
  color: #883c34;
  border-color: rgba(255, 107, 94, .2);
  background: #fff0ed;
  box-shadow: 0 7px 18px rgba(155, 59, 49, .08);
}

.service-card:nth-child(3n + 2) button.text-link::after {
  background: var(--coral);
}

.service-card:nth-child(3n + 2) button.text-link:hover {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 12px 25px rgba(190, 64, 52, .18);
}

.service-card:nth-child(3n + 2) button.text-link:hover::after {
  color: var(--coral);
  background: #fff;
}

.service-card:nth-child(3n) button.text-link {
  color: #155c78;
  border-color: rgba(73, 184, 232, .24);
  background: #e8f7fd;
  box-shadow: 0 7px 18px rgba(31, 126, 166, .08);
}

.service-card:nth-child(3n) button.text-link::after {
  background: #278db7;
}

.service-card:nth-child(3n) button.text-link:hover {
  color: #fff;
  border-color: #278db7;
  background: #278db7;
  box-shadow: 0 12px 25px rgba(31, 126, 166, .18);
}

.service-card:nth-child(3n) button.text-link:hover::after {
  color: #278db7;
  background: #fff;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--yellow), var(--coral), var(--sky));
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(31, 56, 65, .08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 70px;
  height: 68px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.14rem;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links > a {
  position: relative;
  padding: 10px 12px;
  color: #38505a;
  font-size: .91rem;
  font-weight: 600;
}

.nav-links > a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
  transform: scaleX(1);
}

.nav-links > a.active {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 44px;
  padding: 11px 17px;
  font-size: .88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 76px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(73,184,232,.23), transparent 24%),
    radial-gradient(circle at 3% 82%, rgba(183,220,67,.23), transparent 25%),
    linear-gradient(145deg, #fffdf8, #f9fff4);
}

.hero::before {
  position: absolute;
  width: 450px;
  height: 450px;
  top: -210px;
  left: 37%;
  border: 2px dashed rgba(255,107,94,.2);
  border-radius: 50%;
  content: "";
  animation: slow-spin 28s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--coral);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: .03em;
  left: 0;
  z-index: -1;
  height: .19em;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: rotate(-2deg);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 30px;
  color: #4d646d;
  font-size: .9rem;
  font-weight: 700;
}

.hero-trust span::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--lime-dark);
  content: "✓";
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-main-image {
  position: absolute;
  inset: 35px 16px 25px 55px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 44% 56% 34% 66% / 38% 38% 62% 62%;
  background: #dcebd0;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-float {
  position: absolute;
  z-index: 2;
  padding: 10px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: float 4.8s ease-in-out infinite;
}

.hero-float img {
  width: 145px;
  height: 112px;
  border-radius: 15px;
  object-fit: cover;
}

.hero-float small {
  display: block;
  padding: 7px 5px 2px;
  font-weight: 700;
}

.hero-float.one {
  top: 5px;
  left: 0;
}

.hero-float.two {
  right: -10px;
  bottom: 10px;
  animation-delay: -2.4s;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  padding: 14px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255,216,90,.34);
  font-family: "Fredoka", sans-serif;
  font-size: .9rem;
  line-height: 1.12;
  text-align: center;
  transform: rotate(8deg);
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape-dots {
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--orange) 2px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: .5;
}

.shape-squiggle {
  width: 88px;
  height: 24px;
  border-top: 7px solid var(--sky);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero .shape-dots {
  bottom: 20px;
  left: 38%;
}

.hero .shape-squiggle {
  top: 65px;
  left: 4%;
}

.mini-marquee {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: "Fredoka", sans-serif;
  font-size: .95rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.marquee-track span::after {
  color: var(--yellow);
  content: "✦";
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(36, 65, 74, .07);
}

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #e9efe6;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.card:hover .card-media img,
.gallery-item:hover img {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.card-body p {
  margin-bottom: 20px;
  color: var(--muted);
}

.card-body .text-link,
.card-body .btn {
  margin-top: auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-item {
  position: relative;
  padding: 28px;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 17px;
  color: var(--ink);
  background: #ecf7cd;
  font-family: "Fredoka", sans-serif;
  font-size: 1.35rem;
}

.feature-item:nth-child(2) .feature-icon {
  background: #ffe2df;
}

.feature-item:nth-child(3) .feature-icon {
  background: #ddf4ff;
}

.feature-item:nth-child(4) .feature-icon {
  background: #eee9ff;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media > img {
  width: 100%;
  max-height: 610px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-media .image-note {
  position: absolute;
  right: -22px;
  bottom: -22px;
  max-width: 245px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: #fff;
  background: var(--lime-dark);
  content: "✓";
  font-size: .7rem;
  font-weight: 700;
}

.scroller-wrap {
  position: relative;
}

.scroller {
  display: grid;
  grid-auto-columns: minmax(290px, 34%);
  grid-auto-flow: column;
  gap: 22px;
  padding: 5px 2px 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.scroller > * {
  scroll-snap-align: start;
}

.scroller-controls {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 18px;
}

.round-button {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.round-button:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}

.product-card {
  min-height: 420px;
}

.product-card .card-media {
  height: 255px;
}

.product-card .btn {
  width: 100%;
}

.book-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.book-covers {
  position: relative;
  min-height: 540px;
}

.book-covers img {
  position: absolute;
  width: min(58%, 300px);
  border-radius: 16px;
  box-shadow: 0 25px 55px rgba(0,0,0,.28);
}

.book-covers img:first-child {
  top: 10px;
  left: 8%;
  z-index: 2;
  transform: rotate(-5deg);
}

.book-covers img:nth-child(2) {
  right: 4%;
  bottom: 10px;
  transform: rotate(6deg);
}

.book-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: .82rem;
  font-weight: 700;
}

.book-feature p {
  color: rgba(255,250,242,.76);
}

.book-feature .check-list li::before {
  color: var(--plum);
  background: var(--yellow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #e9efe6;
  cursor: zoom-in;
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  min-height: 520px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  color: #fff;
  background: rgba(12, 33, 41, .72);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 700;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: none;
}

.filters,
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter,
.tab-button {
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.filter:hover,
.tab-button:hover {
  transform: translateY(-2px);
}

.filter.active,
.tab-button.active {
  color: #fff;
  background: var(--ink);
}

.filterable.hidden,
.tab-panel.hidden {
  display: none;
}

.cta {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 30%, rgba(183,220,67,.22), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(73,184,232,.22), transparent 28%),
    var(--ink);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.cta h2 {
  max-width: 800px;
  margin-bottom: 10px;
}

.cta p {
  margin: 0;
  color: rgba(255,255,255,.7);
}

.cta .shape-dots {
  top: 12px;
  right: 5%;
  opacity: .2;
}

.page-hero {
  position: relative;
  padding: 105px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, rgba(73,184,232,.16), transparent 28%),
    radial-gradient(circle at 4% 100%, rgba(183,220,67,.19), transparent 25%),
    #fffdf8;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero-visual {
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  max-height: 490px;
  border-radius: 46% 54% 58% 42% / 46% 42% 58% 54%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--coral);
}

.breadcrumb-light {
  color: rgba(255,255,255,.65);
}

.breadcrumb span::before {
  margin-right: 9px;
  content: "/";
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.story-card:nth-child(2) {
  background: #f0f9d7;
}

.story-card:nth-child(3) {
  background: #eef8fc;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 70px;
  margin-top: 42px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.timeline-card:nth-child(even) {
  transform: translateY(50px);
}

.quote-panel {
  position: relative;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--plum);
}

.quote-panel::before {
  display: block;
  margin-bottom: 15px;
  color: var(--yellow);
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .6;
}

.quote-panel p {
  color: rgba(255,255,255,.78);
}

.stateless-highlight {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}

.stateless-highlight img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stateless-highlight div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: #fff;
}

.stateless-highlight p {
  color: rgba(255,255,255,.72);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-button::after {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--ink);
  background: #edf3ef;
  content: "+";
  font-size: 1.2rem;
  transition: transform .25s ease;
}

.accordion-button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-button[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
}

.contact-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list > li > a,
.contact-list > li > span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 15px;
  background: #f6f8f5;
}

.contact-list > li > a:hover {
  background: #edf7d6;
}

.contact-list > li > a > span:first-child,
.contact-list > li > span > span:first-child {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.contact-list > li > a:nth-child(n) > span:first-child {
  background: #316ff6;
}

.contact-list > li > a[href^="#"] > span:first-child,
.contact-list > li > a[href^="tel"] > span:first-child,
.contact-list > li > a[href^="mailto"] > span:first-child {
  background: var(--ink);
}

.contact-list > li > a[data-whatsapp] > span:first-child {
  background: var(--wa);
}

.contact-list > li > a > span:last-child,
.contact-list > li > span > span:last-child {
  display: block;
  min-width: 0;
}

.contact-list b {
  display: block;
  font-size: .79rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-list small {
  color: var(--muted);
}

.contact-panel {
  position: relative;
  min-height: 520px;
  padding: 48px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,216,90,.26), transparent 30%),
    var(--ink);
}

.contact-panel p {
  max-width: 550px;
  color: rgba(255,255,255,.72);
}

.contact-bubbles {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 290px;
  height: 290px;
  border: 42px solid rgba(73,184,232,.23);
  border-radius: 50%;
}

.contact-bubbles::before,
.contact-bubbles::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.contact-bubbles::before {
  width: 80px;
  height: 80px;
  top: -85px;
  left: 5px;
  background: rgba(255,107,94,.8);
}

.contact-bubbles::after {
  width: 50px;
  height: 50px;
  top: 4px;
  left: -95px;
  background: rgba(183,220,67,.8);
}

.video-shell {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #18262c;
  box-shadow: var(--shadow-lg);
}

.video-shell video {
  width: 100%;
  max-height: 680px;
  background: #18262c;
}

.video-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  color: #fff;
}

.video-note p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.story-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(73, 184, 232, .15), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(114, 88, 201, .22), transparent 27%),
    #102830;
}

.story-section .section-head {
  align-items: center;
}

.story-section .section-head p,
.story-section .eyebrow {
  color: rgba(255, 255, 255, .7);
}

.story-theatre {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
  gap: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 38px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  backdrop-filter: blur(12px);
}

.story-screen {
  position: relative;
  z-index: 2;
  min-height: 570px;
  overflow: hidden;
  border-radius: 26px;
  background: #07171d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.story-screen video {
  width: 100%;
  height: 100%;
  min-height: 570px;
  max-height: 720px;
  object-fit: contain;
  background: #07171d;
}

.story-screen::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.story-start {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 23, 29, .2), rgba(7, 23, 29, .86)),
    url("The-Day-The-Rain-Stopped.jpg") center / cover no-repeat;
  text-align: center;
}

.story-start[hidden] {
  display: none;
}

.story-start-inner {
  max-width: 470px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  background: rgba(7, 23, 29, .74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  backdrop-filter: blur(13px);
}

.story-play-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 19px;
  border: 6px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 10px 30px rgba(255, 216, 90, .28);
  font-size: 1.55rem;
}

.story-start h3 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.story-start p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .76);
}

.story-start .btn::before {
  display: inline-block;
  content: "♪";
  font-size: 1.05rem;
}

.story-status {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 23, 29, .72);
  backdrop-filter: blur(10px);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  pointer-events: none;
}

.story-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 94, .18);
  content: "";
}

.story-status.playing::before {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 181, 115, .18);
}

.story-program {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
}

.story-program .tag {
  align-self: flex-start;
  margin-bottom: 20px;
}

.story-program h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.story-program p {
  color: rgba(255, 255, 255, .7);
}

.story-program .price {
  margin: 10px 0 22px;
  color: var(--yellow);
  font-size: 2.2rem;
}

.story-program small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .5);
}

.rain-drop {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 28px;
  border-radius: 60% 40% 60% 40%;
  background: rgba(73, 184, 232, .4);
  transform: rotate(38deg);
  animation: float 4.8s ease-in-out infinite;
  pointer-events: none;
}

.rain-drop.one {
  top: 28px;
  right: 26%;
}

.rain-drop.two {
  right: 3%;
  bottom: 35px;
  width: 12px;
  height: 20px;
  animation-delay: -1.8s;
}

.rain-drop.three {
  top: 48%;
  right: 18%;
  width: 9px;
  height: 15px;
  animation-delay: -3.2s;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.book-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.book-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  background: #f0eaf3;
}

.book-card:nth-child(3n+2) .book-card-media {
  background: #eef8d9;
}

.book-card:nth-child(3n+3) .book-card-media {
  background: #e9f7fd;
}

.book-card-media img {
  width: auto;
  max-height: 315px;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(26, 43, 49, .2);
  transition: transform .4s ease;
}

.book-card:hover .book-card-media img {
  transform: translateY(-7px) rotate(-1deg);
}

.book-card .card-body {
  min-height: 260px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: -2px 0 18px;
}

.price {
  color: var(--plum);
  font-family: "Fredoka", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.price-row small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.bundle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: 185px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 255px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(111, 50, 121, .14);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0 100%, rgba(114, 88, 201, .12), transparent 40%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.bundle-card:nth-child(2) {
  border-color: rgba(111, 158, 32, .18);
  background:
    radial-gradient(circle at 100% 0, rgba(183, 220, 67, .2), transparent 42%),
    #fff;
}

.bundle-card img {
  width: 100%;
  height: 200px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(32, 53, 61, .16);
}

.bundle-card h3 {
  margin-bottom: 8px;
}

.bundle-card p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: .91rem;
}

.bundle-card .price {
  display: block;
  margin-bottom: 18px;
  font-size: 2rem;
}

.book-price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  margin: 8px 0 0;
  border: 1px solid rgba(255, 216, 90, .22);
  border-radius: 999px;
  color: #fff !important;
  background: rgba(255, 216, 90, .12);
  font-size: .88rem;
  font-weight: 700;
}

.book-price-highlight strong {
  color: var(--yellow);
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  color: var(--muted);
  background: #fff7e9;
  font-size: .9rem;
}

.lightbox {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 24px;
  color: #fff;
  background: rgba(6, 18, 22, .94);
}

.lightbox.open {
  display: flex;
}

.lightbox figure {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 12px 0 0;
  color: rgba(255,255,255,.8);
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 20px;
  font-size: 1.6rem;
}

.lightbox-prev {
  top: 50%;
  left: 20px;
}

.lightbox-next {
  top: 50%;
  right: 20px;
}

.floating-wa {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--wa);
  box-shadow: 0 15px 40px rgba(14, 66, 40, .28);
  font-weight: 700;
  cursor: pointer;
  animation: wa-pulse 2.8s ease-out infinite;
}

.floating-wa::before {
  width: 25px;
  height: 25px;
}

.to-top {
  position: fixed;
  z-index: 850;
  right: 29px;
  bottom: 95px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  cursor: pointer;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-footer {
  padding: 78px 0 24px;
  color: #fff;
  background: #102830;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 50px;
}

.footer-brand img {
  width: 100px;
  height: 90px;
  margin-bottom: 15px;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
}

.footer-brand p,
.site-footer li,
.site-footer address {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-style: normal;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.js [data-reveal="left"] {
  transform: translateX(-35px);
}

.js [data-reveal="right"] {
  transform: translateX(35px);
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

.stagger > [data-reveal]:nth-child(2) { transition-delay: .08s; }
.stagger > [data-reveal]:nth-child(3) { transition-delay: .16s; }
.stagger > [data-reveal]:nth-child(4) { transition-delay: .24s; }
.stagger > [data-reveal]:nth-child(5) { transition-delay: .32s; }
.stagger > [data-reveal]:nth-child(6) { transition-delay: .4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes wa-pulse {
  0%, 55%, 100% { box-shadow: 0 15px 40px rgba(14,66,40,.28), 0 0 0 0 rgba(36,184,103,.35); }
  78% { box-shadow: 0 15px 40px rgba(14,66,40,.28), 0 0 0 15px rgba(36,184,103,0); }
}

@media (max-width: 1050px) {
  :root {
    --header-h: 76px;
  }

  .brand-copy {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links > a {
    padding-inline: 9px;
    font-size: .84rem;
  }

  .nav-actions .btn {
    padding-inline: 14px;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .card-grid,
  .book-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .scroller {
    grid-auto-columns: 43%;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item.wide {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 680px);
  }

  .section {
    padding: 78px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 1001;
    top: var(--header-h);
    right: 15px;
    left: 15px;
    display: grid;
    align-content: start;
    gap: 3px;
    max-height: calc(100vh - var(--header-h) - 20px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: opacity .25s ease, transform .25s ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links > a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links > a:hover,
  .nav-links > a.active {
    background: #f2f7ee;
  }

  .nav-links > a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .book-feature,
  .contact-grid,
  .stateless-highlight,
  .bundle-grid,
  .story-theatre {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .lead {
    margin-inline: auto;
  }

  .hero .button-row,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-main-image {
    inset: 30px 40px 25px;
  }

  .hero-float.one {
    left: 0;
  }

  .hero-float.two {
    right: 0;
  }

  .page-hero {
    padding: 75px 0 70px;
  }

  .page-hero-visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .book-covers {
    min-height: 550px;
  }

  .scroller {
    grid-auto-columns: 70%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta .button-row {
    justify-content: center;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-card:nth-child(even) {
    transform: none;
  }

  .stateless-highlight div {
    padding: 38px 30px;
  }

  .story-screen,
  .story-screen video {
    min-height: 480px;
  }

  .story-program {
    padding: 38px 24px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 24px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .text-link {
    margin-top: 18px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .brand img {
    width: 62px;
    height: 58px;
  }

  .hero {
    padding: 45px 0 65px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-main-image {
    inset: 35px 8px 28px 18px;
  }

  .hero-float img {
    width: 110px;
    height: 85px;
  }

  .hero-sticker {
    width: 88px;
    height: 88px;
    top: 12px;
    right: 0;
    font-size: .77rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .card-grid,
  .book-grid,
  .story-cards,
  .feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item + .feature-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .scroller {
    grid-auto-columns: 88%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: auto;
    min-height: 320px;
  }

  .gallery-item.tall {
    min-height: 430px;
  }

  .gallery-caption {
    opacity: 1;
    transform: none;
  }

  .book-covers {
    min-height: 420px;
  }

  .book-covers img {
    width: 58%;
  }

  .split-media .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -28px 16px 0;
  }

  .quote-panel,
  .contact-panel {
    padding: 34px 24px;
  }

  .book-card-media {
    min-height: 330px;
  }

  .story-theatre {
    padding: 8px;
    border-radius: 28px;
  }

  .story-screen {
    min-height: 440px;
    border-radius: 21px;
  }

  .story-screen video {
    min-height: 440px;
  }

  .story-start {
    padding: 14px;
  }

  .story-start-inner {
    padding: 24px 18px;
  }

  .story-play-icon {
    width: 62px;
    height: 62px;
  }

  .bundle-card {
    grid-template-columns: 105px 1fr;
    gap: 18px;
    padding: 18px;
  }

  .bundle-card img {
    height: 150px;
  }

  .cta {
    padding: 70px 0;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    border-width: 3px;
  }

  .floating-wa span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .to-top {
    right: 17px;
    bottom: 79px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
