:root {
  --ink: #21313a;
  --text: #3c5058;
  --muted: #667980;
  --paper: #fffdf3;
  --cream: #fff3c9;
  --mint: #e1f4e7;
  --sky: #bfeef7;
  --sky-soft: #e4f8fb;
  --blue: #43bfd6;
  --river: #2f9fcb;
  --red: #ef4f3e;
  --green: #63ad58;
  --yellow: #f4dc47;
  --orange: #f5a23a;
  --pink: #f28aa7;
  --line: #cfe7df;
  --shadow: 0 18px 46px rgba(33, 49, 58, .15);
  --header-h: 72px;
  --font-body: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  --font-heading: "Yu Gothic", "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(67, 191, 214, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(99, 173, 88, .05) 1px, transparent 1px),
    #f4fbf8;
  background-size: 34px 34px;
  line-height: 1.75;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
h1,
h2,
h3,
.section-title h2,
.about-text h2,
.product-box h2,
.purchase-title h2,
.author-box h2,
.voice-box h2,
.faq-grid h2,
.final-cta h2 {
  font-family: var(--font-heading);
  font-feature-settings: "palt";
}
button { font: inherit; }
.wrap {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 14px;
  background: #4f7881;
  color: white;
  font-weight: 800;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 3px 10px rgba(33, 49, 58, .16);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.pill:hover {
  transform: translateY(-2px);
  background: #416a73;
  box-shadow: 0 5px 14px rgba(33, 49, 58, .2);
}
.pill-dark { background: var(--ink); box-shadow: none; }
.pill-ghost {
  background: rgba(255, 253, 243, .88);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(33, 49, 58, .1);
}
.pill-small {
  min-height: 46px;
  padding-inline: 22px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(73, 187, 211, .96);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: top .25s ease, height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  top: 0;
  height: 62px;
  background: rgba(63, 173, 197, .98);
  box-shadow: none;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 160px;
}
.brand-logo {
  width: min(188px, 24vw);
  height: auto;
  max-height: 44px;
  object-fit: contain;
}
.brand-en {
  display: block;
  font-weight: 600;
}
.brand small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.site-menu .pill {
  min-height: 40px;
  padding-inline: 18px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: none;
}
.site-menu .pill:hover {
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}
.site-menu a:not(.pill) {
  position: relative;
  padding: 8px 0;
}
.site-menu a:not(.pill)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.site-menu a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--sky);
}
.hero-bg,
.hero-haze {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}
.hero-haze {
  background: linear-gradient(
    90deg,
    rgba(228, 248, 251, .93) 0%,
    rgba(228, 248, 251, .74) 36%,
    rgba(228, 248, 251, .3) 58%,
    rgba(228, 248, 251, 0) 75%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: 100svh;
  padding-top: var(--header-h);
}
.hero-copy { padding-left: clamp(0px, 6vw, 96px); }
h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: .025em;
}
.copy-mobile { display: none; }
.lead {
  max-width: 470px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}
.hero-actions .pill {
  background: #397f8d;
  border-color: rgba(255, 255, 255, .72);
  box-shadow: 0 3px 10px rgba(33, 49, 58, .14);
}
.hero-actions .pill:hover {
  box-shadow: 0 5px 14px rgba(33, 49, 58, .18);
}
.hero-actions .pill-ghost {
  background: #f2d84a;
  color: #493619;
  border-color: rgba(255, 255, 255, .7);
}
.book-stand {
  position: relative;
  left: -56px;
  align-self: center;
  margin-bottom: 0;
  z-index: 1;
}
.book-stand::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -22px;
  height: 34px;
  border-radius: 50%;
  background: rgba(33, 49, 58, .18);
  filter: blur(10px);
  z-index: -1;
}
.book-stand img {
  width: 100%;
  height: min(54vw, 470px);
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  border: 14px solid white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.spec-badge {
  position: absolute;
  right: -34px;
  bottom: 20px;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2d84a;
  color: #493619;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(73, 54, 25, .2);
}

.section {
  position: relative;
  padding: 86px 0;
}
.section.compact { padding: 68px 0; }
.section.paper {
  background: #fff;
}
.section.cream { background: #f6f4eb; }
.section.mint {
  background: #edf3f1;
}
.section-label {
  margin-bottom: 5px;
  color: var(--river);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-title {
  display: grid;
  place-items: center;
  gap: 12px;
  margin-bottom: 44px;
  color: var(--ink);
  text-align: center;
}
.section-title-left {
  place-items: start;
  gap: 0;
  text-align: left;
  margin-bottom: 26px;
}
.section-title-left p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.65;
}
.section-title-left h2 + p { margin-top: 18px; }
.section-title h2 {
  font-size: clamp(30px, 4vw, 36px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .02em;
}
.sprig {
  width: 64px;
  height: 10px;
  background: radial-gradient(circle at 8px 5px, var(--green) 0 4px, transparent 4px), radial-gradient(circle at 28px 5px, var(--blue) 0 3px, transparent 3px), radial-gradient(circle at 48px 5px, var(--yellow) 0 4px, transparent 4px);
}
.about-row {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  column-gap: clamp(28px, 4vw, 46px);
  row-gap: 32px;
  align-items: stretch;
}
.about-text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2,
.product-box h2,
.purchase-title h2,
.contact-copy h2,
.author-box h2,
.voice-box h2,
.faq-grid h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.4;
  font-weight: 700;
}
.about-text .section-label {
  margin-bottom: 5px;
  line-height: 1.2;
  font-weight: 900;
}
.about-text h2 {
  line-height: 1.32;
}
.about-text p {
  max-width: 460px;
  font-weight: 500;
  line-height: 1.65;
}
.about-text h2 + p {
  margin-top: 18px;
}
.wimmel-note {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: none;
  margin-top: 0;
  padding: 24px 28px;
  border: 2px solid rgba(47, 159, 203, .22);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(228, 248, 251, .72), rgba(255, 253, 243, .92));
  box-shadow: 0 8px 0 rgba(244, 220, 71, .28), 0 16px 30px rgba(33, 49, 58, .07);
}
.wimmel-note h3 {
  color: var(--river);
  font-size: 19px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0;
}
.wimmel-note p {
  max-width: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}
.feature-row {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  border: 3px solid white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 0 rgba(47, 159, 203, .08), 0 18px 38px rgba(33, 49, 58, .08);
}
.feature {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  row-gap: 8px;
  padding: 16px 18px;
  text-align: center;
  border-right: 1px dashed var(--line);
}
.feature:last-child { border-right: 0; }
.feature img {
  width: 100%;
  height: clamp(130px, 12vw, 160px);
  margin: 0 auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(33, 49, 58, .12);
}
.feature:nth-child(1) img {
  object-position: 50% 40%;
}
.feature:nth-child(3) img {
  background: white;
  object-position: 50% 50%;
}
.feature-source {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
}
.feature-source a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.feature b {
  display: grid;
  place-items: center;
  min-height: 52px;
  color: var(--ink);
  font-size: 17px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}
.feature span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.highlight img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border: 7px solid white;
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(244, 220, 71, .18), 0 16px 28px rgba(33, 49, 58, .12);
  transition: transform .45s ease, box-shadow .45s ease;
}
.highlight:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 0 rgba(244, 220, 71, .22), 0 20px 36px rgba(33, 49, 58, .16);
}
.highlight h3 {
  color: var(--ink);
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}
.highlight p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.photo-credit {
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-align: right;
}
.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.location-panel {
  display: grid;
  grid-template-columns: minmax(240px, .76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: center;
  margin-top: 54px;
  padding: 30px;
  border: 3px solid white;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 253, 243, .96), rgba(228, 248, 251, .92)),
    var(--paper);
  box-shadow: 0 10px 0 rgba(99, 173, 88, .14), 0 18px 34px rgba(33, 49, 58, .08);
}
.location-copy h3 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.35;
  font-weight: 700;
}
.location-copy p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.location-grid button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.location-grid button:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 159, 203, .55);
  background: white;
}
.location-grid button:focus-visible {
  outline: 3px solid rgba(47, 159, 203, .28);
  outline-offset: 2px;
}
.location-grid b {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 11px;
}
.location-grid button:nth-child(3n + 2) b { background: var(--green); }
.location-grid button:nth-child(3n) b { background: var(--orange); }

.location-modal {
  width: min(900px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: white;
  color: var(--text);
  box-shadow: 0 28px 80px rgba(20, 38, 46, .28);
  overflow: hidden;
}
.location-modal::backdrop {
  background: rgba(21, 39, 46, .58);
  backdrop-filter: blur(3px);
}
.location-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: 470px;
}
.location-modal-card > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  background: #eef3f1;
}
.location-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px 38px;
}
.location-modal-copy h2 {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.35;
  font-weight: 700;
}
.location-modal-era {
  margin-top: 20px;
  color: var(--river);
  font-size: 13px;
  font-weight: 700;
}
.location-modal-era + p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}
.location-modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(33, 49, 58, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.location-modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 34px;
}
.location-modal-nav button {
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(47, 159, 203, .35);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
body.modal-open { overflow: hidden; }
.sample-band {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.sample-copy h2 {
  color: #0e6f91;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .02em;
}
.sample-copy h2 + p {
  margin: 18px 0 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}
.spread {
  position: relative;
  border: 14px solid white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(33, 49, 58, .12);
  background: white;
  transform: rotate(-.6deg);
}
.spread img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.howto {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: center;
}
.sample-howto {
  margin-top: 64px;
  padding-top: 58px;
  border-top: 1px solid rgba(47, 159, 203, .18);
}
.section-title-left .section-label {
  margin-bottom: 5px;
  color: var(--river);
  font-weight: 900;
  line-height: 1.2;
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.howto-steps article {
  min-height: 210px;
  padding: 26px;
  border: 2px solid white;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf3, #effaf7);
  box-shadow: 0 8px 0 rgba(67, 191, 214, .12), 0 16px 30px rgba(33, 49, 58, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.howto-steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(67, 191, 214, .14), 0 20px 36px rgba(33, 49, 58, .1);
}
.howto-steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 900;
}
.howto-steps b {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 10px;
}
.howto-steps p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.character-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.character-card {
  align-self: start;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 159, 203, .2);
  border-radius: 12px;
  background: #fffdf7;
  box-shadow: 0 7px 0 rgba(47, 159, 203, .08), 0 14px 28px rgba(33, 49, 58, .07);
}
.character-card summary {
  display: block;
  cursor: pointer;
  list-style: none;
}
.character-card summary::-webkit-details-marker { display: none; }
.character-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--sky-soft);
  background-image: url("../images/book-cover-spread.png");
  background-repeat: no-repeat;
  background-size: 230%;
  border-bottom: 1px solid rgba(47, 159, 203, .16);
}
.character-image-01 { background-position: 12% 48%; }
.character-image-02 { background-position: 42% 60%; }
.character-image-03 { background-position: 72% 48%; }
.character-image-04 { background-position: 94% 62%; }
.character-name {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 16px 42px 15px 16px;
}
.character-name::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--river);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}
.character-card[open] .character-name::after { content: "−"; }
.character-name small {
  color: var(--river);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.character-name b {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}
.character-name em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}
.character-profile {
  margin: 0 16px 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.character-profile dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.character-profile dl > div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.character-profile dt {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(73, 187, 211, .13);
  color: var(--river-dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}
.character-profile dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}
.character-profile p {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
.coming-soon-panel {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 34px;
  border: 2px dashed rgba(47, 159, 203, .35);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(228, 248, 251, .76), rgba(255, 253, 243, .94)),
    white;
  box-shadow: 0 8px 0 rgba(244, 220, 71, .16), 0 16px 32px rgba(33, 49, 58, .07);
  text-align: center;
}
.coming-soon-panel-small {
  min-height: 260px;
  margin-top: 18px;
}
.coming-soon-kicker {
  color: var(--river);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.coming-soon-panel h3 {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.4;
}
.coming-soon-panel p:last-child {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.product-rec {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.product-box,
.recommend-box,
.purchase-panel,
.author-box,
.voice-box {
  background: rgba(255, 253, 243, .94);
  border: 2px solid white;
  border-radius: 12px;
  box-shadow: 0 8px 0 rgba(47, 159, 203, .08), 0 16px 32px rgba(33, 49, 58, .08);
}
.product-box {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 14px;
}
th, td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  width: 116px;
  color: var(--ink);
  font-weight: 900;
}
.product-box > img {
  width: 150px;
  height: 205px;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow);
  align-self: start;
}
.recommend-box {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
}
.recommend-box h3 {
  color: var(--ink);
  font-size: 21px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0;
}
.checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.checks div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}
.checks span {
  color: var(--green);
  font-weight: 900;
}
.purchase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
.purchase-title {
  padding: 30px;
  background: #ebe9df;
  border: 1px solid #dedbd0;
  border-radius: 12px;
  box-shadow: none;
}
.purchase-title h2 + p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}
.purchase-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}
.purchase-group {
  display: grid;
  gap: 12px;
}
.purchase-group h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.purchase-panel-stores {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.purchase-panel-online {
  grid-template-columns: 1fr;
}
.purchase-item {
  color: inherit;
  text-decoration: none;
  padding: 32px 24px;
  border-right: 1px dashed var(--line);
  text-align: center;
  display: grid;
  align-content: center;
  min-height: 150px;
}
.purchase-item:last-child { border-right: 0; }
.purchase-item[href] {
  transition: background-color .2s ease, transform .2s ease;
}
.purchase-item[href]:hover,
.purchase-item[href]:focus-visible {
  background: rgba(47, 159, 203, .08);
}
.purchase-item[href]:focus-visible {
  outline: 3px solid rgba(47, 159, 203, .45);
  outline-offset: -3px;
}
.purchase-item b {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
}
.purchase-item p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.purchase-item small {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.purchase-item-logo {
  min-height: 0;
  padding: 24px;
}
.purchase-item-logo img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}
.purchase-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}
.contact-copy {
  max-width: 720px;
  padding: 30px;
  border: 2px solid white;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(228, 248, 251, .82), rgba(255, 253, 243, .96)),
    var(--paper);
  box-shadow: 0 8px 0 rgba(99, 173, 88, .12), 0 16px 32px rgba(33, 49, 58, .07);
}
.contact-copy h2 + p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.contact-mail {
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(47, 159, 203, .22);
  border-radius: 10px;
  background: white;
}
.contact-mail div {
  display: grid;
  gap: 4px;
}
.contact-mail div + div {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(47, 159, 203, .22);
}
.contact-mail dt {
  color: var(--river);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-mail dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.6;
}
.contact-mail dd a {
  color: inherit;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 2px solid white;
  border-radius: 12px;
  background: rgba(255, 253, 243, .94);
  box-shadow: 0 8px 0 rgba(47, 159, 203, .08), 0 16px 32px rgba(33, 49, 58, .08);
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbdedc;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row textarea {
  min-height: 156px;
  resize: vertical;
}
.form-row-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(47, 159, 203, .72);
  box-shadow: 0 0 0 3px rgba(47, 159, 203, .16);
}
.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.form-status.is-success {
  color: #23724d;
}
.form-status.is-error {
  color: #bf3f34;
}
.contact-form .pill {
  width: fit-content;
  min-width: 160px;
  border-color: rgba(255, 255, 255, .88);
  cursor: pointer;
}
.contact-form .pill:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 26px;
  align-items: start;
}
.author-box,
.voice-box { padding: 28px; }
.author-box h2 + p { margin-top: 18px; }
.author-box p + p { margin-top: 10px; }
.author-box p:not(.section-label) {
  font-weight: 500;
  line-height: 1.65;
}
.author-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}
.team-portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  box-shadow: 0 10px 24px rgba(33, 49, 58, .12);
}
.team-story {
  margin-top: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 159, 203, .24);
  border-radius: 10px;
  background: white;
}
.team-story summary {
  position: relative;
  padding: 15px 46px 15px 18px;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
}
.team-story summary::-webkit-details-marker { display: none; }
.team-story summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--river);
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-50%);
}
.team-story[open] summary::after { content: "−"; }
.team-story > div {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}
.team-story > div p {
  color: var(--muted);
  font-size: 13px;
}
.partners {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.partners-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.partners-heading .section-label { margin: 0 0 3px; }
.partners h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.partner-logos span,
.partner-logos a {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  border: 1px solid #dfe6e5;
  border-radius: 8px;
  background: white;
  color: #89989b;
  font-size: 11px;
  font-weight: 700;
}
.partner-logos a {
  transition: border-color .2s ease, transform .2s ease;
}
.partner-logos a:hover {
  border-color: rgba(47, 159, 203, .45);
  transform: translateY(-2px);
}
.partner-logos img {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
}
.partner-logos .partner-logo-coca {
  max-width: 220px;
  max-height: 58px;
}
.story-grid .voice-list { grid-template-columns: 1fr; }
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.voice {
  padding: 18px;
  border-radius: 12px;
  background: white;
  text-align: center;
  border: 2px solid var(--line);
  box-shadow: 0 6px 0 rgba(244, 220, 71, .18);
}
.avatar {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #ffe070);
}
.voice b {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 700;
}
.voice span {
  color: var(--muted);
  font-size: 11px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.faq-intro {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
details {
  padding: 16px 18px;
  background: white;
  border: 2px solid var(--line);
  border-radius: 10px;
}
summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
}
details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
.final-cta {
  position: relative;
  padding: 76px 0 62px;
  overflow: hidden;
  text-align: center;
  background: #397f8d;
}
.final-cta h2 {
  color: white;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: none;
}
.final-cta p {
  margin: 16px 0 28px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}
footer {
  padding: 58px 0 24px;
  background: #49bbd3;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(320px, .7fr);
  gap: clamp(56px, 10vw, 140px);
  padding-bottom: 48px;
}
.footer-company {
  max-width: 460px;
}
.footer-logo {
  display: inline-block;
  color: white;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.2;
}
.footer-company > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 700;
}
.footer-company p {
  max-width: 420px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.9;
}
.footer-trademark {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.7;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}
.footer-nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-nav b {
  margin-bottom: 5px;
  color: white;
  font-size: 12px;
  letter-spacing: .08em;
}
.footer-nav a {
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease;
}
.footer-nav a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}
.footer-bottom small {
  font-size: inherit;
  white-space: nowrap;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.motion-ready {
  opacity: 1;
  transform: translateY(22px);
}
.reveal.motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.motion-rise {
  animation: riseIn 1.2s ease both .15s;
}
.motion-float {
  animation: riseIn 1.25s ease both .35s, floatBook 6s ease-in-out infinite 1.6s;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatBook {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    left: 0;
    right: 0;
  }
  .site-menu {
    gap: 18px;
    font-size: 13px;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  }
  .purchase-panel-stores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .purchase-panel-online {
    grid-template-columns: 1fr;
  }
  .purchase-panel-stores .purchase-item:nth-child(2) {
    border-right: 0;
  }
  .purchase-panel-stores .purchase-item:nth-child(-n + 2) {
    border-bottom: 1px dashed var(--line);
  }
  .book-stand { left: -32px; }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 48px, 680px);
  }
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 12px 0 16px;
  }
  .brand {
    min-width: 0;
  }
  .brand-logo {
    width: min(176px, 52vw);
    max-height: 40px;
  }
  .menu-toggle {
    display: block;
  }
  .site-menu {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 14px;
    background: rgba(63, 173, 197, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-menu a {
    padding: 14px 16px;
  }
  .site-menu .pill {
    margin-top: 8px;
  }
  .hero {
    min-height: auto;
    padding: 92px 0 54px;
  }
  .hero-bg {
    object-position: 57% center;
  }
  .hero-haze {
    background: linear-gradient(
      180deg,
      rgba(228, 248, 251, .2) 0%,
      rgba(228, 248, 251, .58) 44%,
      rgba(228, 248, 251, .9) 66%,
      rgba(228, 248, 251, .96) 100%
    );
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 0;
    gap: 32px;
  }
  .hero-copy {
    padding-left: 0;
  }
  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.3;
  }
  .copy-desktop { display: none; }
  .copy-mobile { display: inline; }
  .book-stand {
    order: -1;
    left: 0;
    width: min(390px, 76vw);
    margin: 0 auto 12px;
  }
  .book-stand img {
    height: auto;
    min-height: 0;
  }
  .spec-badge {
    width: 104px;
    height: 104px;
    right: -10px;
    bottom: -14px;
    font-size: 12px;
  }
  .about-row,
  .howto,
  .location-panel,
  .sample-band,
  .product-rec,
  .purchase,
  .contact-grid,
  .story-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .about-text {
    grid-column: 1;
    grid-row: 1;
  }
  .wimmel-note {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-row {
    grid-column: 1;
    grid-row: 3;
  }
  .feature-row,
  .howto-steps,
  .highlight-grid,
  .location-grid,
  .purchase-panel,
  .voice-list,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature img {
    width: 100%;
    height: 180px;
    margin-bottom: 22px;
  }
  .feature {
    display: grid;
    grid-template-rows: auto auto auto;
  }
  .feature b {
    margin-bottom: 12px;
  }
  .location-modal {
    width: 100%;
    max-height: 90vh;
    margin: auto 0 0;
    border-radius: 18px 18px 0 0;
  }
  .location-modal-card {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .location-modal-card > img {
    height: 220px;
    min-height: 220px;
  }
  .location-modal-copy {
    min-height: 370px;
    padding: 34px 24px 28px;
  }
  .location-modal-close {
    top: 12px;
    right: 12px;
  }
  .feature,
  .purchase-item {
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }
  .purchase-item:nth-child(2) {
    border-bottom: 1px dashed var(--line);
  }
  .feature:last-child,
  .purchase-item:last-child {
    border-bottom: 0;
  }
  .product-box,
  .author-inner {
    grid-template-columns: 1fr;
  }
  .recommend-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-box > img {
    width: 180px;
    height: 238px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .pill {
    width: 100%;
    padding-inline: 18px;
  }
  .hero-actions {
    align-items: stretch;
  }
  .section {
    padding: 64px 0;
  }
  .section.compact {
    padding: 54px 0;
  }
  .character-grid,
  .partner-logos {
    grid-template-columns: 1fr 1fr;
  }
  .feature,
  .purchase-item,
  .product-box,
  .recommend-box,
  .contact-copy,
  .contact-form,
  .author-box,
  .voice-box {
    padding: 22px;
  }
  .contact-form .pill {
    width: 100%;
  }
  th, td {
    display: block;
    width: 100%;
  }
  th {
    padding-bottom: 2px;
    border-bottom: 0;
  }
  td {
    padding-top: 2px;
  }
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .checks {
    grid-template-columns: 1fr;
  }
}
