/**
 * iCookMagic — Base Styles
 * =========================
 * Location : /assets/css/base.css
 * Requires : tokens.css loaded first
 * Purpose  : All reusable classes. Every page uses these.
 *            Never override in page CSS — extend only.
 * Version  : 1.0 — June 2026
 */

/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  color: var(--ink);
  background: var(--white);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--ff-body); }
::selection { background: var(--neon); color: #000; }

/* ══════════════════════════════════════
   SCROLLBAR — magenta, thin
══════════════════════════════════════ */
::-webkit-scrollbar { width: var(--scrollbar-w); height: var(--scrollbar-w); }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--magenta-dk); }

/* ══════════════════════════════════════
   PAGE LAYOUT
══════════════════════════════════════ */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.page-section {
  padding: var(--section-pad);
  border-top: var(--border-thin);
}
.page-section:first-of-type { border-top: none; }

/* Page offset for fixed header */
.page-body {
  padding-top: var(--header-total);
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.h1 {
  font-family: var(--ff-head);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: -1.4px;
  color: var(--ink);
}
.h1 em { font-style: italic; color: var(--magenta); font-weight: var(--fw-medium); }

.h2 {
  font-family: var(--ff-head);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
  line-height: 1.02;
  letter-spacing: -0.7px;
  color: var(--ink);
}
.h2 em { font-style: italic; color: var(--magenta); }

.h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  line-height: 1.05;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.h3 em { font-style: italic; color: var(--magenta); }

.h4 {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  color: var(--ink);
}
.h4 em { font-style: italic; color: var(--magenta); }

.body-lg { font-size: var(--fs-md); line-height: var(--lh-relaxed); }
.body    { font-size: var(--fs-base); line-height: var(--lh-normal); }
.body-sm { font-size: var(--fs-sm); line-height: var(--lh-normal); color: rgba(0,0,0,.65); }
.body-xs { font-size: var(--fs-xs); line-height: var(--lh-normal); color: rgba(0,0,0,.5); }

.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
}

.sub {
  font-size: var(--fs-base);
  color: var(--ink);
  line-height: var(--lh-relaxed);
  max-width: 560px;
}

/* Neon highlight underline — homepage hero signature */
.hl { position: relative; display: inline-block; }
.hl::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 11px;
  background: var(--neon);
  z-index: -1;
  opacity: .6;
}

/* Italic magenta — use inside headings */
.em { font-style: italic; color: var(--magenta); }

/* ══════════════════════════════════════
   TAGS & BADGES
══════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  line-height: 1;
  white-space: nowrap;
}
.tag-neon     { background: var(--neon); color: #000; }
.tag-magenta  { background: var(--magenta); color: #fff; }
.tag-dark     { background: #000; color: var(--neon); }
.tag-outline  { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.tag-gold     { background: var(--gold); color: #000; border: 1.5px solid #000; }
.tag-plain    { background: transparent; color: var(--magenta); padding: 0; letter-spacing: var(--ls-wider); }
.tag-grey     { background: var(--grey-bg); color: rgba(0,0,0,.6); border: 1px solid var(--grey-border); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-btn);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  font-family: var(--ff-body);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
}
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Button styles */
.btn-primary           { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.btn-primary:hover     { background: var(--magenta-dk); border-color: var(--magenta-dk); transform: translateY(-2px); }

.btn-dark              { background: #000; color: #fff; border-color: #000; }
.btn-dark:hover        { background: transparent; color: #000; transform: translateY(-2px); }

.btn-ghost             { background: transparent; color: #000; border-color: #000; }
.btn-ghost:hover       { background: #000; color: #fff; transform: translateY(-2px); }

.btn-neon              { background: var(--neon); color: #000; border-color: var(--neon); font-weight: var(--fw-bold); }
.btn-neon:hover        { background: #000; color: var(--neon); border-color: #000; transform: translateY(-2px); }

.btn-outline-magenta           { background: transparent; color: var(--magenta); border-color: var(--magenta); }
.btn-outline-magenta:hover     { background: var(--magenta); color: #fff; transform: translateY(-2px); }

.btn-gold              { background: var(--gold); color: #000; border-color: #000; font-weight: var(--fw-bold); }
.btn-gold:hover        { background: var(--gold-dk); transform: translateY(-2px); }

/* Button sizes */
.btn-xs   { padding: 4px 10px; font-size: var(--fs-xs); }
.btn-sm   { padding: 7px 14px; font-size: var(--fs-xs); }
.btn-lg   { padding: 13px 28px; font-size: var(--fs-md); }
.btn-full { width: 100%; justify-content: center; }

/* Link arrow */
.link-arrow {
  color: #000;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #000;
  padding-bottom: 1px;
  transition: var(--t);
}
.link-arrow:hover { color: var(--magenta); border-bottom-color: var(--magenta); gap: 9px; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  transition: var(--t-md);
}
.card:hover {
  box-shadow: var(--shadow-magenta);
  transform: translate(-2px, -2px);
}
.card-neon {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  box-shadow: var(--shadow-neon);
  transition: var(--t-md);
}
.card-neon:hover {
  box-shadow: 12px 12px 0 var(--neon);
  transform: translate(-2px, -2px);
}
.card-dark {
  background: #000;
  color: #fff;
  border: var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  box-shadow: var(--shadow-neon);
}
.card-gold {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  box-shadow: var(--shadow-gold);
  transition: var(--t-md);
}

/* Product / recipe item cards */
.item-card {
  border: 1.5px solid #000;
  border-radius: var(--r-card);
  overflow: hidden;
  color: #000;
  transition: var(--t);
  background: #fff;
  display: block;
  text-decoration: none;
}
.item-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }
.item-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid #000;
  background: var(--grey-bg);
}
.item-card-img img { width: 100%; height: 100%; object-fit: cover; }
.item-card-body { padding: 8px 10px; }
.item-card-cat {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 2px;
}
.item-card-name {
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: -0.15px;
  margin-bottom: 2px;
}
.item-card-name em { font-style: italic; color: var(--magenta); }
.item-card-meta { font-size: var(--fs-xs); color: rgba(0,0,0,.6); margin-bottom: 5px; }
.item-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  border-top: 1px solid #000;
}
.item-card-price {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 13.5px;
  font-weight: var(--fw-bold);
}
.item-card-cta { font-size: var(--fs-xs); color: var(--magenta); font-weight: var(--fw-bold); cursor: pointer; }

/* ══════════════════════════════════════
   INPUTS & FORMS
══════════════════════════════════════ */
.input {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid #000;
  border-radius: var(--r-btn);
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  color: #000;
  background: #fff;
  outline: none;
  transition: var(--t);
  line-height: 1;
}
.input:focus { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(255,61,127,.12); }
.input::placeholder { color: rgba(0,0,0,.35); }
.input-error { border-color: var(--error); }

.textarea {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid #000;
  border-radius: var(--r-btn);
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  color: #000;
  background: #fff;
  outline: none;
  transition: var(--t);
  resize: vertical;
  min-height: 100px;
}
.textarea:focus { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(255,61,127,.12); }

.select {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid #000;
  border-radius: var(--r-btn);
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  color: #000;
  background: #fff;
  outline: none;
  transition: var(--t);
  cursor: pointer;
  -webkit-appearance: none;
}
.select:focus { border-color: var(--magenta); }

.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  margin-bottom: 5px;
  color: var(--ink);
}
.form-error { font-size: var(--fs-xs); color: var(--error); margin-top: 3px; }
.form-hint  { font-size: var(--fs-xs); color: rgba(0,0,0,.45); margin-top: 3px; }

/* ══════════════════════════════════════
   GRIDS
══════════════════════════════════════ */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-5  { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gap); }
.grid-6  { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap-sm); }
.grid-2c { display: grid; grid-template-columns: 1.25fr 1fr; gap: var(--gap-xl); align-items: center; }
.grid-2c-flip { display: grid; grid-template-columns: 1fr 1.25fr; gap: var(--gap-xl); align-items: center; }
.grid-3c { display: grid; grid-template-columns: 260px 1fr 260px; gap: var(--gap-md); }

/* Flex helpers */
.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-xs   { gap: var(--gap-xs); }
.gap-sm   { gap: var(--gap-sm); }
.gap      { gap: var(--gap); }
.gap-md   { gap: var(--gap-md); }
.gap-lg   { gap: var(--gap-lg); }

/* ══════════════════════════════════════
   TABS
══════════════════════════════════════ */
.tabs-wrap { border: var(--border); border-radius: var(--r-card); overflow: hidden; }
.tabs-nav  { display: flex; border-bottom: var(--border); background: #000; overflow-x: auto; }
.tabs-nav::-webkit-scrollbar { height: 2px; }
.tab-btn {
  flex: 1;
  min-width: max-content;
  padding: 8px 16px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  font-family: var(--ff-body);
  color: rgba(255,255,255,.45);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: var(--t);
  letter-spacing: .04em;
  white-space: nowrap;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active     { color: var(--neon); border-bottom: 2px solid var(--neon); }
.tab-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,.06); }
.tab-panel { display: none; padding: 16px; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
  padding: 5px 0;
  background: var(--white);
  cursor: default;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: icm-ticker var(--ticker-speed) linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: 0 24px;
  color: var(--ink);
}
.ticker-item::after { content: '·'; margin-left: 24px; color: var(--magenta); font-weight: var(--fw-bold); }
@keyframes icm-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   QUOTE STRIP
══════════════════════════════════════ */
.quote-strip {
  border: var(--border);
  border-radius: var(--r-card);
  padding: 16px 20px;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: '❝';
  position: absolute;
  top: -10px; left: 14px;
  font-family: var(--ff-head);
  font-size: 80px;
  color: var(--magenta);
  opacity: .18;
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  color: #fff;
  position: relative;
  z-index: 1;
}
.quote-text em { color: var(--neon); font-style: italic; }
.quote-attr {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.4);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ══════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════ */
.prog-bar {
  height: 5px;
  background: rgba(0,0,0,.1);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  background: var(--magenta);
  border-radius: var(--r-pill);
  transition: width .4s ease;
}
.prog-fill-neon { background: var(--neon); }
.prog-fill-gold { background: var(--gold); }

/* ══════════════════════════════════════
   STAT BLOCKS
══════════════════════════════════════ */
.stat-num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 28px;
  font-weight: var(--fw-semi);
  line-height: 1;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.stat-num em { color: var(--magenta); font-style: italic; font-size: 16px; }
.stat-lbl { font-size: var(--fs-sm); color: var(--ink); line-height: 1.35; font-weight: var(--fw-medium); }

/* ══════════════════════════════════════
   STEP TILES (planner)
══════════════════════════════════════ */
.step-tile {
  border: 1px solid #000;
  border-radius: var(--r-sm);
  padding: 7px 4px;
  text-align: center;
  font-size: 9px;
  font-weight: var(--fw-semi);
  color: #000;
  line-height: 1.15;
  transition: var(--t);
  cursor: pointer;
}
.step-tile .step-num {
  font-size: 8px;
  color: #000;
  display: block;
  margin-bottom: 1px;
  font-weight: var(--fw-normal);
  opacity: .5;
}
.step-tile.active { background: #000; color: var(--neon); border-color: #000; }
.step-tile.active .step-num { color: var(--neon); opacity: 1; }
.step-tile.done { background: var(--grey-bg); }

/* ══════════════════════════════════════
   WHO PILLS (partner page)
══════════════════════════════════════ */
.who-pill {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  border: 2px solid #000;
  transition: var(--t);
  display: inline-block;
  cursor: pointer;
}
.who-pill:hover { background: var(--neon); color: #000; border-color: var(--neon); }

/* ══════════════════════════════════════
   DIVIDERS
══════════════════════════════════════ */
.divider       { border: none; border-top: var(--border-thin); }
.divider-thick { border: none; border-top: var(--border); }
.divider-grey  { border: none; border-top: var(--border-grey); }

/* ══════════════════════════════════════
   COIN TOAST
══════════════════════════════════════ */
#icm-coin-wrap {
  position: fixed;
  bottom: 88px;
  right: 22px;
  z-index: var(--z-toast);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.icm-coin-toast {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 11px 16px 11px 12px;
  box-shadow: var(--shadow-gold);
  font-family: var(--ff-body);
  min-width: 200px;
  max-width: 280px;
  pointer-events: auto;
  animation: icm-toast-in .35s cubic-bezier(.34,1.56,.64,1) forwards;
}
.icm-coin-toast.out { animation: icm-toast-out .28s ease forwards; }
@keyframes icm-toast-in {
  from { opacity: 0; transform: translateX(50px) scale(.88); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes icm-toast-out {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(50px) scale(.88); }
}
.icm-coin-icon {
  width: var(--coin-size);
  height: var(--coin-size);
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--coin-font);
}
.icm-coin-amount {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  display: block;
  line-height: 1;
}
.icm-coin-msg { font-size: var(--fs-sm); color: rgba(0,0,0,.6); }

/* ══════════════════════════════════════
   POPUP BASE
══════════════════════════════════════ */
.icm-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: var(--z-popup);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.icm-popup-overlay.open { opacity: 1; pointer-events: auto; }
.icm-popup {
  background: #fff;
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--popup-pad);
  max-width: var(--popup-w);
  width: 100%;
  box-shadow: var(--shadow-magenta);
  position: relative;
  transform: scale(.92) translateY(10px);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.icm-popup-overlay.open .icm-popup { transform: scale(1) translateY(0); }
.icm-popup-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 18px;
  cursor: pointer;
  color: rgba(0,0,0,.35);
  background: none;
  border: none;
  line-height: 1;
  transition: var(--t);
}
.icm-popup-close:hover { color: var(--ink); }

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════ */
.announce-bar {
  background: #000;
  color: #fff;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
}
.announce-bar .launch { color: var(--neon); font-weight: var(--fw-bold); }
.announce-bar .sep    { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.text-magenta { color: var(--magenta); }
.text-neon    { color: var(--neon); }
.text-muted   { color: rgba(0,0,0,.5); }
.text-white   { color: #fff; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.bg-dark      { background: #000; }
.bg-grey      { background: var(--grey-bg); }
.bg-magenta   { background: var(--magenta); }
.w-full       { width: 100%; }
.hidden       { display: none !important; }
.sr-only      { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Scrollable panel */
.panel-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.panel-scroll::-webkit-scrollbar { width: var(--scrollbar-w); }
.panel-scroll::-webkit-scrollbar-track { background: transparent; }
.panel-scroll::-webkit-scrollbar-thumb { background: var(--magenta); border-radius: var(--r-pill); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-3c { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root {
    --page-pad: var(--page-pad-sm);
    --section-pad: var(--section-pad-sm);
  }
  .grid-2c, .grid-2c-flip { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .h1 { font-size: clamp(28px, 7vw, 42px); }
  .h2 { font-size: clamp(24px, 5vw, 32px); }
  .btn-lg { padding: 11px 22px; font-size: var(--fs-base); }
}
@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .btn-full-mobile { width: 100%; justify-content: center; }
}
