/*
Theme Name: Kabouterroutes
Description: De officiële Kabouterroutes Style Lock-website.
Version: 2.0.0
*/

:root {
  --forest: #11241b;
  --hero: #05170f;
  --sun: #f2bb4b;
  --cream: #f7f0e5;
  --moss: #6f7f4b;
  --berry: #b84332;
  --earth: #76513a;
  --ink: #17231c;
  --white: #fff;
  --border: #ded7c8;
  --mist: #edf1e8;
  --muted: #5c685f;
  --shadow: 0 20px 55px rgba(17, 36, 27, 0.12);
  --shadow-soft: 0 10px 30px rgba(17, 36, 27, 0.08);
  --radius-lg: 36px 36px 36px 10px;
  --radius-md: 24px 24px 24px 8px;
  --wrap: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0 0 0.55em;
  color: var(--forest);
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.7rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 128px) 0;
}

.section--cream {
  background: var(--cream);
}

.section--mist {
  background: var(--mist);
}

.section--forest {
  overflow: hidden;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.86);
}

.section--forest h2,
.section--forest h3 {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--sun);
}

.large-copy,
.hero-lead {
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.7fr);
  gap: 64px;
  align-items: end;
  max-width: none;
}

.section-heading--split > p,
.section-heading--split > a {
  margin-bottom: 14px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.button-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 23px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button--sun {
  background: var(--sun);
  color: var(--hero);
  box-shadow: 0 9px 24px rgba(242, 187, 75, 0.24);
}

.button--sun:hover {
  background: #ffd16e;
}

.button--forest {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 9px 24px rgba(17, 36, 27, 0.18);
}

.button--forest:hover {
  background: #234a36;
}

.button--berry {
  background: var(--berry);
  color: var(--white);
}

.button--berry:hover {
  background: #983527;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--forest);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link span {
  color: var(--berry);
  font-size: 1.2em;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(222, 215, 200, 0.8);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 4px 24px rgba(17, 36, 27, 0.05);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo-link {
  display: inline-flex;
  width: 128px;
  height: 86px;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible;
}

.site-logo {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.site-navigation ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(15px, 2vw, 28px);
  list-style: none;
}

.site-navigation a {
  color: var(--forest);
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
}

.site-navigation a:hover:not(.nav-cta) {
  color: var(--berry);
}

.site-navigation .nav-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 20px;
  align-items: center;
  border-radius: 999px;
  background: var(--berry);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(184, 67, 50, 0.2);
}

.site-navigation .nav-cta:hover {
  background: #963426;
}

.site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
}

.site-menu-toggle__bars,
.site-menu-toggle__bars::before,
.site-menu-toggle__bars::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
}

.site-menu-toggle__bars {
  position: relative;
}

.site-menu-toggle__bars::before,
.site-menu-toggle__bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.site-menu-toggle__bars::before { top: -7px; }
.site-menu-toggle__bars::after { top: 7px; }

/* Home hero */
.home-hero,
.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(242, 187, 75, 0.11), transparent 20%),
    radial-gradient(circle at 82% 8%, rgba(111, 127, 75, 0.2), transparent 26%),
    var(--hero);
  color: rgba(255, 255, 255, 0.86);
}

.home-hero::after,
.inner-hero::after {
  position: absolute;
  right: -120px;
  bottom: -165px;
  width: 420px;
  height: 300px;
  border: 1px solid rgba(242, 187, 75, 0.16);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.home-hero__grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding-block: 76px 88px;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero h1,
.inner-hero h1 {
  color: var(--white);
}

.home-hero .hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
}

.home-hero .button-row {
  margin-bottom: 42px;
}

.home-hero__visual,
.inner-hero__visual {
  position: relative;
  z-index: 1;
}

.home-hero__visual::before {
  position: absolute;
  inset: -28px 18px 25px -20px;
  border: 1px solid rgba(242, 187, 75, 0.24);
  border-radius: 46% 54% 39% 61% / 55% 38% 62% 45%;
  content: "";
  transform: rotate(3deg);
}

.home-hero__visual > img,
.inner-hero__visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-radius: 48% 52% 42% 58% / 53% 42% 58% 47%;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: 10px;
  display: flex;
  max-width: 245px;
  padding: 15px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px 18px 18px 5px;
  background: rgba(247, 240, 229, 0.96);
  box-shadow: var(--shadow);
  color: var(--forest);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge__icon {
  display: grid !important;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  font-size: 1.25rem;
}

.hero-trust {
  display: flex;
  margin: 0;
  padding: 0;
  gap: clamp(22px, 3vw, 38px);
  list-style: none;
}

.hero-trust li {
  position: relative;
  display: grid;
}

.hero-trust li + li::before {
  position: absolute;
  top: 5px;
  bottom: 4px;
  left: calc(clamp(22px, 3vw, 38px) / -2);
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.hero-trust strong {
  color: var(--sun);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-trust span {
  font-size: 0.76rem;
}

.wonder-strip {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.wonder-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wonder-strip p {
  display: flex;
  min-height: 88px;
  margin: 0;
  padding: 18px 25px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid var(--border);
  font-size: 0.87rem;
  text-align: center;
}

.wonder-strip p:last-child {
  border-right: 0;
}

.wonder-strip p > span {
  color: var(--berry);
}

/* Home content */
.party-intro__grid,
.make-path__grid,
.no-app__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
}

.party-intro__grid > *,
.make-path__grid > *,
.no-app__grid > *,
.content-section__grid > * {
  min-width: 0;
}

.party-intro__visual,
.make-path figure,
.no-app figure {
  margin: 0;
}

.party-intro__visual img,
.make-path img,
.no-app img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.party-intro__visual figcaption {
  width: max-content;
  max-width: calc(100% - 28px);
  margin: -26px 0 0 28px;
  padding: 13px 18px;
  border-radius: 14px 14px 14px 4px;
  background: var(--sun);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 900;
  transform: rotate(-1deg);
}

.feature-pairs {
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-pairs > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.feature-pairs span {
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-pairs p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.feature-pairs strong {
  display: block;
  margin-bottom: 3px;
  color: var(--forest);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-card--featured {
  border-color: rgba(184, 67, 50, 0.38);
  transform: translateY(-10px);
}

.product-card__image {
  position: relative;
}

.product-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-card__image > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: max-content;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--berry);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-card__body {
  display: flex;
  min-height: 420px;
  padding: 29px;
  flex-direction: column;
  align-items: flex-start;
}

.product-card__body > p:not(.eyebrow):not(.price) {
  color: var(--muted);
}

.product-card .price {
  margin-top: auto;
  color: var(--earth);
}

.product-card .price strong {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 1.6rem;
}

.product-card .button {
  width: 100%;
  margin-bottom: 17px;
}

.product-card .text-link {
  align-self: center;
  font-size: 0.88rem;
}

.book-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 40%, rgba(242, 187, 75, 0.18), transparent 30%),
    var(--forest);
  color: rgba(255, 255, 255, 0.82);
}

.book-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(46px, 8vw, 104px);
  align-items: center;
}

.book-preview h2 {
  color: var(--white);
}

.book-preview__copy > p:not(.eyebrow) {
  max-width: 650px;
}

.book-preview__visual {
  position: relative;
  margin: 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(242, 187, 75, 0.28);
  border-radius: 42px 42px 42px 10px;
  background: rgba(4, 25, 16, 0.5);
}

.book-preview__visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.42));
}

.book-preview__visual figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-align: center;
}

.no-app::before {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(242, 187, 75, 0.17);
  border-radius: 50%;
  content: "";
}

.no-app__grid {
  position: relative;
  grid-template-columns: 1fr 0.8fr;
}

.no-app figure {
  position: relative;
}

.no-app img {
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-radius: 48% 52% 45% 55% / 58% 44% 56% 42%;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.character-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px 28px 28px 8px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.character-card:nth-child(even) {
  transform: translateY(18px);
}

.character-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.character-card div {
  padding: 21px;
}

.character-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.character-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.center-action {
  margin: 58px 0 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
  list-style: none;
}

.steps-grid li {
  padding: 26px;
  border: 1px solid rgba(111, 127, 75, 0.2);
  border-radius: 24px 24px 24px 7px;
  background: rgba(255, 255, 255, 0.82);
}

.steps-grid li > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.steps-grid h3 {
  font-size: 1.45rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.make-path__grid {
  grid-template-columns: 1fr 0.9fr;
}

.make-path .check-list {
  margin-block: 28px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px 18px 18px 6px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(17, 36, 27, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--forest);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--berry);
  content: "+";
  font-family: sans-serif;
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 62px 23px 24px;
  color: var(--muted);
}

/* Inner pages */
.inner-hero__grid {
  display: grid;
  min-height: 580px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  padding-block: 68px 78px;
}

.inner-hero__copy {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.inner-hero .hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
}

.inner-hero__visual img {
  aspect-ratio: 4 / 3;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.breadcrumbs a {
  color: var(--sun);
  text-underline-offset: 3px;
}

.content-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}

.content-section__grid--single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.content-section__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.content-section__visual {
  margin: 0;
}

.content-section__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.content-section__visual--object {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 42%, rgba(242, 187, 75, 0.24), transparent 45%),
    var(--forest);
  box-shadow: var(--shadow);
}

.content-section__visual--object img {
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.38));
  object-fit: contain;
}

.download-row {
  margin-top: 28px;
}

.content-section:nth-of-type(even) .content-section__visual {
  order: -1;
}

.content-section .check-list {
  margin-block: 28px;
}

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

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

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(111, 127, 75, 0.16);
  color: var(--forest);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.geo-directory {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.geo-directory__group {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.geo-directory__group h3 {
  font-size: 1.45rem;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-links a {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.pill-links a:hover {
  border-color: var(--moss);
  background: var(--mist);
}

.honesty-note {
  display: grid;
  padding: 32px;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  border: 1px solid rgba(111, 127, 75, 0.35);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.honesty-note__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--forest);
  font-size: 1.5rem;
}

.honesty-note h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.honesty-note p:last-child {
  margin: 0;
  color: var(--muted);
}

.local-grid,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.story-card,
.choice-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.story-card--berry {
  background: #f6e8e2;
}

.story-card__number {
  display: block;
  margin-bottom: 34px;
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.story-card p,
.choice-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.choice-card {
  background: var(--white);
}

.choice-card--image {
  display: grid;
  padding: 0;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
}

.choice-card--image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.choice-card--image > div {
  padding: clamp(28px, 4vw, 44px);
}

.choice-card .text-link {
  margin-top: 25px;
}

.choice-card__tag {
  margin-bottom: 12px !important;
  color: var(--berry) !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.safety-grid > div > p:last-child {
  color: var(--muted);
}

.related-section {
  border-top: 1px solid var(--border);
}

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

.related-card {
  display: flex;
  min-height: 90px;
  padding: 20px 23px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 19px 19px 19px 6px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.related-card:hover {
  border-color: var(--moss);
  transform: translateY(-3px);
}

.related-card span:last-child {
  color: var(--berry);
  font-size: 1.3rem;
}

.final-cta {
  padding: clamp(65px, 8vw, 100px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 187, 75, 0.13), transparent 25%),
    var(--forest);
  color: rgba(255, 255, 255, 0.82);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.final-cta h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.final-cta p:last-child {
  margin-bottom: 0;
}

.plain-page {
  min-height: 60vh;
  padding: 90px 0;
  background: var(--cream);
}

.plain-page__content {
  max-width: 860px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

/* Footer */
.site-footer {
  padding: 70px 0 26px;
  background: var(--hero);
  color: rgba(255, 255, 255, 0.66);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(145px, 0.65fr));
  gap: 45px;
}

.footer-brand {
  width: 176px;
  margin-bottom: 20px;
}

.footer-intro p {
  max-width: 330px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: var(--sun);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-meta a {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-meta a:hover {
  color: var(--sun);
  text-decoration: underline;
}

.footer-meta {
  display: grid;
  margin-top: 50px;
  padding-top: 24px;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta p {
  margin: 0;
  font-size: 0.72rem;
}

@media (max-width: 1100px) {
  .site-navigation ul { gap: 15px; }
  .site-navigation a { font-size: 0.82rem; }
  .site-navigation .nav-cta { padding-inline: 15px; }
  .home-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr); }
  .product-card__body { padding: 24px; }
  .character-card div { padding: 17px; }
  .choice-card--image { grid-template-columns: 1fr; }
  .choice-card--image img { min-height: 220px; height: 220px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 84px; }
  .wrap { width: min(calc(100% - 40px), var(--wrap)); }
  .site-header__inner { min-height: 80px; }
  .site-logo-link { width: 106px; height: 74px; }
  .site-logo { width: 104px; }
  .site-menu-toggle { display: inline-flex; }
  .site-navigation {
    position: fixed;
    z-index: 999;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .site-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-navigation a {
    display: flex;
    min-height: 52px;
    padding: 12px 10px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .site-navigation .nav-cta {
    margin-top: 14px;
    justify-content: center;
  }
  .home-hero__grid,
  .inner-hero__grid {
    grid-template-columns: 1fr;
  }
  .home-hero__grid { padding-block: 68px 76px; }
  .home-hero__visual,
  .inner-hero__visual { width: min(100%, 680px); margin-inline: auto; }
  .wonder-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .wonder-strip p:nth-child(2) { border-right: 0; }
  .wonder-strip p:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .party-intro__grid,
  .make-path__grid,
  .no-app__grid,
  .book-preview__grid,
  .content-section__grid,
  .safety-grid { grid-template-columns: 1fr; }
  .party-intro__visual,
  .make-path figure,
  .no-app figure,
  .book-preview__visual,
  .content-section__visual { width: min(100%, 700px); margin-inline: auto; }
  .content-section:nth-of-type(even) .content-section__visual { order: initial; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--featured { transform: none; }
  .character-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading--split { grid-template-columns: 1fr; gap: 8px; }
  .section-heading--split > p { max-width: 700px; }
  .local-grid,
  .choice-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-meta { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 30px), var(--wrap)); }
  .section { padding-block: 68px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .home-hero__grid { min-height: auto; padding-block: 54px 65px; gap: 46px; }
  .home-hero h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .home-hero__visual::before { inset: -16px 10px 18px -10px; }
  .hero-badge { right: 2px; bottom: -20px; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-trust li { padding-right: 8px; }
  .hero-trust li + li::before { left: -7px; }
  .hero-trust strong { font-size: 1.12rem; }
  .wonder-strip p { min-height: 78px; padding: 14px 10px; flex-direction: column; gap: 2px; line-height: 1.35; }
  .party-intro__visual figcaption { width: auto; max-width: none; margin-right: 14px; }
  .feature-pairs { grid-template-columns: 1fr; }
  .product-grid,
  .character-grid,
  .steps-grid,
  .geo-directory,
  .related-grid { grid-template-columns: 1fr; }
  .product-card__body { min-height: 0; }
  .product-card .price { margin-top: 12px; }
  .character-card:nth-child(even) { transform: none; }
  .inner-hero__grid { min-height: auto; padding-block: 48px 66px; gap: 42px; }
  .inner-hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .breadcrumbs span[aria-current="page"] { display: none; }
  .honesty-note { grid-template-columns: 1fr; padding: 24px; }
  .story-card,
  .choice-card { padding: 27px; }
  .choice-card--image { padding: 0; }
  .final-cta__inner { align-items: stretch; flex-direction: column; }
  .final-cta .button-row { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
