:root {
  --bg: oklch(97.5% 0.008 75);
  --surface: oklch(99.5% 0.004 75);
  --fg: oklch(22% 0.028 45);
  --muted: oklch(46% 0.02 50);
  --border: oklch(88% 0.012 75);
  --accent: oklch(42% 0.09 35);
  --accent-soft: oklch(94% 0.02 55);
  --deep: oklch(28% 0.04 40);
  --success: oklch(48% 0.1 145);
  --shadow: 0 18px 48px oklch(22% 0.03 45 / 0.1);
  --shadow-sm: 0 4px 16px oklch(22% 0.03 45 / 0.08);
  --radius: 14px;
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
p { margin: 0; color: var(--muted); max-width: 62ch; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: oklch(98% 0.01 75);
  box-shadow: 0 10px 28px oklch(42% 0.09 35 / 0.28);
}
.btn-primary:hover { background: var(--deep); box-shadow: 0 12px 32px oklch(28% 0.04 40 / 0.25); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}
.btn-ghost:hover { border-color: var(--fg); background: var(--surface); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.cart-btn {
  position: relative;
  min-width: 48px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(98% 0.01 75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  line-height: 1;
}
.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { display: grid; gap: 1.25rem; }
.hero-copy p { font-size: 1.08rem; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.35rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-meta span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.stage-wrap {
  perspective: 1400px;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.stage {
  position: relative;
  width: min(100%, 420px);
  height: 420px;
  transform-style: preserve-3d;
  animation: stage-float 7s ease-in-out infinite;
}
@keyframes stage-float {
  0%, 100% { transform: rotateX(8deg) rotateY(-18deg) translateY(0); }
  50% { transform: rotateX(10deg) rotateY(-12deg) translateY(-10px); }
}
.stage-base {
  position: absolute;
  inset: auto 8% 12% 8%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, oklch(40% 0.04 40 / 0.18), transparent 70%);
  filter: blur(2px);
  transform: translateZ(-40px);
}
.book {
  position: absolute;
  left: 18%;
  top: 16%;
  width: 210px;
  height: 280px;
  transform-style: preserve-3d;
  transform: translateZ(40px) rotateY(-8deg);
}
.book-cover, .book-back, .book-pages, .book-spine {
  position: absolute;
  inset: 0;
  border-radius: 3px 10px 10px 3px;
  backface-visibility: hidden;
}
.book-cover {
  background:
    linear-gradient(145deg, oklch(38% 0.07 35), oklch(28% 0.05 40) 55%, oklch(24% 0.04 35));
  box-shadow: var(--shadow);
  display: grid;
  place-content: center;
  gap: 0.4rem;
  padding: 1.5rem;
  text-align: center;
  color: oklch(96% 0.02 75);
  transform: translateZ(14px);
}
.book-cover .title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.book-cover .sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.book-pages {
  background: repeating-linear-gradient(
    90deg,
    oklch(97% 0.01 80),
    oklch(97% 0.01 80) 2px,
    oklch(92% 0.01 80) 2px,
    oklch(92% 0.01 80) 3px
  );
  transform: translateZ(0);
  border-radius: 2px 8px 8px 2px;
}
.book-spine {
  width: 28px;
  left: -14px;
  background: linear-gradient(180deg, oklch(32% 0.06 35), oklch(22% 0.04 40));
  transform: rotateY(-90deg) translateZ(0);
  transform-origin: right center;
  border-radius: 3px;
}
.box {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 170px;
  height: 130px;
  transform-style: preserve-3d;
  transform: translateZ(80px) rotateY(24deg) rotateX(8deg);
}
.box-face {
  position: absolute;
  background: oklch(72% 0.06 70);
  border: 1px solid oklch(58% 0.05 65 / 0.5);
}
.box-front {
  width: 170px; height: 100px;
  transform: translateZ(50px);
  background:
    linear-gradient(180deg, oklch(78% 0.05 70), oklch(68% 0.06 65));
  display: grid;
  place-content: end start;
  padding: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--deep);
  letter-spacing: -0.01em;
}
.box-top {
  width: 170px; height: 100px;
  transform: rotateX(90deg) translateZ(50px);
  background: linear-gradient(135deg, oklch(82% 0.04 75), oklch(74% 0.05 70));
}
.box-side {
  width: 100px; height: 100px;
  right: 0;
  transform: rotateY(90deg) translateZ(70px);
  background: oklch(62% 0.05 60);
}
.box-ribbon {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 18px;
  height: 120px;
  margin-left: -9px;
  background: var(--accent);
  transform: translateZ(52px);
  box-shadow: 0 0 0 1px oklch(35% 0.08 35 / 0.2);
}
.spice {
  position: absolute;
  width: 48px;
  height: 72px;
  border-radius: 6px 6px 4px 4px;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-sm);
}
.spice-1 {
  left: 12%;
  bottom: 28%;
  background: linear-gradient(180deg, oklch(55% 0.12 35), oklch(40% 0.1 30));
  transform: translateZ(120px) rotateZ(-12deg);
}
.spice-2 {
  right: 22%;
  top: 18%;
  background: linear-gradient(180deg, oklch(62% 0.08 85), oklch(48% 0.07 80));
  transform: translateZ(100px) rotateZ(16deg);
}
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 36rem;
}
.section-muted { background: color-mix(in oklch, var(--surface) 70%, var(--bg)); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease;
  transform-style: preserve-3d;
}
.product-card:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow: var(--shadow);
}
.product-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--accent-soft);
  perspective: 800px;
}
.pv-inner {
  position: absolute;
  inset: 12%;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover .pv-inner { transform: rotateY(-12deg) rotateX(6deg) scale(1.04); }
.pv-plate {
  position: absolute;
  inset: 18% 10% 10%;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 40% 35%, oklch(92% 0.02 75), oklch(82% 0.03 70) 55%, oklch(72% 0.04 60));
  box-shadow: inset 0 -12px 24px oklch(40% 0.04 50 / 0.15);
  transform: translateZ(20px);
}
.pv-kit {
  position: absolute;
  left: 22%;
  right: 22%;
  top: 22%;
  bottom: 28%;
  border-radius: 8px;
  background: linear-gradient(145deg, oklch(48% 0.08 40), oklch(34% 0.06 35));
  box-shadow: 0 16px 28px oklch(30% 0.04 40 / 0.25);
  transform: translateZ(36px) rotateX(8deg);
}
.pv-kit::after {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border: 1px solid oklch(90% 0.02 75 / 0.35);
  border-radius: 4px;
}
.pv-ebook {
  position: absolute;
  left: 28%;
  right: 22%;
  top: 18%;
  bottom: 22%;
  border-radius: 4px 10px 10px 4px;
  background: linear-gradient(160deg, oklch(36% 0.06 35), oklch(24% 0.04 40));
  box-shadow: 0 18px 30px oklch(25% 0.03 40 / 0.28);
  transform: translateZ(40px) rotateY(-18deg);
}
.pv-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.product-body {
  padding: 1.2rem 1.25rem 1.3rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}
.product-body p { font-size: 0.95rem; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.15rem;
}
.add-btn {
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.add-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(98% 0.01 75);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.story-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.story-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
  font-size: 1rem;
}
.story-list strong { color: var(--fg); font-weight: 600; }
.num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--accent-soft);
  color: var(--accent);
  margin-top: 2px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.step {
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  gap: 0.55rem;
}
.step .num { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.quote-block {
  border-left: 2px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--fg);
  max-width: 40ch;
}
.quote-block cite {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
.order-card, .cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.35rem, 3vw, 1.85rem);
}
.form-grid {
  display: grid;
  gap: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
label {
  display: grid;
  gap: 0.35rem;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg);
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: color-mix(in oklch, var(--accent) 55%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent);
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.cart-lines { display: grid; gap: 0.75rem; margin: 1rem 0; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.cart-line .qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.cart-line button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-weight: 600;
}
.cart-empty { color: var(--muted); font-size: 15px; padding: 0.5rem 0 1rem; }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
  padding-top: 0.5rem;
}
.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.5rem;
  background: var(--deep);
  color: oklch(94% 0.015 75);
}
.site-footer a { color: oklch(88% 0.02 75); text-decoration: none; }
.site-footer a:hover { color: oklch(98% 0.01 75); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(78% 0.02 75);
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-col p, .footer-brand + p { color: oklch(80% 0.02 75); font-size: 14.5px; max-width: 32ch; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(40% 0.03 45);
  font-size: 13px;
  color: oklch(72% 0.02 75);
}
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  gap: 0.85rem;
  align-items: start;
}
.cookie-bar.show { display: grid; }
.cookie-bar p { font-size: 14px; max-width: none; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: oklch(20% 0.02 40 / 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 55;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.25rem;
  gap: 1rem;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head h2 { font-size: 1.5rem; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.toast {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  left: 1rem;
  right: auto;
  z-index: 70;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--deep);
  color: oklch(96% 0.01 75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.legal-panel {
  display: none;
  padding: 2rem 0 3rem;
}
.legal-panel.active { display: block; }
.legal-panel article {
  max-width: 68ch;
  display: grid;
  gap: 0.85rem;
}
.legal-panel h2 { margin-bottom: 0.25rem; }
.legal-panel p, .legal-panel li { color: var(--muted); font-size: 15.5px; }
.legal-panel ul { padding-left: 1.2rem; display: grid; gap: 0.4rem; }
.success-banner {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: color-mix(in oklch, var(--success) 12%, var(--surface));
  border: 1px solid color-mix(in oklch, var(--success) 30%, var(--border));
  color: var(--fg);
  font-size: 15px;
  margin-bottom: 0.75rem;
}
.success-banner.show { display: block; }
@media (max-width: 960px) {
  .hero-grid, .story-grid, .order-grid, .footer-grid { grid-template-columns: 1fr; }
  .products-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stage-wrap { min-height: 360px; }
  .stage { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
  }
  .menu-toggle { display: grid; place-items: center; }
  .products-grid, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .wrap { width: min(100% - 1.5rem, var(--max)); }
  .stage { width: min(100%, 320px); height: 320px; }
  .book { width: 160px; height: 220px; left: 14%; top: 14%; }
  .box { width: 130px; height: 110px; }
  .box-front, .box-top { width: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .stage { animation: none; }
  .product-card, .pv-inner, .btn, .drawer { transition: none; }
}

.product-visual img.pv-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo {
  width: min(100%, 480px);
  aspect-ratio: 4/5;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--accent-soft);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-photo {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  background: var(--accent-soft);
}
.story-photo img { width:100%; height:100%; object-fit:cover; }
