/* ═══════════════════════════════════════════════
   JOJO'S GESCHICHTEN – Final v3
   Fonts: Fraunces (display) + Bricolage Grotesque
   Aesthetic: Enchanted Editorial Library
   ═══════════════════════════════════════════════ */

:root {
  --forest:   #0a1a0d;
  --forest-2: #112018;
  --cream:    #fdf8ef;
  --cream-2:  #f5ecdb;
  --cream-3:  #eadfc9;
  --gold:     #e8a82a;
  --gold-lt:  #f5d07a;
  --coral:    #d4522e;
  --coral-dk: #b83e1e;
  --sage:     #3d6b4a;
  --muted:    #64776a;
  --line:     rgba(10,26,13,.1);
  --line-lt:  rgba(255,255,255,.13);
  --fd:       'Fraunces', Georgia, serif;
  --fb:       'Bricolage Grotesque', system-ui, sans-serif;
  --max:      1200px;
  --px:       clamp(20px, 5vw, 72px);
  --sh-book:  0 40px 100px rgba(10,26,13,.5), 0 8px 24px rgba(10,26,13,.28);
  --sh-card:  0 20px 60px rgba(10,26,13,.08), 0 3px 12px rgba(10,26,13,.05);
  --sh-lift:  0 32px 80px rgba(10,26,13,.15);
  --ease:     cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.65;
  background: var(--cream);
  color: var(--forest);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 99; background: #fff; padding: 10px 14px; border-radius: 10px; }

/* ── Reveal ── */
.js-reveal { opacity: 0; transform: translateY(44px); transition: opacity .75s var(--ease) var(--d,0s), transform .75s var(--ease) var(--d,0s); }
.js-reveal.in { opacity: 1; transform: none; }

/* ── Type ── */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.eyebrow-clay { color: var(--coral); }
.eyebrow-line { display: inline-block; width: 36px; height: 1px; background: currentColor; flex-shrink: 0; }
.section-pad { padding: 100px var(--px); }
.section-head { max-width: var(--max); margin: 0 auto 60px; }
.section-head.narrow { max-width: 780px; text-align: center; margin-left: auto; margin-right: auto; }
h2 { font-family: var(--fd); font-size: clamp(42px,6vw,86px); font-weight: 600; line-height: .95; letter-spacing: -.055em; margin-bottom: 18px; }
.section-lead { font-size: 19px; color: var(--muted); line-height: 1.65; margin-top: 18px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--fb); font-size: 15px; font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 28px rgba(212,82,46,.32); }
.btn-primary:hover { background: var(--coral-dk); box-shadow: 0 16px 40px rgba(212,82,46,.44); }
.btn-ghost { background: rgba(255,255,255,.11); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--line); }
.btn-outline:hover { background: rgba(10,26,13,.05); }
.btn-gold { background: var(--gold); color: var(--forest); box-shadow: 0 10px 28px rgba(232,168,42,.36); }
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 16px 40px rgba(232,168,42,.5); }
.text-link { font-weight: 700; font-size: 15px; text-decoration: none; color: var(--coral); transition: color .2s; }
.text-link:hover { color: var(--coral-dk); }
.gold-link { color: var(--gold-lt); }
.gold-link:hover { color: #fff; }

/* ── Tags ── */
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 24px; }
.tags span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; font-size: 12px; font-weight: 600; color: var(--sage); background: rgba(255,255,255,.5); }
.dark-tags span { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.09); color: rgba(255,255,255,.75); }

.book-kicker { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; display: block; }
.book-card--dark .book-kicker, .book-card--english .book-kicker { color: var(--gold-lt); }
.book-origin { font-style: italic; color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 14px; border-left: 3px solid var(--gold); padding-left: 14px; }
.book-card--dark .book-origin, .book-card--english .book-origin { color: rgba(255,255,255,.55); }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(10,26,13,.88);
  backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid var(--line-lt);
  transition: background .3s;
}
.site-header.scrolled { background: rgba(10,26,13,.97); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--forest); display: grid; place-items: center; font-family: var(--fd); font-size: 22px; font-weight: 800; font-style: italic; flex-shrink: 0; }
.brand-mark.small { width: 34px; height: 34px; font-size: 17px; }
.brand-text strong { display: block; font-size: 16px; font-weight: 700; line-height: 1.1; }
.brand-text small { display: block; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav a { text-decoration: none; color: rgba(255,255,255,.75); transition: color .2s; }
.nav a:hover { color: var(--gold); }
.nav-cta { padding: 10px 22px; border-radius: 999px; background: var(--coral); color: #fff !important; transition: background .2s; }
.nav-cta:hover { background: var(--coral-dk) !important; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative; min-height: calc(100svh - 68px);
  background: var(--forest); display: flex; align-items: center;
  padding: 60px var(--px) 80px; overflow: hidden;
}
.hero-stars { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 400px at 80% -5%, rgba(232,168,42,.16), transparent),
    radial-gradient(ellipse 500px 600px at 100% 70%, rgba(61,107,74,.22), transparent),
    radial-gradient(ellipse 350px 350px at 5% 85%, rgba(212,82,46,.1), transparent);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-copy { color: #fff; }
.hero-copy .eyebrow { color: var(--gold); }
.hero-copy h1 { font-family: var(--fd); font-size: clamp(52px, 6.8vw, 102px); font-weight: 700; line-height: .88; letter-spacing: -.06em; margin: 0 0 26px; overflow: hidden; }
.h-italic { display: block; font-style: italic; font-weight: 300; color: var(--gold-lt); font-size: .72em; margin-bottom: 4px; letter-spacing: -.04em; }
.h-block { display: block; white-space: nowrap; overflow: hidden; }
.h-block .letter { display: inline-block; opacity: 0; transform: translateY(60px) rotate(3deg); animation: letterIn .65s var(--ease) forwards; }
@keyframes letterIn { to { opacity: 1; transform: none; } }
.hero-sub { font-family: var(--fd); font-style: italic; font-size: clamp(20px,2.8vw,32px); font-weight: 400; color: rgba(255,255,255,.68); line-height: 1.2; margin-bottom: 18px; letter-spacing: -.02em; }
.hero-text { font-size: 17px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-bookstack { display: flex; flex-direction: column; gap: 22px; }
.stack-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.book-stage { display: flex; flex-direction: row; gap: 14px; align-items: flex-end; height: auto; padding-bottom: 8px; }
.book-float { position: relative; flex-shrink: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--sh-book); transition: transform .4s var(--ease); }
.book-float img { width: 128px; height: 172px; object-fit: cover; display: block; }
.book-float:hover { transform: translateY(-8px) scale(1.04) !important; }
.b1 { transform: rotate(-3deg) translateY(10px); animation: none; }
.b2 { transform: rotate(-1deg) translateY(2px); animation: none; }
.b3 { transform: rotate(1.5deg) translateY(6px); animation: none; }
.b4 { transform: rotate(3.5deg) translateY(14px); animation: none; opacity: 1; }
.stack-note { max-width: 460px; padding: 18px 22px; border: 1px solid var(--line-lt); border-radius: 18px; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.55; }
.stack-note strong { font-family: var(--fd); font-style: italic; font-weight: 500; font-size: 20px; display: block; color: #fff; margin-bottom: 6px; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.38); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; animation: bob 2.6s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ════════════════════════════════════
   ORIGIN / ANFANG
════════════════════════════════════ */
.origin { background: var(--cream); }
.origin-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }
.origin-copy h2 { font-size: clamp(30px, 3.6vw, 52px); letter-spacing: -.03em; line-height: 1.1; font-weight: 600; max-width: 680px; }

.origin-story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.story-step { display: flex; flex-direction: column; padding-bottom: 0; padding-top: 24px; border-top: 2px solid var(--line); }
.story-step:not(:last-child)::before { display: none; }
.step-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--sage); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--sage); margin-bottom: 16px; flex-shrink: 0; }
.step-dot--gold { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.step-dot--coral { background: var(--coral); box-shadow: 0 0 0 2px var(--coral); }

.origin-story { display: flex; flex-direction: column; gap: 0; padding-top: 6px; }
.story-step { display: grid; grid-template-columns: 28px 1fr; gap: 24px; padding-bottom: 48px; position: relative; }
.story-step:not(:last-child)::before { content: ''; position: absolute; left: 13px; top: 28px; bottom: 0; width: 1px; background: var(--line); }
.step-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--sage); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--sage); margin-top: 2px; flex-shrink: 0; }
.step-dot--gold { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.step-dot--coral { background: var(--coral); box-shadow: 0 0 0 2px var(--coral); }
.step-label { display: block; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.step-body h3 { font-family: var(--fd); font-size: clamp(22px,2.8vw,36px); font-weight: 600; letter-spacing: -.04em; margin-bottom: 14px; line-height: 1.05; }
.step-body p { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 12px; }
.step-body p:last-child { margin-bottom: 0; }
.step-body em { font-style: italic; color: var(--forest); font-family: var(--fd); font-size: 1.05em; }
.step-body strong { color: var(--forest); font-weight: 700; }

/* ════════════════════════════════════
   ATELIER / WERKSTATT
════════════════════════════════════ */
.atelier { background: var(--forest); color: #fff; }
.atelier-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.atelier-copy h2 { color: #fff; font-size: clamp(36px,5vw,66px); margin-bottom: 18px; }
.atelier-copy > p { color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.7; max-width: 480px; margin-bottom: 32px; }

.role-split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; border: 1px solid var(--line-lt); border-radius: 18px; overflow: hidden; }
.role-block { padding: 24px 22px; }
.role-jojo { background: rgba(232,168,42,.1); border-right: 1px solid var(--line-lt); }
.role-ki { background: rgba(255,255,255,.05); }
.role-label { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.role-block ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.role-block li { font-size: 14px; color: rgba(255,255,255,.72); padding-left: 14px; position: relative; }
.role-block li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.role-divider { display: flex; align-items: center; justify-content: center; padding: 0 8px; font-size: 18px; color: rgba(255,255,255,.3); }

.process-grid { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.process-step { background: rgba(255,255,255,.055); border: 1px solid var(--line-lt); border-radius: 18px; padding: 22px; transition: background .3s, transform .3s; }
.process-step:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.step-num { display: block; font-size: 10px; font-weight: 800; letter-spacing: .22em; color: var(--gold); margin-bottom: 10px; }
.process-step strong { display: block; font-family: var(--fd); font-size: 23px; font-style: italic; font-weight: 500; color: #fff; margin-bottom: 7px; letter-spacing: -.02em; }
.process-step span { color: rgba(255,255,255,.52); font-size: 14px; line-height: 1.5; }

/* ════════════════════════════════════
   BÜCHER – einheitliche Karten
════════════════════════════════════ */
.books { background: var(--cream); }
.books .section-head { margin-bottom: 36px; }
.books .section-head h2 { font-size: clamp(40px,6vw,86px); }

.book-list { display: flex; flex-direction: column; gap: 20px; max-width: var(--max); margin: 0 auto; }

/* Basis-Karte */
.book-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ede0c4 0%, #fdf4e8 100%);
  box-shadow: var(--sh-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.book-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); }

/* Dunkle Varianten */
.book-card--dark {
  background: linear-gradient(135deg, #112018 0%, #0d1a10 100%);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}
.book-card--english {
  background: linear-gradient(135deg, #1a0f22 0%, #100818 100%);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

/* Cover */
.book-card-cover { overflow: hidden; }
.book-card-cover img {
  width: 260px;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.book-card:hover .book-card-cover img { transform: scale(1.04); }

/* Info-Bereich */
.book-card-info {
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
}
.book-card-info h3 {
  font-family: var(--fd);
  font-size: clamp(22px, 2.6vw, 40px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.04em;
  color: var(--forest);
  margin-bottom: 14px;
}
.book-card--dark .book-card-info h3,
.book-card--english .book-card-info h3 { color: #fff; }

.book-card-info > p:not(.book-kicker):not(.book-origin) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}
.book-card--dark .book-card-info > p:not(.book-kicker):not(.book-origin),
.book-card--english .book-card-info > p:not(.book-kicker):not(.book-origin) { color: rgba(255,255,255,.58); }

.book-card-info .tags { margin: 16px 0 22px; }
.book-card-info .btn { align-self: flex-start; }
.book-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* Natur-Variante für Rote Pandas */
.book-card--nature {
  background: linear-gradient(135deg, #d4e8d4 0%, #eaf4e8 100%);
  border-color: rgba(61,107,74,.2);
}
.book-card--nature .book-kicker { color: var(--sage); }
.btn-ghost-lt {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .22s ease, transform .22s ease;
  display: inline-flex; align-items: center;
}
.btn-ghost-lt:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ════════════════════════════════════
   TRANSPARENZ
════════════════════════════════════ */
.transparency { background: var(--forest); color: #fff; }
.trans-inner { max-width: 1000px; margin: 0 auto; }
.trans-quote-wrap { position: relative; margin-bottom: 48px; }
.trans-mark { position: absolute; top: -60px; left: -20px; font-family: var(--fd); font-size: clamp(180px,26vw,360px); line-height: 1; color: rgba(255,255,255,.04); pointer-events: none; user-select: none; font-weight: 900; }
.trans-inner h2 { position: relative; z-index: 1; font-size: clamp(44px,7.5vw,110px); color: #fff; letter-spacing: -.065em; line-height: .93; margin-bottom: 0; }
.trans-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); margin-bottom: 48px; }
.trans-cols p { font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.62); margin-bottom: 18px; }
.trans-cols p:last-child { margin-bottom: 0; }
.trans-cols em { font-style: italic; color: var(--gold-lt); font-family: var(--fd); font-size: 1.05em; }

/* ════════════════════════════════════
   RECHTLICHE SEITEN
════════════════════════════════════ */
.legal-page main {
  padding: 72px var(--px) 88px;
}

.legal-hero,
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 34px;
}

.legal-hero h1 {
  font-family: var(--fd);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal-box {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.48);
  box-shadow: var(--sh-card);
}

.legal-box h2 {
  font-family: var(--fb);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 30px 0 10px;
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-box p,
.legal-address {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-address {
  font-style: normal;
}

.legal-box strong,
.legal-box a {
  color: var(--forest);
}

.legal-box a {
  font-weight: 700;
}

.legal-box .fineprint {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}



/* ════════════════════════════════════
   CTA
════════════════════════════════════ */
.cta { background: var(--forest-2, #112018); position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; color: #fff; }
.cta-stars { position: absolute; inset: 0; pointer-events: none; }
.cta-inner h2 { font-style: italic; font-size: clamp(48px,8vw,108px); color: var(--gold-lt); margin-bottom: 22px; }
.cta-inner p { font-size: 19px; color: rgba(255,255,255,.62); max-width: 600px; margin: 0 auto 36px; line-height: 1.65; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 36px var(--px); background: var(--forest); border-top: 1px solid var(--line-lt); color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; font-size: 15px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); margin: 3px 0 0; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a { text-decoration: none; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }

/* ── Stars ── */
.star { position: absolute; border-radius: 50%; background: #fff; pointer-events: none; animation: tw var(--dur,3s) var(--del,0s) ease-in-out infinite; }
@keyframes tw { 0%,100%{opacity:var(--lo,.05)} 50%{opacity:var(--hi,.7)} }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { min-height: auto; }
  .book-stage { height: 340px; }
  .b4 { display: none; }
  .atelier-inner { grid-template-columns: 1fr; gap: 48px; }
  .origin-inner { grid-template-columns: 1fr; gap: 40px; }
  .book-card { grid-template-columns: 1fr; }
  .book-card-cover img { width: 100%; height: 260px; min-height: unset; }
  .book-card-info { padding: 24px 28px; }
  .book-spread { grid-template-columns: 1fr; }
  .spread-visual img { max-width: 200px; margin: 0 auto; }
  .trans-mark { font-size: 130px; top: -20px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .role-split { grid-template-columns: 1fr; }
  .role-jojo { border-right: none; border-bottom: 1px solid var(--line-lt); }
  .role-divider { display: none; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 0 18px; height: 62px; }
  .brand-text small { display: none; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; top: 62px; left: 12px; right: 12px; display: none; flex-direction: column; align-items: stretch; gap: 4px; background: var(--forest-2,#112018); border: 1px solid var(--line-lt); border-radius: 20px; padding: 12px; box-shadow: 0 32px 80px rgba(0,0,0,.5); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; border-radius: 12px; font-size: 15px; color: rgba(255,255,255,.85); }
  .nav a:hover { background: rgba(255,255,255,.07); }
  .nav-cta { text-align: center; }
  .section-pad { padding: 68px 18px; }
  .hero { padding: 42px 18px 68px; }
  .book-float img { width: 100px; height: 135px; }
  .book-stage { gap: 10px; }
  .book-spread { grid-template-columns: 1fr; }
  .spread-visual img { max-width: 200px; margin: 0 auto; }
  .trans-mark { font-size: 130px; top: -20px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .role-split { grid-template-columns: 1fr; }
  .role-jojo { border-right: none; border-bottom: 1px solid var(--line-lt); }
  .role-divider { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .legal-page main { padding: 48px 18px 64px; }
  .legal-box { padding: 24px 20px; border-radius: 14px; }
  .legal-box h2 { font-size: 18px; }
  .legal-box p,
  .legal-address { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pair-ctas { flex-direction: column; }
  .book-float img { width: 80px; height: 108px; }
}

@media (prefers-reduced-motion: reduce) {
  *, .book-float, .js-reveal { animation: none !important; transition: none !important; }
  .js-reveal { opacity: 1; transform: none; }
}
