/* ============================================================
   NameInTheBook — Design System Styles
   Tokens → Reset → Base → Layout → Components → Sections
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colour: neutrals */
  --ink-900: #101214;
  --ink-700: #2A2F36;
  --ink-500: #5A6270;
  --paper-50: #FAF7F2;
  --paper-100: #F3EEE6;
  --line-200: #E6DED3;

  /* Colour: accents */
  --story-gold: #C9A45B;
  --sea-teal: #1E7A78;
  --sea-teal-dark: #155A58;
  --berry: #B24A6B;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 2rem;     /* 32px */
  --text-4xl: 2.5rem;   /* 40px */
  --text-5xl: 3.5rem;   /* 56px */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --radius: 8px;
  --radius-sm: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(16,18,20,0.08), 0 1px 2px rgba(16,18,20,0.04);
  --shadow-md: 0 4px 12px rgba(16,18,20,0.08), 0 2px 6px rgba(16,18,20,0.04);
  --shadow-lg: 0 8px 32px rgba(16,18,20,0.10), 0 4px 12px rgba(16,18,20,0.06);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  /* Section spacing */
  --section-gap: 5rem;     /* 80px mobile */
}

@media (min-width: 1200px) {
  :root {
    --section-gap: 7.5rem; /* 120px desktop */
  }
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.625;
  color: var(--ink-700);
  background-color: var(--paper-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, var(--text-5xl)); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: var(--text-2xl); font-weight: 600; }
h4 { font-size: var(--text-xl); font-weight: 600; }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

em {
  font-style: italic;
  color: var(--story-gold);
}

/* ── 4. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-10); }
}

.section {
  padding-block: var(--section-gap);
}

.section--alt {
  background-color: var(--paper-100);
}

.section--dark {
  background-color: var(--ink-900);
  color: var(--paper-50);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--paper-50);
}

.grid-2 {
  display: grid;
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.text-center { text-align: center; }
.text-gold { color: var(--story-gold); }
.text-teal { color: var(--sea-teal); }
.text-muted { color: var(--ink-500); }

/* ── 5. BUTTON SYSTEM ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--sea-teal);
  color: var(--paper-50);
  border: 1.5px solid var(--sea-teal);
}

.btn-primary:hover {
  background-color: var(--sea-teal-dark);
  border-color: var(--sea-teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--line-200);
}

.btn-secondary:hover {
  border-color: var(--ink-700);
  transform: translateY(-1px);
}

.btn-secondary--light {
  color: var(--paper-50);
  border-color: rgba(250,247,242,0.35);
}

.btn-secondary--light:hover {
  border-color: var(--paper-50);
  background-color: rgba(250,247,242,0.1);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

/* ── 6. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper-50);
  border-bottom: 1px solid var(--line-200);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-6);
}

.wordmark {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.wordmark span {
  color: var(--story-gold);
}

.site-nav {
  display: none;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    align-items: center;
  }
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  color: var(--sea-teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.header-sign-in {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  transition: color var(--transition);
  display: none;
}

@media (min-width: 768px) {
  .header-sign-in { display: block; }
}

.header-sign-in:hover {
  color: var(--sea-teal);
}

.header-cta {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background-color: var(--ink-900);
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-200);
  background-color: var(--paper-50);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line-200);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--sea-teal); }

/* ── 7. MICROTRUST BAR ─────────────────────────────────────── */
.microtrust-bar {
  background-color: var(--paper-100);
  border-bottom: 1px solid var(--line-200);
  padding: var(--space-2) 0;
}

.microtrust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.microtrust-inner span {
  font-size: var(--text-sm);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.microtrust-inner .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--line-200);
  flex-shrink: 0;
}

/* ── 8. HERO ───────────────────────────────────────────────── */
.hero {
  padding-block: var(--space-20) var(--space-16);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .hero { padding-block: 6rem 5rem; }
}

.hero-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero-content { }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--sea-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--sea-teal);
}

.hero h1 {
  margin-bottom: var(--space-6);
}

.hero-subhead {
  font-size: var(--text-lg);
  color: var(--ink-500);
  margin-bottom: var(--space-8);
  max-width: 42ch;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* Trust cluster */
.trust-cluster {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--story-gold);
  font-size: var(--text-lg);
}

.trust-text {
  font-size: var(--text-sm);
  color: var(--ink-500);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background-color: var(--line-200);
}

/* Page flip preview */
.hero-preview {
  position: relative;
}

.preview-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper-100) 0%, var(--line-200) 50%, var(--paper-100) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow var(--transition);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-200);
}

.preview-container:hover {
  box-shadow: 0 16px 48px rgba(16,18,20,0.12);
}

.preview-pages {
  display: flex;
  gap: 3px;
  width: 85%;
  height: 80%;
}

.preview-page {
  flex: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--paper-50) 0%, var(--paper-100) 100%);
  border: 1px solid var(--line-200);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow);
}

.preview-page.active {
  transform: scale(1.02);
}

.preview-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(201,164,91,0.1) 100%);
}

.preview-spine {
  width: 6px;
  background: linear-gradient(to right, rgba(16,18,20,0.08), rgba(16,18,20,0.02));
  flex-shrink: 0;
  border-radius: 1px;
}

.preview-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: rgba(250,247,242,0.75);
  backdrop-filter: blur(4px);
}

.preview-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--sea-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
}

.preview-play-btn:hover .preview-play-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(30,122,120,0.15);
}

.preview-play-icon svg {
  margin-left: 3px;
}

.preview-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
}

.preview-callouts {
  position: absolute;
  bottom: -var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding: var(--space-3);
  width: 100%;
  justify-content: center;
}

.callout-badge {
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  color: var(--ink-700);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.callout-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--sea-teal);
  flex-shrink: 0;
}

/* ── 9. HOW IT WORKS ───────────────────────────────────────── */
.how-it-works { }

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--sea-teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--ink-500);
  max-width: 52ch;
  margin-inline: auto;
}

.steps-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-8);
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--line-200);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.04em;
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  color: var(--sea-teal);
}

.step-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.step-card p {
  font-size: var(--text-base);
  color: var(--ink-500);
  line-height: 1.65;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--line-200);
  }
}

.privacy-line {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-4) var(--space-6);
  background-color: var(--paper-100);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

/* ── 10. IDENTITY LOCK ─────────────────────────────────────── */
.identity-lock { }

.identity-comparison {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

@media (min-width: 768px) {
  .identity-comparison { grid-template-columns: 1fr 1fr; }
}

.comparison-panel {
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-panel.is-good {
  border-color: var(--sea-teal);
}

.comparison-panel.is-bad {
  border-color: var(--line-200);
  opacity: 0.75;
}

.comparison-header {
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--line-200);
}

.comparison-panel.is-good .comparison-header {
  background-color: rgba(30,122,120,0.06);
  border-bottom-color: rgba(30,122,120,0.2);
}

.comparison-panel.is-bad .comparison-header {
  background-color: var(--paper-100);
}

.comparison-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px var(--space-3);
  border-radius: var(--radius-sm);
}

.comparison-panel.is-good .comparison-badge {
  background-color: var(--sea-teal);
  color: var(--paper-50);
}

.comparison-panel.is-bad .comparison-badge {
  background-color: var(--line-200);
  color: var(--ink-700);
}

.comparison-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink-900);
}

.comparison-body {
  padding: var(--space-8);
  background: linear-gradient(160deg, var(--paper-50) 0%, var(--paper-100) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-faces {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.face-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.face-circle.consistent {
  background: linear-gradient(135deg, var(--paper-100), var(--line-200));
  color: var(--ink-900);
  border: 2px solid var(--sea-teal);
}

.face-circle.drifted {
  border: 2px solid var(--line-200);
  color: var(--ink-500);
}

.face-circle.drifted:nth-child(2) {
  background: linear-gradient(135deg, #eee5d8, #ddd4c5);
}
.face-circle.drifted:nth-child(3) {
  background: linear-gradient(135deg, #d9cfc0, #ccc0ad);
}
.face-circle.drifted:nth-child(4) {
  background: linear-gradient(135deg, #c8bba8, #b9a892);
}

.comparison-caption {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-500);
  border-top: 1px solid var(--line-200);
  text-align: center;
}

.identity-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ── 11. PRODUCT CARDS ─────────────────────────────────────── */
.products { }

.product-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-cover {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-cover-gradient {
  position: absolute;
  inset: 0;
}

.product-cover-gradient--1 {
  background: linear-gradient(160deg, #2A3A4A 0%, #1E7A78 50%, #C9A45B 100%);
}

.product-cover-gradient--2 {
  background: linear-gradient(160deg, #3A2A4A 0%, #B24A6B 50%, #C9A45B 100%);
}

.product-cover-gradient--3 {
  background: linear-gradient(160deg, #2A3A2A 0%, #1E7A78 40%, #3A5A3A 100%);
}

.product-cover-label {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}

.product-cover-label span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-900);
}

.product-info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.product-tagline {
  font-size: var(--text-sm);
  color: var(--ink-500);
  margin-bottom: var(--space-4);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex: 1;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--ink-700);
}

.feature-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(30,122,120,0.12);
  color: var(--sea-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-200);
  margin-top: auto;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: var(--text-xs);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--ink-900);
}

/* ── 12. GIFT MOMENT ───────────────────────────────────────── */
.gift-moment { }

.gift-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .gift-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.video-embed {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--ink-900) 0%, #1A2630 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.video-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(250,247,242,0.15);
  border: 2px solid rgba(250,247,242,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-50);
  transition: all var(--transition);
}

.video-embed:hover .video-play-icon {
  background-color: rgba(250,247,242,0.25);
  transform: scale(1.05);
}

.video-play-icon svg { margin-left: 4px; }

.video-caption {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.6);
}

.quote-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.quote-card {
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-6);
}

.quote-stars {
  display: flex;
  gap: 2px;
  color: var(--story-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.quote-text {
  font-size: var(--text-base);
  color: var(--ink-700);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

.quote-author {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-500);
}

/* ── 13. QUALITY & SUSTAINABILITY ──────────────────────────── */
.quality { }

.quality-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .quality-grid { grid-template-columns: repeat(4, 1fr); }
}

.quality-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
}

.quality-icon {
  width: 44px;
  height: 44px;
  color: var(--sea-teal);
}

.quality-item h3 {
  font-size: var(--text-lg);
}

.quality-item p {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.65;
}

/* ── 14. REVIEWS ───────────────────────────────────────────── */
.reviews { }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}

.reviews-summary-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.reviews-stars-row {
  display: flex;
  gap: 3px;
  color: var(--story-gold);
  font-size: var(--text-xl);
}

.reviews-count {
  font-size: var(--text-sm);
  color: var(--ink-500);
}

.reviews-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink-900);
}

.review-date {
  font-size: var(--text-xs);
  color: var(--ink-500);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--story-gold);
  font-size: var(--text-sm);
}

.review-title {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--ink-900);
}

.review-text {
  font-size: var(--text-sm);
  color: var(--ink-700);
  line-height: 1.65;
}

.reviews-footer {
  text-align: center;
  margin-top: var(--space-10);
}

.see-all-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--sea-teal);
  border-bottom: 1px solid rgba(30,122,120,0.3);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.see-all-link:hover {
  border-color: var(--sea-teal);
}

/* ── 15. FAQ ───────────────────────────────────────────────── */
.faq { }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  margin-top: var(--space-10);
}

.faq-item {
  border-top: 1px solid var(--line-200);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink-900);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--sea-teal); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ink-500);
  transition: transform var(--transition);
  border: 1.5px solid var(--line-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: var(--sea-teal);
  border-color: var(--sea-teal);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 65ch;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ── 16. FINAL CTA BAND ────────────────────────────────────── */
.cta-band {
  background-color: var(--ink-900);
  padding-block: var(--space-20);
}

.cta-band-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-band h2 {
  color: var(--paper-50);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: rgba(250,247,242,0.65);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.cta-band-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 17. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background-color: var(--ink-900);
  border-top: 1px solid rgba(250,247,242,0.08);
  padding-block: var(--space-12) var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .wordmark {
  color: var(--paper-50);
  display: block;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.5);
  line-height: 1.7;
  max-width: 32ch;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--paper-50);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.5);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--paper-50);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(250,247,242,0.08);
}

.footer-legal {
  font-size: var(--text-xs);
  color: rgba(250,247,242,0.35);
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-trust-item {
  font-size: var(--text-xs);
  color: rgba(250,247,242,0.4);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ── 18. PAGE FLIP MODAL ───────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(16,18,20,0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background-color: var(--paper-50);
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--paper-100);
  border: 1px solid var(--line-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  z-index: 1;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.25rem;
  line-height: 1;
}

.modal-close:hover {
  background-color: var(--line-200);
}

.modal-spreads {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.modal-spreads::-webkit-scrollbar { display: none; }

.spread {
  min-width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 2/1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.spread-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink-700);
}

.spread-page--left { background: var(--paper-100); border-right: 2px solid var(--line-200); }
.spread-page--right { background: var(--paper-50); }

.spread--1 .spread-page--left { background: linear-gradient(160deg, #E8E0D5 0%, #D5CBB8 100%); }
.spread--2 .spread-page--left { background: linear-gradient(160deg, #D5E0E8 0%, #B8D0D5 100%); }
.spread--3 .spread-page--left { background: linear-gradient(160deg, #E8D5D5 0%, #D5B8B8 100%); }

.modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--line-200);
}

.modal-nav-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: color var(--transition);
}

.modal-nav-btn:hover { color: var(--sea-teal); }
.modal-nav-btn:disabled { opacity: 0.3; cursor: default; }
.modal-nav-btn:disabled:hover { color: var(--ink-700); }

.modal-dots {
  display: flex;
  gap: var(--space-2);
}

.modal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--line-200);
  transition: background-color var(--transition);
  cursor: pointer;
}

.modal-dot.is-active {
  background-color: var(--sea-teal);
}

/* ── 19. UTILITIES ─────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

/* ── 20. SUPPLEMENTAL — classes added for index.html ──────── */

/* Header inner / nav */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) 0;
}
.site-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-6);
}
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--sea-teal); }
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.btn-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  transition: color var(--transition);
}
.btn-link:hover { color: var(--sea-teal); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .site-nav, .header-actions { display: none; }
  .site-nav.is-open, .header-actions.is-open { display: flex; }
  .site-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-50);
    border-bottom: 1px solid var(--line-200);
    padding: var(--space-4) var(--space-6);
    z-index: 100;
    flex-direction: column;
    gap: var(--space-1);
  }
  .site-nav.is-open ul { flex-direction: column; gap: var(--space-1); }
  .header-actions.is-open {
    position: absolute;
    top: calc(100% + 4rem);
    left: 0;
    right: 0;
    background: var(--paper-50);
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--line-200);
    flex-direction: column;
    z-index: 99;
  }
}

/* Microtrust bar */
.microtrust-bar {
  background-color: var(--paper-100);
  border-bottom: 1px solid var(--line-200);
  text-align: center;
  padding: var(--space-2) 0;
  font-size: var(--text-xs);
  color: var(--ink-700);
  letter-spacing: 0.03em;
}
.microtrust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.microtrust-bar .separator { color: var(--line-200); }

/* Hero */
.hero {
  padding: var(--section-gap) 0;
  background: var(--paper-50);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: var(--space-4);
}
.hero-copy h1 em { font-style: italic; color: var(--sea-teal); }
.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-700);
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.trust-cluster {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.stars { color: var(--story-gold); font-size: var(--text-lg); }
.trust-text { font-size: var(--text-sm); color: var(--ink-700); }
.trust-sep { color: var(--line-200); }

/* Hero preview / book flipper */
.hero-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.book-flipper {
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 2/1;
  background: var(--paper-100);
}
.book-spread {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
}
.book-spread.active { display: grid; }
.spread-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.spread-left {
  background: linear-gradient(160deg, var(--paper-100) 0%, var(--line-200) 100%);
  border-right: 2px solid var(--line-200);
}
.spread-right { background: var(--paper-50); }
.page-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(201,164,91,0.12);
  border: 1px dashed var(--story-gold);
}
.page-left-1, .page-right-1 { background: linear-gradient(135deg, rgba(201,164,91,0.18) 0%, rgba(30,122,120,0.10) 100%); }
.page-left-2, .page-right-2 { background: linear-gradient(135deg, rgba(30,122,120,0.12) 0%, rgba(201,164,91,0.10) 100%); }
.page-left-3, .page-right-3 { background: linear-gradient(135deg, rgba(178,74,107,0.10) 0%, rgba(201,164,91,0.12) 100%); }
.page-label {
  font-size: var(--text-xs);
  color: var(--ink-700);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flipper-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.flip-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-200);
  background: var(--paper-50);
  color: var(--ink-700);
  font-size: var(--text-lg);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-btn:hover:not(:disabled) {
  background: var(--sea-teal);
  border-color: var(--sea-teal);
  color: white;
}
.flip-btn:disabled { opacity: 0.3; cursor: default; }
.flip-dots {
  display: flex;
  gap: var(--space-2);
}
.flip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-200);
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.flip-dot.active { background: var(--sea-teal); }
.preview-badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}
.preview-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--sea-teal);
  background: rgba(30,122,120,0.08);
  border: 1px solid rgba(30,122,120,0.2);
  border-radius: 99px;
  padding: var(--space-1) var(--space-3);
  letter-spacing: 0.03em;
}

/* How it works */
.how-it-works {
  padding: var(--section-gap) 0;
  background: var(--paper-100);
}
.how-it-works h2, .section-sub {
  text-align: center;
}
.section-sub {
  color: var(--ink-700);
  margin-top: var(--space-2);
  margin-bottom: var(--space-10);
  font-size: var(--text-lg);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  list-style: none;
  counter-reset: steps;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-8);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--line-200);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.step-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--space-3);
}
.step-card p { font-size: var(--text-base); color: var(--ink-700); }
.step-privacy {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--ink-700);
  background: rgba(30,122,120,0.06);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}
.step-privacy a { color: var(--sea-teal); }
.step-icon { display: none; } /* placeholder for icons */

/* Identity Lock */
.identity-lock {
  padding: var(--section-gap) 0;
  background: var(--paper-50);
}
.il-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 768px) { .il-grid { grid-template-columns: 1fr 1fr; } }
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sea-teal);
  margin-bottom: var(--space-3);
}
.il-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: var(--space-4);
}
.il-copy p { color: var(--ink-700); margin-bottom: var(--space-4); }
.il-detail { font-size: var(--text-sm); }
.il-comparison {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.compare-card {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-200);
  background: var(--paper-50);
}
.compare-card.compare-ours { border-color: var(--sea-teal); }
.compare-visual {
  height: 140px;
  width: 100%;
}
.compare-visual-drift {
  background: url('/images/compare_generic.jpg') center/cover no-repeat;
  position: relative;
}
.compare-visual-true {
  background: url('/images/compare_true.jpg') center/cover no-repeat;
}
.compare-label, .compare-desc {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}
.compare-label { font-weight: 600; color: var(--ink-900); }
.compare-label-bad { color: var(--ink-700); }
.compare-label-good { color: var(--sea-teal); }
.compare-desc { color: var(--ink-700); padding-top: 0; padding-bottom: var(--space-3); }
.compare-divider {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

/* Products */
.books {
  padding: var(--section-gap) 0;
  background: var(--paper-100);
}
.books h2 { text-align: center; font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink-900); margin-bottom: var(--space-2); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  list-style: none;
  margin-top: var(--space-10);
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card-featured { border-color: var(--story-gold); }
.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--story-gold);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.product-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.product-cover-1 { background: url('/images/cover_book01.jpg') center/cover no-repeat; }
.product-cover-2 { background: url('/images/cover_book02.jpg') center/cover no-repeat; }
.product-cover-3 { background: url('/images/cover_book03.jpg') center/cover no-repeat; }
.product-info { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; gap: var(--space-4); }
.product-info h3 { font-size: var(--text-xl); font-weight: 600; color: var(--ink-900); }
.product-bullets { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.product-bullets li { font-size: var(--text-sm); color: var(--ink-700); padding-left: var(--space-4); position: relative; }
.product-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--story-gold); }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-size: var(--text-lg); font-weight: 600; color: var(--ink-900); }

/* Gift moment */
.gift-moment {
  padding: var(--section-gap) 0;
  background: var(--paper-50);
}
.gift-moment h2 { text-align: center; font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink-900); margin-bottom: var(--space-2); }
.gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}
@media (min-width: 768px) { .gift-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.gift-video-wrap { border-radius: var(--radius); overflow: hidden; }
.gift-video-placeholder {
  aspect-ratio: 9/16;
  max-height: 480px;
  background: linear-gradient(160deg, var(--ink-900) 0%, var(--ink-700) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}
.video-play-btn { opacity: 0.9; transition: opacity var(--transition); }
.gift-video-placeholder:hover .video-play-btn { opacity: 1; transform: scale(1.05); }
.video-caption { color: rgba(250,247,242,0.6); font-size: var(--text-sm); }
.gift-quotes {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.quote-card {
  background: var(--paper-100);
  border-left: 3px solid var(--story-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-5) var(--space-6);
}
.quote-card p { font-family: var(--font-display); font-style: italic; font-size: var(--text-lg); color: var(--ink-900); line-height: 1.5; margin-bottom: var(--space-3); }
.quote-card cite { font-size: var(--text-sm); color: var(--ink-700); font-style: normal; }

/* Quality */
.quality {
  padding: var(--section-gap) 0;
  background: var(--paper-100);
}
.quality h2 { text-align: center; font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink-900); margin-bottom: var(--space-10); }
.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  list-style: none;
}
@media (min-width: 768px) { .quality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .quality-grid { grid-template-columns: repeat(4, 1fr); } }
.quality-item h3 { font-size: var(--text-lg); font-weight: 600; color: var(--ink-900); margin-bottom: var(--space-2); }
.quality-item p { font-size: var(--text-sm); color: var(--ink-700); }
.quality-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}
.quality-icon-print { background: linear-gradient(135deg, var(--sea-teal) 0%, rgba(30,122,120,0.6) 100%); }
.quality-icon-bind { background: linear-gradient(135deg, var(--story-gold) 0%, rgba(201,164,91,0.6) 100%); }
.quality-icon-order { background: linear-gradient(135deg, var(--berry) 0%, rgba(178,74,107,0.6) 100%); }
.quality-icon-ship { background: linear-gradient(135deg, var(--ink-700) 0%, var(--ink-900) 100%); }

/* Reviews */
.reviews {
  padding: var(--section-gap) 0;
  background: var(--paper-50);
}
.reviews-header { text-align: center; margin-bottom: var(--space-10); }
.reviews-header h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink-900); margin-bottom: var(--space-4); }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: var(--space-3); }
.stars-lg { font-size: var(--text-2xl); color: var(--story-gold); }
.reviews-score { font-size: var(--text-2xl); font-weight: 700; color: var(--ink-900); }
.reviews-count { font-size: var(--text-sm); color: var(--ink-700); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  list-style: none;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--paper-100);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review-stars { color: var(--story-gold); font-size: var(--text-base); }
.review-text { font-size: var(--text-base); color: var(--ink-700); flex: 1; line-height: 1.6; }
.review-author { font-size: var(--text-xs); color: var(--ink-700); font-weight: 500; }
.reviews-footer { text-align: center; margin-top: var(--space-10); }

/* FAQ */
.faq {
  padding: var(--section-gap) 0;
  background: var(--paper-100);
}
.faq h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink-900); margin-bottom: var(--space-10); text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line-200); }
.faq-item:first-child { border-top: 1px solid var(--line-200); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sea-teal); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--ink-700);
  border-radius: 50%;
  position: relative;
  transition: all var(--transition);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink-700);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: all var(--transition);
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 8px; }
.faq-item.is-open .faq-icon { border-color: var(--sea-teal); }
.faq-item.is-open .faq-icon::before { background: var(--sea-teal); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 0 var(--space-5); }
.faq-answer p { font-size: var(--text-base); color: var(--ink-700); line-height: 1.7; }
.faq-answer a { color: var(--sea-teal); }

/* CTA band */
.cta-band {
  padding: var(--section-gap) 0;
  background: var(--ink-900);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--paper-50);
  margin-bottom: var(--space-3);
}
.cta-band p { color: rgba(250,247,242,0.7); margin-bottom: var(--space-8); font-size: var(--text-lg); }
.cta-band-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid rgba(250,247,242,0.3);
  color: var(--paper-50);
  background: transparent;
  cursor: pointer;
}
.btn-secondary-light:hover {
  border-color: var(--paper-50);
  background: rgba(250,247,242,0.08);
}

/* Footer */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(250,247,242,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding: var(--space-16) 0 var(--space-10);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 2fr; align-items: start; } }
.footer-brand .wordmark { color: var(--paper-50); margin-bottom: var(--space-3); }
.footer-tagline { font-size: var(--text-sm); color: rgba(250,247,242,0.5); line-height: 1.6; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.footer-nav-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper-50);
  margin-bottom: var(--space-4);
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-nav-col a { font-size: var(--text-sm); color: rgba(250,247,242,0.5); text-decoration: none; transition: color var(--transition); }
.footer-nav-col a:hover { color: var(--paper-50); }
.footer-bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(250,247,242,0.08);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(250,247,242,0.35); }

/* Buttons (ensure full set) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sea-teal);
  color: white;
  border-color: var(--sea-teal);
}
.btn-primary:hover { background: var(--sea-teal-dark); border-color: var(--sea-teal-dark); }
.btn-secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--line-200);
}
.btn-secondary:hover { border-color: var(--ink-700); }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: var(--text-base); }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Section headings (shared) */
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}

/* ── 21. FINAL MISSING CLASSES ───────────────────────────── */
.compare-theirs { opacity: 0.8; }
.flip-next, .flip-prev { } /* styled via .flip-btn */
.privacy-icon { margin-right: var(--space-1); }
.step-icon-upload, .step-icon-lock, .step-icon-preview { display: none; } /* placeholders */
.wordmark-footer {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--paper-50);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-3);
}

/* ── FEEDBACK V1 UPDATES (2026-04-28) ─────────────────────── */

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--paper-50);
  border-top: 1px solid var(--line-200);
  padding: var(--space-6);
  gap: var(--space-4);
}
.mobile-nav-drawer[hidden] { display: none !important; }
.mobile-nav-drawer.is-open { display: flex; }
.mobile-nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav-drawer ul li a {
  display: block;
  padding: var(--space-4) var(--space-2);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line-200);
  min-height: 44px;
  line-height: 1.4;
}
.mobile-nav-drawer ul li a:hover { color: var(--sea-teal); }
.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
}
@media (min-width: 768px) { .mobile-nav-drawer { display: none !important; } }

/* Hero CTA — mobile full-width stacked */
.hero-ctas--mobile-stack { flex-direction: column; }
@media (min-width: 480px) { .hero-ctas--mobile-stack { flex-direction: row; } }

/* Stronger primary CTA in hero */
.btn-hero-primary {
  background-color: var(--sea-teal-dark);
  border-color: var(--sea-teal-dark);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30,122,120,0.25);
}
.btn-hero-primary:hover {
  background-color: #0f4442;
  border-color: #0f4442;
  box-shadow: 0 4px 16px rgba(30,122,120,0.35);
}

/* Trust cluster improvements */
.trust-cluster { flex-wrap: wrap; gap: var(--space-2) var(--space-3); }
.trust-sep { color: var(--line-200); }

/* ── PROOF PREVIEW MODULE ──────────────────────────────────── */
.proof-preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.proof-preview-frame {
  background: linear-gradient(145deg, var(--paper-100) 0%, #ede8e0 100%);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.proof-book-spread {
  display: flex;
  gap: 0;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .proof-book-spread { height: 280px; }
}

.proof-page {
  flex: 1;
  background: var(--paper-50);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.proof-page-left {
  border-right: 1px solid var(--line-200);
}

.proof-page-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-3);
  gap: var(--space-3);
}

.proof-illustration-area {
  flex: 1;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.proof-illus-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hero_left.jpg') center/cover no-repeat;
  opacity: 1;
}
.proof-illus-bg--alt {
  background: url('/images/hero_right.jpg') center/cover no-repeat;
}

/* Simple character silhouette */
.proof-illus-character {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.char-head {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--story-gold);
  opacity: 0.9;
}
.char-body {
  width: 18px;
  height: 32px;
  border-radius: 4px 4px 0 0;
  background: var(--sea-teal);
  opacity: 0.85;
}
.proof-illus-character--action { bottom: 6px; }
.char-body--action {
  transform: rotate(-8deg);
  transform-origin: bottom center;
}

.proof-illus-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(to top, rgba(201,164,91,0.3), transparent);
}

.proof-text-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  padding-bottom: var(--space-1);
}

.proof-text-line {
  height: 7px;
  background: var(--line-200);
  border-radius: 4px;
}
.proof-text-line--wide { width: 90%; }
.proof-text-line--med { width: 70%; }
.proof-text-line--short { width: 50%; }

.proof-spine {
  width: 8px;
  background: linear-gradient(to right, rgba(16,18,20,0.12), rgba(16,18,20,0.04), rgba(16,18,20,0.12));
  flex-shrink: 0;
}

/* Flip affordance */
.proof-flip-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.proof-flip-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line-200);
  background: var(--paper-50);
  color: var(--ink-700);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.proof-flip-btn:hover:not(:disabled) {
  border-color: var(--sea-teal);
  color: var(--sea-teal);
}
.proof-flip-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.proof-flip-label {
  font-size: var(--text-xs);
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Proof chips */
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--paper-50);
  border: 1px solid var(--line-200);
  color: var(--ink-700);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.proof-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sea-teal);
  flex-shrink: 0;
}

.proof-scroll-hint {
  display: block;
  font-size: var(--text-xs);
  color: var(--ink-500);
  text-align: center;
  margin-top: var(--space-2);
}
@media (min-width: 768px) { .proof-scroll-hint { display: none; } }

/* ── IDENTITY LOCK ADDITIONS ───────────────────────────────── */
.il-nodrift {
  background: rgba(30,122,120,0.07);
  border-left: 3px solid var(--sea-teal);
  padding: var(--space-3) var(--space-4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  color: var(--ink-900);
  margin-bottom: var(--space-5);
}

/* ── PRODUCT CARD ADDITIONS ────────────────────────────────── */
.product-best-for {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--sea-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}
.product-badge-recommended {
  background: var(--sea-teal) !important;
  color: var(--paper-50) !important;
  font-size: var(--text-xs);
  font-weight: 600;
}

/* ── UGC / GIFT VIDEO CARD ─────────────────────────────────── */
.ugc-authenticity {
  font-size: var(--text-sm);
  color: var(--ink-500);
  font-style: italic;
  margin-bottom: var(--space-6);
}
.gift-video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background: var(--ink-700);
}
.gift-video-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: url('/images/video_thumb.jpg') center/cover no-repeat;
  position: relative;
}
.gift-video-thumb-inner {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.gift-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: rgba(16,18,20,0.3);
  transition: background var(--transition);
}
.gift-video-card:hover .gift-video-overlay { background: rgba(16,18,20,0.15); }
.gift-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(250,247,242,0.15);
  border: 2px solid rgba(250,247,242,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition);
}
.gift-video-card:hover .gift-play-icon {
  transform: scale(1.08);
  border-color: var(--paper-50);
}
.gift-duration {
  font-size: var(--text-xs);
  color: rgba(250,247,242,0.8);
  font-weight: 600;
  background: rgba(16,18,20,0.5);
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
}
.gift-video-caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.8);
  background: rgba(16,18,20,0.6);
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* ── FAQ TAP TARGET FIX ─────────────────────────────────────── */
.faq-question {
  min-height: 44px !important;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

/* ── REVIEWS MOBILE SPACING ─────────────────────────────────── */
@media (max-width: 767px) {
  .reviews-grid { gap: var(--space-4); }
  .review-card { padding: var(--space-5); }
}

/* ── CTA BAND GIFT LINE ──────────────────────────────────────── */
.cta-band-gift-line {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.65);
  text-align: center;
}
.arrives-by-date {
  color: var(--story-gold);
  font-weight: 600;
}

/* ── FOOTER PRIVACY PROMISE ─────────────────────────────────── */
.footer-privacy-promise {
  font-size: var(--text-xs);
  color: rgba(250,247,242,0.45);
  margin-top: var(--space-2);
}
.footer-privacy-promise a { color: rgba(250,247,242,0.55); text-decoration: underline; }
.footer-privacy-promise a:hover { color: var(--paper-50); }

/* ── MOBILE BODY TEXT ENFORCEMENT ───────────────────────────── */
@media (max-width: 767px) {
  body { font-size: 16px; }
  p, li, .step-card p, .review-text, .quote-card p { font-size: 1rem; line-height: 1.65; }
  .section-sub { font-size: 1rem; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ── NO HORIZONTAL SCROLL ───────────────────────────────────── */
body { overflow-x: hidden; }

/* ── FEEDBACK V2 POLISH (2026-04-28) ──────────────────────── */

/* 1) Hero proof chips — editorial/paper style, not SaaS tags */
.proof-chip {
  background: var(--paper-100) !important;
  border: 1px solid var(--line-200) !important;
  color: var(--ink-700) !important;
  font-size: 0.75rem !important;    /* 12px */
  font-weight: 500 !important;
  padding: 0.3rem 0.625rem !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  letter-spacing: 0.01em;
  gap: 0.35rem !important;
}
.proof-chip-dot {
  width: 5px !important;
  height: 5px !important;
  background: var(--story-gold) !important;  /* gold, not teal */
  opacity: 0.75;
}
.proof-chips {
  gap: var(--space-2) !important;
  justify-content: flex-start;
}

/* 2) H1 mobile — tighter line-height, no orphans */
@media (max-width: 479px) {
  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.2;
    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* 3) Trust cluster — better wrapping + spacing on small screens */
.trust-cluster {
  row-gap: var(--space-2) !important;
  column-gap: var(--space-3) !important;
  margin-top: var(--space-2);
}
@media (max-width: 400px) {
  .trust-cluster {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1) !important;
  }
  .trust-sep { display: none; }
  .trust-cluster .stars { margin-bottom: var(--space-1); }
}
/* Breathing room between trust line and CTAs on small screens */
@media (max-width: 479px) {
  .hero-ctas--mobile-stack {
    margin-bottom: var(--space-5) !important;
  }
}

/* 4) "Choose your book" — more vertical rhythm */
.books {
  padding-block: var(--section-gap);
}
.books h2 {
  margin-bottom: var(--space-4);
}
.books .section-sub {
  margin-bottom: var(--space-10) !important;
}
.product-grid {
  gap: var(--space-8) !important;
}
@media (max-width: 767px) {
  .product-grid { gap: var(--space-6) !important; }
}

/* Consistent card heights on desktop */
@media (min-width: 768px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .product-card {
    display: flex;
    flex-direction: column;
  }
  .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-footer {
    margin-top: auto;
  }
}
