:root {
  --site-width: 1180px;
  --ink: #243248;
  --muted: #677284;
  --cream: #fff7eb;
  --cream-strong: #f6e5cc;
  --rose: #e9a7b4;
  --rose-deep: #c86f86;
  --gold: #dfa54f;
  --teal: #2f9f9a;
  --lilac: #9d89cf;
  --sky: #83bdd7;
  --mint: #9fc8b1;
  --peach: #e7a07f;
  --navy: #1e2c43;
  --paper: rgba(255, 248, 237, 0.9);
  --line: rgba(52, 43, 35, 0.14);
  --shadow: 0 22px 70px rgba(29, 37, 52, 0.22);
  --display-font: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body-font: "Avenir Next", Avenir, ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 180, 184, 0.12), transparent 32%),
    linear-gradient(180deg, #fff9ef 0%, #fbf0de 46%, #fff8ef 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.hero {
  min-height: auto;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
  background:
    radial-gradient(circle at 66% 18%, rgba(157, 137, 207, 0.12), transparent 25%),
    radial-gradient(circle at 34% 82%, rgba(131, 189, 215, 0.12), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(232, 167, 180, 0.12), transparent 28%),
    radial-gradient(circle at 8% 8%, rgba(223, 165, 79, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fbefdd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.58), transparent 42%),
    radial-gradient(circle at 60% 100%, rgba(255, 255, 255, 0.42), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

.nav {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(198, 139, 61, 0.76);
  box-shadow:
    0 10px 28px rgba(120, 79, 30, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 1.45rem;
  text-shadow: 0 1px 0 rgba(255, 250, 242, 0.5);
}

.brand-mark::after {
  content: "✦";
  position: absolute;
  right: 7px;
  bottom: 8px;
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.58rem;
  line-height: 1;
}

.brand-name {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  color: rgba(36, 50, 72, 0.76);
  text-decoration: none;
}

.hero-content {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-main {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  border: 1px solid rgba(223, 165, 79, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.92) 48%, rgba(250, 237, 216, 0.9) 50%, rgba(255, 250, 242, 0.98)),
    #fffaf2;
  box-shadow:
    0 30px 90px rgba(52, 43, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent, rgba(52, 43, 35, 0.08), transparent),
    linear-gradient(90deg, transparent 49%, rgba(223, 165, 79, 0.22) 50%, transparent 51%);
  pointer-events: none;
  z-index: 2;
}

.hero-main::after {
  content: "♡";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(223, 165, 79, 0.72);
  font-size: 1rem;
  line-height: 1;
  z-index: 3;
}

.hero-copy {
  max-width: 500px;
  position: relative;
  z-index: 3;
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: #f2c36e;
  font-size: clamp(0.9rem, 1vw, 1.04rem);
  letter-spacing: 0.1em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

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

h1 {
  max-width: 520px;
  margin-bottom: 16px;
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: inline;
}

.hero-text {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.22vw, 1.13rem);
  line-height: 1.55;
}

.story-marks {
  width: min(210px, 100%);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 1.1rem;
}

.story-marks::before,
.story-marks::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(223, 165, 79, 0.36);
}

.hero-action {
  min-height: 44px;
  margin-top: 22px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(223, 165, 79, 0.42);
  background: rgba(255, 248, 237, 0.92);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 620;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(52, 43, 35, 0.12);
}

.hero-feature {
  position: relative;
  z-index: 1;
  margin: 0;
  width: calc(100% - clamp(42px, 5vw, 70px));
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(223, 165, 79, 0.26);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 46px rgba(52, 43, 35, 0.12);
}

.hero-feature img,
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: #fffaf2;
}

.hero-worlds {
  width: 100%;
  margin: 10px 0 0;
  padding: 0 0 10px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-worlds::-webkit-scrollbar {
  display: none;
}

.hero-world-card {
  min-height: 236px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 248, 237, 0.48);
  border-radius: 8px;
  color: #fff8ef;
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  scroll-snap-align: start;
}

.hero-world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 26, 0.02) 12%, rgba(11, 16, 26, 0.5) 72%, rgba(11, 16, 26, 0.68)),
    linear-gradient(90deg, rgba(11, 16, 26, 0.12), transparent 58%);
  z-index: 1;
}

.hero-world-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.hero-world-card strong,
.hero-world-card span {
  position: relative;
  z-index: 2;
}

.hero-world-card.is-active {
  border-color: rgba(255, 248, 237, 0.88);
  box-shadow:
    0 22px 60px rgba(52, 43, 35, 0.18),
    0 0 0 1px rgba(223, 165, 79, 0.42);
}

.world-status {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px 4px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.84);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.world-status.soon {
  background: rgba(255, 241, 211, 0.88);
  color: #8b642b;
}

.hero-world-card strong {
  margin-bottom: 7px;
  font-family: var(--display-font);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.06;
}

.hero-world-card span {
  color: rgba(255, 248, 237, 0.9);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-world-card .world-status {
  color: var(--navy);
  font-size: 0.62rem;
  line-height: 1;
}

.hero-world-card .world-status.soon {
  color: #8b642b;
}

.hero-world-card:hover img,
.hero-world-card:focus-visible img {
  transform: scale(1.04);
}

.hero-world-card:focus-visible {
  outline: 2px solid rgba(255, 248, 237, 0.86);
  outline-offset: 3px;
}

.feeling-section {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 30px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
  column-gap: clamp(42px, 5vw, 64px);
  row-gap: 14px;
}

.feeling-copy {
  grid-column: 1;
  grid-row: 1;
}

.feeling-method {
  grid-column: 1;
  grid-row: 2;
}

.feeling-copy h2 {
  margin-bottom: 14px;
  font-family: var(--display-font);
  color: var(--navy);
  font-size: clamp(1.6rem, 2.25vw, 2.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.little-divider {
  width: 130px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 1rem;
}

.little-divider::before,
.little-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(223, 165, 79, 0.45);
}

.feeling-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.feeling-copy p + p {
  margin-top: 12px;
}

.feeling-copy .feeling-lead {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(1.18rem, 1.42vw, 1.42rem);
  line-height: 1.28;
}

.feeling-inline-divider {
  width: 88px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.86rem;
}

.feeling-inline-divider::before,
.feeling-inline-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(223, 165, 79, 0.45);
}

.feeling-method-card {
  margin-top: 0;
  padding: 15px 16px;
  border: 1px solid rgba(223, 165, 79, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.72), rgba(255, 244, 229, 0.5)),
    rgba(255, 248, 237, 0.62);
  box-shadow: 0 12px 34px rgba(52, 43, 35, 0.06);
}

.feeling-method-card p {
  margin: 0;
  color: rgba(63, 73, 91, 0.84);
  font-size: 0.94rem;
  line-height: 1.55;
}

.principles-list {
  list-style: none;
  margin: 11px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.principles-list li {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(223, 165, 79, 0.2);
  color: rgba(63, 73, 91, 0.88);
  font-size: 0.76rem;
  font-weight: 680;
  line-height: 1.12;
}

.feeling-closing {
  margin: 16px 0 0;
  color: var(--navy) !important;
  font-family: var(--display-font);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem) !important;
  line-height: 1.34 !important;
}

.feeling-closing span {
  display: block;
}

.feeling-closing span + span {
  margin-top: 4px;
  color: #9f743f;
}

.feeling-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  align-self: start;
  transform: translateY(16px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(52, 43, 35, 0.12);
}

.feeling-image img {
  width: 100%;
  height: clamp(270px, 25vw, 340px);
  display: block;
  aspect-ratio: auto;
  object-fit: cover;
}

.game-detail,
.approach-card {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.16);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
}

.status {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.18);
  color: rgba(255, 248, 237, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.soon {
  background: rgba(47, 159, 154, 0.28);
}

.store-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-links a {
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(223, 165, 79, 0.32);
  background: rgba(255, 248, 237, 0.92);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
}

.games-section,
.game-detail,
.music-section,
.approach,
.trust,
.footer {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
}

.games-section {
  padding: 20px 0 14px;
}

.games-heading {
  display: block;
  max-width: 720px;
  margin-bottom: 20px;
}

.games-heading h2 {
  margin-bottom: 0;
}

.game-detail {
  display: grid;
  grid-template-columns: 52% 1fr;
  min-height: 390px;
  margin-top: 16px;
  margin-bottom: 20px;
  background: #fffaf2;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 16px 46px rgba(52, 43, 35, 0.08);
}

.game-detail-image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
}

.game-detail-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.game-detail-title {
  margin-bottom: 16px;
  font-family: var(--display-font);
  color: var(--navy);
  font-size: clamp(1.65rem, 2.45vw, 2.45rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.game-detail-text,
.game-detail-learning {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.62;
}

.game-detail-learning {
  margin-bottom: 16px;
}

.game-detail-list-title {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-detail-actions {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.game-detail-actions li + li {
  margin-top: 3px;
}

.game-detail-links {
  margin-top: 0;
}

.game-detail-links a {
  background: rgba(255, 248, 237, 0.92);
  color: var(--navy);
}

.music-section {
  padding: 30px 0 18px;
}

.music-heading {
  max-width: 780px;
}

.music-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.62;
  margin: 16px 0 0;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.music-card {
  min-height: 128px;
  padding: 16px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 16px 46px rgba(52, 43, 35, 0.08);
}

.music-card .song-thumb {
  width: 86px;
  height: 86px;
  display: block;
  border: 1px solid rgba(223, 165, 79, 0.34);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(52, 43, 35, 0.12);
}

.music-card div {
  padding: 0;
}

.music-card h3,
.song-line {
  margin: 0;
  font-family: var(--display-font);
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.26;
}

.music-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.approach {
  padding: 34px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 26px;
}

.section-heading h2,
.trust h2 {
  margin-bottom: 0;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.45vw, 2.45rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--navy);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.approach-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 16px 46px rgba(52, 43, 35, 0.08);
}

.approach-image img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  display: block;
  object-fit: cover;
}

.approach-copy {
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-copy p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

.approach-copy p + p {
  margin-top: 18px;
}

.approach-card {
  min-height: 250px;
  padding: 26px;
  background: #fffaf2;
  border-color: var(--line);
  box-shadow: 0 16px 46px rgba(52, 43, 35, 0.08);
}

.approach-card h3 {
  margin-bottom: 14px;
  font-family: var(--display-font);
  color: var(--rose-deep);
  font-size: 1.45rem;
  font-weight: 650;
  line-height: 1.08;
}

.approach-card p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.trust {
  margin-bottom: 50px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 26px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(52, 43, 35, 0.08);
}

.trust .little-divider {
  margin-top: 18px;
  margin-bottom: 0;
}

.trust h2 {
  color: var(--navy);
}

.trust-groups {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-group {
  min-height: 100%;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.94), rgba(250, 237, 216, 0.72));
  border: 1px solid rgba(223, 165, 79, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.trust-group:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.96), rgba(255, 239, 244, 0.76));
  border-color: rgba(232, 167, 180, 0.24);
}

.trust-group:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.96), rgba(255, 241, 211, 0.76));
  border-color: rgba(223, 165, 79, 0.24);
}

.trust-group:nth-child(3) {
  background: linear-gradient(180deg, rgba(239, 248, 249, 0.96), rgba(224, 243, 244, 0.76));
  border-color: rgba(131, 189, 215, 0.24);
}

.trust-group h3 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.08;
}

.trust-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-group li {
  position: relative;
  padding-left: 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 640;
  line-height: 1.34;
}

.trust-group li + li {
  margin-top: 8px;
}

.trust-group li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--gold);
  font-size: 0.74rem;
  line-height: 1;
}

.footer {
  padding: 18px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

/* Legal pages (terms / privacy) */
.legal-top {
  border-bottom: 1px solid rgba(223, 165, 79, 0.18);
}

.legal {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.legal-shell {
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.legal .eyebrow {
  margin-bottom: 16px;
}

.lang-toggle {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 28px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(223, 165, 79, 0.28);
  background: rgba(255, 248, 237, 0.8);
}

.lang-btn {
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: rgba(223, 165, 79, 0.16);
  color: var(--navy);
}

.legal-section h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
}

.legal-updated {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-section .little-divider {
  margin-bottom: 26px;
}

.legal-section h2 {
  margin: 32px 0 12px;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
}

.legal-section p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-section a {
  color: var(--rose-deep);
  text-decoration: none;
  font-weight: 600;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--gold);
}

/* v13: video window + v01-style product cards */
.hero {
  min-height: 72svh;
}

.hero-content {
  min-height: calc(72svh - 86px);
  padding: 24px 0 34px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 14px;
  color: #30415d;
  font-size: clamp(2.15rem, 3.35vw, 3.7rem);
  line-height: 1.02;
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(232, 167, 180, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 239, 244, 0.86), rgba(255, 248, 237, 0.9) 58%, rgba(237, 249, 247, 0.78));
  color: #875c78;
  font-family: var(--display-font);
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(132, 88, 104, 0.08);
}

.hero-copy h1 span {
  display: block;
}

.hero-window {
  position: relative;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-video-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(223, 165, 79, 0.3);
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 24px 68px rgba(52, 43, 35, 0.14);
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.02), rgba(30, 44, 67, 0.14)),
    radial-gradient(circle at 50% 30%, transparent 52%, rgba(30, 44, 67, 0.14) 100%);
}

.hero-window .hero-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  display: block;
  object-fit: cover;
  background: #fffaf2;
}

.hero-window-note {
  width: min(92%, 560px);
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(128, 91, 113, 0.94);
  font-family: var(--display-font);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  line-height: 1.25;
  text-align: center;
}

.hero-window-note::before,
.hero-window-note::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 72px;
  background: rgba(223, 165, 79, 0.42);
}

.hero-window-note span + span::before {
  content: "♡";
  margin-right: 14px;
  color: rgba(223, 165, 79, 0.88);
  font-family: var(--body-font);
  font-size: 0.76rem;
}

.hero-support {
  max-width: 500px;
  margin: 10px 0 0;
  color: rgba(70, 83, 105, 0.78);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  line-height: 1.52;
}

.games-section {
  padding-top: 34px;
}

.carousel-shell {
  position: relative;
  margin-bottom: 24px;
}

.game-carousel {
  margin: 0 -18px;
  padding: 0 18px 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(380px, 418px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.game-carousel::-webkit-scrollbar {
  display: none;
}

.game-card {
  min-height: 384px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(223, 165, 79, 0.18);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(52, 43, 35, 0.09);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.game-card:hover,
.game-card:focus-visible,
.game-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(223, 165, 79, 0.7);
  box-shadow: 0 22px 58px rgba(52, 43, 35, 0.15);
  outline: none;
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.game-card-body {
  flex: 1;
  min-height: 170px;
  padding: 18px 18px 17px;
  display: flex;
  flex-direction: column;
}

.game-card strong {
  margin-bottom: 8px;
  font-family: var(--display-font);
  color: var(--navy);
  font-size: 1.26rem;
  font-weight: 560;
  line-height: 1.06;
}

.game-card-body > span:last-of-type {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.43;
}

.game-card-actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-card-actions a,
.card-coming-soon {
  min-height: 30px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 165, 79, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.94);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.game-card-actions a {
  min-height: 34px;
  padding: 8px 13px;
  font-family: var(--display-font);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
}

.card-coming-soon {
  background: rgba(238, 247, 249, 0.96);
  border-color: rgba(131, 189, 215, 0.28);
  color: #4f7783;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--display-font);
  font-size: 0.98rem;
  font-weight: 500;
}

.game-card-actions a:hover,
.game-card-actions a:focus-visible {
  border-color: rgba(223, 165, 79, 0.62);
  background: #fffaf2;
  outline: none;
}

.carousel-button {
  width: 38px;
  height: 38px;
  position: absolute;
  top: -62px;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 165, 79, 0.3);
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.96);
  color: var(--navy);
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(52, 43, 35, 0.14);
}

.carousel-button-prev {
  left: auto;
  right: 50px;
}

.carousel-button-next {
  right: 0;
}

.learning-section {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 20px;
}

.learning-heading {
  max-width: 900px;
}

.learning-heading h2 {
  margin-bottom: 12px;
  font-family: var(--display-font);
  color: var(--navy);
  font-size: clamp(1.7rem, 2.65vw, 2.7rem);
  font-weight: 500;
  line-height: 1.06;
}

.learning-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

.learning-heading p + p {
  margin-top: 13px;
}

.learning-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.learning-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 16px 46px rgba(52, 43, 35, 0.08);
}

.learning-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.learning-tile div {
  padding: 14px;
}

.learning-tile strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display-font);
  color: var(--rose-deep);
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.08;
}

.learning-tile:nth-child(2) strong {
  color: var(--lilac);
}

.learning-tile:nth-child(3) strong {
  color: #7b8f45;
}

.learning-tile:nth-child(4) strong {
  color: #4f8d9b;
}

.learning-tile:nth-child(5) strong {
  color: #b0733e;
}

.learning-tile:nth-child(6) strong {
  color: #b96f88;
}

.learning-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.42;
}

.learning-close {
  width: fit-content;
  max-width: 760px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(138, 100, 47, 0.96);
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.35;
  text-align: center;
}

.learning-close::before,
.learning-close::after {
  content: "";
  width: 58px;
  height: 1px;
  background: rgba(223, 165, 79, 0.42);
}

.trust h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--navy);
  color: #fff8ef;
  outline: none;
}

@media (max-width: 900px) {
  .nav {
    width: min(100% - 28px, var(--site-width));
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .feeling-section,
  .games-section,
  .music-section,
  .approach,
  .trust,
  .footer {
    width: min(100% - 28px, var(--site-width));
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 26px;
    min-height: auto;
    gap: 24px;
  }

  .hero-main::before,
  .hero-main::after {
    display: none;
  }

  .hero-copy {
    max-width: 660px;
    min-width: 0;
  }

  .hero-window {
    min-height: 0;
  }

  .hero-video-frame {
    min-height: 310px;
  }

  .games-heading,
  .game-detail,
  .approach-grid,
  .approach-story,
  .feeling-section,
  .trust {
    grid-template-columns: 1fr;
  }

  .feeling-section {
    padding-bottom: 34px;
  }

  .feeling-image {
    transform: none;
  }

  .carousel-button {
    display: none;
  }

  .approach-image img {
    min-height: 260px;
  }

  .feeling-image img {
    min-height: 260px;
  }

  .game-detail-image {
    min-height: 270px;
    height: 300px;
  }

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

  .learning-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 24px, var(--site-width));
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 18px;
    gap: 18px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 12px 0 0;
  }

  .hero-kicker {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 0.94rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 8.4vw, 2.2rem);
    line-height: 1.05;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-support {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .hero-window {
    width: 100%;
    min-height: 0;
  }

  .hero-video-frame {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-window .hero-video {
    min-height: 0;
    height: 100%;
  }

  .hero-window-note {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 0.95rem;
  }

  .hero-window-note::before,
  .hero-window-note::after {
    display: none;
  }

  .hero-window-note span + span::before {
    margin-right: 8px;
  }

  .hero-window-note span::before {
    content: "♡";
    margin-right: 8px;
    color: rgba(223, 165, 79, 0.88);
    font-family: var(--body-font);
    font-size: 0.76rem;
  }

  .game-carousel {
    margin-inline: -14px;
    padding-inline: 14px;
    grid-auto-columns: minmax(260px, 82vw);
  }

  .game-card {
    min-height: 352px;
  }

  .feeling-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .feeling-copy,
  .feeling-method,
  .feeling-image {
    grid-column: auto;
    grid-row: auto;
  }

  .feeling-copy h2 {
    font-size: 1.8rem;
  }

  .feeling-copy p {
    font-size: 0.98rem;
  }

  .feeling-image {
    display: block;
    margin-top: 6px;
    transform: none;
  }

  .feeling-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .feeling-method-card {
    padding: 12px 14px;
  }

  .feeling-closing {
    margin-top: 16px;
  }

  .little-divider,
  .feeling-inline-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .games-section {
    padding-top: 34px;
  }

  .game-detail {
    margin-top: 16px;
  }

  .game-detail-title {
    font-size: 2rem;
  }

  .music-card {
    grid-template-columns: 72px 1fr;
  }

  .music-card .song-thumb {
    width: 72px;
    height: 72px;
  }

  .game-detail-copy,
  .approach-copy,
  .trust {
    padding: 22px;
  }

  .learning-examples {
    grid-template-columns: 1fr;
  }

  .trust {
    padding: 18px;
  }

  .trust-groups {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-group {
    padding: 13px 14px;
  }

  .trust-group h3 {
    margin-bottom: 8px;
    font-size: 1.02rem;
  }

  .trust-group li {
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .trust-group li + li {
    margin-top: 6px;
  }

  .footer {
    flex-direction: column;
  }
}
