/* Pic-Books design system. Lifted from the original static site
   (Pic-Books.web/css/base.css + home.css + article.css). Brand palette
   + gradients are the load-bearing tokens — colour everything else flows from them. */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --c-red:    #e63329;
  --c-orange: #f47920;
  --c-yellow: #ffd700;
  --c-green:  #3aaa35;
  --c-blue:   #0072bc;
  --c-purple: #5b2d8e;
  --c-pink:   #e2007a;

  --grad-blue-purple:  linear-gradient(135deg, #0072bc, #5b2d8e);
  --grad-red-orange:   linear-gradient(135deg, #e63329, #f47920);
  --grad-orange-red:   linear-gradient(135deg, #f47920, #e63329);
  --grad-red-pink:     linear-gradient(135deg, #e63329, #e2007a);
  --grad-pink-purple:  linear-gradient(135deg, #e2007a, #5b2d8e);
  --grad-green-blue:   linear-gradient(135deg, #3aaa35, #0072bc);
  --grad-purple-pink:  linear-gradient(135deg, #5b2d8e, #e2007a);

  --text:        #222;
  --text-muted:  #555;
  --text-soft:   #888;
  --bg:          #fff;
  --bg-soft:     #f0f4f8;
  --bg-warm:     #f7f5f0;
  --border:      #eee;

  --page-max:   1180px;
  --gutter-x:   clamp(20px, 5vw, 64px);
  --section-y:  clamp(56px, 8vw, 96px);
  --article-max:    980px;
  --article-gutter: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", "Oktah Round", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--c-blue); }

/* Rainbow strip */
.rbar {
  height: 5px;
  background: linear-gradient(90deg, #e63329, #f47920, #ffd700, #3aaa35, #0072bc, #5b2d8e, #e2007a);
}

/* Top nav */
.nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter-x);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(8px);
}
.nav-logo { height: 40px; width: auto; cursor: pointer; display: block; }
.nav-btn {
  background: var(--grad-blue-purple);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0,114,188,0.24);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,114,188,0.32); }

/* Buttons (shared) */
.btn-p {
  background: var(--grad-blue-purple);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 22px rgba(0,114,188,0.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,114,188,0.34); }
.btn-s {
  background: #fff;
  color: var(--text);
  border: 2px solid #ddd;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.btn-s:hover { border-color: #bbb; }

/* Sections rhythm */
section, .conv, .cta {
  padding: var(--section-y) var(--gutter-x);
}
.conv h2, .steps h2, .pricing-simple h2, .reviews h2, .cta h2,
.ideas-title, .gift-title {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #111;
  text-align: center;
  margin-bottom: 14px;
}

/* HERO */
.hero {
  background: #fdf7ea;                /* warm cream — matches steps-v2 for brand cohesion */
  padding: clamp(56px, 7vw, 96px) var(--gutter-x) clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  max-width: var(--page-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;                          /* content above scattered decorations */
}
.hero-left { max-width: 560px; }
.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
  display: block;
}
.hero-img-mobile { display: none; width: 100%; border-radius: 16px; margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);   /* subhead under the big logo, not a competing headline */
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 4px;
  color: var(--text-muted);
}
.hero p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-right { position: relative; }
.hero-img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Pricing rosette — tilted sticker hanging off the bottom-right corner of the
   hero illustration. Offsets are big so most of the badge sits OUTSIDE the
   photo and doesn't cover the artwork's banner text. */
.hero-badge {
  position: absolute;
  width: clamp(150px, 16vw, 195px);
  right: -52px;
  bottom: -56px;
  transform: rotate(8deg);
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

/* Mobile photo wrapper — exists so the mobile badge can sit absolutely
   on top of the mobile photo (same sticker pattern as desktop). */
.hero-mobile-photo { display: none; }
.hero-badge-mobile { display: none; }

@media (max-width: 880px) {
  .hero { padding-top: clamp(36px, 6vw, 56px); }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-left { max-width: 100%; text-align: center; }
  .hero-right { display: none; }

  /* Center the logo + give it a touch more presence */
  .hero-logo {
    max-width: 340px;
    margin: 0 auto 18px;
    object-position: center;
  }

  /* Mobile photo + badge sticker */
  .hero-mobile-photo {
    display: block;
    position: relative;
    margin: 0 auto 28px;
    max-width: 460px;
  }
  .hero-img-mobile {
    display: block;
    width: 100%;
    border-radius: 16px;
    margin: 0;
  }
  /* Sized in % of the photo (not fixed px) so the badge keeps the SAME position
     relative to the baked-in ribbon at every screen width — otherwise it grows
     relative to the shrinking photo on narrow phones and creeps over the text.
     Tucked into the bottom-right corner, past the ribbon's right end; the small
     right overhang stays within the page gutter so .hero's overflow:hidden
     doesn't clip it. */
  .hero-badge-mobile {
    display: block;
    position: absolute;
    width: 26%;
    right: -5%;
    bottom: -15%;
    transform: rotate(8deg);
    z-index: 3;
  }

  /* Tighten heading/paragraph rhythm on mobile */
  .hero h1 { margin-top: 8px; margin-bottom: 14px; }
  .hero p  { margin: 0 auto 24px; }
  .hero-btns { justify-content: center; }
}

/* Scattered decorations around the hero — same pattern as .steps-deco-* */
.hero-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-deco-heart-tl    { top: 26px;   left: 28px;   width: 42px; transform: rotate(-12deg); }
.hero-deco-arrow-tl    { top: 78px;   left: 18px;   width: 84px; transform: rotate(-6deg); }
.hero-deco-star-tr     { top: 30px;   right: 38px;  width: 44px; transform: rotate(14deg); }
.hero-deco-stroke-tr   { top: 84px;   right: 90px;  width: 36px; transform: rotate(-14deg); }
.hero-deco-squiggle-bl { bottom: 60px; left: 36px;  width: 64px; transform: rotate(8deg); }
.hero-deco-star-bl     { bottom: 36px; left: 110px; width: 32px; transform: rotate(-10deg); }
.hero-deco-heart-br    { bottom: 36px; right: 30px; width: 40px; transform: rotate(12deg); }
.hero-deco-squiggle-br { bottom: 70px; right: 90px; width: 62px; transform: rotate(-10deg); }

/* Tablet — drop the busiest pieces */
@media (max-width: 960px) {
  .hero-deco-arrow-tl,
  .hero-deco-stroke-tr,
  .hero-deco-star-bl,
  .hero-deco-squiggle-br { display: none; }
}
/* Mobile — hide all loose scatter (mobile layout is already tight) */
@media (max-width: 640px) {
  .hero-deco { display: none; }
}

/* IDEAS — polaroid-style frames pinned to a scrapbook */
.ideas { background: #fff; position: relative; overflow: hidden; }
.ideas-title, .ideas-grid, .ideas-cta-wrap { position: relative; z-index: 2; }
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: var(--page-max);
  margin: 16px auto 0;
  padding: 32px 0 16px;        /* room for the tape to stick above the row */
}
@media (max-width: 900px) { .ideas-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 600px) {
  .ideas-grid { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
  .idea-card { width: 100%; max-width: 340px; }
}

/* Polaroid frame: white card, image inset, caption at the bottom */
.idea-card {
  background: #fff;
  padding: 12px 12px 0 12px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(15, 30, 60, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow .2s ease;
}
.idea-card:hover { box-shadow: 0 14px 32px rgba(15, 30, 60, 0.18); }

/* Casual per-card tilts so the row reads pinned-up, not gridded */
.idea-card:nth-child(1) { transform: rotate(-2deg);   }
.idea-card:nth-child(2) { transform: rotate(1.4deg);  }
.idea-card:nth-child(3) { transform: rotate(-1.2deg); }
.idea-card:nth-child(4) { transform: rotate(2.2deg);  }

.idea-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: none;
  display: block;
}
/* Compare slider sits square inside the polaroid frame, like the old static img */
.idea-card .compare {
  aspect-ratio: 1;
  border-radius: 2px;
}
/* Hide the photo/colouring-page badges on the small polaroids — too cluttered here */
.idea-card .compare-label { display: none; }
.idea-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 12px 0 18px;
  text-align: center;
  line-height: 1.3;
}

/* Tape across the top of each polaroid — anchored at the top-centre of
   each card. Per-card translateX shifts it slightly off-centre + slight
   rotation, so it reads casually pinned rather than mechanically placed. */
.idea-tape {
  position: absolute;
  width: 84px;
  height: auto;
  pointer-events: none;
  z-index: 3;
  top: -14px;
  left: 50%;
}
.idea-card:nth-child(1) .idea-tape { transform: translateX(-58%) rotate(-10deg); }
.idea-card:nth-child(2) .idea-tape { transform: translateX(-46%) rotate(8deg);   }
.idea-card:nth-child(3) .idea-tape { transform: translateX(-54%) rotate(-4deg);  }
.idea-card:nth-child(4) .idea-tape { transform: translateX(-42%) rotate(12deg);  }

/* Floating section decorations */
.ideas-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.ideas-deco-heart-tl { top: 70px;     left:  28px; width: 50px; transform: rotate(-14deg); }
.ideas-deco-star-tr  { top: 64px;     right: 32px; width: 50px; transform: rotate(12deg);  }
.ideas-deco-sq-bl    { bottom: 100px; left:  24px; width: 88px; transform: rotate(-6deg); opacity: .85; }
.ideas-deco-star-br  { bottom: 100px; right: 28px; width: 46px; transform: rotate(-10deg); }

@media (max-width: 960px) {
  .ideas-deco-sq-bl { display: none; }
  .ideas-deco-heart-tl, .ideas-deco-star-tr, .ideas-deco-star-br { width: 38px; }
}
@media (max-width: 700px) {
  .ideas-deco { display: none; }
  .idea-tape  { width: 68px; }
}
.btn-ideas {
  background: var(--grad-orange-red);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244,121,32,0.35);
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-ideas:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,121,32,0.42); }
.ideas-cta-wrap { text-align: center; margin-top: 56px; }

/* STEPS */
.steps { background: var(--bg-soft); }
.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--page-max);
  margin: 0 auto;
}
@media (max-width: 900px) { .sg { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .sg { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15, 30, 60, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15, 30, 60, 0.10); }
.sn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
  margin: 0 auto 16px;
  font-size: 1.1rem;
}
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: #111; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* SIMPLE PRICING (single tier) */
.pricing-simple {
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-simple > h2,
.pricing-simple > .price-callout,
.pricing-simple > .price-sub,
.pricing-simple > .pricing-features { position: relative; z-index: 2; }

/* Price callout — big bold number flanked by hand-drawn sparkles */
.price-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 14px auto 16px;
  position: relative;
}
.price-callout .price-num {
  font-size: clamp(3.5rem, 8vw, 5.4rem);
  font-weight: 900;
  color: var(--c-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-1.5deg);
}
/* Small "from" prefix — sits high beside the big number, tilted, in brand orange */
.price-callout .price-from {
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: 800;
  color: var(--c-orange);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  transform: rotate(-6deg);
  align-self: flex-start;
  margin-top: 14px;          /* drop it slightly so the baseline aligns near the £ */
  margin-right: -8px;        /* tuck it close to the number */
}
.price-spark {
  width: 58px;
  height: auto;
  pointer-events: none;
  opacity: .9;
}
.price-spark-l { transform: rotate(180deg); }   /* fan points toward the number */

.price-sub {
  color: var(--text-muted);
  font-size: 1.04rem;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Features list — pill chips on warm cream, rainbow tick bullets */
.pricing-features {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: .94rem;
  font-weight: 700;
  color: #1a1a1a;
  list-style: none;
  padding: 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffaee;
  padding: 7px 16px 7px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.pricing-features li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: center/contain no-repeat;
  flex-shrink: 0;
}
.pricing-features li:nth-child(1)::before { background-image: url("/img/brand/tick-pink.png");   }
.pricing-features li:nth-child(2)::before { background-image: url("/img/brand/tick-orange.png"); }
.pricing-features li:nth-child(3)::before { background-image: url("/img/brand/tick-yellow.png"); }
.pricing-features li:nth-child(4)::before { background-image: url("/img/brand/tick-green.png");  }
.pricing-features li:nth-child(5)::before { background-image: url("/img/brand/tick-blue.png");   }

/* Floating section decorations */
.pricing-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.pricing-deco-heart-tl { top: 76px;    left: 6%;  width: 48px; transform: rotate(-12deg); }
.pricing-deco-star-tr  { top: 72px;    right: 7%; width: 48px; transform: rotate(14deg); }
.pricing-deco-sq-bl    { bottom: 70px; left: 6%;  width: 84px; transform: rotate(-6deg); opacity: .85; }
.pricing-deco-star-br  { bottom: 78px; right: 7%; width: 42px; transform: rotate(-10deg); }
@media (max-width: 960px) {
  .pricing-deco-sq-bl { display: none; }
  .pricing-deco-heart-tl, .pricing-deco-star-tr, .pricing-deco-star-br { width: 34px; }
}
@media (max-width: 700px) {
  .pricing-deco { display: none; }
  .price-spark { width: 44px; }
  .pricing-features { gap: 10px; }
  .pricing-features li { font-size: .9rem; padding: 6px 14px 6px 8px; }
}

/* GIFT */
.gift { background: var(--bg-warm); position: relative; overflow: hidden; }
.gift-title { position: relative; z-index: 2; }
.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 32px auto 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) { .gift-grid { grid-template-columns: 1fr; gap: 20px; } }
.gift-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform .15s ease;
}
.gift-card:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09); }
.gift-card:hover { transform: translateY(-3px); }
.gift-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gift-card h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat;
  flex-shrink: 0;
}
.gift-card p { font-size: 0.94rem; color: var(--text-muted); line-height: 1.7; }

/* Per-card brand colour rotation — heading colour + heart icon only; borders
   dropped because the crisp solid stroke clashed with the hand-drawn tape.
   Each card also gets a tiny random tilt so the row reads as messily pinned. */
.gift-card.gc-birthday  { transform: rotate(-1.2deg); }
.gift-card.gc-birthday  h3 { color: var(--c-pink); }
.gift-card.gc-birthday  h3::before { background-image: url("/img/brand/heart-pink.png"); }

.gift-card.gc-wedding   { transform: rotate(1.6deg); }
.gift-card.gc-wedding   h3 { color: var(--c-purple); }
.gift-card.gc-wedding   h3::before { background-image: url("/img/brand/heart-purple.png"); }

.gift-card.gc-holiday   { transform: rotate(1deg); }
.gift-card.gc-holiday   h3 { color: var(--c-orange); }
.gift-card.gc-holiday   h3::before { background-image: url("/img/brand/heart-orange.png"); }

.gift-card.gc-seasonal  { transform: rotate(-1.8deg); }
.gift-card.gc-seasonal  h3 { color: var(--c-green); }
.gift-card.gc-seasonal  h3::before { background-image: url("/img/brand/heart-green.png"); }

/* Per-card sticky tape — tape's CENTRE sits on the card's outer corner,
   with the card edge cutting across the tape's middle (matches the kit
   mockup). Horizontal source PNGs + pure CSS rotation = deterministic.
   Rotation direction is picked so the "inside-card" half of the tape
   points into the card interior, not back out across the edge. */
.gift-tape {
  position: absolute;
  width: 82px;
  height: auto;
  pointer-events: none;
  z-index: 3;
}
.gc-birthday .gift-tape { top:    -13px; left:  -40px; transform: rotate(24deg);  }  /* top-left card → TL corner, shallow */
.gc-wedding  .gift-tape { top:    -13px; right: -40px; transform: rotate(-38deg); }  /* top-right card → TR corner, steep */
.gc-holiday  .gift-tape { bottom: -13px; left:  -40px; transform: rotate(-36deg); }  /* bottom-left card → BL corner, steep */
.gc-seasonal .gift-tape { bottom: -13px; right: -40px; transform: rotate(22deg);  }  /* bottom-right card → BR corner, shallow */

/* Stroke flourish — INSIDE the card, diagonally opposite the tape so each
   card has weight on both diagonals. Avoids the inter-row gap where two
   strokes were previously colliding. */
.gift-stroke {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: .9;
  width: 42px;
}
.gc-birthday .gift-stroke { bottom: 18px; right: 22px; transform: rotate(15deg);   }
.gc-wedding  .gift-stroke { bottom: 18px; right: 22px; transform: rotate(-15deg);  }
.gc-holiday  .gift-stroke { top:    14px; right: 18px; transform: rotate(-20deg);  }
.gc-seasonal .gift-stroke { top:    14px; right: 18px; transform: rotate(25deg);   }

/* Floating section decorations (desktop only) — sized up so they read */
.gift-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.gift-deco-heart-tl    { top: 28px;    left: 32px;  width: 60px; transform: rotate(-12deg); }
.gift-deco-star-tr     { top: 24px;    right: 36px; width: 56px; transform: rotate(12deg); }
.gift-deco-squiggle-tl { top: 110px;   left: 18px;  width: 90px; transform: rotate(-6deg); opacity: .85; }
.gift-deco-arrow-tr    { top: 110px;   right: 32px; width: 78px; transform: rotate(8deg); opacity: .9; }
.gift-deco-heart-bl    { bottom: 70px; left: 36px;  width: 50px; transform: rotate(8deg); }
.gift-deco-star-br     { bottom: 60px; right: 32px; width: 56px; transform: rotate(-10deg); }
.gift-deco-squiggle-br { bottom: 130px; right: 18px; width: 82px; transform: rotate(8deg); opacity: .85; }

@media (max-width: 960px) {
  .gift-deco-squiggle-tl, .gift-deco-arrow-tr,
  .gift-deco-squiggle-br { display: none; }
  .gift-deco-heart-tl, .gift-deco-star-tr,
  .gift-deco-heart-bl, .gift-deco-star-br { width: 40px; }
}
@media (max-width: 700px) {
  .gift-deco { display: none; }
  .gift-tape { width: 72px; }
  .gift-stroke { width: 38px !important; }
}

/* CTA — soft pink closer with hand-drawn accents. Pale pink (not warm cream)
   so it sits visually distinct from the gift section's --bg-warm grey-cream
   immediately above. */
.cta {
  background: linear-gradient(180deg, #fde8ee 0%, #fff3d6 100%);
  text-align: center;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 2;
}
.cta h2 { color: #111; margin-bottom: 14px; }
.cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto 28px;
  line-height: 1.7;
  max-width: 620px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* Decorative scatter — same approach as .steps-deco-* in the steps section */
.cta-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.cta-deco-heart-tl    { top: 14%;  left: 6%;   width: 56px; transform: rotate(-12deg); }
.cta-deco-star-tr     { top: 18%;  right: 8%;  width: 52px; transform: rotate(14deg); }
.cta-deco-squiggle-bl { bottom: 12%; left: 9%;  width: 110px; transform: rotate(-6deg); opacity: .85; }
.cta-deco-heart-br    { bottom: 16%; right: 7%; width: 50px; transform: rotate(10deg); }
.cta-deco-star-bl     { bottom: 34%; left: 4%;  width: 38px; transform: rotate(-8deg); }
.cta-deco-stroke-tr   { top: 6%;   right: 18%; width: 88px; transform: rotate(8deg); opacity: .9; }

@media (max-width: 720px) {
  .cta-deco-squiggle-bl, .cta-deco-stroke-tr { display: none; }
  .cta-deco-heart-tl, .cta-deco-star-tr, .cta-deco-heart-br, .cta-deco-star-bl { width: 36px; }
}
.btn-wh, .btn-ou {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform .18s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-wh { background: #fff; color: var(--c-purple); border: none; }
.btn-wh:hover { transform: translateY(-2px); }
.btn-ou {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ou:hover { border-color: #fff; }

/* Footer */
.footer {
  padding: 72px var(--gutter-x) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 56px;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { height: 40px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-top: 4px; max-width: 280px; }
.footer-col-head {
  font-size: .82rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links li a {
  font-size: .9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links li a:hover { color: var(--c-blue); }
.footer-bar {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--page-max);
  margin: 0 auto;
}
.footer-bar p { font-size: .82rem; color: #999; }

/* ─────────────────────────────────────────────────────────────────────
   PAGE HERO — playful intro for content pages that match the home style
   (currently used by /how-it-works; reusable for other salesy pages).
   ───────────────────────────────────────────────────────────────────── */
.page-hero {
  background: #fff;
  padding: clamp(64px, 7vw, 96px) var(--gutter-x) clamp(48px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111;
  margin-bottom: 18px;
}
.page-hero-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 28px;
}
.page-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.ph-deco-heart-tl    { top: 38px;   left:  7%;  width: 50px; transform: rotate(-12deg); }
.ph-deco-star-tr-y   { top: 48px;   right: 8%;  width: 48px; transform: rotate(14deg); }
.ph-deco-star-tl-p   { top: 110px;  left: 14%;  width: 32px; transform: rotate(20deg); }
.ph-deco-sq-bl       { bottom: 64px; left: 7%;  width: 86px; transform: rotate(-6deg); opacity: .85; }
.ph-deco-arrow-br    { bottom: 56px; right: 8%; width: 78px; transform: rotate(8deg); opacity: .9; }
.ph-deco-heart-tr    { top: 130px;  right: 14%; width: 36px; transform: rotate(8deg); }
@media (max-width: 900px) {
  .ph-deco-star-tl-p, .ph-deco-heart-tr, .ph-deco-sq-bl, .ph-deco-arrow-br { display: none; }
  .ph-deco-heart-tl, .ph-deco-star-tr-y { width: 34px; }
}
@media (max-width: 600px) {
  .page-hero-deco { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────
   SHARED SECTION TYPOGRAPHY — used by deep-dive content sections
   (process, ba-gallery, photo-tips, product-spec, privacy).
   ───────────────────────────────────────────────────────────────────── */
.section-title {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #111;
  text-align: center;
  margin-bottom: 12px;
}
.section-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────
   SPLIT ROW — alternating text + visual layout for deep-dive sections
   (used by the Process steps and the Product Spec breakdown).
   ───────────────────────────────────────────────────────────────────── */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1080px;
  margin: 56px auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .split-row { grid-template-columns: 1fr; gap: 28px; margin: 36px auto; }
}
.split-row--reverse .split-text   { order: 2; }
.split-row--reverse .split-visual { order: 1; }
@media (max-width: 800px) {
  .split-row--reverse .split-text   { order: 1; }
  .split-row--reverse .split-visual { order: 2; }
}
.split-step-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.split-text h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.15;
}
.split-text p {
  font-size: 1rem;
  color: #3a3a3a;
  line-height: 1.75;
  margin-bottom: 14px;
}
.split-text ul.brand-list { margin-top: 18px; }

/* ─────────────────────────────────────────────────────────────────────
   PLACEHOLDER — dashed-border block standing in for an image / video /
   compare-slider until real content is wired up. Visible "TODO" cue.
   ───────────────────────────────────────────────────────────────────── */
.placeholder {
  background: rgba(255, 255, 255, 0.65);
  border: 2px dashed #c5d4e0;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}
.placeholder--wide    { aspect-ratio: 16 / 10; }
.placeholder--compare { aspect-ratio: 4 / 3; border-color: var(--c-pink); background: rgba(254, 232, 238, 0.45); }

/* Real photo dropped into a .split-visual slot — same rounded card
   framing as the placeholder it replaces. */
.split-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(20, 30, 60, 0.10);
  object-fit: cover;
}
.placeholder-icon  { font-size: 2.2rem; opacity: .75; }
.placeholder-label { font-weight: 800; font-size: 1.02rem; color: #444; }
.placeholder-note  { font-size: .82rem; color: var(--text-soft); font-style: italic; max-width: 320px; line-height: 1.5; }

/* On narrow screens drop the fixed aspect-ratio + min-height so the box
   grows to fit its content instead of clipping the explanatory note. */
@media (max-width: 800px) {
  .placeholder,
  .placeholder--wide,
  .placeholder--compare {
    aspect-ratio: auto;
    min-height: 0;
    padding: 26px 20px;
  }
  .placeholder-note { max-width: none; }
}

/* ─────────────────────────────────────────────────────────────────────
   COMPARE SLIDER — reusable before/after slider. Drag (or arrow keys)
   to reveal the bottom image. Behaviour lives in /js/compare-slider.js.
   ───────────────────────────────────────────────────────────────────── */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f7f5f0;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;   /* let a touch on the image scroll the page vertically */
  outline: none;
  cursor: default;       /* only the handle is draggable now */
}
.compare:focus { box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.35); }
.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.compare-img--top    { z-index: 2; }
.compare-img--bottom { z-index: 1; }
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 3;
  transform: translateX(-1.5px);
  pointer-events: auto;   /* the handle IS the drag target */
  cursor: ew-resize;
  touch-action: none;     /* JS owns the horizontal drag gesture here */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.55);
}
/* Invisible wide hit-zone around the thin divider so the handle is easy to
   grab with a finger — without it only the 3px line / knob would be tappable. */
.compare-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 48px;
  transform: translateX(-50%);
}
.compare-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-purple);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  line-height: 1;
}
.compare-label {
  position: absolute;
  top: 10px;
  padding: 4px 10px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 4;
  pointer-events: none;
}
.compare-label--left  { left: 10px; }
.compare-label--right { right: 10px; }

/* ─────────────────────────────────────────────────────────────────────
   PROCESS — deep-dive walkthrough of the three steps. Warm cream bg
   with hand-drawn decorations, alternating split-row layout inside.
   ───────────────────────────────────────────────────────────────────── */
.process {
  background: #fdf7ea;
  position: relative;
  overflow: hidden;
}
.process > .section-title,
.process > .section-lede { position: relative; z-index: 2; }
.process-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.process-deco-heart-tl { top: 56px;    left: 4%;  width: 50px; transform: rotate(-12deg); }
.process-deco-star-tr  { top: 60px;    right: 4%; width: 50px; transform: rotate(14deg);  }
.process-deco-sq-bl    { bottom: 80px; left: 4%;  width: 90px; transform: rotate(-6deg); opacity: .85; }
.process-deco-star-br  { bottom: 90px; right: 4%; width: 44px; transform: rotate(-10deg); }
@media (max-width: 900px) {
  .process-deco-sq-bl, .process-deco-star-br { display: none; }
}
@media (max-width: 700px) { .process-deco { display: none; } }

/* ─────────────────────────────────────────────────────────────────────
   BA GALLERY — before/after compare-slider showcase. White bg.
   ───────────────────────────────────────────────────────────────────── */
.ba-gallery {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.ba-gallery > .section-title,
.ba-gallery > .section-lede,
.ba-gallery > .ba-grid { position: relative; z-index: 2; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 700px) { .ba-grid { grid-template-columns: 1fr; gap: 20px; } }
.ba-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 6px 18px rgba(15, 30, 60, 0.08);
}
.ba-card:nth-child(1) { transform: rotate(-1deg); }
.ba-card:nth-child(2) { transform: rotate(1.2deg); }
.ba-card:nth-child(3) { transform: rotate(0.6deg); }
.ba-card:nth-child(4) { transform: rotate(-1.4deg); }
.ba-caption {
  margin: 12px 4px 4px;
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}

/* ─────────────────────────────────────────────────────────────────────
   PHOTO TIPS — 2x3 grid of advice cards on warm grey background.
   ───────────────────────────────────────────────────────────────────── */
.photo-tips {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.photo-tips > .section-title,
.photo-tips > .section-lede,
.photo-tips > .tips-grid { position: relative; z-index: 2; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; gap: 18px; } }

.tip-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  position: relative;
}
.tip-card:nth-child(1) { transform: rotate(-1deg); }
.tip-card:nth-child(2) { transform: rotate(0.8deg); }
.tip-card:nth-child(3) { transform: rotate(-0.6deg); }
.tip-card:nth-child(4) { transform: rotate(1.2deg); }
.tip-card:nth-child(5) { transform: rotate(-1.4deg); }
.tip-card:nth-child(6) { transform: rotate(0.9deg); }
.tip-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.tip-card h3::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: center/contain no-repeat;
  flex-shrink: 0;
}
.tip-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.tip-card:nth-child(1) h3 { color: var(--c-pink);   }
.tip-card:nth-child(1) h3::before { background-image: url("/img/brand/tick-pink.png"); }
.tip-card:nth-child(2) h3 { color: var(--c-orange); }
.tip-card:nth-child(2) h3::before { background-image: url("/img/brand/tick-orange.png"); }
.tip-card:nth-child(3) h3 { color: var(--c-blue);   }
.tip-card:nth-child(3) h3::before { background-image: url("/img/brand/tick-blue.png"); }
.tip-card:nth-child(4) h3 { color: var(--c-purple); }
.tip-card:nth-child(4) h3::before { background-image: url("/img/brand/tick-purple.png"); }
.tip-card:nth-child(5) h3 { color: var(--c-green);  }
.tip-card:nth-child(5) h3::before { background-image: url("/img/brand/tick-green.png"); }
.tip-card:nth-child(6) h3 { color: var(--c-red);    }
.tip-card:nth-child(6) h3::before { background-image: url("/img/brand/tick-red.png"); }

/* ─────────────────────────────────────────────────────────────────────
   PRODUCT SPEC — what's in your book. White bg, single split-row.
   ───────────────────────────────────────────────────────────────────── */
.product-spec {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.product-spec > .section-title,
.product-spec > .section-lede,
.product-spec > .split-row { position: relative; z-index: 2; }

/* ─────────────────────────────────────────────────────────────────────
   PRIVACY — reassuring band centred around the heart-lock icon.
   ───────────────────────────────────────────────────────────────────── */
.privacy-section {
  background: #fdf7ea;
  position: relative;
  overflow: hidden;
}
.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.privacy-icon {
  width: 72px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}
.privacy-section h2 { margin-bottom: 14px; }
.privacy-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.privacy-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}
.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #2a2a2a;
  line-height: 1.55;
}
.privacy-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("/img/brand/tick-green.png") center/contain no-repeat;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────────────
   FAQ MINI — compact FAQ cards on warm background. Visual rhyme with
   the home page gift section (white cards on warm bg, slight tilts).
   ───────────────────────────────────────────────────────────────────── */
.faq-mini {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.faq-mini-title { position: relative; z-index: 2; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 32px auto 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; gap: 20px; } }

.faq-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px 22px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: box-shadow .2s ease;
}
.faq-card:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09); }
.faq-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  line-height: 1.3;
}
.faq-card h3::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: center/contain no-repeat;
  flex-shrink: 0;
}
.faq-card p { font-size: 0.96rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Per-card brand colour + heart icon + slight random tilt */
.faq-card.fq-1 { transform: rotate(-1.2deg); }
.faq-card.fq-1 h3 { color: var(--c-blue); }
.faq-card.fq-1 h3::before { background-image: url("/img/brand/heart-teal.png"); }

.faq-card.fq-2 { transform: rotate(1deg); }
.faq-card.fq-2 h3 { color: var(--c-pink); }
.faq-card.fq-2 h3::before { background-image: url("/img/brand/heart-pink.png"); }

.faq-card.fq-3 { transform: rotate(-1.6deg); }
.faq-card.fq-3 h3 { color: var(--c-purple); }
.faq-card.fq-3 h3::before { background-image: url("/img/brand/heart-purple.png"); }

.faq-card.fq-4 { transform: rotate(1.4deg); }
.faq-card.fq-4 h3 { color: var(--c-green); }
.faq-card.fq-4 h3::before { background-image: url("/img/brand/heart-green.png"); }

/* Per-card tape + stroke flourish — same vocabulary as gift section, lighter */
.faq-tape {
  position: absolute;
  top: -10px;
  width: 74px;
  height: auto;
  pointer-events: none;
  z-index: 3;
}
/* Tape always sits on the grid column's outer edge */
.faq-grid .faq-card:nth-child(odd)  .faq-tape { left:  6px; right: auto; }
.faq-grid .faq-card:nth-child(even) .faq-tape { right: 6px; left:  auto; }
/* Per-card tilt for hand-stuck variety */
.fq-1 .faq-tape { transform: rotate(22deg);  }
.fq-2 .faq-tape { transform: rotate(-18deg); }
.fq-3 .faq-tape { transform: rotate(-30deg); }
.fq-4 .faq-tape { transform: rotate(24deg);  }

.faq-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.faq-deco-heart-tl { top: 70px;     left:  28px; width: 46px; transform: rotate(-12deg); }
.faq-deco-star-tr  { top: 64px;     right: 30px; width: 46px; transform: rotate(14deg); }
.faq-deco-sq-bl    { bottom: 100px; left: 24px;  width: 84px; transform: rotate(-6deg); opacity: .85; }
.faq-deco-star-br  { bottom: 110px; right: 30px; width: 44px; transform: rotate(-10deg); }
@media (max-width: 960px) {
  .faq-deco-sq-bl { display: none; }
  .faq-deco-heart-tl, .faq-deco-star-tr, .faq-deco-star-br { width: 34px; }
}
@media (max-width: 700px) {
  .faq-deco { display: none; }
  .faq-tape { width: 58px; }
}

/* Article pages chrome (used for /faq /privacy /terms etc — added in M2) */
body.article { background: #fff; }
.article-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) var(--article-gutter) clamp(36px, 4vw, 56px);
}
.article-hero-inner { max-width: var(--article-max); margin: 0 auto; }
.article-hero-label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.article-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111;
  margin-bottom: 14px;
}
.article-hero-meta { font-size: .92rem; color: var(--text-soft); line-height: 1.6; }
.article-hero-meta a { color: var(--c-blue); font-weight: 700; text-decoration: none; }

.article-body {
  max-width: var(--article-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--article-gutter) clamp(56px, 8vw, 96px);
}
.article-body h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #111;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.article-body h2:first-child, .article-body > *:first-child + h2 { margin-top: 0; }
.article-body h3 { font-size: 1.05rem; font-weight: 800; color: #1a1a1a; margin: 28px 0 10px; }
.article-body p { font-size: 1rem; color: #3a3a3a; line-height: 1.78; margin-bottom: 14px; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin: 4px 0 18px; }
.article-body li { font-size: 1rem; color: #3a3a3a; line-height: 1.78; margin-bottom: 8px; }
.article-body a { color: var(--c-blue); font-weight: 600; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body strong { color: #1a1a1a; font-weight: 800; }

.highlight, .warning {
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 20px 0 24px;
}
.highlight { background: #f0f7ff; border-left: 4px solid var(--c-blue); }
.highlight p { margin: 0; font-size: .96rem; color: #1a4a6b; font-weight: 600; line-height: 1.65; }
.warning { background: #fff8e1; border-left: 4px solid var(--c-orange); }
.warning p { margin: 0; font-size: .96rem; color: #7a4500; font-weight: 600; line-height: 1.65; }

.contact-box { background: var(--bg-warm); border-radius: 14px; padding: 22px 26px; margin-top: 32px; }
.contact-box p { margin: 0; font-size: .96rem; color: #3a3a3a; line-height: 1.7; }
.contact-box a { color: var(--c-blue); font-weight: 700; text-decoration: none; }

.subpage-cta {
  text-align: center;
  margin-top: 56px;
  padding: 44px 32px;
  background: var(--bg-warm);
  border-radius: 18px;
}
.subpage-cta .h { font-size: 1.3rem; font-weight: 900; color: #111; margin-bottom: 10px; letter-spacing: -0.01em; }
.subpage-cta .sub { font-size: .98rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.65; max-width: 480px; margin-left: auto; margin-right: auto; }
.subpage-cta .btn-go {
  background: var(--grad-red-pink);
  color: #fff;
  border: none;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(226,0,122,.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.subpage-cta .btn-go:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(226,0,122,.35); }

/* ─────────────────────────────────────────────────────────────────────
   STEPS V2 — playful hand-drawn three-step section (replaces .steps/.sg)
   Uses PNG assets in /img/steps/. The .steps-v2 modifier scopes everything
   so the legacy rules above stay untouched.
   ───────────────────────────────────────────────────────────────────── */

.steps-v2 {
  background: #fdf7ea;             /* warm cream from mockup */
  position: relative;
  overflow: hidden;                /* clip stray edges of corner decorations */
}
.steps-v2 .steps-inner {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 8px 0 16px;             /* outer section padding handled by section rule */
}
.steps-v2 .steps-title {
  text-align: center;
  margin-bottom: 6px;
}
.steps-v2 .steps-title-sep {
  display: block;
  margin: 6px auto 36px;
  height: 28px;
  width: auto;
  max-width: 80%;
  pointer-events: none;
}

/* ── Card grid ─────────────────────────────────────────────────────── */
.steps-v2 .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;                      /* cards above floating decorations */
}
.steps-v2 .step-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px 26px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(15, 30, 60, 0.07);
  overflow: visible;
}
.steps-v2 .step-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin: 4px 0 14px;
  line-height: 1.25;
}
.steps-v2 .step-card p {
  font-size: 0.96rem;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1.55;
  margin: 14px 8px 0;
  text-wrap: balance;
}
.steps-v2 .step-card.sc-pink   h3 { color: var(--c-pink); }
.steps-v2 .step-card.sc-green  h3 { color: var(--c-green); }
.steps-v2 .step-card.sc-purple h3 { color: var(--c-purple); }

/* Tiny random tilt per card so the row reads as casually pinned */
.steps-v2 .step-card.sc-pink   { transform: rotate(-1.4deg); }
.steps-v2 .step-card.sc-green  { transform: rotate(1deg);    }
.steps-v2 .step-card.sc-purple { transform: rotate(-0.8deg); }

.steps-v2 .step-badge-img {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}
.steps-v2 .step-graphic {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 4px auto 6px;
  position: relative;
  z-index: 1;
}

/* Sticky tape — anchors each card. Different position per card.       */
.steps-v2 .step-tape {
  position: absolute;
  width: 92px;
  height: auto;
  pointer-events: none;
  z-index: 3;
}
.steps-v2 .step-tape { width: 90px; }
/* Tape centred on a corner, card edge bisects the tape. Mockup pattern:
   step 1 bottom-left, step 2 top-right, step 3 bottom-right. */
.steps-v2 .sc-pink   .step-tape { bottom: -14px; left:  -44px; transform: rotate(-22deg); }
.steps-v2 .sc-green  .step-tape { top:    -14px; right: -44px; transform: rotate(-30deg); }
.steps-v2 .sc-purple .step-tape { bottom: -14px; right: -44px; transform: rotate(38deg);  }

/* Tiny stroke flourishes near the badge on each card                  */
.steps-v2 .step-stroke {
  position: absolute;
  width: 38px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: .9;
}
.steps-v2 .sc-pink   .step-stroke-a { top: 16px; left: 38px;  transform: rotate(-18deg); }
.steps-v2 .sc-pink   .step-stroke-b { top: 22px; right: 36px; width: 30px; transform: rotate(28deg); }
.steps-v2 .sc-green  .step-stroke-a { top: 10px; left: 30px;  transform: rotate(-14deg); }
.steps-v2 .sc-green  .step-stroke-b { top: 18px; right: 26px; width: 32px; transform: rotate(22deg); }
.steps-v2 .sc-purple .step-stroke-a { top: 14px; left: 28px;  transform: rotate(-22deg); }
.steps-v2 .sc-purple .step-stroke-b { top: 20px; right: 28px; width: 32px; transform: rotate(20deg); }

/* ── Privacy pill ──────────────────────────────────────────────────── */
.steps-v2 .steps-privacy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 36px auto 0;
  padding: 12px 22px 12px 14px;
  background: #fffaee;
  border: 1.5px solid #f3d99a;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(244, 121, 32, 0.08);
}
.steps-v2 .steps-privacy-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}
.steps-v2 .steps-privacy span {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

/* ── Floating decorations (desktop only) ───────────────────────────── */
.steps-v2 .steps-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;                      /* below cards */
}
/* Top-left cluster: pink heart on top, blue arrow tucked just under-right */
.steps-v2 .steps-deco-heart-tl    { top: 18px;  left: 22px;  width: 38px; transform: rotate(-10deg); }
.steps-v2 .steps-deco-arrow-tl    { top: 64px;  left: 14px;  width: 78px; transform: rotate(-4deg); }

/* Top-right cluster: orange strokes + yellow star + purple star, near corner */
.steps-v2 .steps-deco-stroke-tr   { top: 32px;  right: 110px; width: 38px; transform: rotate(-12deg); }
.steps-v2 .steps-deco-star-tr-y   { top: 18px;  right: 60px;  width: 38px; transform: rotate(14deg); }
.steps-v2 .steps-deco-star-tr-p   { top: 64px;  right: 14px;  width: 38px; transform: rotate(-12deg); }

/* Bottom-left cluster: blue star + purple squiggle (yellow strokes dropped — looked random) */
.steps-v2 .steps-deco-star-bl     { bottom: 96px; left: 22px;  width: 38px; transform: rotate(-14deg); }
.steps-v2 .steps-deco-squiggle-bl { bottom: 56px; left: 70px;  width: 60px; transform: rotate(6deg); }
.steps-v2 .steps-deco-stroke-bl   { display: none; }

/* Bottom-right cluster: outline pink heart + green squiggle */
.steps-v2 .steps-deco-heart-br    { bottom: 90px; right: 22px;  width: 42px; transform: rotate(12deg); }
.steps-v2 .steps-deco-squiggle-br { bottom: 56px; right: 70px;  width: 62px; transform: rotate(-10deg); }

/* ── Tablet (2-column doesn't read well with full-bleed graphics) ──── */
@media (max-width: 960px) {
  .steps-v2 .steps-grid { grid-template-columns: 1fr; gap: 22px; max-width: 460px; margin: 0 auto; }
  .steps-v2 .step-card  { padding: 26px 22px 24px; }
  .steps-v2 .step-graphic { max-width: 220px; }
  /* Pull a couple of decorations in tighter; hide the rest                */
  .steps-v2 .steps-deco-arrow-tl,
  .steps-v2 .steps-deco-star-tr-p,
  .steps-v2 .steps-deco-stroke-bl,
  .steps-v2 .steps-deco-squiggle-bl,
  .steps-v2 .steps-deco-squiggle-br { display: none; }
}

/* ── Mobile (≤640px) — hide all loose decorations, keep card-level    */
@media (max-width: 640px) {
  .steps-v2 .steps-title-sep { height: 14px; margin-bottom: 24px; }
  .steps-v2 .step-badge-img  { width: 80px; }
  .steps-v2 .step-graphic    { max-width: 200px; }
  .steps-v2 .step-card h3    { font-size: 1.05rem; }
  .steps-v2 .step-tape       { width: 72px; }
  .steps-v2 .steps-privacy {
    margin-top: 28px;
    padding: 10px 16px 10px 12px;
    border-radius: 16px;
    align-items: flex-start;
  }
  .steps-v2 .steps-privacy span { font-size: 0.88rem; }
  .steps-v2 .steps-privacy-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .steps-v2 .steps-deco { display: none; }
}
