/* =========================================================
   食卓の味方 H案 スマホ優先LP
   配色: 赤 #FF482E / 水色 #ACD9EF / ネイビー #071E45 / クリーム #FFF7E5
   外部フォント・外部依存なし。システムの日本語ゴシックを使用。
   ========================================================= */

:root {
  --red: #FF482E;
  --red-text: #C42A12;   /* 明るい地に置く赤文字用（コントラスト確保） */
  --sky: #ACD9EF;
  --sky-deep: #8CC5E4;
  --navy: #071E45;
  --cream: #FFF7E5;
  --cream-deep: #F6E9C9;
  --white: #FFFFFF;
  --ink: #071E45;
  --ink-muted: #3F4B66;
  --focus: #FFD34D;
  --radius: 20px;
  --gutter: 20px;
  --maxw: 1120px;
  --font: "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", "Yu Gothic", "Meiryo", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-feature-settings: "palt";
}

img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; }
b, strong { font-weight: 800; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--white);
  border-radius: 6px;
}

/* 固定ヘッダー分だけページ内リンクの着地位置を下げる */
.hero, .compare, .terms, .terms-panel, .exit, .about, .product-card, #cost-guide, #order-check { scroll-margin-top: 76px; }

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--navy); color: var(--white);
  padding: 10px 14px; border-radius: 8px; z-index: 100; font-weight: 700;
}
.skip-link:focus { top: 8px; }

.br-sp { display: inline; }
.accent { color: var(--red-text); }

/* ---------- 試作注記の帯 ---------- */
.draft-strip {
  background: var(--navy);
  color: var(--cream);
  font-size: 14px;
  line-height: 1.5;
  padding: 8px var(--gutter);
  text-align: center;
}
.draft-strip strong { color: var(--focus); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--sky);
  border-bottom: 3px solid var(--navy);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto;
  min-height: 60px;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative;
}
.brand {
  font-weight: 900; font-size: 24px; letter-spacing: 0.02em;
  color: var(--navy); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 2px;
  min-height: 44px; padding: 4px 0;
}
.brand__no { font-size: 0.7em; }
.brand__tag {
  font-size: 12px; font-weight: 700; margin-left: 8px;
  padding: 2px 6px; border: 2px solid var(--navy); border-radius: 999px;
}
.menu-button {
  display: inline-flex; align-items: center; gap: 8px;
  min-width: 48px; min-height: 48px; padding: 6px 10px;
  background: transparent; border: 2px solid transparent; border-radius: 10px;
  cursor: pointer; color: var(--navy); font-weight: 700; font-size: 14px;
}
.menu-button__bars { width: 26px; display: grid; gap: 5px; }
.menu-button__bars span { display: block; height: 3px; background: var(--navy); border-radius: 2px; }
.menu-button[aria-expanded="true"] { background: var(--navy); color: var(--sky); }
.menu-button[aria-expanded="true"] .menu-button__bars span { background: var(--sky); }

.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--sky);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 12px 24px rgba(7, 30, 69, 0.18);
}
.site-nav.is-open { display: block; }
.site-nav__list { list-style: none; padding: 8px var(--gutter) 16px; display: grid; gap: 4px; }
.site-nav__list a {
  display: block; padding: 12px 14px; min-height: 48px;
  color: var(--navy); font-weight: 800; font-size: 18px; text-decoration: none;
  border-radius: 12px; background: rgba(255, 255, 255, 0.5);
}
.site-nav__list a:hover { background: var(--white); }

/* ---------- 共通ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 12px 24px;
  font-weight: 900; font-size: 18px; line-height: 1.3;
  text-decoration: none; cursor: pointer; border: 3px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn--pill { border-radius: 999px; }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { box-shadow: 0 6px 0 rgba(7, 30, 69, 0.25); transform: translateY(-2px); }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); font-size: 20px; }
.btn--red:hover { box-shadow: 0 6px 0 rgba(196, 42, 18, 0.35); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn:active { transform: translateY(1px); box-shadow: none; }

/* ---------- 見出し・注記 ---------- */
.section-title {
  font-weight: 900; font-size: clamp(1.75rem, 1rem + 3.6vw, 2.5rem);
  line-height: 1.3; letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.section-title--sm { font-size: clamp(1.4rem, 0.9rem + 2.6vw, 2rem); }
.squiggle {
  position: relative; display: inline-block;
}
.squiggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8' preserveAspectRatio='none'><path d='M0 5c5-4 10-4 15 0s10 4 15 0 8-3 10 0' fill='none' stroke='%23FF482E' stroke-width='3' stroke-linecap='round'/></svg>") repeat-x;
  background-size: 40px 8px;
}
.note {
  font-size: 14px; line-height: 1.6; color: var(--ink-muted);
}
.note--on-red { color: var(--navy); text-align: center; font-weight: 700; }
.note--center { text-align: center; padding: 12px var(--gutter) 20px; }

/* ---------- ヒーロー ---------- */
.hero {
  background: var(--red);
  color: var(--navy);
  padding: 28px 0 24px;
  position: relative; overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 22px;
}
.hero__copy { position: relative; text-align: center; padding: 6px 0 4px; }
.hero__title {
  font-weight: 900;
  font-size: clamp(2rem, 1.2rem + 4.2vw, 3.4rem);
  line-height: 1.22; letter-spacing: 0.01em;
  color: var(--navy);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.15);
}
.bubble {
  position: absolute; right: -6px; top: 100%;
  margin-top: 4px;
  background: var(--cream); color: var(--navy);
  font-weight: 700; font-size: 15px; line-height: 1.3;
  padding: 8px 12px; border-radius: 16px 16px 4px 16px;
  transform: rotate(3deg);
  box-shadow: 0 2px 0 rgba(7, 30, 69, 0.2);
  z-index: 2;
}
.doodle { position: absolute; fill: none; stroke: var(--navy); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.doodle--tomato { width: 52px; left: -4px; top: 6px; transform: rotate(-8deg); }
.doodle--spark { width: 34px; stroke: var(--cream); }
.doodle--spark-a { right: 2px; top: -10px; }
.doodle--spark-b { right: 0; top: 46%; transform: scaleX(-1) rotate(20deg); }

/* コラージュ */
.collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  margin: 8px auto 0;
}
.collage__scallop {
  position: absolute; left: 1%; top: -3%; width: 98%;
  fill: var(--cream);
  filter: drop-shadow(0 3px 0 rgba(7, 30, 69, 0.15));
}
.collage__bowl {
  position: absolute; left: 6%; top: 2%; width: 88%;
  aspect-ratio: 1.38 / 1;
  z-index: 2;
  display: grid; place-items: center;
  border: 10px solid var(--white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 27% 42%, var(--red) 0 9%, transparent 10%),
    radial-gradient(circle at 46% 62%, var(--sky-deep) 0 12%, transparent 13%),
    radial-gradient(circle at 68% 38%, var(--cream-deep) 0 14%, transparent 15%),
    var(--cream);
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.18));
}
.collage__bowl span, .collage__plate span {
  padding: 7px 10px; border-radius: 999px;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 900; letter-spacing: .02em;
}
.collage__polaroid {
  position: absolute; left: 0; top: 49%; width: 44%; margin: 0;
  background: var(--sky); padding: 3.4%;
  transform: rotate(-2.5deg);
  z-index: 3;
  box-shadow: 0 8px 14px rgba(7, 30, 69, 0.22);
}
.collage__note {
  aspect-ratio: 1 / 1.12; border: 3px solid var(--navy); border-radius: 4px;
  background: var(--white); display: grid; place-items: center; align-content: center; gap: 8px;
  color: var(--navy); font-weight: 900; font-size: clamp(15px, 4vw, 24px);
}
.collage__note span { color: var(--red-text); }
.collage__plate {
  position: absolute; right: -2%; top: 55%; width: 54%;
  aspect-ratio: 1 / 1;
  z-index: 4;
  display: grid; place-items: center;
  border: 10px solid var(--cream);
  border-radius: 50%;
  background:
    linear-gradient(35deg, transparent 42%, var(--red) 43% 57%, transparent 58%),
    linear-gradient(-35deg, transparent 42%, var(--sky-deep) 43% 57%, transparent 58%),
    var(--white);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

/* 作業選択カード */
.choice {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px 16px 10px;
  box-shadow: 0 4px 0 rgba(7, 30, 69, 0.18);
  display: grid; gap: 4px;
}
.choice__title {
  font-size: 15px; font-weight: 800; color: var(--ink-muted);
  padding: 0 4px 4px;
}
.choice__opt { font-weight: 700; }
.choice__item {
  display: grid; grid-template-columns: 44px 1fr 40px; align-items: center; gap: 10px;
  width: 100%; min-height: 64px; padding: 8px 4px;
  background: transparent; border: 0; border-radius: 12px;
  text-align: left; cursor: pointer;
}
.choice__item + .choice__item { border-top: 2px dashed var(--red); border-radius: 0 0 12px 12px; }
.choice__item:hover { background: rgba(255, 255, 255, 0.6); }
.choice__icon { width: 44px; fill: none; stroke: var(--navy); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.choice__icon path:first-child { fill: rgba(255, 72, 46, 0.18); }
.choice__text { font-weight: 900; font-size: 22px; line-height: 1.25; color: var(--navy); }
.choice__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; line-height: 1; padding-bottom: 3px;
}
.choice__item.is-active { background: rgba(255, 255, 255, 0.85); }
.choice__item.is-active .choice__arrow { background: var(--red); }

.hero__cta { position: relative; display: flex; justify-content: center; padding: 6px 0 2px; }
.hero__cta .btn { min-width: min(100%, 250px); font-size: 20px; min-height: 60px; position: relative; z-index: 1; }
.doodle--fork { width: 46px; left: -4px; top: 14px; transform: rotate(-20deg); }
.doodle--leaf { width: 32px; right: 2px; top: 8px; transform: rotate(-30deg); }

/* ---------- 比較節 ---------- */
.compare {
  background: var(--sky);
  padding: 36px 0 28px;
}
.compare__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 18px; }
.doodle--arrow { position: static; width: 40px; stroke: var(--red-text); flex: none; }
.choice-result {
  font-weight: 700; font-size: 16px; line-height: 1.5;
  min-height: 0;
  color: var(--navy);
}
.choice-result:empty { display: none; }
.choice-result::before { content: "✓ "; color: var(--red-text); }
.choice-scope {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-left: 4px solid var(--navy);
  background: rgba(255,255,255,.72);
  border-radius: 10px;
  font-size: 15px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px;
  display: grid; grid-template-columns: 38% 1fr; gap: 14px;
  box-shadow: 0 4px 0 rgba(7, 30, 69, 0.15);
  border: 3px solid transparent;
  position: relative;
}
.product-card.is-picked { border-color: var(--red); }
.product-card { grid-template-rows: 1fr auto; }
.product-card__cta { align-self: end; }
.product-card__media { position: relative; display: grid; gap: 8px; align-content: start; }
.task-visual {
  min-height: 150px; border-radius: 16px; border: 3px solid var(--navy);
  display: grid; place-items: center; align-content: center; gap: 8px;
  padding: 12px; color: var(--navy); font-weight: 900; text-align: center;
}
.task-visual span { display: block; width: 100%; padding: 7px 5px; border-radius: 999px; background: var(--white); }
.task-visual--ready { background: repeating-radial-gradient(circle at 20% 20%, var(--sky) 0 9px, var(--cream) 10px 21px); }
.task-visual--cook { background: repeating-linear-gradient(135deg, var(--red) 0 12px, var(--cream) 13px 28px); }
.ad-tag {
  position: absolute; left: 8px; top: 8px; z-index: 1;
  background: var(--white); color: var(--ink-muted);
  font-size: 14px; font-weight: 700; line-height: 1.2;
  padding: 4px 8px; border-radius: 6px; border: 1px solid rgba(7, 30, 69, 0.25);
}
.product-card__body { display: grid; gap: 8px; align-content: start; }
.picked-chip {
  justify-self: start;
  background: var(--red); color: var(--navy);
  font-size: 14px; font-weight: 800; padding: 3px 10px; border-radius: 999px;
}
.product-card__name { font-weight: 900; font-size: 24px; line-height: 1.25; }
.product-card__lead { font-weight: 700; font-size: 15px; }
.fit-note { margin-top: 4px; font-size: 14px; line-height: 1.55; color: var(--ink-muted); }
.task-list { list-style: none; display: grid; gap: 6px; border-top: 2px dotted var(--cream-deep); padding-top: 8px; }
.task-list__item { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; line-height: 1.45; }
.task-list__item b { display: block; font-size: 14px; }
.task-list__item svg { width: 24px; flex: none; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.task-list__item--remain b { color: var(--red-text); }
.product-card__cta { grid-column: 1 / -1; min-height: 52px; font-size: 17px; margin-top: 2px; }

.memo {
  background: rgba(255, 255, 255, 0.55);
  border-left: 5px solid var(--navy);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px; line-height: 1.7;
}

/* ---------- 条件節 ---------- */
.terms { background: var(--cream); padding: 36px 0 28px; }
.terms__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 18px; }
.terms__lead { font-weight: 700; font-size: 16px; }
.alert {
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px; line-height: 1.7;
}
.alert b { color: var(--red-text); }

.terms-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 14px;
  border: 2px solid var(--cream-deep);
  display: grid; gap: 10px;
}
.terms-panel__title {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 22px; line-height: 1.3;
}
.terms-panel__mark {
  width: 56px; height: 56px; display: inline-grid; place-items: center;
  border-radius: 50%; flex: none; border: 3px solid var(--navy);
  font-size: 22px; font-weight: 900;
}
.terms-panel__mark--ready { background: var(--sky); }
.terms-panel__mark--cook { background: var(--red); }
.terms-panel__sub { font-size: 15px; color: var(--ink-muted); }

.acc { display: grid; gap: 0; border-top: 2px dashed var(--sky-deep); }
.acc__item { border-bottom: 2px dashed var(--sky-deep); }
.acc__summary {
  display: flex; align-items: center; gap: 12px;
  min-height: 56px; padding: 10px 4px;
  font-weight: 800; font-size: 18px;
  cursor: pointer; list-style: none;
}
.acc__summary::-webkit-details-marker { display: none; }
.acc__summary svg { width: 30px; flex: none; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.acc__plus {
  margin-left: auto; width: 30px; height: 30px; border-radius: 50%; flex: none;
  border: 2px solid var(--navy); position: relative;
}
.acc__plus::before, .acc__plus::after {
  content: ""; position: absolute; background: var(--navy); left: 50%; top: 50%;
}
.acc__plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.acc__plus::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.15s ease; }
.acc__item[open] .acc__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__item[open] .acc__plus { background: var(--sky); }
.acc__body { padding: 0 4px 14px 46px; display: grid; gap: 6px; font-size: 16px; line-height: 1.7; }
.acc__meta { font-size: 14px; color: var(--ink-muted); }

.caution {
  background: var(--sky);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid; gap: 6px;
  font-size: 15px; line-height: 1.7;
}
.caution__title { font-size: 18px; font-weight: 900; line-height: 1.35; }

.checklist { display: grid; gap: 8px; }
.checklist__title { font-size: 20px; font-weight: 900; }
.checklist ol { list-style: none; counter-reset: c; display: grid; gap: 6px; }
.checklist li { counter-increment: c; display: flex; gap: 10px; font-size: 15px; line-height: 1.6; }
.checklist li::before {
  content: counter(c); flex: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-weight: 900; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- 公式への出口 ---------- */
.exit { background: var(--cream); padding: 8px 0 0; border-top: 3px dashed var(--sky-deep); }
.exit__inner { max-width: var(--maxw); margin: 0 auto; padding: 24px var(--gutter) 20px; display: grid; gap: 16px; }
.exit-card { display: grid; gap: 12px; }
.exit-row {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 14px 14px 16px;
  display: grid; grid-template-columns: 1fr 76px; gap: 12px; align-items: center;
  box-shadow: 0 4px 0 rgba(7, 30, 69, 0.12);
}
.exit-row__text { display: grid; gap: 8px; }
.exit-row__name { font-weight: 900; font-size: 17px; line-height: 1.3; }
.exit-row__mark {
  width: 76px; height: 76px; display: inline-grid; place-items: center;
  border-radius: 50%; border: 3px solid var(--navy);
  color: var(--navy); font-size: 28px; font-weight: 900;
}
.exit-row__mark--ready { background: var(--sky); }
.exit-row__mark--cook { background: var(--red); }
.btn--exit { justify-self: start; min-width: 0; width: 100%; font-size: 19px; padding: 12px 14px; white-space: nowrap; }
.btn--exit.btn--red { color: var(--navy); }
.exit__band {
  background: var(--sky);
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  position: relative;
}
.exit__band-text { font-weight: 900; font-size: 22px; line-height: 1.3; text-align: center; }
.doodle--pot, .doodle--whisk { position: static; width: 44px; flex: none; }
.doodle--pot path:first-child { fill: rgba(255, 72, 46, 0.35); }
.exit .note--center { background: var(--sky); margin: 0; padding-top: 0; }

/* ---------- 根拠・運営情報 ---------- */
.about { background: var(--navy); color: var(--cream); padding: 36px 0 40px; }
.about__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 18px; }
.about .section-title { color: var(--cream); }
.about__list { display: grid; gap: 4px; font-size: 15px; line-height: 1.7; }
.about__list dt { font-weight: 900; color: var(--sky); margin-top: 10px; }
.about__list dd { margin: 0; }
.about__brand { font-size: 14px; opacity: 0.85; padding-top: 8px; border-top: 1px solid rgba(255, 247, 229, 0.25); }

/* =========================================================
   320px 前後の狭い画面
   ========================================================= */
@media (max-width: 359px) {
  body { font-size: 16px; }
  .brand { font-size: 20px; }
  .brand__tag { margin-left: 4px; }
  .menu-button__label { display: none; }
  .choice__text { font-size: 19px; }
  .choice__item { grid-template-columns: 38px 1fr 36px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__media { grid-template-columns: 1fr; }
  .exit-row { grid-template-columns: 1fr; }
  .exit-row__mark { display: none; }
  .exit__band { flex-direction: column; gap: 8px; }
  .acc__body { padding-left: 4px; }
  .doodle--arrow { display: none; }
  .btn--exit { font-size: 18px; }
}

/* =========================================================
   タブレット以上
   ========================================================= */
@media (min-width: 600px) {
  .hero__inner { max-width: 560px; }
  .compare__inner, .terms__inner, .exit__inner, .about__inner { max-width: 640px; }
}

/* =========================================================
   広い画面（1440px 確認用）
   ========================================================= */
@media (min-width: 900px) {
  :root { --gutter: 32px; }
  body { font-size: 18px; }
  .br-sp { display: none; }
  .draft-strip { font-size: 15px; }

  .menu-button { display: none; }
  .site-nav {
    display: block; position: static; background: transparent; border: 0; box-shadow: none;
  }
  .site-nav__list { display: flex; gap: 4px; padding: 0; }
  .site-nav__list a { font-size: 16px; padding: 10px 14px; background: transparent; }
  .site-nav__list a:hover { background: rgba(255, 255, 255, 0.6); }
  .site-header__inner { min-height: 72px; }
  .brand { font-size: 28px; }

  .hero { padding: 48px 0 40px; }
  .hero__inner {
    max-width: var(--maxw);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    grid-template-areas:
      "copy collage"
      "choice collage"
      "cta collage"
      "note collage";
    column-gap: 48px; row-gap: 20px; align-items: start;
  }
  .hero__copy { grid-area: copy; text-align: left; padding-top: 12px; }
  .hero__title { font-size: clamp(2.6rem, 1.4rem + 2.4vw, 3.6rem); }
  .bubble { right: 0; left: auto; top: 44%; margin-top: 0; font-size: 17px; }
  .product-card__name .accent { margin-left: 0.2em; }
  .doodle--tomato { left: auto; right: 0; top: -12px; width: 64px; }
  .doodle--spark-a { right: 90px; top: -20px; }
  .collage { grid-area: collage; max-width: 560px; width: 100%; justify-self: end; margin-top: 0; }
  .choice { grid-area: choice; }
  .hero__cta { grid-area: cta; justify-content: flex-start; }
  .hero__cta .btn { min-width: 320px; }
  .doodle--fork { display: none; }
  .doodle--leaf { right: auto; left: 340px; top: 8px; }
  .note--on-red { grid-area: note; text-align: left; }

  .compare, .terms { padding: 56px 0 48px; }
  .compare__inner, .terms__inner, .exit__inner, .about__inner { max-width: var(--maxw); }
  .compare__inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
  .compare__inner > .section-title, .compare__inner > .choice-result, .compare__inner > .choice-scope, .compare__inner > .memo, .compare__inner > .note { grid-column: 1 / -1; }
  .product-card { grid-template-columns: 40% 1fr; padding: 18px; }
  .product-card__name { font-size: 26px; }

  .terms__inner { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .terms__inner > .section-title, .terms__inner > .terms__lead, .terms__inner > .alert, .terms__inner > .caution, .terms__inner > .checklist { grid-column: 1 / -1; }
  .terms__lead { margin-top: -8px; }
  .checklist ol { grid-template-columns: 1fr 1fr; column-gap: 24px; }

  .exit__inner { padding-top: 40px; }
  .exit-card { grid-template-columns: 1fr 1fr; gap: 20px; }
  .exit-row { padding: 20px; grid-template-columns: 1fr 100px; }
  .exit-row__mark { width: 100px; height: 100px; }
  .exit-row__name { font-size: 19px; }
  .exit__band-text { font-size: 26px; }

  .about__list { grid-template-columns: 220px 1fr; column-gap: 24px; row-gap: 10px; }
  .about__list dt, .about__list dd { margin-top: 0; }
}

@media (min-width: 1280px) {
  .hero__inner { column-gap: 72px; }
  .collage { max-width: 600px; }
}

/* Compact legal and operations footer. Detailed information lives on linked pages. */
.site-footer {
  padding: 28px 20px;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}
.site-footer__note { max-width: 760px; margin: 0 auto 16px; font-size: 12px; line-height: 1.7; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.site-footer__nav a { color: var(--cream); font-size: 13px; font-weight: 800; text-underline-offset: 3px; }
.site-footer__brand { margin: 18px 0 0; font-size: 14px; font-weight: 900; }
