/* ============================================================
   OUR STORY — written, not generated.
   No gradients. No glow shadows. No pill-everything.
   Paper, ink, one highlighter, one handwritten note.
   ============================================================ */

#view-story{
  --paper: #FBF6EE;
  --paper-line: rgba(43,34,36,0.08);
  --ink: var(--plum);
  --ink-soft: var(--plum-soft);
  --highlighter: #F3D94C;
  --highlighter-soft: rgba(243, 217, 76, 0.55);
  --marker-pink: #E8A0AC;
  --tape: rgba(255,255,255,0.55);
}

#view-story section{ padding: 0; }

/* ---------------------------------------------------------
   HERO — plain paper, a typewritten label, a handwritten line
   --------------------------------------------------------- */
.story-hero{
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
  padding: 64px 0 40px;
}

.story-hero .wrap{ max-width: 760px; }

.story-hero .eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 6px;
}

.pull-quote{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 22px 0 24px;
  max-width: 14ch;
}

/* the "small studio" bit — handwritten, underlined by hand, not italic-serif */
.pull-quote .handwritten{
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.28em;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.pull-quote .handwritten svg{
  position: absolute;
  left: -2%;
  bottom: -0.32em;
  width: 104%;
  height: 14px;
  overflow: visible;
}

.hero-meta-line{
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  border-top: 1px dashed var(--paper-line);
  padding-top: 16px;
  margin-top: 8px;
}
.hero-meta-line .dot{ color: var(--ink-soft); opacity: 0.5; }

/* ---------------------------------------------------------
   ORIGIN — the actual story, set like a page, plus a
   torn note pinned in the margin
   --------------------------------------------------------- */
.origin{
  background: var(--paper);
  padding: 56px 0 64px;
}

.origin .wrap{
  max-width: 760px;
  display: grid;
  gap: 40px;
}

.story-copy .eyebrow{
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.story-copy h2{
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 18ch;
}

.story-copy p{
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 16px;
}

.story-copy p:last-child{ margin-bottom: 0; }

/* the highlighter — an actual marker stroke behind real words,
   not a decorative glow */
.marked{
  background-image: linear-gradient(var(--highlighter-soft), var(--highlighter-soft));
  background-repeat: no-repeat;
  background-size: 100% 46%;
  background-position: 0 78%;
  padding: 0 2px;
}

/* ---------------------------------------------------------
   THE TORN NOTE — a scrap of paper, taped down, handwritten
   --------------------------------------------------------- */
.torn-note{
  position: relative;
  max-width: 420px;
  background: #FFFDF7;
  padding: 28px 26px 30px;
  transform: rotate(-1.4deg);
  border: 1px solid rgba(43,34,36,0.1);
  box-shadow: 0 1px 0 rgba(43,34,36,0.04);
  clip-path: polygon(
    0% 2%, 4% 0%, 9% 1.5%, 15% 0%, 22% 1%, 29% 0%, 36% 1.5%, 44% 0%,
    52% 1%, 60% 0%, 68% 1.5%, 76% 0%, 84% 1%, 92% 0%, 100% 1.5%,
    100% 97%, 95% 100%, 89% 98.5%, 82% 100%, 75% 98.5%, 67% 100%,
    59% 98.5%, 51% 100%, 43% 98.5%, 35% 100%, 27% 98.5%, 19% 100%,
    11% 98.5%, 5% 100%, 0% 98%
  );
}

.torn-note::before{
  /* piece of tape */
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  width: 76px;
  height: 26px;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--tape);
  border: 1px solid rgba(43,34,36,0.06);
}

.torn-note p{
  font-family: var(--font-script);
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 12px;
}

.torn-note cite{
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------
   FOUR NOTES — no cards-with-shadow. A plain numbered list,
   like a page from a workbook.
   --------------------------------------------------------- */
.story-grid{
  border-top: 1px solid var(--paper-line);
}

.story-card{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--paper-line);
  max-width: none;
  margin: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.story-card:first-child{ padding-top: 0; }

.story-card .num{
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding-top: 2px;
}

.story-card h3{
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

.story-card p{
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}

/* ---------------------------------------------------------
   PROCESS — same paper, a plain ruled list, no gradient block
   --------------------------------------------------------- */
.process-section{
  background: var(--cream-2);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 64px 0;
}

.process-section .wrap{ max-width: 760px; }

.process-section .sec-head{ margin-bottom: 36px; }
.process-section .eyebrow{
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.process-section h2{
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  color: var(--ink);
}

.steps{
  display: grid;
  gap: 0;
}
.step{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--paper-line);
}
.steps .step:last-child{ border-bottom: 1px solid var(--paper-line); }

.step-n{
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--rose-deep);
  line-height: 1;
}

.step h3{
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.step p{
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}

/* ---------------------------------------------------------
   CTA — flat, plain, one line, no gradient banner
   --------------------------------------------------------- */
.cta-section{
  background: var(--paper);
  padding: 64px 0 80px;
}
.cta-section .wrap{ max-width: 760px; }

.cta-band{
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--paper-line);
  padding-top: 32px;
}
@media (min-width: 700px){
  .cta-band{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2{
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--ink);
}

.cta-band p{
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 640px){
  .story-hero{ padding: 44px 0 32px; }
  .origin{ padding: 44px 0 48px; }
  .torn-note{ transform: rotate(-1deg); max-width: 100%; }
  .story-card{ grid-template-columns: 40px 1fr; gap: 14px; }
}
