/*
Theme Name: Cayson the Cruise Ship
Theme URI: https://caysonthecruiseship.com/
Author: Cayson the Cruise Ship
Description: Custom launch theme for Cayson the Cruise Ship, based on the approved website prototype.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: cayson-cruise-ship
*/

:root {
  --navy: #0c3559;
  --deep-navy: #06233c;
  --blue: #08a8c7;
  --aqua: #43c5d2;
  --water: #159ec2;
  --sand: #f4ca70;
  --cream: #fffaf0;
  --ink: #173246;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(6, 35, 60, .14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --content: min(1200px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  left: 16px; top: -60px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--deep-navy);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.hero-art {
  min-height: clamp(590px, 42vw, 740px);
  position: relative;
  overflow: hidden;
  background-image: url('assets/header-scene.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.36) 32%, rgba(255,255,255,0) 58%);
  pointer-events: none;
}

.nav-shell {
  width: var(--content);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 26px;
}

.brand {
  width: clamp(210px, 18vw, 300px);
  filter: drop-shadow(0 10px 16px rgba(5, 37, 64, .12));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 24px rgba(6,35,60,.12);
  backdrop-filter: blur(7px);
}
.primary-nav a,
.footer-primary a {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-primary a:hover,
.footer-primary a:focus-visible { color: var(--blue); }

.menu-toggle { display: none; }

.hero-copy {
  position: absolute;
  top: 48%;
  left: 50%;
  width: var(--content);
  max-width: 1200px;
  margin: 0;
  transform: translateX(-50%);
}
.hero-copy > * { max-width: 590px; }
.eyebrow {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-copy h1,
.section-heading h2 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}
.hero-copy p:not(.eyebrow) {
  margin: 18px 0 28px;
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.desktop-break { display: block; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}
.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 18px rgba(12,53,89,.22);
}
.button-primary:hover,
.button-primary:focus-visible { transform: translateY(-1px); background: var(--deep-navy); }

main { overflow: clip; }
.game-section,
.news-section {
  width: var(--content);
  margin-inline: auto;
  padding: 76px 0;
}
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.section-heading > p:not(.eyebrow) { max-width: 680px; margin: 14px auto 0; }

.game-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 9px solid var(--navy);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.4) 0 2px, transparent 3px),
    linear-gradient(#80d7e6 0 55%, #17a5c5 55% 100%);
  background-size: 20px 20px, auto;
}
.game-frame::before,
.game-frame::after {
  content: "";
  position: absolute;
  left: -5%; right: -5%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.game-frame::before { bottom: 14%; transform: rotate(-2deg); }
.game-frame::after { bottom: -5%; transform: rotate(2deg); }
.game-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.game-placeholder .wheel { font-size: clamp(3rem, 7vw, 6rem); }
.game-placeholder strong { font-size: clamp(2rem, 4vw, 4rem); }
.game-placeholder span:last-child { font-weight: 800; }

.news-section { padding-top: 52px; }
.section-heading-left {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  text-align: left;
}
.text-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.text-link:hover,
.text-link:focus-visible { color: var(--blue); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  overflow: hidden;
  border: 1px solid rgba(12,53,89,.12);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 12px 30px rgba(6,35,60,.09);
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-art {
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  color: rgba(6,35,60,.56);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.65) 0 4px, transparent 5px),
    linear-gradient(145deg, #91e0e8, #f6d37f);
  background-size: 27px 27px, auto;
}
.news-art-two { background-image: radial-gradient(circle at 20% 25%, rgba(255,255,255,.58) 0 4px, transparent 5px), linear-gradient(145deg, #f7dd9d, #7ad0de); }
.news-art-three { background-image: radial-gradient(circle at 20% 25%, rgba(255,255,255,.58) 0 4px, transparent 5px), linear-gradient(145deg, #6fcddd, #bfe6ec); }
.news-copy { padding: 22px 22px 25px; }
.news-meta { margin: 0 0 10px; color: #5b7283; font-size: .82rem; font-weight: 800; }
.news-copy h3 { margin: 0 0 9px; color: var(--deep-navy); font-size: 1.35rem; line-height: 1.2; }
.news-copy p:not(.news-meta) { margin: 0 0 18px; }
.news-copy a { color: var(--navy); font-weight: 900; text-decoration: none; }

.site-footer {
  position: relative;
  margin-top: 40px;
  padding: 82px 0 34px;
  color: white;
  background: var(--deep-navy);
}
.footer-wave {
  position: absolute;
  top: -34px;
  left: -2%; right: -2%;
  height: 70px;
  background: var(--deep-navy);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.footer-inner {
  width: var(--content);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 46px;
}
.footer-character {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.92);
  outline: 2px solid rgba(67,197,210,.7);
  outline-offset: 2px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.footer-character img { width: 100%; height: 100%; object-fit: cover; }
.footer-primary,
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.footer-legal { margin-top: 14px; font-size: .9rem; }
.footer-legal a { color: #cae7ef; text-decoration: none; }
.footer-legal a:hover { color: white; }
.copyright { margin: 20px 0 0; color: #9ec9d6; font-size: .83rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 12px;
  color: white;
  font-weight: 900;
  text-decoration: none;
}
.social-links a:hover,
.social-links a:focus-visible { background: white; color: var(--navy); }

.placeholder-toast {
  position: fixed;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--deep-navy);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  :root { --content: min(100% - 30px, 760px); }
  .hero-art { min-height: 680px; background-position: 56% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.74), rgba(255,255,255,.15) 75%); }
  .brand { width: 220px; }
  .menu-toggle {
    display: grid;
    width: 48px; height: 48px;
    margin-top: 12px;
    padding: 12px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 8px 20px rgba(6,35,60,.13);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 3px; margin: 2px 0; border-radius: 99px; background: var(--navy); }
  .primary-nav {
    position: absolute;
    top: 92px; right: 15px;
    z-index: 10;
    width: min(260px, calc(100% - 30px));
    display: none;
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 10px 12px; }
  .hero-copy { top: 49%; }
  .hero-copy > * { max-width: 430px; }
  .desktop-break { display: none; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 140px 1fr; }
  .footer-character { width: 135px; height: 135px; }
  .social-links { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 24px); }
  .hero-art {
    min-height: 660px;
    background-size: auto 660px;
    background-position: 58% center;
    background-color: #61d0e5;
  }
  .nav-shell { padding-top: 14px; gap: 18px; }
  .brand { width: 180px; }
  .hero-copy { top: 48%; }
  .hero-copy > * { max-width: 330px; }
  .hero-copy h1 { font-size: 3.3rem; }
  .game-section, .news-section { padding: 54px 0; }
  .game-frame { border-width: 6px; border-radius: 22px; }
  .section-heading-left { display: block; }
  .text-link { display: inline-block; margin-top: 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .footer-character { margin-inline: auto; }
  .footer-primary, .footer-legal, .social-links { justify-content: center; }
  .social-links { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* About page */
.content-shell {
  width: var(--content);
  margin-inline: auto;
}
.inner-hero-art {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background-image: url('assets/header-scene.jpg');
  background-repeat: no-repeat;
  background-position: center 43%;
  background-size: cover;
  isolation: isolate;
}
.inner-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.58) 36%, rgba(255,255,255,.05) 68%);
}
.inner-hero-copy {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: var(--content);
  padding-top: clamp(58px, 7vw, 92px);
  transform: translateX(-50%);
}
.inner-hero-copy > * { max-width: 610px; }
.inner-hero-copy h1 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.inner-hero-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
}
.primary-nav a[aria-current="page"] { color: var(--blue); }
.about-main { background: #fff; }
.about-intro {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  padding: 88px 0 82px;
}
.cayson-portrait-large {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  margin-inline: auto;
  border: 8px solid white;
  outline: 3px solid rgba(67,197,210,.85);
  outline-offset: 3px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: #eef9fb;
}
.cayson-portrait-large::after {
  content: "";
  position: absolute;
  inset: auto -5% -7% -5%;
  height: 30%;
  background: rgba(67,197,210,.15);
  border-radius: 50%;
}
.cayson-portrait-large img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-copy h2,
.why-card h2,
.updates-card h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.about-intro-copy > p:not(.eyebrow) { font-size: 1.08rem; }
.about-intro-copy .button { margin-top: 8px; }
.about-features {
  padding: 78px 0 88px;
  background: linear-gradient(180deg, #f7fcfd 0%, #eef9fb 100%);
  border-top: 1px solid rgba(12,53,89,.06);
  border-bottom: 1px solid rgba(12,53,89,.06);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 34px 30px 32px;
  border: 1px solid rgba(12,53,89,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(6,35,60,.07);
}
.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--navy);
  color: white;
  font-size: 1.65rem;
  font-weight: 900;
}
.feature-card h3 {
  margin: 0 0 10px;
  color: var(--deep-navy);
  font-size: 1.45rem;
}
.feature-card p { margin: 0; }
.why-cayson { padding: 82px 0; }
.why-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 52px;
  padding: clamp(36px, 5vw, 58px);
  overflow: hidden;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 88% 28%, rgba(255,255,255,.08) 0 3px, transparent 4px),
    linear-gradient(125deg, var(--deep-navy), var(--navy));
  background-size: 24px 24px, auto;
  box-shadow: var(--shadow);
}
.why-card .eyebrow { color: #8de4ed; }
.why-card h2 { color: white; }
.why-card p:not(.eyebrow) { max-width: 710px; font-size: 1.08rem; color: #d7edf2; }
.why-quote {
  display: grid;
  gap: 4px;
  min-width: 190px;
  color: #8de4ed;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: right;
}
.creators-section {
  padding: 86px 0 94px;
  background: var(--cream);
}
.creator-card {
  display: grid;
  grid-template-columns: minmax(300px, 320px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(12,53,89,.1);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 34px rgba(6,35,60,.08);
}
.creator-card + .creator-card { margin-top: 28px; }
.creator-illustrator .creator-photo-wrap { order: 2; }
.creator-illustrator .creator-copy { order: 1; }
.creator-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  background: #eef5f7;
}
.creator-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.creator-author .creator-photo-wrap img { object-position: center 35%; }
.creator-illustrator .creator-photo-wrap img { object-position: center 40%; }
.creator-role {
  margin: 0 0 6px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.creator-copy h3 {
  margin: 0 0 18px;
  color: var(--deep-navy);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}
.creator-copy p:not(.creator-role) { margin: 0 0 16px; font-size: 1.04rem; }
.updates-cta { padding: 84px 0 90px; }
.updates-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(34px, 5vw, 54px);
  border: 2px solid rgba(67,197,210,.38);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #f1fbfc);
  box-shadow: 0 14px 32px rgba(6,35,60,.07);
}
.updates-card h2 { max-width: 720px; }
.updates-card p:not(.eyebrow) { margin: 12px 0 0; font-size: 1.05rem; }
.updates-card .button { flex: 0 0 auto; }

@media (max-width: 900px) {
  .inner-hero-art { min-height: 500px; background-position: 57% center; }
  .inner-hero-copy { bottom: 46px; }
  .inner-hero-copy > * { max-width: 470px; }
  .about-intro { grid-template-columns: 1fr; text-align: center; }
  .about-intro-copy .eyebrow { text-align: center; }
  .about-intro-copy > * { margin-left: auto; margin-right: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .why-card { grid-template-columns: 1fr; }
  .why-quote { min-width: 0; text-align: left; grid-template-columns: repeat(3, max-content); gap: 16px; }
  .creator-card { grid-template-columns: 1fr; }
  .creator-photo-wrap { max-width: 480px; width: 100%; margin-inline: auto; }
  .creator-illustrator .creator-photo-wrap,
  .creator-illustrator .creator-copy { order: initial; }
  .updates-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .inner-hero-art {
    min-height: 560px;
    background-size: auto 560px;
    background-position: 59% center;
    background-color: #61d0e5;
  }
  .inner-hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.84), rgba(255,255,255,.28) 80%); }
  .inner-hero-copy { bottom: 38px; }
  .inner-hero-copy h1 { font-size: 3.4rem; }
  .about-intro { padding: 64px 0; gap: 36px; }
  .about-features, .creators-section { padding: 64px 0; }
  .why-cayson, .updates-cta { padding: 58px 0; }
  .why-quote { grid-template-columns: 1fr; gap: 2px; }
  .creator-card { padding: 18px; border-radius: 24px; }
  .creator-photo-wrap { border-radius: 18px; }
}

/* About page refinements — v2 */
.inner-hero-copy > * {
  max-width: 430px;
}
.inner-hero-copy p:not(.eyebrow) {
  max-width: 405px;
}

.feature-icon {
  overflow: hidden;
  padding: 0;
  background: var(--navy);
}
.feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}


/* Keep author and illustrator portraits visually equal. */
.creator-author {
  grid-template-columns: 320px minmax(0, 1fr);
}
.creator-illustrator {
  grid-template-columns: minmax(0, 1fr) 320px;
}
.creator-photo-wrap {
  width: 320px;
  height: 400px;
  aspect-ratio: auto;
}
.creator-copy {
  max-width: 100%;
}
.creator-copy h3 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
}
.creator-copy p:not(.creator-role) {
  font-size: 1rem;
  line-height: 1.85;
}
.creator-author .creator-photo-wrap img,
.creator-illustrator .creator-photo-wrap img {
  object-fit: cover;
}
.creator-author .creator-photo-wrap img { object-position: center 34%; }
.creator-illustrator .creator-photo-wrap img { object-position: center 38%; }

@media (max-width: 900px) {
  .inner-hero-copy > * { max-width: 420px; }
  .inner-hero-copy p:not(.eyebrow) { max-width: 390px; }
  .why-card { grid-template-columns: 1fr; }
  .why-book-icon { width: 86px; height: 86px; }
  .creator-card,
  .creator-author,
  .creator-illustrator { grid-template-columns: 1fr; }
  .creator-photo-wrap { width: min(320px, 100%); height: auto; aspect-ratio: 4 / 5; }
}

@media (max-width: 620px) {
  .inner-hero-copy > * { max-width: 330px; }
  .inner-hero-copy p:not(.eyebrow) { max-width: 315px; }
}


/* Contact page */
.contact-main { background: #fff; }
.contact-hero-copy > * { max-width: 470px; }
.contact-hero-copy p:not(.eyebrow) { max-width: 445px; }

.contact-welcome { padding: 76px 0 54px; }
.contact-character {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
  max-width: 900px;
  margin-inline: auto;
}
.contact-cayson {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border: 6px solid #fff;
  outline: 3px solid rgba(67,197,210,.82);
  outline-offset: 3px;
  border-radius: 50%;
  background: #eef9fb;
  box-shadow: var(--shadow);
}
.contact-cayson img { width: 100%; height: 100%; object-fit: cover; }
.contact-character h2,
.contact-form-intro h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.contact-character p:not(.eyebrow) { margin: 14px 0 0; font-size: 1.06rem; }
.grownups-note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 18px 22px;
  display: flex;
  gap: 9px;
  align-items: baseline;
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 18px;
  background: #f2fbfc;
  color: var(--ink);
}
.grownups-note strong { color: var(--navy); flex: 0 0 auto; }

.contact-options {
  padding: 72px 0 82px;
  background: linear-gradient(180deg, #f7fcfd 0%, #eef9fb 100%);
  border-top: 1px solid rgba(12,53,89,.06);
  border-bottom: 1px solid rgba(12,53,89,.06);
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.contact-card {
  padding: 30px 30px 28px;
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(6,35,60,.07);
}
.contact-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: var(--navy);
  color: white;
  font-size: 1.55rem;
  font-weight: 900;
}
.contact-card h3 { margin: 0 0 9px; color: var(--deep-navy); font-size: 1.42rem; }
.contact-card p { margin: 0 0 14px; }
.contact-card a { color: var(--blue); font-weight: 900; overflow-wrap: anywhere; }
.placeholder-label {
  display: inline-block;
  margin-left: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff2cf;
  color: #785315;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-message { padding: 84px 0 94px; }
.contact-form-card {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 78px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(6,35,60,.08);
}
.contact-form-intro > p:not(.eyebrow) { margin: 14px 0 0; font-size: 1.05rem; }
.mailing-placeholder {
  display: grid;
  gap: 2px;
  margin-top: 30px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(12,53,89,.10);
}
.mailing-label {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.mailing-placeholder small { margin-top: 6px; color: #7a6950; font-weight: 800; }

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--deep-navy); font-weight: 900; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 15px;
  border: 2px solid #d5e5eb;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8,168,199,.12);
}
.contact-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.form-prototype-note {
  margin: -5px 0 0;
  color: #6d7d88;
  font-size: .84rem;
  font-weight: 800;
}
.contact-form-status {
  min-height: 1.4em;
  margin: -8px 0 0;
  color: var(--navy);
  font-weight: 900;
}
.footer-primary a[aria-current="page"] { color: #8de4ed; }

@media (max-width: 900px) {
  .contact-hero-copy > * { max-width: 420px; }
  .contact-character { grid-template-columns: 150px minmax(0, 1fr); }
  .contact-cayson { width: 145px; height: 145px; }
  .contact-form-card { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .contact-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .contact-hero-copy > * { max-width: 330px; }
  .contact-welcome { padding: 60px 0 44px; }
  .contact-character { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .contact-cayson { margin-inline: auto; }
  .contact-character .eyebrow { text-align: center; }
  .grownups-note { display: block; text-align: center; }
  .grownups-note strong { display: block; margin-bottom: 4px; }
  .contact-options { padding: 58px 0 64px; }
  .contact-message { padding: 62px 0 70px; }
  .contact-form-card { padding: 22px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-submit { justify-self: stretch; }
}


.contact-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}


.contact-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.hero-kicker-spacer {
  display: none;
}

/* About hero spacing guard */
.inner-hero-copy h1 {
  max-width: 4.4em;
}


/* Homepage news imagery */
.news-image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef7f9;
}
.news-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.news-card:hover .news-image {
  transform: scale(1.025);
}
.news-image-deep-read { object-position: center 48%; }
.news-image-peeking { object-position: center 42%; }
.news-image-playroom { object-position: center 45%; }

.news-section .section-heading-left > div > p:last-child {
  max-width: 650px;
  margin: 9px 0 0;
}

/* Full news page */
.news-page-main {
  background: #fff;
}
.news-hero-copy > * {
  max-width: 540px;
}
.news-page-intro {
  padding: 82px 0 54px;
}
.news-page-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.news-page-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 1.08rem;
}
.news-archive {
  display: grid;
  gap: 30px;
  padding: 0 0 92px;
}
.news-feature {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(6,35,60,.07);
}
.news-feature-reverse .news-feature-image {
  order: 2;
}
.news-feature-reverse .news-feature-copy {
  order: 1;
}
.news-feature-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: #eef7f9;
}
.news-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#story-one .news-feature-image img { object-position: center 48%; }
#story-two .news-feature-image img { object-position: center 42%; }
#story-three .news-feature-image img { object-position: center 45%; }

.news-feature-copy h2 {
  margin: 0 0 14px;
  color: var(--deep-navy);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.04;
}
.news-feature-copy > p:not(.news-meta) {
  margin: 0 0 18px;
  font-size: 1.04rem;
}
.news-placeholder-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff2cf;
  color: #785315;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .news-feature,
  .news-feature-reverse {
    grid-template-columns: 1fr;
  }
  .news-feature-reverse .news-feature-image,
  .news-feature-reverse .news-feature-copy {
    order: initial;
  }
}


/* News hero spacing — keep headline clear of the Cayson logo */
.news-header .inner-hero-art {
  min-height: 540px;
}
.news-hero-copy {
  bottom: 38px;
}
.news-hero-copy > * {
  max-width: 640px;
}
.news-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3.2rem, 5vw, 5.25rem);
  line-height: .96;
}
.news-hero-copy p:not(.eyebrow) {
  max-width: 590px;
}

@media (max-width: 900px) {
  .news-header .inner-hero-art {
    min-height: 540px;
  }
  .news-hero-copy {
    bottom: 34px;
  }
  .news-hero-copy > *,
  .news-hero-copy h1 {
    max-width: 480px;
  }
}

@media (max-width: 620px) {
  .news-header .inner-hero-art {
    min-height: 590px;
  }
  .news-hero-copy {
    bottom: 34px;
  }
  .news-hero-copy h1 {
    max-width: 330px;
    font-size: 3.25rem;
  }
}


/* About hero alignment — match the News page treatment */
.about-header .inner-hero-art {
  min-height: 540px;
}
.about-hero-copy {
  bottom: 38px;
}
.about-hero-copy > * {
  max-width: 650px;
}
.about-hero-copy h1 {
  max-width: 650px;
  white-space: nowrap;
  font-size: clamp(3.2rem, 5vw, 5.25rem);
  line-height: .96;
}
.about-hero-copy p:not(.eyebrow) {
  max-width: 590px;
}

@media (max-width: 900px) {
  .about-header .inner-hero-art {
    min-height: 540px;
  }
  .about-hero-copy {
    bottom: 34px;
  }
  .about-hero-copy > *,
  .about-hero-copy h1 {
    max-width: 500px;
  }
}

@media (max-width: 620px) {
  .about-header .inner-hero-art {
    min-height: 590px;
  }
  .about-hero-copy {
    bottom: 34px;
  }
  .about-hero-copy h1 {
    max-width: 330px;
    white-space: normal;
    font-size: 3.25rem;
  }
}


/* Activities / Cayson's Activity Deck */
.activities-main {
  background: #fff;
}
.activities-header .inner-hero-art {
  min-height: 560px;
}
.activities-hero-copy {
  bottom: 38px;
}
.activities-hero-copy > * {
  max-width: 800px;
}
.activities-hero-copy h1 {
  max-width: 800px;
  white-space: nowrap;
  font-size: clamp(3.15rem, 4.8vw, 5.15rem);
  line-height: .96;
}
.activities-hero-copy p:not(.eyebrow) {
  max-width: 610px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.activity-intro {
  padding: 76px 0 70px;
}
.activity-intro-copy {
  max-width: 780px;
}
.activity-intro-copy h2,
.activity-section-heading h2,
.lookout-heading h2,
.coming-soon-card h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.activity-intro-copy > p:not(.eyebrow) {
  max-width: 740px;
  margin: 14px 0 0;
  font-size: 1.08rem;
}

.sailor-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.sailor-level {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 90px;
  padding: 17px 18px;
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 20px;
  background: #f7fcfd;
}
.level-stars {
  min-width: 66px;
  padding: 10px 8px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: .05em;
}
.sailor-level strong,
.sailor-level span {
  display: block;
}
.sailor-level strong {
  color: var(--deep-navy);
  font-size: 1.08rem;
}
.sailor-level span {
  margin-top: 2px;
  color: #5f7280;
  font-size: .9rem;
  font-weight: 700;
}

.activity-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.activity-jump-nav a {
  padding: 10px 16px;
  border: 1px solid #cfe3ea;
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.activity-jump-nav a:hover,
.activity-jump-nav a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.activity-category {
  scroll-margin-top: 20px;
  padding: 80px 0 88px;
  border-top: 1px solid rgba(12,53,89,.06);
}
.activity-category-light {
  background: linear-gradient(180deg, #f7fcfd 0%, #eef9fb 100%);
}
.activity-category-cream {
  background: var(--cream);
}
.activity-section-heading,
.lookout-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-bottom: 32px;
}
.activity-section-heading > div:first-child,
.lookout-heading > div:first-child {
  max-width: 780px;
}
.activity-section-heading > div:first-child > p:not(.eyebrow),
.lookout-heading > div:first-child > p:not(.eyebrow) {
  margin: 12px 0 0;
  font-size: 1.06rem;
}

.category-icon {
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6,35,60,.12);
}
.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-card-grid,
.lookout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.activity-card,
.lookout-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 30px rgba(6,35,60,.07);
}
.activity-preview {
  position: relative;
  overflow: hidden;
  background: #edf7f9;
}
.activity-preview-paper {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 24px 26px 0;
  background:
    linear-gradient(180deg, #e7f6fa, #f8fcfd 55%, #fff 100%);
}
.activity-preview-paper img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 365px;
  object-fit: contain;
  object-position: center bottom;
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 12px 24px rgba(6,35,60,.10);
  background: white;
}
.activity-card-body,
.lookout-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 25px 26px;
}
.activity-card-body h3,
.lookout-card-body h3 {
  margin: 13px 0 9px;
  color: var(--deep-navy);
  font-size: 1.48rem;
  line-height: 1.12;
}
.activity-card-body p,
.lookout-card-body p {
  margin: 0 0 20px;
}
.activity-button {
  margin-top: auto;
}
.difficulty-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.difficulty-badge span {
  color: white;
  letter-spacing: .05em;
}

.lookout-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.08) 0 3px, transparent 4px),
    linear-gradient(125deg, #062a49, #0a4770);
  background-size: 24px 24px, auto;
  color: white;
}
.lookout-heading h2 {
  color: white;
}
.lookout-heading .eyebrow {
  color: #8de4ed;
}
.lookout-heading > div:first-child > p:not(.eyebrow) {
  color: #d9eef3;
}
.lookout-play-badge {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: white;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .10em;
}
.lookout-card {
  border-color: rgba(255,255,255,.16);
  background: white;
  color: var(--ink);
}
.lookout-preview {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d9f2f7;
}
.lookout-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}
.lookout-overlay {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,47,85,.92);
  color: white;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.lookout-preview:hover img,
.lookout-preview:focus-visible img {
  transform: scale(1.025);
}

.activity-coming-soon {
  padding: 82px 0 90px;
}
.coming-soon-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 4vw, 44px);
  border: 2px solid rgba(67,197,210,.38);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f1fbfc);
  box-shadow: 0 14px 32px rgba(6,35,60,.07);
}
.coming-soon-cayson {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border: 5px solid white;
  outline: 3px solid rgba(67,197,210,.75);
  outline-offset: 2px;
  border-radius: 50%;
}
.coming-soon-cayson img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coming-soon-card > div:last-child > p:not(.eyebrow) {
  margin: 12px 0 0;
  max-width: 760px;
}

@media (max-width: 1000px) {
  .activities-hero-copy h1 {
    max-width: 650px;
    font-size: clamp(3rem, 6vw, 4.6rem);
  }
  .activity-card-grid,
  .lookout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .activity-card-grid > article:last-child,
  .lookout-grid > article:last-child {
    grid-column: 1 / -1;
    width: min(50%, 430px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .sailor-levels {
    grid-template-columns: 1fr;
  }
  .activity-section-heading,
  .lookout-heading {
    grid-template-columns: 1fr;
  }
  .category-icon,
  .lookout-play-badge {
    width: 66px;
    height: 66px;
  }
  .activity-card-grid,
  .lookout-grid {
    grid-template-columns: 1fr;
  }
  .activity-card-grid > article:last-child,
  .lookout-grid > article:last-child {
    grid-column: auto;
    width: auto;
  }
  .coming-soon-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .coming-soon-cayson {
    margin-inline: auto;
  }
  .coming-soon-card .eyebrow {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .activities-header .inner-hero-art {
    min-height: 600px;
  }
  .activities-hero-copy {
    bottom: 34px;
  }
  .activities-hero-copy h1 {
    max-width: 340px;
    white-space: normal;
    font-size: 3.2rem;
  }
  .activities-hero-copy p:not(.eyebrow) {
    max-width: 320px;
  }
  .activity-intro,
  .activity-category,
  .activity-coming-soon {
    padding-top: 58px;
    padding-bottom: 64px;
  }
  .activity-preview-paper {
    min-height: 330px;
    padding: 20px 20px 0;
  }
  .activity-preview-paper img {
    height: 310px;
  }
}


/* Book-focused homepage v14 */
.book-hero-art {
  min-height: clamp(690px, 56vw, 825px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url('assets/header-scene.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.book-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.68) 34%, rgba(255,255,255,.12) 65%, rgba(255,255,255,.04) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.book-hero-layout {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: 28px;
  padding: 16px 0 48px;
}
.book-hero-copy {
  align-self: center;
  max-width: 490px;
}
.book-hero-copy h1 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: .93;
  letter-spacing: -.055em;
}
.book-kicker {
  margin: 16px 0 0;
  color: #078db6;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
}
.book-kicker span { color: var(--aqua); }
.book-hero-summary {
  max-width: 470px;
  margin: 18px 0 24px;
  color: var(--deep-navy);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.58;
}
.book-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 315px;
}
.book-hero-actions .button { width: 100%; }
.button-amazon {
  color: #102b43;
  background: #ffbf24;
  box-shadow: 0 10px 18px rgba(140,91,0,.18);
}
.button-amazon:hover,
.button-amazon:focus-visible { background: #f5ad00; transform: translateY(-1px); }
.amazon-mark {
  margin-right: 11px;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: .8;
}
.hero-books {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: end;
  gap: clamp(4px, 1vw, 16px);
  min-width: 0;
  margin: 0 -12px -12px 0;
}
.hero-book {
  margin: 0;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 18px 20px rgba(6,35,60,.18));
}
.hero-book img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.hero-book-hardcover { transform: translateY(1px); }
.hero-book-paperback { width: 94%; justify-self: center; }
.hero-book figcaption {
  margin-top: -4px;
  padding: 7px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: var(--deep-navy);
  text-align: center;
  box-shadow: 0 7px 18px rgba(6,35,60,.08);
  backdrop-filter: blur(5px);
}
.hero-book figcaption span,
.hero-book figcaption strong { display: block; }
.hero-book figcaption span { font-size: .87rem; font-weight: 800; }
.hero-book figcaption strong { margin-top: 1px; font-size: 1.32rem; line-height: 1; }

.home-book-main {
  padding-top: 38px;
  background:
    radial-gradient(circle at 15% 5%, rgba(67,197,210,.08), transparent 23%),
    linear-gradient(180deg, #fffdf7, #fff 60%);
}
.featured-voyage { padding: 26px 0 22px; }
.featured-voyage-card {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 4vw, 52px);
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid rgba(12,53,89,.11);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 38px rgba(6,35,60,.10);
}
.featured-voyage-art {
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: #cceff4;
}
.featured-voyage-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.featured-voyage-copy {
  align-self: center;
}
.featured-voyage-copy h2,
.home-card-heading h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.featured-voyage-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  font-size: 1.03rem;
}
.book-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #d7e6eb;
}
.book-fact {
  min-width: 0;
  padding: 0 14px;
  color: var(--navy);
  text-align: center;
}
.book-fact + .book-fact { border-left: 1px solid #d7e6eb; }
.book-fact-icon {
  display: block;
  min-height: 38px;
  margin-bottom: 5px;
  color: #087eb4;
  font-size: 1.9rem;
  line-height: 1;
}
.book-fact strong { font-size: .93rem; line-height: 1.2; }

.home-discovery {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  padding: 24px 0 36px;
}
.bookshelf-card,
.activity-home-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6,35,60,.07);
}
.home-card-heading { text-align: center; }
.home-card-heading .eyebrow { color: #078db6; }
.home-card-heading h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}
.bookshelf-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.bookshelf-book,
.bookshelf-coming {
  min-width: 0;
  display: flex;
  min-height: 325px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 15px;
  border-radius: 19px;
  background: #eff9fb;
  text-align: center;
}
.bookshelf-book img {
  width: min(100%, 215px);
  margin: auto auto 4px;
  filter: drop-shadow(0 9px 12px rgba(6,35,60,.14));
}
.bookshelf-book strong,
.bookshelf-coming strong { color: var(--deep-navy); font-size: 1.02rem; }
.bookshelf-book span,
.bookshelf-coming span { color: #667c8b; font-size: .86rem; font-weight: 800; }
.coming-horizon {
  width: min(92%, 190px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: auto auto 14px;
  border: 2px dashed #b7dce5;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #dff5f8 0 52%, #9be1ea 52% 66%, #49c0d0 66% 100%);
}
.coming-horizon span {
  color: var(--navy);
  font-size: 4rem;
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(255,255,255,.65);
}

.activity-home-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(155deg, #fff, #f1fbfc);
}
.activity-home-previews {
  width: 100%;
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 22px 0 18px;
}
.activity-home-previews img {
  width: 34%;
  max-height: 230px;
  object-fit: cover;
  border: 5px solid white;
  border-radius: 14px;
  box-shadow: 0 11px 22px rgba(6,35,60,.12);
}
.activity-home-previews img:nth-child(1) { transform: rotate(-5deg) translateX(9%); }
.activity-home-previews img:nth-child(2) { z-index: 2; transform: translateY(-5px); }
.activity-home-previews img:nth-child(3) { transform: rotate(5deg) translateX(-9%); }
.activity-home-card > p { max-width: 520px; margin: 0 0 18px; }
.activity-home-card .button { min-width: 210px; }

.home-news-section { padding-top: 38px; padding-bottom: 72px; }
.home-news-section .news-image-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dff5f8;
}
.home-news-section .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-news-section .news-image-peeking { object-position: center 48%; }
.home-news-section .news-image-playroom { object-position: center 48%; }
.home-news-section .news-image-deep-read { object-position: center 50%; }

/* Main endless-runner moved to Activity Deck */
.featured-main-game {
  scroll-margin-top: 20px;
  padding: 10px 0 78px;
  background: white;
}
.featured-main-game-card {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(430px, 1.14fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(12,53,89,.12);
  border-radius: 28px;
  background: linear-gradient(140deg, #f1fbfc, #fff);
  box-shadow: 0 15px 34px rgba(6,35,60,.09);
}
.featured-game-copy { padding: clamp(28px, 4vw, 48px); }
.featured-game-copy h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.featured-game-copy > p:not(.eyebrow):not(.featured-game-note) {
  margin: 15px 0 20px;
  font-size: 1.04rem;
}
.featured-game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.featured-game-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #dff5f8;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
}
.featured-game-note {
  margin: 12px 0 0;
  color: #657b8a;
  font-size: .79rem;
}
.featured-game-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--water);
}
.featured-game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.featured-game-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,35,60,.48), transparent 58%);
}
.featured-game-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,.35);
}
.featured-game-overlay > span {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: rgba(6,35,60,.55);
  font-size: 1.2rem;
}
.featured-game-overlay strong { align-self: end; font-size: 1.45rem; line-height: 1.05; }
.featured-game-overlay small { font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }

@media (max-width: 1050px) {
  .book-hero-art { min-height: 820px; }
  .book-hero-layout {
    grid-template-columns: minmax(300px, .82fr) minmax(430px, 1.18fr);
    min-height: 650px;
  }
  .book-hero-copy h1 { font-size: clamp(3.4rem, 6vw, 5.1rem); }
  .hero-books { margin-right: -44px; }
  .featured-voyage-card { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 900px) {
  .book-hero-art { min-height: 980px; background-position: 56% center; }
  .book-hero-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .book-hero-copy { max-width: 540px; }
  .book-hero-summary { max-width: 540px; }
  .book-hero-actions { flex-direction: row; max-width: 540px; }
  .book-hero-actions .button { width: auto; flex: 1; }
  .hero-books {
    width: min(710px, 92%);
    justify-self: center;
    margin: -18px auto 0;
  }
  .featured-voyage-card { grid-template-columns: 1fr; }
  .featured-voyage-art { min-height: 360px; }
  .home-discovery { grid-template-columns: 1fr; }
  .bookshelf-items { max-width: 620px; margin-inline: auto; }
  .featured-main-game-card { grid-template-columns: 1fr; }
  .featured-game-visual { min-height: 360px; }
}

@media (max-width: 620px) {
  .book-hero-art {
    min-height: 950px;
    background-size: auto 950px;
    background-position: 58% center;
  }
  .book-hero-shade {
    background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.75) 42%, rgba(255,255,255,.16) 76%, rgba(255,255,255,.03));
  }
  .book-hero-layout { padding-top: 44px; }
  .book-hero-copy h1 { font-size: 3.45rem; }
  .book-kicker { font-size: 1.3rem; }
  .book-hero-summary { font-size: .98rem; }
  .book-hero-actions { flex-direction: column; max-width: 315px; }
  .book-hero-actions .button { width: 100%; }
  .hero-books {
    width: 112%;
    margin-left: -6%;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hero-book-paperback { width: 100%; }
  .hero-book figcaption { padding: 6px 10px; }
  .hero-book figcaption strong { font-size: 1.08rem; }
  .home-book-main { padding-top: 20px; }
  .featured-voyage { padding-top: 14px; }
  .featured-voyage-card { padding: 17px; border-radius: 22px; }
  .featured-voyage-art { min-height: 265px; border-radius: 16px; }
  .book-facts { grid-template-columns: 1fr; gap: 12px; }
  .book-fact { padding: 9px 0; display: grid; grid-template-columns: 42px 1fr; align-items: center; text-align: left; }
  .book-fact + .book-fact { border-left: 0; border-top: 1px solid #d7e6eb; }
  .book-fact-icon { margin: 0; min-height: 0; text-align: center; }
  .bookshelf-card, .activity-home-card { padding: 20px; }
  .bookshelf-items { gap: 10px; }
  .bookshelf-book, .bookshelf-coming { min-height: 265px; padding: 10px; }
  .activity-home-previews { min-height: 180px; }
  .activity-home-previews img { max-height: 175px; border-width: 3px; }
  .featured-main-game { padding-bottom: 58px; }
  .featured-game-copy { padding: 26px 22px; }
  .featured-game-visual { min-height: 270px; }
  .featured-game-overlay { left: 18px; right: 18px; bottom: 17px; }
}

/* Homepage visual alignment v15 — closer to approved vertical concept */
body.book-home-page {
  background: #fffaf1;
}
.book-home-page .nav-shell,
.book-home-page .book-hero-layout,
.book-home-page .featured-voyage,
.book-home-page .home-discovery,
.book-home-page .home-news-section,
.book-home-page .footer-inner {
  width: min(1040px, calc(100% - 36px));
}
.book-home-page .book-hero-art {
  min-height: 650px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.92) 0 2%, rgba(255,255,255,.35) 8%, transparent 16%),
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.22) 0 1px, transparent 1.7px),
    linear-gradient(180deg, #6bd4ec 0%, #c9f1f7 42%, #ecfbfd 55%, #22b0d2 55%, #079fc6 100%);
  background-size: auto, 18px 18px, auto;
  border-bottom: 0;
}
.book-home-page .book-hero-art::before {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: -22px;
  height: 150px;
  z-index: 0;
  border-radius: 48% 54% 0 0 / 50% 56% 0 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,.18) 0 2px, transparent 3px),
    linear-gradient(180deg, rgba(53,194,217,.95), rgba(6,150,194,.98));
  background-size: 18px 18px, auto;
  transform: rotate(-1deg);
}
.book-home-page .book-hero-art::after {
  content: "";
  position: absolute;
  width: 56%;
  height: 210px;
  right: -7%;
  bottom: 20px;
  z-index: 0;
  border-radius: 60% 0 0 52%;
  background:
    radial-gradient(circle, rgba(174,119,30,.18) 0 1.4px, transparent 2px) 0 0/17px 17px,
    #f3cb73;
  transform: rotate(-3deg);
  box-shadow: inset 0 10px 0 rgba(255,255,255,.17);
}
.book-home-page .book-hero-shade { display: none; }
.book-home-page .nav-shell {
  position: relative;
  z-index: 4;
  padding-top: 18px;
  align-items: flex-start;
}
.book-home-page .brand {
  width: 225px;
  filter: drop-shadow(0 6px 8px rgba(5,37,64,.10));
}
.book-home-page .primary-nav {
  margin-top: 12px;
  padding: 9px 4px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.book-home-page .book-hero-layout {
  position: relative;
  z-index: 2;
  min-height: 520px;
  grid-template-columns: minmax(300px, .77fr) minmax(500px, 1.23fr);
  gap: 28px;
  padding: 24px 0 30px;
}
.book-home-page .book-hero-copy {
  max-width: 370px;
  align-self: center;
  padding-bottom: 22px;
  text-align: center;
}
.book-home-page .book-hero-copy h1 {
  font-size: clamp(3.35rem, 5.2vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.045em;
}
.book-home-page .book-kicker {
  margin-top: 14px;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
}
.book-home-page .book-hero-summary {
  max-width: 360px;
  margin: 14px auto 21px;
  font-size: 1rem;
  line-height: 1.48;
}
.book-home-page .book-hero-actions {
  width: min(100%, 300px);
  margin-inline: auto;
}
.book-home-page .book-hero-actions .button {
  min-height: 48px;
  font-size: 1rem;
}
.book-home-page .hero-books {
  width: min(100%, 610px);
  justify-self: end;
  align-self: end;
  grid-template-columns: 1.08fr .92fr;
  gap: 8px;
  margin: 0 -8px -6px 0;
}
.book-home-page .hero-book {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 16px rgba(6,35,60,.22));
}
.book-home-page .hero-book img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.book-home-page .hero-book-paperback {
  width: 91%;
  justify-self: center;
}
.book-home-page .hero-book figcaption {
  margin-top: -8px;
  padding: 5px 12px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.book-home-page .hero-book figcaption span { font-size: .82rem; }
.book-home-page .hero-book figcaption strong { font-size: 1.25rem; }

.book-home-page .home-book-main {
  padding-top: 14px;
  background:
    radial-gradient(circle at 15% 4%, rgba(67,197,210,.05), transparent 18%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf8 65%, #fff 100%);
}
.book-home-page .featured-voyage {
  padding: 18px 0 10px;
}
.book-home-page .featured-voyage-card {
  grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  padding: 22px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(6,35,60,.09);
}
.book-home-page .featured-voyage-art {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}
.book-home-page .featured-voyage-art img {
  object-position: center;
}
.book-home-page .featured-voyage-copy .eyebrow {
  color: #078db6;
  text-align: center;
  font-size: .9rem;
}
.book-home-page .featured-voyage-copy h2 {
  font-size: clamp(2.45rem, 4vw, 3.55rem);
  text-align: left;
}
.book-home-page .featured-voyage-copy > p:not(.eyebrow) {
  margin-top: 10px;
  font-size: .94rem;
  line-height: 1.48;
}
.book-home-page .featured-voyage-copy > p:not(.eyebrow) + p {
  margin-top: 6px;
}
.book-home-page .book-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 19px;
  padding-top: 17px;
}
.book-home-page .book-fact {
  padding: 0 8px;
}
.book-home-page .book-fact-icon {
  min-height: 30px;
  font-size: 1.7rem;
}
.book-home-page .book-fact strong {
  font-size: .78rem;
}

.book-home-page .home-discovery {
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  padding: 12px 0 18px;
}
.book-home-page .bookshelf-card,
.book-home-page .activity-home-card {
  padding: 18px 20px;
  border-radius: 22px;
  box-shadow: 0 9px 22px rgba(6,35,60,.07);
}
.book-home-page .home-card-heading .eyebrow {
  margin-bottom: 10px;
  color: #078db6;
  font-size: .95rem;
}
.book-home-page .bookshelf-items {
  gap: 12px;
  margin-top: 10px;
}
.book-home-page .bookshelf-book,
.book-home-page .bookshelf-coming {
  min-height: 270px;
  padding: 10px 12px;
  border-radius: 16px;
}
.book-home-page .bookshelf-book img {
  width: min(100%, 175px);
}
.book-home-page .coming-horizon {
  width: min(85%, 155px);
  margin-bottom: 10px;
}
.book-home-page .coming-horizon span { font-size: 3rem; }
.book-home-page .activity-home-card {
  justify-content: flex-start;
}
.book-home-page .activity-home-previews {
  min-height: 185px;
  margin: 5px 0 4px;
}
.book-home-page .activity-home-previews img {
  max-height: 180px;
  border-width: 4px;
}
.book-home-page .activity-home-title {
  margin: 4px 0 2px;
  color: var(--deep-navy);
  font-size: 1.23rem;
  line-height: 1.08;
}
.book-home-page .activity-home-card > p {
  max-width: 470px;
  margin: 4px 0 10px;
  font-size: .86rem;
  line-height: 1.42;
}
.book-home-page .activity-home-card .button {
  min-width: 180px;
  min-height: 42px;
  padding-block: 8px;
}

.book-home-page .home-news-section {
  padding: 8px 0 34px;
}
.book-home-page .home-news-heading {
  margin-bottom: 12px;
  text-align: center;
}
.book-home-page .home-news-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #078db6;
  font-size: 1.35rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.book-home-page .home-news-heading h2::before,
.book-home-page .home-news-heading h2::after {
  content: "〰";
  color: #24b7d2;
  font-size: 1.2rem;
}
.book-home-page .news-grid { gap: 12px; }
.book-home-page .news-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 150px;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(6,35,60,.07);
}
.book-home-page .home-news-section .news-image-link {
  height: 100%;
  min-height: 150px;
  aspect-ratio: auto;
}
.book-home-page .news-copy {
  padding: 12px 13px;
}
.book-home-page .news-meta {
  margin-bottom: 5px;
  font-size: .68rem;
}
.book-home-page .news-copy h3 {
  margin-bottom: 5px;
  font-size: .95rem;
}
.book-home-page .news-copy p:not(.news-meta) {
  margin-bottom: 7px;
  font-size: .72rem;
  line-height: 1.35;
}
.book-home-page .news-copy a { font-size: .73rem; }

.book-home-page .site-footer {
  margin-top: 0;
  padding: 54px 0 22px;
}
.book-home-page .footer-wave { height: 52px; top: -25px; }
.book-home-page .footer-inner {
  grid-template-columns: 1.35fr .8fr auto;
  gap: 24px;
  align-items: center;
}
.book-home-page .home-footer-intro {
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 15px;
  text-align: left;
}
.book-home-page .footer-character {
  width: 100px;
  height: 100px;
  margin: 0;
}
.book-home-page .home-footer-copy strong {
  font-size: 1.05rem;
}
.book-home-page .home-footer-copy p,
.book-home-page .home-footer-copy span {
  display: block;
  margin: 3px 0 0;
  color: #d8eef4;
  font-size: .73rem;
  line-height: 1.35;
}
.book-home-page .footer-primary { gap: 8px 18px; }
.book-home-page .footer-legal { gap: 7px 14px; margin-top: 9px; font-size: .72rem; }
.book-home-page .copyright { margin-top: 9px; font-size: .68rem; }
.book-home-page .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .book-home-page .book-hero-art { min-height: 920px; }
  .book-home-page .book-hero-layout {
    grid-template-columns: 1fr;
    min-height: 760px;
    gap: 4px;
  }
  .book-home-page .book-hero-copy {
    max-width: 520px;
    justify-self: center;
    padding-bottom: 0;
  }
  .book-home-page .book-hero-summary { max-width: 480px; }
  .book-home-page .hero-books {
    width: min(700px, 96%);
    justify-self: center;
    margin: -8px auto 0;
  }
  .book-home-page .featured-voyage-card { grid-template-columns: 1fr; }
  .book-home-page .featured-voyage-art { width: min(520px, 100%); justify-self: center; }
  .book-home-page .home-discovery { grid-template-columns: 1fr; }
  .book-home-page .news-card { grid-template-columns: 1fr; }
  .book-home-page .home-news-section .news-image-link { min-height: 230px; }
  .book-home-page .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .book-home-page .home-footer-intro { width: min(480px, 100%); margin-inline: auto; }
  .book-home-page .footer-primary,
  .book-home-page .footer-legal,
  .book-home-page .social-links { justify-content: center; }
}

@media (max-width: 620px) {
  .book-home-page .book-hero-art { min-height: 930px; }
  .book-home-page .book-hero-art::after { width: 85%; height: 150px; }
  .book-home-page .brand { width: 185px; }
  .book-home-page .book-hero-layout { padding-top: 20px; }
  .book-home-page .book-hero-copy h1 { font-size: 3.2rem; }
  .book-home-page .hero-books { width: 110%; margin-left: -5%; }
  .book-home-page .hero-book-paperback { width: 100%; }
  .book-home-page .book-facts { grid-template-columns: 1fr 1fr; }
  .book-home-page .book-fact:nth-child(3) { border-left: 0; }
  .book-home-page .book-fact:nth-child(n+3) { border-top: 1px solid #d7e6eb; padding-top: 10px; margin-top: 10px; }
  .book-home-page .bookshelf-items { grid-template-columns: 1fr 1fr; }
  .book-home-page .bookshelf-book,
  .book-home-page .bookshelf-coming { min-height: 240px; }
  .book-home-page .home-footer-intro { grid-template-columns: 82px 1fr; text-align: left; }
  .book-home-page .footer-character { width: 78px; height: 78px; }
}

/* Homepage v17 — supplied book-world hero assets */
.book-home-page .book-home-header {
  background: #fff;
}

.book-home-page .book-hero-art {
  position: relative;
  width: min(1488px, 100%);
  min-height: 680px;
  aspect-ratio: 2048 / 1365;
  margin-inline: auto;
  overflow: hidden;
  background: url("assets/home-hero-background.jpg") center top / cover no-repeat;
  border-bottom: 0;
}

.book-home-page .book-hero-art::before,
.book-home-page .book-hero-art::after,
.book-home-page .hero-palms {
  display: none !important;
}

.book-home-page .nav-shell {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 44px));
  padding-top: 20px;
}

.book-home-page .brand {
  width: 245px;
  margin-left: -4px;
  filter: drop-shadow(0 5px 8px rgba(5,37,64,.10));
}

.book-home-page .brand img {
  width: 100%;
  height: auto;
  display: block;
}

.book-home-page .primary-nav {
  margin-top: 12px;
}

.book-home-page .book-hero-layout {
  position: absolute;
  z-index: 2;
  inset: 92px 0 70px;
  width: min(1120px, calc(100% - 44px));
  min-height: 0;
  height: auto;
  grid-template-columns: minmax(310px, .76fr) minmax(540px, 1.24fr);
  gap: 30px;
  padding: 0;
  align-items: center;
  pointer-events: none;
}

.book-home-page .book-hero-copy,
.book-home-page .hero-books {
  pointer-events: auto;
}

.book-home-page .book-hero-copy {
  max-width: 390px;
  align-self: center;
  padding: 12px 0 42px;
  text-align: center;
}

.book-home-page .book-hero-copy h1 {
  font-size: clamp(3.45rem, 5.15vw, 4.95rem);
  line-height: .96;
}

.book-home-page .book-kicker {
  margin-top: 13px;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
}

.book-home-page .book-hero-summary {
  max-width: 372px;
  margin: 14px auto 21px;
  font-size: 1rem;
  line-height: 1.5;
}

.book-home-page .hero-books {
  width: min(100%, 640px);
  justify-self: end;
  align-self: end;
  grid-template-columns: 1.07fr .93fr;
  gap: 10px;
  margin: 0 -8px 72px 0;
  align-items: end;
}

.book-home-page .hero-book {
  filter: drop-shadow(0 16px 15px rgba(35,48,45,.20));
}

.book-home-page .hero-book-hardcover {
  transform: translateY(-5px);
}

.book-home-page .hero-book-paperback {
  width: 92%;
  transform: translateY(7px);
}

.book-home-page .hero-book figcaption {
  margin-top: -7px;
  padding: 5px 10px 0;
  color: var(--deep-navy);
  text-shadow: 0 1px 0 rgba(255,255,255,.78);
}

.book-home-page .home-book-main {
  margin-top: -1px;
  padding-top: 0;
  background: linear-gradient(180deg, #fff 0%, #fffaf1 18%, #fffdf8 67%, #fff 100%);
}

/* The supplied hero art already fades naturally into white. */
.book-home-page .featured-voyage {
  padding-top: 8px;
}

.book-home-page .featured-voyage-card {
  grid-template-columns: minmax(390px, .95fr) minmax(0, 1.05fr);
}

.book-home-page .featured-voyage-art {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.book-home-page .featured-voyage-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1050px) {
  .book-home-page .book-hero-art {
    min-height: 760px;
    aspect-ratio: auto;
    background-size: auto 100%;
    background-position: center top;
  }

  .book-home-page .book-hero-layout {
    inset: 90px 0 50px;
    grid-template-columns: minmax(290px, .82fr) minmax(440px, 1.18fr);
    gap: 18px;
  }

  .book-home-page .brand {
    width: 215px;
  }

  .book-home-page .hero-books {
    margin-bottom: 70px;
  }

  .book-home-page .featured-voyage-card {
    grid-template-columns: .95fr 1.05fr;
  }
}

@media (max-width: 820px) {
  .book-home-page .book-hero-art {
    min-height: 1060px;
    aspect-ratio: auto;
    background-size: auto 100%;
    background-position: 58% top;
  }

  .book-home-page .nav-shell {
    width: min(100% - 28px, 700px);
  }

  .book-home-page .brand {
    width: 190px;
  }

  .book-home-page .book-hero-layout {
    position: relative;
    inset: auto;
    width: min(100% - 30px, 680px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0 60px;
  }

  .book-home-page .book-hero-copy {
    max-width: 510px;
    justify-self: center;
    padding: 16px 16px 18px;
    background: rgba(240,251,254,.82);
    border-radius: 24px;
  }

  .book-home-page .book-hero-copy h1 {
    font-size: clamp(3.25rem, 9vw, 4.65rem);
  }

  .book-home-page .hero-books {
    width: min(100%, 610px);
    justify-self: center;
    margin: 20px auto 0;
  }

  .book-home-page .featured-voyage-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .book-home-page .book-hero-art {
    min-height: 960px;
    background-position: 62% top;
  }

  .book-home-page .brand {
    width: 165px;
  }

  .book-home-page .book-hero-copy h1 {
    font-size: 3.2rem;
  }

  .book-home-page .hero-books {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .book-home-page .hero-book figcaption span {
    font-size: .75rem;
  }

  .book-home-page .hero-book figcaption strong {
    font-size: 1.05rem;
  }
}

/* Homepage v18 — embedded-book hero + refined icons */
.book-home-page .book-hero-art {
  width: min(1488px, 100%);
  min-height: 0;
  aspect-ratio: 2048 / 1365;
  background: url("assets/home-hero-background-v18.jpg") center top / cover no-repeat;
}

.book-home-page .book-hero-layout {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: min(1120px, calc(100% - 44px));
  height: 100%;
  min-height: 0;
  display: block;
  padding: 0;
  pointer-events: none;
}

.book-home-page .book-hero-copy {
  position: absolute;
  left: 0;
  top: 14.8%;
  width: 385px;
  max-width: 34%;
  padding: 0;
  text-align: center;
  pointer-events: auto;
}

.book-home-page .book-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.35rem, 5vw, 4.8rem);
  line-height: .96;
}

.book-home-page .book-kicker {
  margin-top: 12px;
  font-size: clamp(1.16rem, 1.55vw, 1.45rem);
}

.book-home-page .book-hero-summary {
  max-width: 360px;
  margin: 13px auto 0;
  font-size: .98rem;
  line-height: 1.48;
}

/* Keep the explanatory copy entirely above the water line; CTAs sit just below it. */
.book-home-page .book-hero-actions {
  margin-top: 40px;
}

.book-home-page .hero-format-labels {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.book-home-page .hero-format {
  position: absolute;
  top: 66.3%;
  color: var(--deep-navy);
  font-size: clamp(.9rem, 1.2vw, 1.08rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,.88);
}

.book-home-page .hero-format-hardcover {
  left: 56.5%;
  width: 15%;
}

.book-home-page .hero-format-paperback {
  left: 72.5%;
  width: 15%;
}

.book-home-page .book-fact-icon {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.book-home-page .coming-horizon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: transparent;
}

.book-home-page .coming-horizon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

@media (max-width: 1050px) {
  .book-home-page .book-hero-copy {
    top: 14%;
    width: 340px;
    max-width: 37%;
  }

  .book-home-page .book-hero-copy h1 {
    font-size: clamp(3rem, 5.2vw, 4rem);
  }

  .book-home-page .book-hero-summary {
    font-size: .9rem;
  }

  .book-home-page .book-hero-actions {
    margin-top: 28px;
  }
}

@media (max-width: 820px) {
  .book-home-page .book-hero-art {
    min-height: 980px;
    aspect-ratio: auto;
    background-size: auto 100%;
    background-position: 57% top;
  }

  .book-home-page .book-hero-layout {
    position: relative;
    inset: auto;
    width: min(100% - 28px, 680px);
    height: auto;
    min-height: 840px;
    margin-inline: auto;
    padding-top: 28px;
  }

  .book-home-page .book-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 500px);
    max-width: none;
    margin-inline: auto;
    padding: 16px 18px 18px;
    background: rgba(239,250,253,.88);
    border-radius: 24px;
  }

  .book-home-page .book-hero-actions {
    margin-top: 18px;
  }

  .book-home-page .hero-format-labels {
    display: none;
  }
}

@media (max-width: 560px) {
  .book-home-page .book-hero-art {
    min-height: 900px;
    background-position: 61% top;
  }

  .book-home-page .book-hero-copy h1 {
    font-size: 3.05rem;
  }

  .book-home-page .book-fact-icon {
    width: 48px;
    height: 48px;
  }
}

/* Homepage v19 — alignment, compact CTAs, crisp vector icons */

/* Center the supplied logo directly above the hero copy while leaving the nav on the right. */
.book-home-page .nav-shell {
  position: relative;
}

.book-home-page .brand {
  position: absolute;
  left: 0;
  top: 18px;
  width: 385px;
  max-width: 34%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  filter: drop-shadow(0 4px 7px rgba(5,37,64,.10));
}

.book-home-page .brand img {
  width: min(245px, 82%);
  height: auto;
}

/* Give the centered logo breathing room without dropping the copy into the water. */
.book-home-page .book-hero-copy {
  top: 19.1%;
}

/* Match the earlier, smaller CTA treatment. */
.book-home-page .book-hero-actions {
  width: 238px;
  max-width: 100%;
  margin: 27px auto 0;
  gap: 8px;
}

.book-home-page .book-hero-actions .button {
  width: 100%;
  min-height: 40px;
  padding: 8px 18px;
  font-size: .88rem;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(12,53,89,.14);
}

.book-home-page .book-hero-actions .button-amazon {
  box-shadow: 0 6px 12px rgba(140,91,0,.13);
}

.book-home-page .amazon-mark {
  margin-right: 8px;
  font-size: 1.4rem;
}

/* Center format labels under the embedded book artwork in the supplied background. */
.book-home-page .hero-format {
  top: 65.1%;
  width: 12%;
  font-size: clamp(.86rem, 1.08vw, 1rem);
}

.book-home-page .hero-format-hardcover {
  left: 47.8%;
}

.book-home-page .hero-format-paperback {
  left: 71.8%;
}

/* The new icons are true SVGs; keep them crisp and consistently sized. */
.book-home-page .book-fact-icon {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
}

.book-home-page .coming-horizon {
  width: 86px;
  height: 86px;
}

.book-home-page .coming-horizon img {
  width: 76px;
  height: 76px;
}

@media (max-width: 1050px) {
  .book-home-page .brand {
    width: 340px;
    max-width: 37%;
    top: 16px;
  }

  .book-home-page .brand img {
    width: min(220px, 82%);
  }

  .book-home-page .book-hero-copy {
    top: 19.3%;
  }

  .book-home-page .book-hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 820px) {
  .book-home-page .brand {
    position: relative;
    left: auto;
    top: auto;
    width: 190px;
    max-width: none;
    display: block;
  }

  .book-home-page .brand img {
    width: 100%;
  }

  .book-home-page .book-hero-copy {
    top: auto;
  }

  .book-home-page .book-hero-actions {
    width: 238px;
    margin-top: 18px;
  }
}

/* Homepage v20 — nav, format labels, Amazon CTA, simplified icons */

/* Keep the logo centered over the hero copy, but completely clear of the nav. */
.book-home-page .nav-shell {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.book-home-page .brand {
  position: absolute;
  left: 7.4%;
  top: 16px;
  width: 245px;
  max-width: none;
  margin: 0;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 4px 7px rgba(5,37,64,.10));
}

.book-home-page .brand img {
  display: block;
  width: 100%;
  height: auto;
}

.book-home-page .primary-nav {
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-top: 12px;
}

/* Preserve the raised hero copy. */
.book-home-page .book-hero-copy {
  top: 19.1%;
}

/* Compact CTAs matching the earlier treatment. */
.book-home-page .book-hero-actions {
  width: 238px;
  max-width: 100%;
  margin: 26px auto 0;
  gap: 8px;
}

.book-home-page .book-hero-actions .button {
  width: 100%;
  min-height: 38px;
  padding: 8px 17px;
  border-radius: 999px;
  font-size: .88rem;
  line-height: 1;
  box-shadow: 0 5px 10px rgba(12,53,89,.13);
}

.book-home-page .book-hero-actions .button-amazon {
  position: relative;
  color: #0c2f50;
  background: #ffbf24;
  box-shadow: 0 5px 10px rgba(140,91,0,.13);
}

.book-home-page .amazon-mark {
  position: relative;
  display: inline-block;
  width: 23px;
  margin-right: 7px;
  font-family: Georgia, serif;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: .8;
  text-align: center;
}

.book-home-page .amazon-mark::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 0;
  bottom: -7px;
  height: 8px;
  border-bottom: 2px solid #0c2f50;
  border-radius: 50%;
  transform: rotate(-5deg);
}

/* Format labels now sit ABOVE the embedded books. */
.book-home-page .hero-format {
  top: 15.2%;
  width: 12.5%;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--deep-navy);
  background: rgba(255,255,255,.82);
  box-shadow: 0 2px 6px rgba(5,37,64,.08);
  font-size: clamp(.78rem, .98vw, .93rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: none;
}

.book-home-page .hero-format-hardcover {
  left: 48.7%;
}

.book-home-page .hero-format-paperback {
  left: 71.8%;
}

/* Simpler, icon-like vector treatment. */
.book-home-page .book-fact-icon {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
}

.book-home-page .coming-horizon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.book-home-page .coming-horizon img {
  width: 68px;
  height: 68px;
}

@media (max-width: 1050px) {
  .book-home-page .brand {
    left: 6.5%;
    top: 15px;
    width: 215px;
  }

  .book-home-page .book-hero-copy {
    top: 19.3%;
  }

  .book-home-page .book-hero-actions {
    margin-top: 21px;
  }
}

@media (max-width: 820px) {
  .book-home-page .nav-shell {
    justify-content: space-between;
  }

  .book-home-page .brand {
    position: relative;
    left: auto;
    top: auto;
    width: 190px;
  }

  .book-home-page .book-hero-copy {
    top: auto;
  }

  .book-home-page .hero-format-labels {
    display: none;
  }
}

/* Homepage v21 — nav fix, updated supplied icons, simpler hero */

/* Keep nav fully visible on the right while centering the logo above the hero copy. */
.book-home-page .nav-shell {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.book-home-page .brand {
  position: absolute;
  left: 17.2%;
  top: 14px;
  width: 255px;
  max-width: none;
  margin: 0;
  display: block;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 4px 7px rgba(5,37,64,.10));
}

.book-home-page .brand img {
  display: block;
  width: 100%;
  height: auto;
}

.book-home-page .primary-nav {
  position: relative;
  z-index: 4;
  margin-left: auto;
  margin-right: 18px;
  margin-top: 12px;
}

/* Keep the raised hero copy and preserve room between summary and CTAs. */
.book-home-page .book-hero-copy {
  top: 18.5%;
}

.book-home-page .book-hero-actions {
  width: 238px;
  max-width: 100%;
  margin: 28px auto 0;
  gap: 8px;
}

.book-home-page .book-hero-actions .button {
  width: 100%;
  min-height: 38px;
  padding: 8px 17px;
  border-radius: 999px;
  font-size: .88rem;
  line-height: 1;
  box-shadow: 0 5px 10px rgba(12,53,89,.13);
}

.book-home-page .book-hero-actions .button-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0c2f50;
  background: #ffbf24;
  box-shadow: 0 5px 10px rgba(140,91,0,.13);
}

.book-home-page .book-hero-actions .button-amazon:hover,
.book-home-page .book-hero-actions .button-amazon:focus-visible {
  background: #f2b200;
}

.book-home-page .amazon-mark {
  display: inline-block;
  width: 26px;
  height: auto;
  flex: 0 0 auto;
}

/* Remove the above-book format labels from desktop and mobile. */
.book-home-page .hero-format-labels {
  display: none !important;
}

/* Sharper provided icons. */
.book-home-page .book-fact-icon {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
  image-rendering: -webkit-optimize-contrast;
}

.book-home-page .coming-horizon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: transparent;
}

.book-home-page .coming-horizon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 1050px) {
  .book-home-page .brand {
    left: 18.3%;
    width: 225px;
  }

  .book-home-page .book-hero-copy {
    top: 18.2%;
    width: 350px;
    max-width: 36%;
  }
}

@media (max-width: 820px) {
  .book-home-page .nav-shell {
    justify-content: space-between;
  }

  .book-home-page .brand {
    position: relative;
    left: auto;
    top: auto;
    width: 190px;
    transform: none;
  }

  .book-home-page .primary-nav {
    margin-right: 0;
  }

  .book-home-page .book-hero-copy {
    top: auto;
    width: min(100%, 500px);
    max-width: none;
  }
}

/* Homepage v22 — corrected icon assignments + tighter hero transition */

.book-home-page .home-book-main {
  position: relative;
  z-index: 3;
  margin-top: -165px;
  padding-top: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0,
      rgba(255,255,255,.50) 90px,
      #fffaf0 215px,
      #fffdf8 68%,
      #fff 100%
    );
}

.book-home-page .featured-voyage {
  padding-top: 0;
}

/* Exact supplied icon artwork, paired with the correct labels. */
.book-home-page .book-fact-icon {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
  margin: 0 auto 7px;
  background: transparent;
}

.book-home-page .book-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.book-home-page .coming-horizon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  background: transparent;
}

.book-home-page .coming-horizon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

@media (max-width: 1050px) {
  .book-home-page .home-book-main {
    margin-top: -125px;
  }
}

@media (max-width: 820px) {
  .book-home-page .home-book-main {
    margin-top: 0;
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf8 68%, #fff 100%);
  }
}

/* Homepage v23 — prevent supplied icons from clipping */
.book-home-page .book-fact-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0 !important;
  clip-path: none !important;
  overflow: visible !important;
}

.book-home-page .coming-horizon,
.book-home-page .coming-horizon img {
  border-radius: 0 !important;
  clip-path: none !important;
  overflow: visible !important;
}


/* Activities v24 — real Ocean Adventure gameplay preview */
.featured-game-visual img {
  object-fit: cover;
  object-position: center center;
}

/* v25 — launch navigation + coming soon shop */

/* Homepage Shop Now button: keeps the warm CTA color without Amazon branding. */
.book-home-page .book-hero-actions .button-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c2f50;
  background: #ffbf24;
  box-shadow: 0 5px 10px rgba(140,91,0,.13);
}

.book-home-page .book-hero-actions .button-shop:hover,
.book-home-page .book-hero-actions .button-shop:focus-visible {
  background: #f2b200;
  transform: translateY(-1px);
}

/* Shop Coming Soon */
.shop-main {
  background:
    linear-gradient(180deg, #f3fbfd 0%, #fffaf0 42%, #fff 100%);
}

.shop-coming-soon {
  padding: 76px 0 92px;
}

.shop-coming-card {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 20%, rgba(67,197,210,.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4fbfc 100%);
  box-shadow: 0 16px 36px rgba(6,35,60,.08);
}

.shop-book-art {
  position: relative;
  min-height: 390px;
}

.shop-book-art img {
  position: absolute;
  display: block;
  width: min(76%, 370px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(6,35,60,.18));
}

.shop-hardcover {
  left: 0;
  top: 0;
  z-index: 2;
}

.shop-paperback {
  right: 0;
  top: 26px;
  bottom: auto;
  z-index: 1;
  width: min(62%, 300px) !important;
}

.shop-coming-copy {
  max-width: 650px;
}

.shop-coming-copy h2 {
  margin: 2px 0 18px;
  color: var(--deep-navy);
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.shop-coming-copy > p:not(.eyebrow) {
  margin: 0 0 14px;
  font-size: 1.06rem;
  line-height: 1.65;
}

.shop-coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-weight: 900;
  text-decoration: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #edf8fb;
}

@media (max-width: 820px) {
  .shop-coming-card {
    grid-template-columns: 1fr;
  }

  .shop-book-art {
    min-height: 340px;
    width: min(100%, 480px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .shop-coming-soon {
    padding: 56px 0 66px;
  }

  .shop-coming-card {
    padding: 28px 22px;
  }

  .shop-book-art {
    min-height: 270px;
  }

  .shop-coming-actions {
    flex-direction: column;
  }

  .shop-coming-actions .button,
  .shop-coming-actions .button-outline {
    width: 100%;
  }
}


/* WordPress integration */
.cayson-legal-header {
  border-bottom: 1px solid rgba(12,53,89,.10);
  background: linear-gradient(180deg,#eefbfe,#fff);
}
.cayson-legal-header .nav-shell {
  min-height: 108px;
  align-items: center;
  padding-top: 12px;
}
.cayson-legal-header .brand { width: 220px; }
.cayson-legal-main { min-height: 60vh; padding: 70px 20px 86px; background: #fffaf0; }
.cayson-legal-card {
  max-width: 900px;
  margin: auto;
  padding: clamp(30px,5vw,54px);
  border: 1px solid rgba(12,53,89,.10);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(6,35,60,.08);
}
.cayson-legal-card h1 { color: var(--deep-navy); font-size: clamp(2.6rem,6vw,4.6rem); margin: .15em 0 .3em; }
.cayson-legal-card .launch-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #eef9fd;
  color: var(--deep-navy);
  font-weight: 700;
}
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form-status.is-success { color: #176d43; font-weight: 800; }
.contact-form-status.is-error { color: #9b2c2c; font-weight: 800; }
@media (max-width: 760px) {
  .cayson-legal-header .nav-shell { min-height: 86px; }
  .cayson-legal-header .brand { width: 175px; }
}


/* v1.1 — Cayson Ocean Adventure integration */
.featured-game-visual {
  display:block;
  color:inherit;
  text-decoration:none;
}
.featured-game-visual:hover img,
.featured-game-visual:focus-visible img {
  transform:scale(1.012);
}
.featured-game-visual img {
  transition:transform .22s ease;
}
.featured-game-visual:focus-visible {
  outline:4px solid rgba(67,197,210,.65);
  outline-offset:-4px;
}

.ocean-adventure-page {
  background:linear-gradient(180deg, #eefafd 0%, #fffaf0 52%, #fff 100%);
}
.ocean-adventure-main {
  padding:56px 0 82px;
}
.ocean-adventure-intro {
  max-width:900px;
  margin:0 auto 28px;
  text-align:center;
}
.ocean-adventure-intro h2 {
  margin:2px 0 12px;
  color:var(--deep-navy);
  font-size:clamp(2.35rem, 4.5vw, 4.5rem);
  line-height:1.02;
  letter-spacing:-.04em;
}
.ocean-adventure-intro p:not(.eyebrow) {
  max-width:760px;
  margin:0 auto;
  font-size:1.04rem;
}
.ocean-adventure-frame-shell {
  max-width:1280px;
  margin:0 auto;
  padding:14px;
  border:1px solid rgba(12,53,89,.12);
  border-radius:28px;
  background:white;
  box-shadow:0 18px 44px rgba(6,35,60,.13);
}
.ocean-adventure-frame {
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  border:0;
  border-radius:18px;
  background:#129bc2;
}
.ocean-adventure-meta {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  max-width:1280px;
  margin:20px auto 0;
}
.ocean-adventure-meta p {
  margin:0;
  color:#627888;
  font-size:.9rem;
}
.ocean-adventure-back {
  white-space:nowrap;
}
@media (max-width: 760px) {
  .ocean-adventure-main { padding:38px 0 62px; }
  .ocean-adventure-frame-shell { padding:8px; border-radius:20px; }
  .ocean-adventure-frame { border-radius:13px; }
  .ocean-adventure-meta { align-items:flex-start; flex-direction:column; }
}
