/* ─────────────────────────────────────────────────────────────
   PYKE. — Homepage layout.
   Hero · Purchase · How · Gift · Reviews · FAQ · Footer.
   ───────────────────────────────────────────────────────────── */

/* ════════════════════════════════════════
   HERO — split panel
   ════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 740px;
  border-bottom: var(--border);
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  /* Text column flows first on mobile (default DOM order); bag column follows. */
}

.hero-left {
  background: var(--cream);
  padding: 72px var(--gutter) 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(12,12,12,0.025) 40px, rgba(12,12,12,0.025) 41px);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(12,12,12,0.06) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}
.hero-left > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 7.6vw, 124px);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--ink);
}
.hero-title .accent { color: var(--red); }
.hero-title .ink-stroke {
  color: var(--cream);
  -webkit-text-stroke: 0.025em var(--ink);
}

.hero-sub {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-top: 18px;
  opacity: 0.9;
  max-width: 540px;
}

.hero-desc {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
  max-width: 520px;
  margin: 28px 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 560px;
}
@media (max-width: 560px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
.hero-meta .cell {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  border-top: 1.5px solid var(--ink);
  padding-top: 8px;
}
.hero-meta .cell b {
  display: block;
  font-family: var(--display);
  font-weight: normal;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}

/* Hero right — ink stage with hero-scale bag */
.hero-right {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 56px 32px 80px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(244,238,216,0.025) 60px, rgba(244,238,216,0.025) 61px);
  pointer-events: none;
}
.hero-right > * { position: relative; z-index: 1; }
.hero-right .hero-bag-photo {
  justify-self: start;
  align-self: center;
  margin: 0;
  margin-left: clamp(48px, 6vw, 96px);
}
.hr-top-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(244,238,216,0.55);
  text-transform: uppercase;
  line-height: 1.7;
}

@media (max-width: 980px) {
  /* Merge the two hero columns into one unified cream section.
     The dark bag stage and the speedline pattern only make sense as a
     desktop split-panel — on mobile the text and bag sit on the same
     canvas with no seam between them. */
  .hero-right {
    background: var(--cream);
    color: var(--ink);
    padding: 0 var(--gutter) 56px;
    min-height: auto;
    grid-template-rows: auto;
    gap: 0;
  }
  .hero-right::before { display: none; }
  /* Editorial mono strip ("// CHAPTER 01 · MAKE COFFEE · NOT WORK") would
     stack as a third info row between the meta cells and the bag — hide it
     on mobile, keep it on desktop. */
  .hero-right .hr-top-meta { display: none; }
  .hero-right .hero-bag-photo {
    justify-self: center;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════
   SECTION SHELL
   ════════════════════════════════════════ */
.section {
  padding: 96px 0;
  position: relative;
  border-bottom: var(--border);
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}
.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.section-head { margin-bottom: 48px; max-width: 720px; }
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section--ink .section-num { color: rgba(244,238,216,0.55); }

.section-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.section-title .accent { color: var(--red); }
.section-lede {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  max-width: 580px;
}
.section--ink .section-lede { color: rgba(244,238,216,0.78); opacity: 1; }

/* ════════════════════════════════════════
   PURCHASE
   ════════════════════════════════════════ */
.purchase {
  background: var(--cream);
  position: relative;
}
.purchase::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(12,12,12,0.05) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}
.purchase .container { position: relative; }

/* Mode toggle */
.toggle-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  border: var(--border);
  box-shadow: var(--shadow);
  background: var(--cream);
}
.toggle-opt {
  display: block;
  padding: 22px 24px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-align: left;
  background: var(--cream);
  border-right: var(--border);
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
.toggle-opt:last-child { border-right: 0; }
.toggle-opt .sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: 8px;
  text-transform: uppercase;
}
.toggle-opt.active {
  background: var(--ink);
  color: var(--yellow);
}
.toggle-opt.active .sub { color: var(--yellow); opacity: 0.85; }
.toggle-opt .badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .toggle-bar { grid-template-columns: 1fr; }
  .toggle-opt { border-right: 0; border-bottom: var(--border); }
  .toggle-opt:last-child { border-bottom: 0; }
}

/* Product card */
.product-card {
  background: var(--cream);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 880px) {
  .product-card { grid-template-columns: 1fr; }
}

.pc-left {
  background: var(--ink);
  color: var(--cream);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  min-height: 540px;
}
.pc-left::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(244,238,216,0.025) 60px, rgba(244,238,216,0.025) 61px);
  pointer-events: none;
}
.pc-left .pc-bag-photo {
  position: relative;
  z-index: 1;
}
.pc-left .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  z-index: 1;
}
.pc-left .micro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(244,238,216,0.55);
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

/* Free canister badge floating over bag */
.pc-gift {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 130px;
  z-index: 2;
  text-align: center;
  transform: rotate(4deg);
}
.pc-gift .gift-tape {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  background: var(--yellow);
  color: var(--ink);
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pc-gift .cap {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-top: 8px;
  line-height: 1.3;
  text-transform: uppercase;
}
.pc-gift .cap b {
  font-family: var(--display);
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.06em;
  display: block;
}

.pc-right {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 560px) {
  .pc-right { padding: 32px 24px; }
}

.pc-name {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.pc-name .accent { color: var(--red); }
.pc-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 8px;
}

.pc-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pc-notes .note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}

.selector-group { display: flex; flex-direction: column; gap: 10px; }
.selector-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.selector-label b {
  font-family: var(--display);
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.selector-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.selector-row.two { grid-template-columns: 1fr 1fr; }
.selector-opt {
  display: block;
  padding: 14px 10px;
  background: var(--cream);
  border: var(--border-thin);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  line-height: 1.1;
}
.selector-opt small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: normal;
}
.selector-opt:hover { background: rgba(232,212,122,0.4); }
.selector-opt.active {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.selector-opt.active small { color: rgba(232,212,122,0.85); }
.selector-opt.best::after {
  content: 'BEST';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 2px 6px;
  text-transform: uppercase;
}

/* Perks list */
.perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 18px 22px;
  background: var(--yellow);
  border: var(--border-thin);
}
.perks .head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 4px;
}
.perks li {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--red);
}
.perks li b {
  font-family: var(--display);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: inline;
  margin-right: 4px;
}

/* Price row */
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}
.price-row .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-row .big {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.price-row .strike {
  text-decoration: line-through;
  color: var(--ink-faint);
  font-size: 26px;
  margin-right: 8px;
}
.price-row .cadence-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 6px;
  text-transform: uppercase;
}

.pc-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  line-height: 1.6;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  border: var(--border);
  box-shadow: var(--shadow);
  background: var(--cream);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step .num {
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.85;
  color: var(--red);
  letter-spacing: -0.02em;
}
.step .title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
}
.step .body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
}
.step .time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
}

/* ════════════════════════════════════════
   GIFT — yellow background, ink type
   ════════════════════════════════════════ */
.gift {
  background: var(--yellow);
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.gift::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(12,12,12,0.06) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}
.gift .container { position: relative; }
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .gift-grid { grid-template-columns: 1fr; gap: 32px; }
}
.gift-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-visual .can-stage {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
}
.gift-visual .can-stage img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.28));
}
.gift-text { color: var(--ink); }
.gift-text .section-num { color: rgba(26,20,16,0.65); }
.gift-text h2 { color: var(--ink); }
.gift-text h2 .accent { color: var(--red); }
.gift-text p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--ink);
}
.gift-text .gift-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.gift-text .gift-badge-top::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
}
.gift-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 560px) { .gift-details { grid-template-columns: repeat(2, 1fr); } }
.gift-details .cell {
  border-top: 1.5px solid var(--ink);
  padding-top: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(26,20,16,0.65);
  text-transform: uppercase;
}
.gift-details .cell b {
  display: block;
  font-family: var(--display);
  font-weight: normal;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

.review {
  background: var(--cream);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review .stars {
  font-family: var(--mono);
  letter-spacing: 0.2em;
  color: var(--red);
  font-size: 16px;
}
.review .quote {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.review .who {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1.5px solid var(--ink);
  text-transform: uppercase;
}
.review .who b {
  font-family: var(--display);
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-right: 6px;
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-list {
  border-top: 2px solid var(--ink);
}
.faq-item {
  border-bottom: 2px solid var(--ink);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  color: var(--red);
  width: 28px;
  text-align: right;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 0 22px;
  max-width: 720px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--cream);
  padding: 80px 0 24px;
  border-top: var(--border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(12,12,12,0.05) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}
.footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
.footer-mark { font-size: 48px; margin-bottom: 18px; }
.footer-sub {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-block .h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-block a {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  padding: 5px 0;
  text-decoration: none;
}
.footer-block a:hover { color: var(--red); }

.footer-bot {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bot a { color: var(--ink); text-decoration: underline; }
.footer-bot a:hover { color: var(--red); }

/* ════════════════════════════════════════
   PROOF SECTION — "WHAT IT LOOKS LIKE."
   Replaces traditional testimonials with vignettes (scene-driven
   storytelling). Hard rules in the regression-guard HTML comment
   above the section; do not relax them.
   ════════════════════════════════════════ */
.proof {
  background: #f4eed8;
  background-image: radial-gradient(circle, rgba(12,12,12,0.06) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  padding: 128px 0 96px;
}
.proof .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.proof-head { margin-bottom: 80px; max-width: 720px; }
.proof-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: #1a1410; opacity: 0.55;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.proof-eyebrow::before {
  content: ''; width: 10px; height: 10px; background: #ff2600;
}
.proof-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.88; letter-spacing: 0.01em;
  color: #1a1410;
  margin: 0 0 24px;
}
.proof-lede {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; line-height: 1.55;
  color: #1a1410; opacity: 0.78;
  max-width: 560px;
  margin: 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
@media (max-width: 980px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .proof-grid { grid-template-columns: 1fr; } }
.vignette {
  background: #f4eed8;
  border: 3px solid #1a1410;
  box-shadow: 6px 6px 0 #1a1410;
  padding: 28px 26px 32px;
  display: flex; flex-direction: column;
  min-height: 460px;
}
.vignette-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em;
  color: #1a1410; opacity: 0.55;
  margin-bottom: 14px;
}
.vignette-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; line-height: 1; letter-spacing: 0.02em;
  color: #1a1410;
  margin: 0 0 18px;
}
.vignette-visual {
  aspect-ratio: 4 / 5;
  border: 1.5px solid #1a1410;
  background: rgba(26,20,16,0.06);
  margin: 0 0 20px;
  overflow: hidden;
}
.vignette-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vignette-scene {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; line-height: 1.6;
  color: #1a1410; opacity: 0.85;
  margin: 0;
  flex: 1;
}
.vignette-diamond {
  color: #ff2600; font-size: 14px;
  margin: 18px 0 14px;
}
.vignette-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; line-height: 1.5;
  color: #1a1410;
  margin: 0 0 10px;
}
.vignette-attrib {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em;
  color: #1a1410; opacity: 0.55;
  margin: 0;
}
.proof-numbers {
  background: #1a1410;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 0;
  margin-bottom: 80px;
}
@media (max-width: 720px) {
  .proof-numbers { grid-template-columns: repeat(2, 1fr); }
  .proof-numbers .num-cell:nth-child(1),
  .proof-numbers .num-cell:nth-child(2) { border-bottom: 1px solid #b6afa0; padding-bottom: 28px; }
  .proof-numbers .num-cell:nth-child(3),
  .proof-numbers .num-cell:nth-child(4) { padding-top: 28px; }
}
.num-cell {
  padding: 0 28px;
  border-right: 1px solid #b6afa0;
}
.num-cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .num-cell:nth-child(2) { border-right: none; }
}
.num-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  color: #e8d47a;
  margin-bottom: 6px;
}
.num-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.04em;
  color: #f4eed8;
}
.proof-placeholder {
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  color: rgba(26,20,16,0.65);
  margin: 0;
}
.proof-placeholder .dia {
  color: #ff2600;
  font-size: 14px;
  margin: 0 18px;
}

/* ════════════════════════════════════════
   BREW FILM — preparation-video loop (§02c THE RITUAL)
   Lives inside the standard ink section; the .brew-film band is the
   16:9 video viewport with corner ticks, a top "LIVE POUR" flag, and
   a bottom sound-toggle button. Captioned below the frame.
   ════════════════════════════════════════ */
.brew-film {
  margin-bottom: 0;
  border: 1.5px solid rgba(244,238,216,0.22);
  background: #0a0705;
  position: relative;
}
.brew-film .film-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0705;
}
.brew-film video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.brew-film .film-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(232,212,122,0.05) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}
.brew-film .film-frame::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 82% 74% at 50% 42%, transparent 56%, rgba(0,0,0,0.42) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.34) 0%, transparent 18%, transparent 72%, rgba(0,0,0,0.40) 100%);
}
.brew-film .tick {
  position: absolute; width: 16px; height: 16px; z-index: 3;
  border-color: rgba(244,238,216,0.85);
}
.brew-film .tick.tl { top: 14px; left: 14px; border-top: 2px solid; border-left: 2px solid; }
.brew-film .tick.tr { top: 14px; right: 14px; border-top: 2px solid; border-right: 2px solid; }
.brew-film .tick.bl { bottom: 14px; left: 14px; border-bottom: 2px solid; border-left: 2px solid; }
.brew-film .tick.br { bottom: 14px; right: 14px; border-bottom: 2px solid; border-right: 2px solid; }
.film-flag {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--cream);
  background: rgba(10,7,5,0.55);
  border: 1px solid rgba(244,238,216,0.22);
  padding: 5px 12px;
  backdrop-filter: blur(3px);
}
.film-flag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,38,0,0.6);
  animation: filmPulse 2s ease-out infinite;
}
@keyframes filmPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,38,0,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255,38,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,38,0,0); }
}
.film-sound {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 4;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--cream);
  background: rgba(10,7,5,0.55);
  border: 1px solid rgba(244,238,216,0.22);
  padding: 7px 12px;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: border-color 0.16s, color 0.16s;
}
.film-sound:hover { border-color: var(--yellow); color: var(--yellow); }
.film-sound .ico { font-size: 12px; line-height: 1; color: var(--yellow); }
.film-cap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 18px;
  border-top: 1.5px solid rgba(244,238,216,0.22);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(244,238,216,0.62);
  flex-wrap: wrap;
}
.film-cap .lhs { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.film-cap .lhs b { font-family: var(--display); font-size: 17px; letter-spacing: 0.04em; color: var(--yellow); font-weight: normal; }
.film-cap .rhs { color: rgba(244,238,216,0.5); }

/* ════════════════════════════════════════
   PALATE — §02d MAKE YOUR TASTE BUDS SMILE
   Dark ink section with a hand-drawn smiling cup SVG and a single
   payoff line. No tasting notes, no diagrams — just the smile.
   ════════════════════════════════════════ */
.palate-section {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.palate-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,212,122,0.05) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
}
.palate-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid rgba(244,238,216,0.2);
}
.palate-head .num {
  font-family: var(--mono);
  font-size: 13px; letter-spacing: 0.18em;
  color: rgba(244,238,216,0.5);
  display: flex; align-items: center;
}
.palate-head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.palate-head h2 .accent { color: var(--yellow); }
.palate-head .lede {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(244,238,216,0.7);
  max-width: 380px;
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 980px) {
  .palate-head { grid-template-columns: 1fr; gap: 12px; }
  .palate-head .lede { text-align: left; max-width: 100%; }
}
.palate-art {
  border: 1.5px solid rgba(244,238,216,0.2);
  background: rgba(0,0,0,0.2);
  position: relative;
  padding: 24px;
  overflow: hidden;
}
.palate-art::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,212,122,0.06) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  pointer-events: none;
}
.palate-art .corner {
  position: absolute; width: 14px; height: 14px; z-index: 3;
  border-color: rgba(244,238,216,0.35);
}
.palate-art .corner.tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.palate-art .corner.tr { top: 10px; right: 10px; border-top: 2px solid; border-right: 2px solid; }
.palate-art .corner.bl { bottom: 10px; left: 10px; border-bottom: 2px solid; border-left: 2px solid; }
.palate-art .corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }
.palate-art svg { width: 100%; height: auto; display: block; position: relative; z-index: 1; }

.smile-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.smile-art { max-width: 540px; margin: 0 auto; }
.smile-line {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--cream);
  max-width: 600px;
  margin: 40px auto 0;
  text-wrap: balance;
}
.smile-rule { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.smile-rule i { width: 26px; height: 6px; display: block; }

@media (max-width: 600px) {
  .palate-section { padding: 60px 0; }
  .palate-head { margin-bottom: 34px; gap: 10px; }
  .palate-art { padding: 16px; }
  .smile-line { font-size: 22px; margin-top: 28px; }
  .smile-rule { margin-top: 18px; }
  .brew-film { margin-bottom: 0; }
  .film-flag { font-size: 9px; letter-spacing: 0.12em; padding: 4px 9px; top: 10px; }
  .film-sound { font-size: 9px; padding: 6px 9px; bottom: 10px; right: 10px; }
  .brew-film .tick { width: 12px; height: 12px; }
  .film-cap { font-size: 9px; padding: 12px 14px; gap: 8px; }
  .film-cap .lhs b { font-size: 15px; }
}
