:root {
  --paper: #f6ecd9;
  --paper-soft: #fbf5e7;
  --paper-deep: #ead9b6;
  --ink: #1e4651;
  --ink-soft: #355b66;
  --ink-mute: #6a8189;
  --sky: #c8e2eb;
  --sky-deep: #9ec9d6;
  --avocado: #8aa854;
  --avocado-deep: #5e7a3a;
  --butter: #f3d875;
  --butter-deep: #e4bc3a;
  --tomato: #c75847;
  --rye: #c89466;
  --rye-deep: #94633b;
  --berry: #b14d6e;
  --shadow: 0 14px 30px -18px rgba(30, 70, 81, 0.35);
  --shadow-deep: 0 30px 60px -30px rgba(30, 70, 81, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 226, 235, 0.45), transparent 38%),
    radial-gradient(circle at 92% 30%, rgba(243, 216, 117, 0.35), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(138, 168, 84, 0.18), transparent 40%),
    var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Caprasimo', 'Georgia', serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }

.hand {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--ink);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--ink-soft);
  border-radius: 2px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 236, 217, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 70, 81, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Caprasimo', serif;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}
.nav-brand img { width: 44px; height: 44px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a { color: inherit; text-decoration: none; cursor: pointer; }
.nav-links a:hover { color: var(--ink); }

/* ---------- BUTTON ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 0 0 #0d2a31;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 0 #0d2a31; }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 0 #0d2a31; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 4px 0 0 rgba(30, 70, 81, 0.18);
}
.btn-ghost:hover { box-shadow: 0 6px 0 0 rgba(30, 70, 81, 0.22); background: rgba(30, 70, 81, 0.04); }

.btn-butter {
  background: var(--butter);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 0 4px 0 0 var(--butter-deep);
}
.btn-butter:hover { box-shadow: 0 6px 0 0 var(--butter-deep); }

.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--paper-soft);
  border: 1.5px solid rgba(30, 70, 81, 0.18);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.hero-kicker .pill {
  background: var(--sky);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(46px, 6.4vw, 84px);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-title .squiggle {
  position: relative;
  white-space: nowrap;
}
.hero-title .squiggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 12px;
  background: 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 30 -2, 60 14, 100 6 S 170 -2, 198 8' fill='none' stroke='%23e4bc3a' stroke-width='4' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}
.hero-title em {
  font-style: normal;
  color: var(--avocado-deep);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-proof {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-proof .stack {
  display: flex;
}
.hero-proof .stack span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid var(--paper);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}
.hero-proof .stack span:first-child { margin-left: 0; }
.hero-proof .copy { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.hero-proof .stars { color: var(--butter-deep); font-size: 14px; letter-spacing: 1px; }

/* hero visual */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin-left: auto;
}
.hero-art .frame {
  position: absolute;
  inset: 0;
  background: var(--paper-soft);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(30, 70, 81, 0.08);
  transform: rotate(-2.2deg);
  overflow: hidden;
}
.hero-art .frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(212, 173, 127, 0.06), rgba(212, 173, 127, 0.06) 8px, transparent 8px, transparent 16px);
  pointer-events: none;
}
.hero-art img.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.hero-art .sticker {
  position: absolute;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  box-shadow: 0 6px 0 0 var(--butter-deep);
  transform: rotate(8deg);
  z-index: 2;
}
.hero-art .sticker.s1 { top: -16px; left: -20px; transform: rotate(-9deg); background: var(--sky); box-shadow: 0 6px 0 0 var(--sky-deep); }
.hero-art .sticker.s2 { bottom: 12%; right: -28px; }

.hero-art .stamp {
  position: absolute;
  bottom: -22px;
  left: 14px;
  width: 96px;
  height: 96px;
  background: var(--paper-soft);
  border: 2px dashed var(--ink-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Caprasimo', serif;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.1;
  transform: rotate(-12deg);
  padding: 10px;
}

.hero-character {
  position: absolute;
  bottom: -36px;
  right: -32px;
  width: 160px;
  z-index: 3;
  transform: rotate(8deg);
  filter: drop-shadow(0 10px 14px rgba(30, 70, 81, 0.15));
}

/* ---------- TICKER / VALUE STRIP ---------- */
.values {
  border-top: 1.5px dashed rgba(30, 70, 81, 0.25);
  border-bottom: 1.5px dashed rgba(30, 70, 81, 0.25);
  padding: 18px 0;
  background: rgba(251, 245, 231, 0.45);
}
.values-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.value-item .ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--ink);
}

/* ---------- SECTION ---------- */
.section { padding: 90px 0; position: relative; }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-header h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  max-width: 700px;
}
.section-header .lede {
  max-width: 380px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- POSTER GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.gallery .poster-card {
  background: var(--paper-soft);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 70, 81, 0.08);
  transition: transform 0.3s ease;
}
.gallery .poster-card:hover { transform: translateY(-4px) rotate(-0.4deg); }
.gallery .poster-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.gallery .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px 4px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 700;
}
.gallery .meta .tag {
  background: var(--sky);
  color: var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery .poster-card.lead { grid-row: span 1; transform: rotate(-1.2deg); }
.gallery .poster-card.b { transform: rotate(0.6deg); }
.gallery .poster-card.c { transform: rotate(-0.5deg); }

/* ---------- PAST-ISSUE CARDS — three personalities ---------- */
.pi-card { position: relative; }
.pi-card .pi-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
}
.pi-card .pi-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  border-radius: 0;
}

/* ----- APRIL · VEILED VAULT ----- */
.pi-veiled .pi-frame > img {
  filter: blur(18px) saturate(0.55) brightness(0.7) contrast(0.9);
  transform: scale(1.12);
}
.pi-veiled .pi-kraft {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(118deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(28deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, #b78256 0%, #9a6638 55%, #7d4f29 100%);
}
.pi-veiled .pi-kraft-fibres {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(255,255,255,0.06) 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(0,0,0,0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 78%, rgba(255,255,255,0.05) 0 1.2px, transparent 2px),
    radial-gradient(circle at 88% 62%, rgba(0,0,0,0.1) 0 1px, transparent 2px);
  background-size: 32px 28px, 41px 36px, 26px 30px, 38px 33px;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.pi-veiled .pi-stamp {
  position: absolute;
  border: 2.5px double rgba(20, 25, 30, 0.7);
  color: rgba(20, 25, 30, 0.78);
  padding: 5px 9px 4px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  line-height: 1;
  background: rgba(245, 226, 195, 0.18);
}
.pi-veiled .pi-stamp-tl { top: 14px; left: 14px; transform: rotate(-7deg); }
.pi-veiled .pi-stamp-br { bottom: 18px; right: 14px; transform: rotate(-9deg); border-color: rgba(120, 30, 20, 0.85); color: rgba(120, 30, 20, 0.92); }

.pi-veiled .pi-redact {
  position: absolute;
  background: #1a1f24;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.pi-veiled .pi-redact-1 { top: 30%; left: 18%; width: 38%; }
.pi-veiled .pi-redact-2 { top: 36%; left: 28%; width: 28%; }
.pi-veiled .pi-redact-3 { top: 62%; left: 14%; width: 22%; height: 10px; }

.pi-veiled .pi-twine {
  position: absolute;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.18) 0%,
      rgba(245, 230, 200, 0.95) 20%,
      rgba(220, 200, 160, 1) 50%,
      rgba(245, 230, 200, 0.95) 80%,
      rgba(0,0,0,0.18) 100%);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.4),
    inset 0 -1.5px 0 rgba(0,0,0,0.25),
    0 4px 10px rgba(0,0,0,0.25);
}
.pi-veiled .pi-twine-v {
  top: -6px; bottom: -6px;
  left: 50%;
  width: 9px;
  margin-left: -4.5px;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(245, 230, 200, 0.95) 8%,
      rgba(220, 200, 160, 1) 50%,
      rgba(245, 230, 200, 0.95) 92%,
      rgba(0,0,0,0.18) 100%);
  box-shadow:
    inset 1.5px 0 0 rgba(255,255,255,0.4),
    inset -1.5px 0 0 rgba(0,0,0,0.25),
    4px 0 10px rgba(0,0,0,0.25);
}
.pi-veiled .pi-twine-h {
  left: -6px; right: -6px;
  top: 50%;
  height: 9px;
  margin-top: -4.5px;
}

.pi-veiled .pi-wax {
  position: absolute;
  width: 116px;
  height: 116px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,0.25) 0%, transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.35) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, #c64f37 0%, #a23a26 55%, #7a2818 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f9e4c8;
  box-shadow:
    0 10px 18px rgba(0,0,0,0.35),
    inset 0 0 0 3px rgba(0,0,0,0.18),
    inset 0 2px 4px rgba(255,255,255,0.12);
}
.pi-veiled .pi-wax::before {
  content: '';
  position: absolute;
  inset: -16px;
  background:
    radial-gradient(circle at 6% 50%, rgba(162,58,38,0.95) 0 6px, transparent 8px),
    radial-gradient(circle at 96% 70%, rgba(162,58,38,0.95) 0 8px, transparent 10px),
    radial-gradient(circle at 80% 4%, rgba(162,58,38,0.95) 0 5px, transparent 7px),
    radial-gradient(circle at 18% 96%, rgba(162,58,38,0.95) 0 6px, transparent 8px),
    radial-gradient(circle at 50% -4%, rgba(162,58,38,0.95) 0 7px, transparent 9px);
  z-index: -1;
  filter: blur(0.3px);
}
.pi-veiled .pi-wax-mono {
  font-family: 'Caprasimo', serif;
  font-size: 44px;
  line-height: 0.9;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.pi-veiled .pi-wax-sub {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-top: 2px;
}

.pi-peek {
  position: absolute;
  top: 18px;
  right: -16px;
  font-size: 22px;
  color: var(--ink);
  background: var(--butter);
  padding: 3px 12px 5px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  transform: rotate(6deg);
  z-index: 3;
  white-space: nowrap;
}
.pi-redact-inline {
  display: inline-block;
  background: var(--ink);
  color: transparent;
  border-radius: 2px;
  padding: 2px 4px;
  margin-left: 4px;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  user-select: none;
}
.pi-tag-vault {
  background: var(--ink) !important;
  color: var(--paper-soft) !important;
}

/* ----- MAY · SPRING BUNCH ----- */
.pi-spring .pi-spring-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(138, 168, 84, 0.28) 0%, transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(243, 216, 117, 0.35) 0%, transparent 42%),
    linear-gradient(170deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.04) 100%);
  pointer-events: none;
}
.pi-spring .pi-leaf {
  position: absolute;
  width: 56px;
  height: 28px;
  background: var(--avocado);
  border-radius: 0 100% 0 100%;
  border: 1.5px solid var(--ink);
  box-shadow: 0 4px 8px rgba(30, 70, 81, 0.18);
}
.pi-spring .pi-leaf::after {
  content: '';
  position: absolute;
  inset: 4px 6px;
  border-top: 1.5px solid var(--avocado-deep);
  border-radius: 0 100% 0 0;
}
.pi-spring .pi-leaf-1 { top: 14px; right: 18px; transform: rotate(28deg); }
.pi-spring .pi-leaf-2 { top: 48px; right: -10px; width: 44px; height: 22px; transform: rotate(-12deg); background: var(--avocado-deep); }
.pi-spring .pi-leaf-3 { top: 86px; right: 32px; width: 38px; height: 20px; transform: rotate(48deg); }

.pi-sticker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Caprasimo', serif;
  color: var(--paper-soft);
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
}
.pi-sticker-spring {
  bottom: 14px;
  left: 14px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #9bbc63, #6e8d3f 80%);
  transform: rotate(-8deg);
  padding: 8px;
}
.pi-tag-spring {
  background: var(--avocado) !important;
  color: var(--paper-soft) !important;
}

/* ----- JUNE · SUMMER BRUNCH ----- */
.pi-summer .pi-summer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 90%, rgba(199, 88, 71, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 88% 18%, rgba(243, 216, 117, 0.4) 0%, transparent 38%),
    linear-gradient(190deg, rgba(255, 220, 150, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.pi-summer .pi-sun {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 0deg,
      var(--butter) 0deg 22deg, transparent 22deg 45deg,
      var(--butter) 45deg 67deg, transparent 67deg 90deg,
      var(--butter) 90deg 112deg, transparent 112deg 135deg,
      var(--butter) 135deg 157deg, transparent 157deg 180deg,
      var(--butter) 180deg 202deg, transparent 202deg 225deg,
      var(--butter) 225deg 247deg, transparent 247deg 270deg,
      var(--butter) 270deg 292deg, transparent 292deg 315deg,
      var(--butter) 315deg 337deg, transparent 337deg 360deg);
  border-radius: 50%;
  mask: radial-gradient(circle, transparent 30%, black 32%);
  -webkit-mask: radial-gradient(circle, transparent 30%, black 32%);
  filter: drop-shadow(0 4px 6px rgba(30, 70, 81, 0.25));
}
.pi-summer .pi-sun-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #ffe09a, #e9b94d 80%);
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}
.pi-sticker-summer {
  bottom: 14px;
  left: 14px;
  padding: 12px 18px 14px;
  border-radius: 16px;
  background: linear-gradient(170deg, #d96b50, #b34433);
  transform: rotate(-3deg);
  min-width: 116px;
}
.pi-tag-summer {
  background: var(--tomato) !important;
  color: var(--paper-soft) !important;
}

/* ----- APRIL · FUNNY FACES ----- */
.pi-april .pi-april-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 226, 235, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(158, 201, 214, 0.35) 0%, transparent 42%),
    linear-gradient(200deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.04) 100%);
  pointer-events: none;
}
.pi-april .pi-eye {
  position: absolute;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}
.pi-april .pi-eye::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--ink);
  top: 22%;
  left: 22%;
  width: 38%;
  height: 38%;
}
.pi-april .pi-eye-1 { top: 14px; right: 18px; width: 30px; height: 30px; }
.pi-april .pi-eye-2 { top: 52px; right: 56px; width: 22px; height: 22px; }
.pi-april .pi-eye-2::after { top: 30%; left: 50%; }
.pi-april .pi-eye-3 { top: 38px; right: 12px; width: 16px; height: 16px; }
.pi-april .pi-eye-3::after { top: 18%; left: 35%; }

.pi-sticker-april {
  bottom: 14px;
  left: 14px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b8d8e0, #6da4b3 80%);
  color: var(--ink);
  transform: rotate(-6deg);
  padding: 8px;
}
.pi-tag-april {
  background: var(--sky-deep) !important;
  color: var(--ink) !important;
}
.pi-tag-now {
  background: var(--ink) !important;
  color: var(--paper-soft) !important;
  position: relative;
}
.pi-tag-now::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fd07a;
  margin-right: 7px;
  vertical-align: 1px;
  box-shadow: 0 0 0 2px rgba(111, 208, 122, 0.3);
  animation: pi-pulse 1.8s ease-in-out infinite;
}
@keyframes pi-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(111, 208, 122, 0.3); }
  50% { box-shadow: 0 0 0 5px rgba(111, 208, 122, 0); }
}

/* "In post now" rosette for current issue */
.pi-now-rosette {
  position: absolute;
  top: -18px;
  left: -14px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--butter);
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Caprasimo', serif;
  font-size: 18px;
  line-height: 0.95;
  color: var(--ink);
  transform: rotate(-12deg);
  z-index: 2;
}
.pi-now-rosette::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1.5px dashed var(--ink);
  opacity: 0.5;
}

/* Smoother hover for these — no rotate snap */
.gallery .poster-card.pi-card:hover { transform: translateY(-6px) rotate(var(--pi-rest, 0deg)); }
.gallery .poster-card.lead.pi-card { --pi-rest: -1.2deg; }
.gallery .poster-card.b.pi-card { --pi-rest: 0.6deg; }
.gallery .poster-card.c.pi-card { --pi-rest: -0.5deg; }

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--paper-soft);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 70, 81, 0.06);
}
.how::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><circle cx='2' cy='2' r='1' fill='%231e4651' opacity='0.1'/></svg>") repeat;
  pointer-events: none;
  opacity: 0.6;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.step {
  position: relative;
}
.step .num {
  font-family: 'Caprasimo', serif;
  font-size: 64px;
  color: var(--ink);
  line-height: 1;
  display: block;
  position: relative;
}
.step .num::after {
  content: '';
  width: 36px;
  height: 36px;
  background: var(--butter);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: -10px;
  z-index: -1;
  opacity: 0.7;
}
.step h3 {
  font-size: 22px;
  margin: 14px 0 8px;
}
.step p { color: var(--ink-soft); font-size: 15px; }
.step .ico-large {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--sky);
  border: 2px solid var(--ink);
  border-radius: 16px;
  margin-bottom: 16px;
  transform: rotate(-4deg);
}
.step:nth-child(2) .ico-large { background: var(--butter); transform: rotate(3deg); }
.step:nth-child(3) .ico-large { background: var(--avocado); color: var(--paper-soft); transform: rotate(-2deg); }
.step:nth-child(4) .ico-large { background: var(--tomato); color: var(--paper-soft); transform: rotate(5deg); }

/* ---------- BUILDER ---------- */
.builder-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.builder-card {
  background: var(--paper-soft);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 70, 81, 0.08);
}
.builder-canvas {
  position: relative;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at center, var(--paper) 0%, var(--paper-deep) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
}
.bread-stage {
  position: relative;
  width: 78%;
  aspect-ratio: 1.5;
}
.bread {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #d4ad7f, #b88553);
  border-radius: 18px 22px 24px 20px / 30px 26px 22px 28px;
  box-shadow:
    inset 0 -6px 0 rgba(0,0,0,0.08),
    inset 0 6px 0 rgba(255,255,255,0.18),
    0 14px 30px -10px rgba(30,70,81,0.3);
}
.bread::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 14px 18px 20px 16px / 26px 22px 18px 24px;
  background:
    radial-gradient(circle at 22% 30%, rgba(255,255,255,0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 60% 24%, rgba(0,0,0,0.05) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 60%, rgba(0,0,0,0.05) 0 4px, transparent 5px),
    radial-gradient(circle at 36% 70%, rgba(255,255,255,0.16) 0 3px, transparent 4px),
    linear-gradient(180deg, #e9c393, #c89466);
}
.spread-layer {
  position: absolute;
  inset: 12px 18px;
  border-radius: 14px 18px 20px 16px / 26px 22px 18px 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.spread-layer.active { opacity: 1; }

.toppings-layer { position: absolute; inset: 0; pointer-events: none; }
.topping {
  position: absolute;
  font-size: 36px;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.18));
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.builder-controls h3 {
  font-size: 28px;
  margin-bottom: 6px;
}
.builder-controls .step-label {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--tomato);
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}
.choice-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid rgba(30, 70, 81, 0.22);
  background: var(--paper);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--ink);
}
.choice:hover { border-color: var(--ink); transform: translateY(-2px); }
.choice.selected {
  background: var(--ink);
  color: var(--paper-soft);
  border-color: var(--ink);
}
.choice.selected .dot { background: var(--butter); }
.choice .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(30, 70, 81, 0.12);
}

/* illustration-thumb variant: bigger choice button with mini SVG */
.choice-illo {
  padding: 8px 14px 8px 8px;
  gap: 10px;
}
.illo-thumb {
  width: 44px;
  height: 44px;
  background: var(--paper-soft);
  border: 1.5px solid rgba(30, 70, 81, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.choice-illo.selected .illo-thumb {
  background: var(--paper-soft);
  border-color: var(--butter);
}
.choice-row-illo .choice-illo svg { transform: scale(0.95); }

.builder-saved {
  margin-top: 16px;
  padding: 16px;
  background: var(--sky);
  border-radius: 14px;
  border: 1.5px solid var(--ink);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* ---------- VIDEO (replaces builder) ---------- */
.video-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.video-frame {
  position: relative;
  background: var(--paper-soft);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow-deep);
  border: 1.5px solid rgba(30, 70, 81, 0.1);
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(212, 173, 127, 0.05), rgba(212, 173, 127, 0.05) 8px, transparent 8px, transparent 16px);
  pointer-events: none;
  border-radius: 22px;
}
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--butter);
  border: 3px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 0 0 var(--butter-deep), 0 30px 60px -10px rgba(30, 70, 81, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 3;
}
.video-play:hover { transform: scale(1.06); box-shadow: 0 8px 0 0 var(--butter-deep), 0 40px 70px -10px rgba(30, 70, 81, 0.5); }
.video-play:active { transform: scale(0.98); box-shadow: 0 3px 0 0 var(--butter-deep); }
.video-play svg { margin-left: 4px; }

.video-sticker {
  position: absolute;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  box-shadow: 0 4px 0 0 var(--ink);
  z-index: 2;
}
.video-sticker.s-tl { top: -16px; left: 24px; background: var(--sky); transform: rotate(-4deg); }
.video-sticker.s-br { bottom: -14px; right: 28px; background: var(--butter); transform: rotate(3deg); }

.video-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 8px auto 0;
  padding: 0 8px;
}
.video-foot-item p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .video-foot { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- TIERS ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 0 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier.featured {
  background: var(--sky);
  box-shadow: 0 10px 0 0 var(--ink);
  transform: translateY(-12px);
}
.tier .ribbon {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--tomato);
  color: var(--paper-soft);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
}
.tier-name {
  font-family: 'Caprasimo', serif;
  font-size: 26px;
}
.tier-tag {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--ink-soft);
  margin-top: -8px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 4px;
}
.tier-price .num {
  font-family: 'Caprasimo', serif;
  font-size: 52px;
  color: var(--ink);
  line-height: 1;
}
.tier-price .per { color: var(--ink-soft); font-weight: 700; font-size: 14px; }
.tier-sub { color: var(--ink-soft); font-weight: 600; font-size: 13px; margin-top: -4px; }
.tier ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.tier ul li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--avocado);
  color: var(--paper-soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  margin-top: 1px;
}
.tier .btn { margin-top: 10px; width: 100%; }

.tier-savings {
  display: inline-block;
  background: var(--butter);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ---------- FAMILY SECTION ---------- */
.family {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.family-art {
  position: relative;
  aspect-ratio: 1;
  background: var(--avocado);
  border-radius: 28px;
  border: 2px solid var(--ink);
  overflow: hidden;
  padding: 28px;
  box-shadow: var(--shadow-deep);
}
.family-art .crumb {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--paper-soft);
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.family-art .badge {
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 22px;
  position: absolute;
  box-shadow: 0 6px 0 0 var(--ink);
}
.family-art .b1 { top: 28px; left: 28px; transform: rotate(-4deg); }
.family-art .b2 { top: 30%; right: 28px; transform: rotate(5deg); }
.family-art .b3 { bottom: 28px; left: 18%; transform: rotate(-2deg); }

.family h2 { margin-bottom: 20px; }
.family ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.family ul li { display: flex; gap: 14px; font-size: 16px; color: var(--ink-soft); font-weight: 600; align-items: flex-start; }
.family ul li .num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--butter);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Caprasimo', serif;
  font-size: 15px;
  border: 1.5px solid var(--ink);
}

/* ---------- TESTIMONIALS ---------- */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test {
  background: var(--paper-soft);
  border: 1.5px solid rgba(30, 70, 81, 0.12);
  border-radius: 22px;
  padding: 26px;
  position: relative;
}
.test::before {
  content: '"';
  position: absolute;
  top: -10px; left: 18px;
  font-family: 'Caprasimo', serif;
  font-size: 90px;
  color: var(--butter-deep);
  line-height: 1;
}
.test p { font-size: 16px; color: var(--ink); position: relative; z-index: 1; }
.test footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.test footer .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sky);
  display: grid; place-items: center;
  font-family: 'Caprasimo', serif;
  font-size: 16px;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.test footer .who { font-weight: 800; font-size: 14px; }
.test footer .ctx { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.test .stars { color: var(--butter-deep); margin-top: 8px; font-size: 14px; letter-spacing: 2px; }

/* ---------- FAQ ---------- */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper-soft);
  border-radius: 16px;
  border: 1.5px solid rgba(30, 70, 81, 0.12);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Caprasimo', serif;
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.2s ease;
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--tomato); color: var(--paper-soft); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 24px 22px; }

/* ---------- CTA ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper-soft);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: var(--avocado);
  border-radius: 50%;
  left: -120px; top: -120px;
  opacity: 0.85;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  background: var(--butter);
  border-radius: 50%;
  right: -80px; bottom: -100px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper-soft); font-size: clamp(36px, 4.4vw, 60px); }
.cta-band p { color: rgba(251, 245, 231, 0.78); max-width: 540px; font-size: 17px; }
.cta-band .btn { background: var(--butter); color: var(--ink); border-color: var(--butter); box-shadow: 0 4px 0 0 var(--butter-deep); }

/* ---------- FOOTER ---------- */
.footer {
  padding: 56px 0 32px;
  border-top: 1.5px dashed rgba(30, 70, 81, 0.25);
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Caprasimo', serif;
  font-size: 26px;
}
.footer-brand img { width: 52px; height: 52px; }
.footer-brand p { font-size: 14px; color: var(--ink-soft); max-width: 320px; }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--ink); font-weight: 600; font-size: 14.5px; text-decoration: none; cursor: pointer; }
.footer-col a:hover { color: var(--avocado-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  padding-top: 24px;
  border-top: 1px solid rgba(30, 70, 81, 0.12);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-hero {
  padding: 64px 0 18px;
  position: relative;
}
.contact-hero .eyebrow { margin-bottom: 18px; }
.contact-hero h1 {
  font-family: 'Caprasimo', serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  max-width: 720px;
}
.contact-hero h1 em { font-style: normal; color: var(--avocado-deep); }
.contact-hero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 20px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 30px;
}

/* form card */
.form-card {
  position: relative;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 0 8px 0 0 rgba(30, 70, 81, 0.16);
  padding: 38px 38px 40px;
}
.form-card > h2 {
  font-family: 'Caprasimo', serif;
  font-size: 28px;
  margin-bottom: 4px;
}
.form-card .form-lede {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 26px;
}

.field { margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--ink-mute);
  font-size: 11px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 2px solid rgba(30, 70, 81, 0.22);
  border-radius: 13px;
  background: var(--paper);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); font-weight: 500; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--avocado);
  background: var(--paper-soft);
  box-shadow: 0 0 0 4px rgba(138, 168, 84, 0.18);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231e4651' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(199, 88, 71, 0.15);
}
.field .err {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tomato);
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-foot .btn { font-size: 17px; }
.form-foot .privacy {
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 230px;
  line-height: 1.4;
}

/* success state */
.form-success {
  text-align: center;
  padding: 30px 20px 24px;
  animation: contactPop 0.4s cubic-bezier(0.18, 0.9, 0.32, 1.4) both;
}
@keyframes contactPop {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: none; }
}
.form-success .seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--avocado);
  border: 2px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--avocado-deep);
  display: grid;
  place-items: center;
  color: var(--paper-soft);
  transform: rotate(-6deg);
}
.form-success h2 { font-family: 'Caprasimo', serif; font-size: 30px; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); font-size: 16px; max-width: 380px; margin: 0 auto 24px; }
.form-success .hand { font-size: 26px; color: var(--avocado-deep); display: block; margin-bottom: 24px; }

/* contact side cards */
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 5px 0 0 rgba(30, 70, 81, 0.14);
}
.contact-card .c-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 2px solid var(--ink);
  color: var(--ink);
  transform: rotate(-4deg);
}
.contact-card:nth-child(1) .c-ico { background: var(--butter); }
.contact-card:nth-child(2) .c-ico { background: var(--sky); transform: rotate(3deg); }
.contact-card:nth-child(3) .c-ico { background: var(--avocado); color: var(--paper-soft); transform: rotate(-3deg); }
.contact-card h3 { font-family: 'Caprasimo', serif; font-size: 19px; margin-bottom: 3px; }
.contact-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.contact-card a { color: var(--avocado-deep); font-weight: 800; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

.contact-note {
  position: relative;
  background: var(--sky);
  border: 2px dashed var(--ink-soft);
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 4px;
}
.contact-note .hand { font-size: 24px; color: var(--ink); display: block; line-height: 1.25; }
.contact-note .sticker-stamp {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Caprasimo', serif;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 4px 0 0 var(--butter-deep);
  transform: rotate(-7deg);
}

/* ---------- OUR STORY PAGE ---------- */
.story-hero {
  padding: 72px 0 8px;
  text-align: center;
  position: relative;
}
.story-hero .eyebrow { margin-bottom: 20px; }
.story-hero .eyebrow::before { display: none; }
.story-hero h1 {
  font-family: 'Caprasimo', serif;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
  max-width: 100%;
}
.story-hero h1 em { font-style: normal; color: var(--avocado-deep); }
.story-hero .leek-stamp {
  position: absolute;
  bottom: -22px;
  right: 4px;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  box-shadow: 0 5px 0 0 var(--butter-deep);
  transform: rotate(-5deg);
  white-space: nowrap;
}
.story-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 0 60px;
  text-align: center;
}
.story-body p {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
}
.story-body p .drop {
  float: left;
  font-family: 'Caprasimo', serif;
  font-size: 72px;
  line-height: 0.7;
  padding: 8px 12px 0 0;
  color: var(--avocado-deep);
}
.story-body .sign {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 30px;
  color: var(--avocado-deep);
  margin-top: 36px;
  display: block;
}
.story-divider {
  width: 64px;
  height: 4px;
  background: var(--butter-deep);
  border-radius: 4px;
  margin: 0 auto 36px;
}

/* ---------- STOCKISTS / SHOP PAGE ---------- */
.shop-hero {
  padding: 64px 0 10px;
  position: relative;
}
.shop-hero .eyebrow { margin-bottom: 18px; }
.shop-hero h1 {
  font-family: 'Caprasimo', serif;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
  max-width: 720px;
}
.shop-hero h1 em { font-style: normal; color: var(--avocado-deep); }
.shop-hero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 20px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 0 6px 0 0 rgba(30, 70, 81, 0.14);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: 0 10px 0 0 rgba(30, 70, 81, 0.14); }
.product .ph {
  position: relative;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
  background: var(--sky);
}
.product:nth-child(6n+1) .ph { background: var(--sky); }
.product:nth-child(6n+2) .ph { background: var(--butter); }
.product:nth-child(6n+3) .ph { background: #dfe7cb; }
.product:nth-child(6n+4) .ph { background: #f0ddd0; }
.product:nth-child(6n+5) .ph { background: #e6dcc2; }
.product:nth-child(6n+6) .ph { background: #d8e6e2; }
.product .ph image-slot { display: block; width: 100%; height: 100%; }
.product .price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Caprasimo', serif;
  font-size: 17px;
  color: var(--ink);
  box-shadow: 0 4px 0 0 rgba(30, 70, 81, 0.18);
  transform: rotate(4deg);
}
.product .tag-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper-soft);
  border-radius: 999px;
  padding: 4px 11px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product .body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product .body h3 { font-family: 'Caprasimo', serif; font-size: 21px; margin-bottom: 6px; }
.product .body p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; flex: 1; }
.product .add {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.product .add.added {
  background: var(--avocado);
  border-color: var(--ink);
  color: var(--paper-soft);
  box-shadow: 0 4px 0 0 var(--avocado-deep);
}

/* floating basket */
.basket-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 13px 22px 13px 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 0 0 #0d2a31;
  transition: transform 0.16s ease, box-shadow 0.2s ease;
}
.basket-fab:hover { transform: translateY(-2px); box-shadow: 0 8px 0 0 #0d2a31; }
.basket-fab .count {
  background: var(--butter);
  color: var(--ink);
  border-radius: 999px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}
.basket-fab.bump { animation: basketBump 0.4s ease; }
@keyframes basketBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.12) translateY(-3px); }
  100% { transform: scale(1); }
}

.shop-foot-note {
  text-align: center;
  margin-top: 46px;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-soft);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-grid, .builder-wrap, .family { grid-template-columns: 1fr; }
  .gallery, .how-grid, .tiers-grid, .tests-grid, .footer-grid { grid-template-columns: 1fr; }
  .how-grid, .tiers-grid, .tests-grid { grid-template-columns: 1fr 1fr; }
  .tier.featured { transform: none; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .how { padding: 36px 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .how-grid, .tiers-grid, .tests-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 22px 30px; }
  .shop-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────────────────────── */
/* CHECKOUT FLOW                                                            */
/* ─────────────────────────────────────────────────────────────────────── */

.ck-shell {
  position: fixed;
  inset: 0;
  background: rgba(30, 70, 81, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  animation: ckFadeIn 0.2s ease;
}
@keyframes ckFadeIn { from { opacity: 0 } to { opacity: 1 } }

.ck-stage {
  width: 100%;
  max-width: 1180px;
  background: var(--paper);
  border-radius: 28px;
  border: 2px solid var(--ink);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
  overflow: hidden;
  margin: 20px 0;
  animation: ckSlide 0.3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes ckSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.ck-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--paper-soft);
  border-bottom: 1.5px dashed rgba(30, 70, 81, 0.25);
  gap: 16px;
}
.ck-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Caprasimo', serif;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
.ck-brand img { width: 40px; height: 40px; }
.ck-secure {
  font-size: 13px;
  font-weight: 700;
  color: var(--avocado-deep);
}
.ck-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  font-size: 18px; font-weight: 800;
  color: var(--ink);
  display: grid; place-items: center;
}
.ck-close:hover { background: var(--tomato); color: var(--paper-soft); border-color: var(--tomato); }

/* ── Stepper ──────────────────────────────────────────────────────────── */
.ck-stepper {
  display: flex;
  align-items: center;
  padding: 24px 36px 8px;
  gap: 10px;
  flex-wrap: wrap;
}
.ck-step {
  display: flex; align-items: center; gap: 8px;
  background: none;
  border: none;
  cursor: default;
  padding: 4px 0;
  font-family: inherit;
  color: var(--ink-soft);
}
.ck-step.done { cursor: pointer; color: var(--avocado-deep); }
.ck-step.current .ck-step-num { background: var(--ink); color: var(--paper-soft); }
.ck-step.done .ck-step-num { background: var(--avocado); color: var(--paper-soft); border-color: var(--avocado-deep); }
.ck-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1.5px solid rgba(30, 70, 81, 0.25);
  display: grid; place-items: center;
  font-family: 'Caprasimo', serif;
  font-size: 14px;
  color: var(--ink-soft);
}
.ck-step-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.ck-step.current .ck-step-label { color: var(--ink); }
.ck-step-line {
  flex: 1;
  height: 2px;
  background: rgba(30, 70, 81, 0.18);
  min-width: 20px;
  max-width: 60px;
  border-radius: 2px;
}
.ck-step-line.done { background: var(--avocado); }

/* ── Body layout ──────────────────────────────────────────────────────── */
.ck-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  padding: 24px 36px 40px;
}
.ck-body-full { grid-template-columns: 1fr; }
.ck-main { min-width: 0; }
.ck-h {
  font-family: 'Caprasimo', serif;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.ck-sub {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0 0 24px;
  max-width: 480px;
}

/* ── Fields ───────────────────────────────────────────────────────────── */
.ck-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ck-field label {
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.ck-field input,
.ck-field select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(30, 70, 81, 0.25);
  background: var(--paper-soft);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ck-field input:focus,
.ck-field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(243, 216, 117, 0.4);
}
.ck-field input.has-error { border-color: var(--tomato); background: rgba(199, 88, 71, 0.06); }
.ck-hint, .ck-error {
  font-size: 12.5px;
  font-weight: 600;
}
.ck-hint { color: var(--ink-soft); }
.ck-error { color: var(--tomato); }
.ck-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ck-card-field .ck-card-input {
  position: relative;
}
.ck-card-input input { width: 100%; padding-right: 90px; }
.ck-card-brand {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--paper-soft);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ── Plan picker ──────────────────────────────────────────────────────── */
.ck-plan-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.ck-plan {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: var(--paper-soft);
  border: 2px solid rgba(30, 70, 81, 0.18);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  position: relative;
}
.ck-plan:hover { border-color: rgba(30, 70, 81, 0.5); transform: translateY(-1px); }
.ck-plan.selected { border-color: var(--ink); background: var(--sky); }
.ck-plan-ribbon {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--tomato);
  color: var(--paper-soft);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
}
.ck-plan-name { font-family: 'Caprasimo', serif; font-size: 20px; color: var(--ink); }
.ck-plan-short { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.ck-plan-price { font-size: 14px; color: var(--ink-soft); font-weight: 700; text-align: right; }
.ck-plan-price b { font-family: 'Caprasimo', serif; font-size: 24px; color: var(--ink); display: block; }
.ck-plan-price small { font-size: 12px; font-weight: 700; }
.ck-plan-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--ink);
  align-self: center;
}
.ck-plan.selected .ck-plan-check { background: var(--ink); color: var(--butter); }

/* ── Toggles & dividers ───────────────────────────────────────────────── */
.ck-toggle-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--paper-soft);
  border-radius: 12px;
  border: 1.5px solid rgba(30, 70, 81, 0.12);
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
  cursor: pointer;
}
.ck-toggle-row input {
  width: 18px; height: 18px;
  accent-color: var(--ink);
  flex-shrink: 0;
  margin-top: 1px;
}
.ck-toggle-row b { color: var(--ink); }
.ck-divider-soft { height: 1.5px; background: rgba(30, 70, 81, 0.12); margin: 24px 0 18px; }
.ck-callout {
  margin: 8px 0 0;
  padding: 16px 18px;
  background: var(--sky);
  border-left: 4px solid var(--ink);
  border-radius: 10px;
}
.ck-callout p { margin: 4px 0 0; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }

/* ── Actions ──────────────────────────────────────────────────────────── */
.ck-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ck-actions .btn { flex: none; }
.ck-actions .btn:last-child { flex: 1; max-width: 280px; }

/* ── Express pay ──────────────────────────────────────────────────────── */
.ck-express {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.ck-pay-btn {
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ck-apple { background: var(--ink); color: var(--paper-soft); }
.ck-gpay { background: var(--paper-soft); color: var(--ink); }
.ck-paypal { background: var(--butter); color: var(--ink); }
.ck-pay-btn:hover { transform: translateY(-1px); }

.ck-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.ck-or::before, .ck-or::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: rgba(30, 70, 81, 0.18);
  border-radius: 2px;
}

/* ── Promo ────────────────────────────────────────────────────────────── */
.ck-promo label {
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.ck-promo-input {
  display: flex;
  gap: 8px;
}
.ck-promo-input input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(30, 70, 81, 0.25);
  background: var(--paper-soft);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ck-promo-input button { box-shadow: 0 3px 0 0 rgba(30, 70, 81, 0.2); }
.ck-promo-ok {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--avocado-deep);
}
.ck-promo code {
  background: var(--paper);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(30, 70, 81, 0.18);
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--ink);
}

/* ── Review ───────────────────────────────────────────────────────────── */
.ck-review {
  background: var(--paper-soft);
  border: 1.5px solid rgba(30, 70, 81, 0.12);
  border-radius: 16px;
  padding: 4px 20px;
}
.ck-review-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(30, 70, 81, 0.15);
  align-items: flex-start;
}
.ck-review-row:last-child { border-bottom: none; }
.ck-review-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 2px;
}
.ck-review-val {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

/* ── Summary sidebar ──────────────────────────────────────────────────── */
.ck-summary {
  position: relative;
}
.ck-summary-card {
  position: sticky;
  top: 20px;
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 0 0 var(--ink);
}
.ck-summary-title {
  font-family: 'Caprasimo', serif;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 14px;
}
.ck-summary-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.ck-mini-poster {
  position: relative;
  width: 64px;
  height: 80px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  flex-shrink: 0;
}
.ck-mini-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ck-mini-badge {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--butter);
  color: var(--ink);
  font-family: 'Caprasimo', serif;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--ink);
}
.ck-summary-h { font-family: 'Caprasimo', serif; font-size: 16px; color: var(--ink); }
.ck-summary-s { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.ck-summary-price { font-family: 'Caprasimo', serif; font-size: 18px; color: var(--ink); }
.ck-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
}
.ck-promo-line { color: var(--avocado-deep); }
.ck-summary-divider {
  height: 1.5px;
  background: rgba(30, 70, 81, 0.18);
  margin: 8px 0;
}
.ck-total {
  font-family: 'Caprasimo', serif;
  font-size: 22px !important;
  color: var(--ink) !important;
  padding: 8px 0 12px;
}
.ck-total span:last-child { font-size: 28px; }
.ck-summary-foot {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 10px 12px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px dashed rgba(30, 70, 81, 0.2);
  margin-top: 4px;
}
.ck-trust {
  display: flex;
  gap: 6px;
  justify-content: center;
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 0 4px;
}
.ck-arrives {
  margin-top: 14px;
  padding: 14px;
  background: var(--sky);
  border-radius: 12px;
  text-align: center;
  border: 1.5px solid var(--ink);
}

/* ── Processing & success ─────────────────────────────────────────────── */
.ck-processing {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ck-spinner {
  width: 56px; height: 56px;
  border: 4px solid rgba(30, 70, 81, 0.15);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: ckSpin 0.8s linear infinite;
  margin-bottom: 8px;
}
@keyframes ckSpin { to { transform: rotate(360deg); } }

.ck-success { max-width: 600px; margin: 0 auto; padding: 24px 0; }
.ck-success-check {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--avocado);
  margin: 0 auto 20px;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--avocado-deep);
}
.ck-success-check svg { color: var(--ink); }
.ck-success-card {
  background: var(--paper-soft);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
  box-shadow: 0 6px 0 0 var(--ink);
}

@media (max-width: 880px) {
  .ck-body { grid-template-columns: 1fr; gap: 24px; padding: 20px 22px 32px; }
  .ck-stepper { padding: 18px 22px 4px; }
  .ck-row-2 { grid-template-columns: 1fr; }
  .ck-plan { grid-template-columns: 1fr auto; }
  .ck-plan-price { grid-column: 1 / -2; text-align: left; padding-top: 0; }
  .ck-step-label { display: none; }
  .ck-step-line { max-width: 30px; }
  .ck-h { font-size: 28px; }
  .ck-review-row { grid-template-columns: 1fr; gap: 4px; }
  .ck-summary-card { position: static; }
}
