:root {
  --cream: #fff8df;
  --paper: #fffdf3;
  --ink: #201c18;
  --red: #d6352c;
  --red-dark: #a9221c;
  --blue: #1659a7;
  --yellow: #f1c934;
  --green: #32744a;
  --pink: #f3c5c7;
  --line: #2a241e;
  --shadow: 8px 9px 0 rgba(42, 36, 30, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12px 12px, rgba(214, 53, 44, .08) 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}
body.extra-large { font-size: 21px; }
body.extra-large input,
body.extra-large select,
body.extra-large textarea { font-size: 1.15rem; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  background: #fff;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

.top-note {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 9px 20px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .06em;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 52px;
  gap: 28px;
  border-bottom: 3px solid var(--ink);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; line-height: .9; }
.logo-flower {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--red);
  font-size: 2rem;
  transform: rotate(-7deg);
}
.logo strong { display: block; font-family: Georgia, serif; font-size: 1.38rem; letter-spacing: -.04em; }
.logo small { display: block; margin-top: 6px; font-size: .65rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}
nav a:hover, nav a:focus-visible { background: var(--yellow); outline: 2px solid var(--ink); }
.header-tools { position: relative; display: flex; align-items: center; gap: 12px; }
.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.language-switcher button {
  min-width: 48px;
  min-height: 46px;
  padding: 8px 10px;
  border: 0;
  border-right: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 950;
}
.language-switcher button:last-child { border-right: 0; }
.language-switcher button:hover { background: #f8e99f; }
.language-switcher button[aria-pressed="true"] { background: var(--blue); color: #fff; }
.size-button {
  min-height: 48px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
}
.size-button span { color: var(--red); font-family: Georgia, serif; font-size: 1.25rem; }
.size-button b { font-weight: 950; }
.size-button:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.language-note {
  position: absolute;
  left: 0;
  right: auto;
  top: 58px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  width: 175px;
  max-width: 175px;
  margin: 0;
  padding: 5px 8px;
  background: var(--cream);
  transform: rotate(-3deg);
}
.language-note b { flex: 0 0 auto; margin-top: -2px; font-size: 1.7rem; }
.language-note span { line-height: 1.2; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: center;
  width: min(1240px, calc(100% - 36px));
  min-height: 710px;
  margin: 0 auto;
  padding: 68px 0 82px;
  gap: 60px;
}
.hero-copy { position: relative; }
.kicker, .chapter {
  margin: 0 0 18px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.kicker span { animation: blink 1.25s steps(1) infinite; }
h1, h2, .recipe-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .84;
}
h1 { font-size: clamp(4.3rem, 8.4vw, 8.2rem); }
h1 em, .finale h2 em { color: var(--red); font-style: italic; }
.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  font-family: Georgia, serif;
  font-size: 1.26rem;
  line-height: 1.42;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.big-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 24px;
  border: 3px solid var(--ink);
  border-radius: 13px;
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.big-button:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.big-button:active { transform: translate(5px, 5px); box-shadow: 1px 1px 0 var(--ink); }
.big-button.primary { background: var(--red); color: #fff; }
.big-button.secondary { background: var(--yellow); }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 28px 0 0; list-style: none; font-size: .82rem; font-weight: 900; }
.hand-note {
  color: var(--blue);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
  transform: rotate(-6deg);
  overflow-wrap: anywhere;
}
.hand-note span { display: inline-block; font-size: 1em; line-height: inherit; }
.hand-note b { display: inline-block; font-size: 2em; line-height: .65; }
.title-note { width: max-content; max-width: 90%; margin: 18px 3% -3px auto; transform: rotate(4deg); }
.hero-button-note, .tea-note {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 44%;
  margin: 13px 26px -2px 12px;
  vertical-align: top;
}
.tea-note { margin-left: 0; transform: rotate(5deg); }
.hero-picture { position: relative; min-height: 540px; }
.sunburst {
  position: absolute;
  inset: 20px 0 0;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--yellow) 0 8deg, transparent 8deg 16deg);
  opacity: .5;
  animation: slow-spin 45s linear infinite;
}
.photo-frame {
  position: absolute;
  left: 8%;
  top: 78px;
  width: 78%;
  padding: 14px 14px 20px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}
.cat-button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden; }
.cat-button img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; transition: transform .3s ease; }
.cat-button:hover img { transform: scale(1.04); }
.cat-button.petted img { animation: cat-wiggle .45s ease; }
.photo-frame p { margin: 15px 6px 0; font-family: "Comic Sans MS", "Segoe Print", cursive; font-size: 1rem; line-height: 1.15; text-align: center; }
.cat-note {
  position: absolute;
  right: 16px;
  top: 4px;
  z-index: 6;
  width: max-content;
  max-width: 70%;
  margin: 0;
  padding: 8px 10px;
  background: var(--cream);
  line-height: 1.25;
  transform: rotate(4deg);
}
.cat-note span { font-size: 1em; line-height: inherit; }
.cat-click-note {
  position: absolute;
  left: -18px;
  bottom: 18px;
  z-index: 5;
  width: max-content;
  max-width: 58%;
  margin: 0;
  padding: 7px 9px;
  background: var(--cream);
  transform: rotate(-7deg);
}
.cat-click-note span { font-size: 1em; line-height: inherit; }
.approved-stamp {
  position: absolute;
  right: -3px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  border: 5px double var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: .72rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-13deg);
}

.ticker { overflow: hidden; border-block: 3px solid var(--ink); background: var(--blue); color: #fff; }
.ticker-track { display: flex; width: max-content; animation: ticker 72s linear infinite; will-change: transform; }
.ticker-group { display: flex; flex: 0 0 auto; }
.ticker-group span { flex: 0 0 auto; padding: 13px 48px 13px 0; font-size: .82rem; font-weight: 950; letter-spacing: .13em; white-space: nowrap; }
.ticker:hover .ticker-track { animation-play-state: paused; }

.section { position: relative; width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 25px; margin-bottom: 42px; }
.section-heading .chapter { grid-column: 1 / -1; margin-bottom: -10px; }
.section-heading h2, .paper-card h2, .lesson-copy h2, .recipe-copy h2 { font-size: clamp(3.25rem, 7vw, 6.7rem); }
.section-heading > p:last-child { max-width: 430px; margin: 0 0 5px; font-family: Georgia, serif; font-size: 1.1rem; }
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 26px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.action-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 11px 14px 0 rgba(42, 36, 30, .18); }
.action-card.red { background: #f59a91; }
.action-card.blue { background: #9ec8e9; }
.action-card.yellow { background: #f6dc75; }
.action-icon { display: grid; place-items: center; width: 80px; height: 80px; margin-bottom: auto; border: 3px solid var(--ink); border-radius: 50%; background: var(--paper); font-size: 2.2rem; }
.action-card small { display: block; margin-bottom: 8px; font-weight: 950; letter-spacing: .12em; }
.action-card strong { display: block; font-family: Georgia, serif; font-size: 2rem; letter-spacing: -.055em; line-height: .95; }
.action-card em { display: block; margin-top: 11px; font-size: .84rem; font-style: normal; }
.action-card b { position: absolute; right: 20px; top: 22px; font-size: 2.2rem; }
.action-note { position: absolute; right: 15%; bottom: 28px; padding: 5px 8px; background: var(--cream); transform: rotate(4deg); }

.form-section { display: grid; grid-template-columns: .62fr 1.25fr; align-items: center; gap: 60px; }
.form-photo { position: relative; }
.form-photo img { width: 100%; max-height: 760px; object-fit: cover; border: 3px solid var(--ink); box-shadow: -12px 14px 0 var(--pink); transform: rotate(-3deg); }
.form-photo span { position: absolute; right: -22px; bottom: 30px; padding: 13px 17px; border: 2px solid var(--ink); background: var(--yellow); font-family: "Comic Sans MS", cursive; font-weight: 900; line-height: 1.1; transform: rotate(5deg); }
.paper-card { position: relative; padding: 52px; border: 3px solid var(--ink); background: var(--paper); box-shadow: 14px 16px 0 rgba(42, 36, 30, .15); transform: rotate(.35deg); }
.paper-card::before { content: ""; position: absolute; inset: 11px; pointer-events: none; border: 1px dashed rgba(42, 36, 30, .32); }
.paper-pin { position: absolute; left: 50%; top: -12px; width: 23px; height: 23px; border: 3px solid var(--ink); border-radius: 50%; background: var(--red); box-shadow: 2px 3px 0 rgba(0, 0, 0, .25); }
.paper-card h2 { max-width: 750px; font-size: clamp(2.8rem, 5.4vw, 5.4rem); }
.form-intro { margin: 22px 0 32px; font-family: Georgia, serif; font-size: 1.05rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { margin-bottom: 22px; }
.first-field { position: relative; }
.field-group label { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-weight: 950; }
.field-group label span { display: grid; place-items: center; width: 29px; height: 29px; flex: 0 0 29px; border-radius: 50%; background: var(--blue); color: #fff; font-size: .78rem; }
input, select, textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #81786e; opacity: 1; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22, 89, 167, .2); }
.field-group small { display: block; margin-top: 7px; color: #675f56; font-size: .76rem; }
.input-note {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 12px 4px -2px auto;
  padding: 0;
  background: transparent;
  transform: rotate(3deg);
}
.quick-phrases { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.quick-phrases button { padding: 8px 11px; border: 2px solid var(--ink); border-radius: 999px; background: var(--cream); cursor: pointer; font-size: .73rem; font-weight: 900; }
.quick-phrases button:hover { background: var(--yellow); }
.phrase-note { width: max-content; margin: 14px 3px -5px auto; transform: rotate(-4deg); }
.check-line { display: flex; align-items: center; gap: 12px; margin: 10px 0 22px; cursor: pointer; font-weight: 900; }
.check-line input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check-line > span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border: 3px solid var(--ink); background: #fff; }
.check-line input:checked + span::after { content: "✓"; color: var(--green); font-size: 1.6rem; font-weight: 950; }
.check-line input:focus-visible + span { box-shadow: 0 0 0 4px rgba(22, 89, 167, .22); }
.submit-button { width: 100%; min-height: 72px; padding: 14px 22px; border: 3px solid var(--ink); border-radius: 10px; background: var(--green); box-shadow: 6px 6px 0 var(--ink); color: #fff; cursor: pointer; font-weight: 950; }
.submit-button:hover { background: #285f3d; }
.submit-button > span { font-size: 1rem; }
.submit-button > b { float: right; font-size: 1.5rem; }
.submit-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: max-content;
  max-width: 100%;
  margin: 16px 2px 0 auto;
  transform: rotate(3deg);
}
.form-result { min-height: 1.6em; margin: 18px 0 0; color: var(--green); font-weight: 950; }
.form-result.error { color: var(--red); }

.lesson-section { background: var(--blue); color: #fff; border-block: 3px solid var(--ink); }
.lesson-inner { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 110px 0; gap: 62px; }
.chapter.light { color: var(--yellow); }
.lesson-copy h2 { font-size: clamp(3.2rem, 5vw, 5rem); line-height: .88; }
.lesson-copy > p:not(.chapter) { max-width: 600px; font-family: Georgia, serif; font-size: 1.15rem; }
.rule-box { margin-top: 30px; padding: 22px; border: 3px solid #fff; background: rgba(0, 0, 0, .15); }
.rule-box strong { color: var(--yellow); letter-spacing: .11em; }
.rule-box p { margin: 9px 0 0; font-weight: 800; }
.scam-card { position: relative; border: 4px solid var(--ink); background: #fff; color: var(--ink); box-shadow: 15px 17px 0 rgba(0, 0, 0, .28); transform: rotate(2deg); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px; border-bottom: 3px solid var(--ink); background: #d8d8d8; }
.browser-bar i { width: 13px; height: 13px; border: 2px solid var(--ink); border-radius: 50%; background: var(--red); }
.browser-bar i:nth-child(2) { background: var(--yellow); }
.browser-bar i:nth-child(3) { background: #50aa65; }
.browser-bar span { flex: 1; margin-left: 5px; padding: 6px 10px; border: 2px solid var(--ink); background: #fff; font-size: .65rem; }
.scam-content { padding: 38px 34px 22px; text-align: center; }
.warning-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 18px; border: 4px solid var(--ink); border-radius: 50%; background: var(--yellow); color: var(--red); font-size: 2.6rem; font-weight: 950; }
.scam-content > p { margin: 0; color: var(--red); font-weight: 950; letter-spacing: .1em; }
.scam-content h3 { margin: 12px 0 4px; font-family: Arial, sans-serif; font-size: 2.45rem; line-height: .95; text-transform: uppercase; }
.scam-content small { display: block; margin-bottom: 25px; }
.scam-content button { width: 100%; min-height: 61px; border: 3px solid var(--ink); border-radius: 8px; cursor: pointer; font-weight: 950; }
#scamButton { background: var(--red); color: #fff; animation: suspicious 1s ease-in-out infinite; }
.scam-content .safe-button { margin-top: 0; background: #d9efd9; }
.scam-content > .hand-note {
  position: relative;
  inset: auto;
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: normal;
  text-align: right;
  text-transform: none;
}
.scam-note { margin: 9px 0 13px auto !important; transform: rotate(2deg); }
.safe-note { margin: 9px auto 0 0 !important; transform: rotate(-2deg); }

.recipe-section { display: grid; grid-template-columns: .95fr 1fr; align-items: center; gap: 75px; }
.recipe-photo { position: relative; }
.recipe-photo img { width: 100%; max-height: 700px; object-fit: cover; border: 3px solid var(--ink); box-shadow: var(--shadow); transform: rotate(-2deg); }
.photo-caption { position: absolute; left: -25px; bottom: 22px; padding: 14px 18px; border: 3px solid var(--ink); background: var(--paper); font-family: "Comic Sans MS", cursive; font-weight: 900; line-height: 1.1; transform: rotate(3deg); }
.recipe-copy > p:not(.chapter, .recipe-secret) { font-family: Georgia, serif; font-size: 1.12rem; }
.portion-control { display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; margin: 24px 0; border: 3px solid var(--ink); border-radius: 10px; overflow: hidden; }
.portion-control button { height: 62px; border: 0; background: var(--yellow); cursor: pointer; font-size: 2rem; font-weight: 950; }
.portion-control button:first-child { border-right: 3px solid var(--ink); }
.portion-control button:last-child { border-left: 3px solid var(--ink); }
.portion-control output { text-align: center; font-weight: 950; }
.portion-note { width: max-content; margin: -12px 0 22px auto; transform: rotate(5deg); }
.ingredients { padding: 0; margin: 0; border-top: 3px solid var(--ink); list-style: none; }
.ingredients li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 3px; border-bottom: 2px dashed rgba(42, 36, 30, .45); }
.recipe-button { width: 100%; min-height: 62px; margin-top: 25px; border: 3px solid var(--ink); border-radius: 9px; background: var(--blue); color: #fff; cursor: pointer; font-weight: 950; }
.recipe-secret { display: none; margin: 15px 0 0; padding: 17px; border: 3px solid var(--ink); background: var(--yellow); font-weight: 900; }
.recipe-secret.visible { display: block; animation: pop .25s ease; }

.finale { position: relative; overflow: hidden; padding: 120px 20px; border-top: 3px solid var(--ink); background: var(--yellow); text-align: center; }
.finale::before, .finale::after { content: "✿ ✿ ✿"; position: absolute; color: var(--red); font-size: 5rem; letter-spacing: .3em; transform: rotate(-18deg); opacity: .35; }
.finale::before { left: -30px; top: 40px; }
.finale::after { right: -30px; bottom: 40px; transform: rotate(18deg); }
.finale > p { font-weight: 950; letter-spacing: .17em; }
.finale h2 { font-size: clamp(4rem, 10vw, 9rem); }
.finale .big-button { margin: 35px auto 24px; }
.finale > a { display: block; font-weight: 900; }
.finale-signature { position: absolute; right: 12%; top: 32%; color: var(--blue); font-family: "Comic Sans MS", cursive; font-size: 1.25rem; font-weight: 900; transform: rotate(8deg); }

footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; padding: 34px max(18px, calc((100% - 1180px) / 2)); background: var(--ink); color: #fff; }
footer strong { font-family: Georgia, serif; font-size: 1.4rem; }
footer p, footer span { margin: 0; color: #ddd2c8; font-size: .78rem; }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  width: min(520px, calc(100% - 32px));
  padding: 18px 22px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  font-weight: 950;
  text-align: center;
  transform: translate(-50%, 170%);
  transition: transform .25s ease;
}
.toast.visible { transform: translate(-50%, 0); }

button:focus-visible, a:focus-visible { outline: 4px solid var(--yellow); outline-offset: 4px; }
@keyframes blink { 50% { opacity: .2; } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes suspicious { 50% { transform: scale(1.025) rotate(-.5deg); } }
@keyframes cat-wiggle { 25% { transform: rotate(-2deg) scale(1.03); } 75% { transform: rotate(2deg) scale(1.03); } }
@keyframes pop { from { opacity: 0; transform: scale(.95); } }

@media (max-width: 1050px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: 28px; }
  .hero-picture { min-height: 470px; }
  .form-section { grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr); gap: 36px; }
  .paper-card { padding: 38px; }
  .lesson-inner { grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr); gap: 40px; }
  .recipe-section { gap: 44px; }
}

@media (max-width: 790px) {
  :root { --shadow: 5px 6px 0 rgba(42, 36, 30, .18); }
  body { font-size: 17px; }
  body.extra-large { font-size: 19px; }
  .top-note {
    padding: 8px max(12px, env(safe-area-inset-right)) 8px max(12px, env(safe-area-inset-left));
    font-size: .7rem;
    line-height: 1.3;
  }
  .top-note span { display: none; }
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    width: min(100% - 24px, 680px);
    padding: 14px 0 55px;
    gap: 14px;
  }
  .logo { justify-self: start; }
  .logo small { display: block; }
  .header-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(136px, auto);
    width: 100%;
    margin: 0;
    gap: 10px;
  }
  .language-switcher { width: 100%; }
  .language-switcher button { min-width: 0; min-height: 52px; padding-inline: 5px; }
  .size-button { width: 100%; min-height: 52px; padding: 8px 10px; font-size: .74rem; line-height: 1.05; }
  .language-note { left: 0; top: 61px; width: min(175px, 50vw); padding-left: 2px; }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 680px);
    min-height: 0;
    padding: 52px 0 68px;
    gap: 12px;
  }
  .hero-copy, .hero-picture, .section-heading > *, .paper-card, .lesson-copy, .scam-card, .recipe-copy, .recipe-photo { min-width: 0; }
  h1 { font-size: clamp(3.7rem, 16vw, 6rem); line-height: .86; overflow-wrap: normal; }
  .hero-lead { max-width: 36rem; font-size: 1.08rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .big-button { width: 100%; min-height: 68px; padding: 16px 18px; }
  .hero-button-note, .tea-note { display: inline-flex; align-items: center; max-width: 100%; margin: 11px 10px 0 4px; }
  .trust-list { display: grid; gap: 8px; margin-top: 24px; }
  .hero-picture { min-height: 0; padding: 70px 0 58px; }
  .sunburst { inset: 30px 0 16px; }
  .photo-frame { position: relative; left: auto; top: auto; width: calc(100% - 24px); margin: 0 auto; transform: rotate(1.3deg); }
  .cat-note { right: 4px; top: 7px; max-width: 78%; }
  .cat-click-note { left: 0; bottom: 5px; max-width: 66%; }
  .approved-stamp { right: -1px; bottom: 35px; width: 104px; height: 104px; }

  .ticker-group span { padding-block: 12px; font-size: .74rem; }
  .section { width: min(100% - 28px, 680px); padding: 76px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .section-heading .chapter { margin-bottom: -4px; }
  .section-heading > p:last-child { margin: 0; }
  .section-heading h2, .paper-card h2, .lesson-copy h2, .recipe-copy h2 { font-size: clamp(3rem, 12.5vw, 4.7rem); line-height: .88; }

  .action-grid { grid-template-columns: 1fr; gap: 15px; }
  .action-card { min-height: 270px; padding: 23px; }
  .action-icon { width: 68px; height: 68px; font-size: 1.9rem; }
  .action-card strong { font-size: 1.8rem; }
  .action-note { display: none; }

  .form-section { grid-template-columns: 1fr; gap: 30px; }
  .form-photo { display: none; }
  .paper-card { width: 100%; padding: 34px 26px; transform: none; box-shadow: 7px 8px 0 rgba(42, 36, 30, .15); }
  .paper-card::before { inset: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  input, select, textarea { min-height: 60px; padding: 14px; font-size: 1rem; }
  textarea { min-height: 140px; }
  .quick-phrases { display: grid; grid-template-columns: 1fr; }
  .quick-phrases button { min-height: 48px; text-align: left; }
  .input-note, .phrase-note, .submit-note { max-width: 92%; font-size: .86rem; }
  .check-line { align-items: flex-start; line-height: 1.25; }
  .check-line > span { width: 38px; height: 38px; flex-basis: 38px; }
  .submit-button { min-height: 74px; padding-inline: 18px; }

  .lesson-inner {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 680px);
    padding: 76px 0 82px;
    gap: 38px;
  }
  .lesson-copy > p:not(.chapter) { font-size: 1.05rem; }
  .rule-box { margin-top: 24px; padding: 19px; }
  .scam-card { width: calc(100% - 8px); justify-self: center; transform: none; box-shadow: 7px 9px 0 rgba(0, 0, 0, .28); }
  .browser-bar { min-width: 0; padding: 9px; }
  .browser-bar i { width: 11px; height: 11px; flex: 0 0 11px; }
  .browser-bar span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .scam-content { padding: 30px 22px 20px; }
  .scam-content h3 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .scam-content button { min-height: 66px; padding: 12px; }
  .scam-content > .hand-note { white-space: normal; text-align: left; }

  .recipe-section { grid-template-columns: 1fr; gap: 48px; }
  .recipe-photo { order: 2; width: calc(100% - 8px); justify-self: center; }
  .recipe-photo img { max-height: 480px; transform: rotate(-1deg); }
  .photo-caption { left: 5px; bottom: 12px; max-width: calc(100% - 10px); padding: 11px 13px; font-size: .84rem; }
  .portion-control { grid-template-columns: 64px minmax(0, 1fr) 64px; }
  .portion-control button { min-height: 64px; }
  .portion-note { max-width: 100%; font-size: .85rem; }
  .recipe-button { min-height: 68px; padding: 12px; }

  .finale { padding: 86px max(16px, env(safe-area-inset-right)) 86px max(16px, env(safe-area-inset-left)); }
  .finale h2 { font-size: clamp(3.7rem, 14vw, 6rem); line-height: .86; }
  .finale .big-button { width: min(100%, 420px); }
  .finale-signature { display: none; }
  footer { grid-template-columns: 1fr; gap: 10px; padding: 30px max(18px, env(safe-area-inset-right)) 30px max(18px, env(safe-area-inset-left)); text-align: center; }
  .toast { bottom: max(14px, env(safe-area-inset-bottom)); width: calc(100% - 24px); padding: 15px 17px; box-shadow: 4px 4px 0 var(--ink); font-size: .9rem; }
}

@media (max-width: 430px) {
  .logo-flower { width: 42px; height: 42px; }
  .logo strong { font-size: 1.08rem; }
  .logo small { font-size: .58rem; }
  .header-tools { grid-template-columns: minmax(0, 1fr) 138px; }
  .language-switcher button { font-size: .7rem; }
  .size-button b { font-size: .68rem; }
  .language-note { top: 60px; width: 160px; font-size: .82rem; }
  h1 { font-size: clamp(3.2rem, 16.2vw, 4.25rem); }
  .title-note { margin-right: 0; font-size: .84rem; }
  .hero-picture { padding-top: 62px; }
  .photo-frame { width: calc(100% - 10px); padding: 9px 9px 16px; }
  .photo-frame p { font-size: .86rem; }
  .cat-note { right: 0; max-width: 88%; font-size: .82rem; }
  .cat-click-note { max-width: 75%; font-size: .78rem; }
  .approved-stamp { width: 88px; height: 88px; font-size: .61rem; }
  .section { padding: 66px 0; }
  .section-heading h2, .paper-card h2, .lesson-copy h2, .recipe-copy h2 { font-size: clamp(2.7rem, 12.8vw, 3.6rem); }
  .action-card { min-height: 250px; padding: 20px; }
  .paper-card { padding: 30px 20px; }
  .paper-card::before { inset: 6px; }
  .field-group label { align-items: flex-start; line-height: 1.2; }
  .phrase-note { margin-right: 0; }
  .scam-content { padding: 26px 16px 18px; }
  .warning-icon { width: 58px; height: 58px; font-size: 2.2rem; }
  .scam-content h3 { font-size: 1.85rem; }
  .portion-control { grid-template-columns: 58px minmax(0, 1fr) 58px; }
  .finale h2 { font-size: clamp(3.25rem, 15vw, 4.4rem); }
}

@media (hover: none) {
  .big-button:hover, .action-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
