/* ============================================================
   Maromi — Our Story
   Editorial long-form layout, sits on top of v7/styles.css
   ============================================================ */

/* Story-specific layout */
.story-wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 800px) { .story-wrap { padding: 0 32px; } }

.story-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.story-eyebrow::before,
.story-eyebrow::after { content: ''; width: 32px; height: 1px; background: rgba(0,0,0,0.25); }

/* Chapter heading block — left rail with big italic numeral, then heading */
.chapter {
  padding: 80px 0;
  position: relative;
}
.chapter + .chapter { padding-top: 0; }
.chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
  margin-bottom: 20px;
}
.chapter-num::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--ink);
  margin-top: 20px;
  opacity: 0.45;
}
.chapter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
}
.chapter h2 em { font-style: italic; font-weight: 400; }
.chapter p {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 22px;
  max-width: none;
}
.chapter p.lead-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.008em;
  margin-bottom: 28px;
}
.chapter ul.story-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex; flex-wrap: wrap;
  gap: 6px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.5;
}
.chapter ul.story-list li {
  white-space: nowrap;
}
.chapter ul.story-list li::after { content: '·'; margin-left: 14px; opacity: 0.4; }
.chapter ul.story-list li:last-child::after { content: ''; }

/* Drop cap on first paragraph of a chapter */
.chapter .dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 5.4em;
  line-height: 0.82;
  float: left;
  margin: 0.06em 0.14em -0.05em -0.04em;
  color: var(--ink);
}

/* Hand-drawn sky underline (matches v7) */
.under-sky {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 C 60 2, 120 12, 198 6' stroke='%23D3E3FD' stroke-width='3.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 100% 0.4em;
  padding-bottom: 0.05em;
}

/* Margin pull-quote inside body copy */
p.pull, .pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-align: center;
  padding: 48px 0 40px;
  max-width: 18ch;
  margin: 36px auto;
  position: relative;
}
.pull::before, .pull::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 56px; height: 1px;
  background: rgba(0,0,0,0.4);
}
.pull::before { top: 0; }
.pull::after { bottom: 0; }

/* Bob & Betty characters — two cards side by side */
.helpers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px 0 8px;
}
@media (min-width: 700px) { .helpers { grid-template-columns: 1fr 1fr; gap: 28px; } }
.helper {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 24px 24px 22px;
  position: relative;
}
.helper-portrait {
  aspect-ratio: 1 / 1;
  background: var(--paper-cream);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.helper-portrait svg { width: 70%; height: 70%; }
.helper .name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.helper .kind {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.helper .quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}
.helper .quote em { font-style: italic; }

/* Big slab — the pivot ("she designed the solution") */
.slab {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slab .slab-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.slab .slab-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 14ch;
  margin: 0 auto;
  text-wrap: balance;
}
.slab .slab-headline em { font-style: italic; font-weight: 400; color: var(--accent); }

/* Maromi Systems definition block */
.definition {
  background: var(--paper-cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.definition > .mark {
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: clamp(360px, 50vw, 620px);
  aspect-ratio: 1 / 1;
  background: url('assets/maromi-m-2.png') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.definition .story-wrap { position: relative; z-index: 2; }
.def-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.def-row:last-child { border-bottom: 1px solid var(--rule); }
.def-row .roman {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.def-row .text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.def-row .text em { font-style: italic; }
.def-row .text strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* Closing scene — cocoa moment */
.closing-scene {
  text-align: center;
  padding: 140px 0 160px;
  position: relative;
}
.closing-scene .cocoa-svg {
  width: 84px; height: 96px;
  margin: 0 auto 32px;
  display: block;
}
.closing-scene .closing-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto;
  text-wrap: balance;
}
.closing-scene .closing-meta {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Section divider (hand-drawn) */
.divider {
  text-align: center;
  padding: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0.6em;
}

/* Hero of the story page */
.story-hero {
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}
.story-hero .story-wrap { text-align: center; position: relative; z-index: 2; }
.story-hero-mark {
  position: absolute;
  top: -8%; left: 50%; transform: translateX(-50%);
  width: clamp(380px, 50vw, 640px);
  aspect-ratio: 1 / 1;
  background: url('assets/maromi-m-2.png') center/contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
}
.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.story-title em { font-style: italic; font-weight: 400; }
.story-subtitle {
  margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  color: var(--body);
  max-width: 28ch;
  margin-left: auto; margin-right: auto;
}
.story-attribution {
  margin-top: 56px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Smooth section colour switches */
section.story-section { padding: 24px 0; }
section.story-section.cream { background: var(--paper-cream); }
section.story-section.ink { background: var(--ink); color: var(--paper); }
section.story-section.ink .chapter h2 { color: var(--paper); }
section.story-section.ink .chapter h2 em { color: var(--accent); }
section.story-section.ink .chapter p { color: rgba(255,255,255,0.82); }

/* ============================================================ */
/* Chapter visual moments                                        */
/* ============================================================ */

/* Inline visual frame used between paragraphs */
.visual {
  margin: 40px 0 36px;
}

/* I. Portfolio contact sheet — "thousands of garments" */
.contact-sheet {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin: 40px 0 16px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
}
.contact-sheet .frame {
  aspect-ratio: 3 / 4;
  background: var(--paper-cream);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 12%;
}
.contact-sheet .frame svg {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.65);
}
.contact-sheet-caption {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute);
}
.contact-sheet-caption::before {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}
@media (max-width: 600px) {
  .contact-sheet { grid-template-columns: repeat(5, 1fr); }
}

/* II. Want-ad — a real classifieds notice */
.want-ad {
  background: #FBFAF5;
  border: 1px solid var(--ink);
  padding: 10px;
  text-align: center;
  max-width: 520px;
  margin: 60px auto 28px;
  position: relative;
  box-shadow: 14px 14px 0 var(--accent), 0 24px 56px -32px rgba(0,0,0,0.22);
  transform: rotate(-1.2deg);
}
.want-ad::before, .want-ad::after { content: none; } /* drop old corner badges */

.want-ad .poster-frame {
  border: 1px solid var(--ink);
  padding: 36px 36px 30px;
  position: relative;
}

.want-ad .ornament-row {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.7em;
  margin: 0 0 14px 0.4em;
  line-height: 1;
  opacity: 0.85;
}

.want-ad .poster-header {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(54px, 9vw, 76px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px 0.16em;
}

.want-ad .double-rule {
  width: 70%;
  margin: 14px auto;
  height: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.want-ad .poster-by {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin: 8px 0 6px;
  letter-spacing: -0.005em;
}

.want-ad .poster-big {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(140px, 22vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 4px 0 6px;
}

.want-ad .poster-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 36px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0 0.22em;
  line-height: 1;
}

.want-ad .poster-task {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.35;
  color: var(--ink);
  margin: 18px 0 14px;
}
.want-ad .poster-task em {
  font-style: italic;
  font-weight: 500;
}

.want-ad .poster-crew {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 14px 0 6px;
  flex-wrap: wrap;
}
.want-ad .poster-crew svg {
  width: 14px;
  height: 22px;
  opacity: 0.78;
}

.want-ad .reward-stamp {
  position: absolute;
  top: 24px; right: -28px;
  background: var(--accent);
  color: var(--ink);
  padding: 12px 18px;
  border: 1.5px solid var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(8deg);
  line-height: 1.3;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.12);
}
.want-ad .reward-stamp em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  letter-spacing: -0.005em;
  text-transform: none;
  margin-top: 4px;
  font-weight: 400;
  color: var(--ink);
}

/* III. Rabbit-hole skill cards (replaces .story-list visual) */
.skill-cards {
  display: flex; flex-wrap: wrap; gap: 12px 10px;
  justify-content: center;
  margin: 32px -8px 20px;
}
.skill-cards .card {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 8px 18px 10px;
  color: var(--ink);
  transform: rotate(var(--rot, 0));
  box-shadow: 3px 3px 0 rgba(0,0,0,0.06);
  white-space: nowrap;
}
.skill-cards .card.accent {
  background: var(--accent);
  border-color: var(--accent);
}
.rabbit-arrow {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  margin-top: 12px;
  opacity: 0.55;
}

/* V. Slab — lightbulb spark */
.slab-bulb {
  display: block;
  margin: 0 auto 28px;
  width: 64px;
  height: 64px;
}

/* VI. Embedded mini editor preview inside the definition */
.preview-card {
  margin: 8px 0 0;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 28px 56px -32px rgba(0,0,0,0.28), 0 2px 0 rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.preview-card .pc-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
  white-space: nowrap;
  gap: 12px;
}
.preview-card .pc-bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-deep); display: inline-block; margin-right: 8px; vertical-align: middle; }
.preview-card .pc-bar .lang { display: inline-block; padding: 3px 7px; margin-left: 4px; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 0.16em; }
.preview-card .pc-bar .lang.active { background: var(--ink); color: var(--paper); }
.preview-card .pc-body { padding: 22px 24px; display: grid; grid-template-columns: 0.85fr 1fr; gap: 22px; }
.preview-card .pc-thumb {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #f2f4f8 0 8px, #e9ecf2 8px 16px);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; color: var(--mute); text-transform: uppercase;
}
.preview-card .pc-fields { display: flex; flex-direction: column; gap: 14px; }
.preview-card .pc-lab { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 5px; }
.preview-card .pc-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; line-height: 1.25; color: var(--ink);
}
.preview-card .pc-bullets { font-size: 12px; line-height: 1.55; color: var(--body); }
.preview-card .pc-kw { display: flex; flex-wrap: wrap; gap: 4px; }
.preview-card .pc-kw span {
  background: var(--accent); color: var(--accent-ink);
  padding: 3px 8px; font-family: 'JetBrains Mono', monospace; font-size: 10px;
}
.preview-card .pc-kw span.score { background: var(--ink); color: var(--paper); }
.preview-card .pc-foot {
  display: flex; justify-content: space-between;
  padding: 10px 16px; border-top: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
  white-space: nowrap;
  gap: 12px;
}
.preview-card .pc-foot .ok { color: var(--accent-ink); }

/* VII. Capability strip — "100 · 4 · 0 · ∞" */
.capability {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 40px 0 32px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.capability .cell {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.capability .cell:last-child { border-right: none; }
.capability .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
}
.capability .lab {
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 700px) {
  .capability { grid-template-columns: repeat(2, 1fr); }
  .capability .cell:nth-child(2) { border-right: none; }
  .capability .cell:nth-child(1), .capability .cell:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* Maromi promise block — "what it actually does" */
.promise {
  margin: 40px 0 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.promise .row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.promise .row .dot {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.promise .row .body {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--body);
}
.promise .row .body strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* Closing — stronger handover */
.closing-handover {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-handover .closing-mark {
  position: absolute;
  bottom: -22%; right: -8%;
  width: clamp(440px, 64vw, 760px);
  aspect-ratio: 1 / 1;
  background: url('assets/maromi-m-2.png') center/contain no-repeat;
  filter: invert(1);
  opacity: 0.07;
  pointer-events: none;
}
.closing-handover .story-wrap { position: relative; z-index: 2; }
.closing-handover .eyebrow-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.closing-handover h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0 auto;
  max-width: 16ch;
  text-wrap: balance;
}
.closing-handover h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.closing-handover .sub {
  margin: 28px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  max-width: 30ch;
}
.closing-handover .actions {
  margin-top: 44px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Cocoa scene — now quieter, sits AFTER handover as a soft signature */
.cocoa-signature {
  padding: 80px 0 100px;
  text-align: center;
}
.cocoa-signature .cocoa-svg {
  width: 64px; height: 76px;
  margin: 0 auto 22px;
  display: block;
  opacity: 0.85;
}
.cocoa-signature .line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--mute);
  max-width: 28ch;
  margin: 0 auto;
}
.cocoa-signature .line em { color: var(--ink); font-weight: 400; }
.cocoa-signature .sign {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mute);
}

/* Small flourish divider used between chapters */
.flourish {
  text-align: center;
  margin: 0 auto;
  padding: 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.8em;
  color: var(--ink);
  opacity: 0.4;
}

/* ============================================================ */
/* Pitch block — "Maromi Systems / Your secret toolbox"          */
/* ============================================================ */
.pitch-block { text-align: center; position: relative; z-index: 2; }
.pitch-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
}
.pitch-eyebrow::before, .pitch-eyebrow::after { content: '— '; }
.pitch-eyebrow::after { content: ' —'; }
.pitch-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
}
.pitch-tagline em { font-style: italic; font-weight: 400; }
.pitch-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto 32px;
}
.pitch-lead em { font-weight: 400; }
.pitch-detail {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  color: var(--body);
  max-width: 52ch;
  margin: 0 auto;
}

/* Platform icon ribbon — small visual under the pitch */
.platforms-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 44px auto 0;
  padding: 24px 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.platforms-ribbon .platform {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative;
}
.platforms-ribbon .platform + .platform::before {
  content: '·';
  position: absolute;
  left: -16px; top: 50%;
  transform: translateY(-50%);
  color: var(--mute);
  font-style: normal;
}

/* ============================================================ */
/* Q&A section — "Why not just use ChatGPT?"                     */
/* ============================================================ */
.qa-section h2 {
  text-align: center;
  font-size: clamp(38px, 6vw, 72px);
  max-width: 18ch;
  margin: 0 auto 32px;
}
.qa-section .lead-line {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 30px);
  max-width: 36ch;
  margin: 0 auto 12px;
}
.qa-section .pull { max-width: 14ch; margin: 24px auto 36px; }
.qa-section p:not(.lead-line):not(.pull) {
  text-align: center;
  max-width: 54ch;
  margin: 0 auto 22px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
}
.qa-section p strong, .qa-section p em.proof {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* The honest comparison card — ChatGPT vs Maromi */
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 32px auto 36px;
  max-width: 640px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 56px -36px rgba(0,0,0,0.24);
}
@media (min-width: 700px) { .comparison { grid-template-columns: 1fr 1fr; } }
.comparison .col { padding: 28px 24px; text-align: left; }
.comparison .col + .col {
  border-top: 1px solid var(--rule);
  border-left: none;
}
@media (min-width: 700px) {
  .comparison .col + .col {
    border-top: none;
    border-left: 1px solid var(--rule);
  }
}
.comparison .col.us { background: var(--paper-cream); }
.comparison .col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 14px;
}
.comparison .col.us h4 { color: var(--accent-ink); }
.comparison .col .name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.comparison .col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--body);
}
.comparison .col ul li {
  padding-left: 22px;
  position: relative;
}
.comparison .col ul li::before {
  content: '·';
  position: absolute;
  left: 4px; top: -2px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--mute);
  line-height: 1;
}
.comparison .col.us ul li::before { color: var(--accent-deep); content: '✓'; font-style: normal; font-size: 14px; top: 0; left: 6px; }

/* ============================================================ */
/* "Why I built" — signature note                                */
/* ============================================================ */
.signature-section h2 {
  text-align: center;
  font-size: clamp(36px, 5.4vw, 64px);
  max-width: 22ch;
  margin: 0 auto 36px;
}
.signature-section .lead-line {
  text-align: center;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  max-width: 28ch;
  margin: 0 auto 36px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}
.signature-section .body-note {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 22px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--body);
}
.signature-section .signature {
  margin: 48px auto 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.signature-section .signature::before { content: '— '; opacity: 0.7; }
.signature-section .sig-role {
  margin-top: 6px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute);
}
