:root {
  color-scheme: light;
  --paper: #f3efe3;
  --paper-light: #fffaf0;
  --white: #fffdf8;
  --ink: #18100d;
  --muted: #796c5e;
  --red: #ee001d;
  --red-deep: #c60018;
  --gold: #b98a35;
  --gold-soft: #f2d38b;
  --line: rgba(180, 26, 34, 0.2);
  --shadow: rgba(88, 33, 22, 0.24);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.94), transparent 20rem),
    radial-gradient(circle at 84% 17%, rgba(255, 112, 124, 0.18), transparent 21rem),
    linear-gradient(180deg, #fffdf7 0 7%, var(--paper) 7% 78%, var(--red) 78% 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lang-ja {
  display: none;
}

body[data-lang="ja"] .lang-en {
  display: none;
}

body[data-lang="ja"] .lang-ja {
  display: inline;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(198, 0, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 0, 24, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 62%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.recipe-stage {
  position: relative;
  min-height: 100svh;
  padding: 76px clamp(20px, 5vw, 72px) clamp(24px, 4vw, 52px);
  overflow: hidden;
  isolation: isolate;
}

.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(22px, 7vw, 96px);
  border-bottom: 1px solid rgba(24, 16, 13, 0.08);
  background: rgba(255, 253, 248, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-logo {
  color: rgba(24, 16, 13, 0.58);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2.2vw, 1.65rem);
  letter-spacing: 0.18em;
}

.site-chrome nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(24, 16, 13, 0.58);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-chrome nav a,
.mobile-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.site-chrome nav a:hover,
.site-chrome nav a.is-active,
.mobile-dock a.is-active {
  border-color: rgba(238, 0, 29, 0.24);
  background: rgba(238, 0, 29, 0.08);
  color: var(--red);
}

.mobile-dock {
  display: none;
}

.side-note {
  position: fixed;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.side-note-left {
  left: max(42px, calc(50vw - 595px));
  display: grid;
  width: min(29vw, 360px);
  gap: 28px;
}

.side-note-left p {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--red);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  line-height: 0.9;
  text-transform: lowercase;
}

.side-note-left ol {
  display: grid;
  gap: 10px;
  max-width: 320px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-note-left a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 7px 16px 7px 7px;
  border: 1.5px solid rgba(238, 0, 29, 0.42);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.25;
  box-shadow: 0 14px 34px rgba(198, 0, 24, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.side-note-left a > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 800;
}

.side-note-right {
  right: max(28px, calc(50vw - 645px));
  width: min(29vw, 370px);
  transform: translateY(calc(-50% + 24px));
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 30px 24px 24px;
  border: 1px solid rgba(255, 226, 151, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(150deg, rgba(255, 236, 176, 0.18), transparent 19%),
    radial-gradient(circle at 74% 13%, rgba(255, 215, 128, 0.34), transparent 22%),
    radial-gradient(circle at 46% 43%, rgba(238, 0, 29, 0.28), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(255, 185, 85, 0.16), transparent 32%),
    linear-gradient(162deg, #25160e 0%, #090505 36%, #020101 62%, #180b08 100%);
  color: #fff7de;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 58px rgba(255, 215, 128, 0.08),
    0 28px 72px rgba(26, 8, 4, 0.36),
    0 0 54px rgba(185, 138, 53, 0.16);
}

.product-card::before,
.product-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.product-card::before {
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(255, 225, 146, 0.32);
  border-radius: 26px;
  background-image:
    radial-gradient(circle, rgba(255, 232, 168, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(238, 0, 29, 0.72) 0 1px, transparent 2px);
  background-position:
    10% 18%,
    84% 78%;
  background-size:
    64px 86px,
    88px 72px;
}

.product-card::after {
  inset: -20% 18% auto auto;
  width: 42%;
  height: 138%;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 176, 0.18), transparent);
  transform: rotate(16deg);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.kicker,
.eyebrow,
.group-label {
  margin: 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card .kicker {
  color: #edcf84;
}

.product-card h2 {
  margin: 12px 0 18px;
  color: #f8dda0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 0.96;
}

.product-card figure {
  width: min(88%, 270px);
  margin: 22px auto 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 146, 0.42);
  border-radius: 30px;
  background: #030202;
}

.product-card figure img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: center;
}

.product-card dl,
.recipe-specs,
.product-sheet dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 18px 0 0;
}

.product-card dl div,
.product-sheet dl div {
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 10px 6px;
  border: 1px solid rgba(255, 225, 146, 0.24);
  border-radius: 14px;
  background: rgba(255, 225, 146, 0.045);
}

.product-card dt,
.product-card dd,
.product-sheet dt,
.product-sheet dd {
  margin: 0;
}

.product-card dt {
  color: rgba(255, 225, 146, 0.62);
  font-family: var(--serif);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card dd {
  color: #fff7de;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card p:not(.kicker) {
  max-width: 19em;
  margin: 17px auto 0;
  color: rgba(255, 247, 222, 0.66);
  font-size: 0.78rem;
  line-height: 1.8;
}

.product-card a,
.product-sheet a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 20px;
  padding: 0 20px;
  border: 1px solid rgba(255, 225, 146, 0.64);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0b8, #b9822a 58%, #f0cf7b);
  color: #180e08;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.phone-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 116px);
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(92vw, 392px);
  aspect-ratio: 9 / 19.5;
  padding: 11px;
  border: 1px solid rgba(255, 235, 177, 0.74);
  border-radius: 50px;
  background:
    linear-gradient(142deg, rgba(255, 244, 198, 0.95), rgba(169, 119, 38, 0.88) 7%, rgba(12, 10, 9, 0.98) 17%, #050403 48%, rgba(49, 34, 19, 0.98) 70%, rgba(235, 190, 94, 0.92) 88%, rgba(255, 245, 202, 0.96)),
    #070605;
  box-shadow:
    0 42px 92px rgba(86, 39, 22, 0.34),
    0 0 0 10px rgba(255, 253, 248, 0.8),
    0 0 0 13px rgba(238, 0, 29, 0.04),
    inset 0 0 0 1px rgba(255, 251, 225, 0.28),
    inset 0 0 0 5px rgba(0, 0, 0, 0.68);
}

.phone-frame::before {
  position: absolute;
  inset: 8px;
  z-index: 4;
  content: "";
  border: 1.5px solid rgba(232, 181, 84, 0.72);
  border-radius: 40px;
  pointer-events: none;
}

.phone-frame::after {
  position: absolute;
  top: 21%;
  right: -4px;
  z-index: 1;
  width: 4px;
  height: 14%;
  content: "";
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, #f6d381, #7d551f 46%, #15100b);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(255, 244, 198, 0.28);
  border-radius: 38px;
  background: var(--paper-light);
  scrollbar-width: none;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.88),
    inset 0 0 0 1px rgba(255, 255, 255, 0.64);
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.phone-screen::before {
  position: sticky;
  top: 7px;
  z-index: 10;
  display: block;
  width: 116px;
  height: 31px;
  margin: 7px auto -38px;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 75% 48%, #263356 0 5px, transparent 6px),
    #080808;
}

.status-bar {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 17px 24px 4px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.72) 72%, transparent);
  pointer-events: none;
}

.sensor {
  width: 31%;
}

.status-icons {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.status-icons span {
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.status-icons span:nth-child(1) {
  width: 4px;
  height: 10px;
}

.status-icons span:nth-child(2) {
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  background: transparent;
}

.status-icons span:nth-child(3) {
  width: 23px;
  height: 11px;
  border: 1px solid currentColor;
  background: linear-gradient(90deg, currentColor 72%, transparent 72%);
}

.app-nav {
  position: sticky;
  top: 50px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 11px 18px 9px;
  border-bottom: 1px solid rgba(238, 0, 29, 0.12);
  background: rgba(255, 253, 248, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand-mini {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-link,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
}

.language-toggle {
  gap: 7px;
  cursor: pointer;
  background: var(--white);
}

.toggle-dot {
  position: relative;
  width: 26px;
  height: 14px;
  border: 1px solid rgba(238, 0, 29, 0.35);
  border-radius: 999px;
}

.toggle-dot::before {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

body[data-lang="ja"] .toggle-dot::before {
  left: 13px;
}

.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  background: transparent;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

.recipe-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 520px;
  padding: 168px 18px 0 22px;
  overflow: hidden;
  background: #f8ead6;
  isolation: isolate;
}

.recipe-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.recipe-hero::before {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 120px;
  content: "";
  background:
    radial-gradient(115% 105% at 0% 100%, transparent 0 46%, var(--red) 47% 48%, transparent 49%),
    radial-gradient(115% 105% at 100% 100%, transparent 0 46%, var(--red) 47% 48%, transparent 49%),
    linear-gradient(var(--red), var(--red));
  clip-path: polygon(0 0, 100% 0, 100% 32%, 52% 100%, 48% 100%, 0 32%);
}

.recipe-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.48), transparent 24%),
    linear-gradient(0deg, rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.08) 38%, transparent 58%),
    linear-gradient(90deg, rgba(255, 250, 240, 0.9), transparent 52%);
}

.recipe-hero-copy {
  position: relative;
  z-index: 3;
  width: min(94%, 330px);
  max-width: none;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 14px 36px rgba(88, 33, 22, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.recipe-hero-copy .eyebrow {
  color: var(--red);
  font-size: 0.78rem;
}

.recipe-hero-copy h1 {
  width: 100%;
  margin: 10px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.64rem;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
  white-space: nowrap;
}

.recipe-hero-copy p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  color: rgba(24, 16, 13, 0.76);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
}

.recipe-lead {
  padding: 28px 20px 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(238, 0, 29, 0.08), transparent 9rem),
    var(--paper-light);
}

.recipe-lead p {
  margin: 0;
  color: rgba(24, 16, 13, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.9;
}

.recipe-specs span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 8px 6px;
  border: 1px solid rgba(238, 0, 29, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--red-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.section-title {
  padding: 34px 20px 18px;
}

.compact-title {
  padding: 8px 5px 2px;
}

.section-title h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.25;
  white-space: nowrap;
}

.featured-recipes {
  padding: 0 15px 30px;
  background: linear-gradient(180deg, var(--paper-light), #fff5e7);
}

.featured-card {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(238, 0, 29, 0.14);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(88, 33, 22, 0.12);
}

.featured-card img {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.featured-card.is-royale img {
  object-position: center 44%;
}

.featured-card.is-milk img {
  object-position: center 48%;
}

.featured-copy {
  padding: 18px 18px 20px;
}

.featured-copy > p:first-child {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.26rem;
  line-height: 1.25;
  white-space: nowrap;
}

.featured-copy h3.fit-title {
  font-size: 1rem;
}

.featured-copy span {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
}

.featured-copy p:not(:first-child) {
  margin: 14px 0 0;
  color: rgba(24, 16, 13, 0.72);
  font-size: 0.84rem;
  line-height: 1.82;
}

.featured-copy details {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(180, 26, 34, 0.14);
}

.featured-copy summary {
  cursor: pointer;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
}

.featured-copy ul {
  margin: 12px 0 0;
  padding-left: 1.15em;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.category-tabs {
  position: sticky;
  top: 120px;
  z-index: 7;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  border-top: 1px solid rgba(238, 0, 29, 0.12);
  border-bottom: 1px solid rgba(238, 0, 29, 0.12);
  background: rgba(255, 250, 240, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(238, 0, 29, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
}

.recipe-cards {
  display: grid;
  gap: 24px;
  padding: 22px 15px 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(238, 0, 29, 0.08), transparent 9rem),
    #fff8ed;
}

.recipe-group {
  display: grid;
  gap: 10px;
  scroll-margin-top: 140px;
}

.group-label {
  padding: 4px 2px;
}

.recipe-group article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 16px 16px 15px;
  border: 1px solid rgba(238, 0, 29, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 232, 0.88)),
    rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 30px rgba(88, 33, 22, 0.09);
}

.recipe-group article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red), rgba(238, 0, 29, 0.1), var(--gold-soft));
}

.recipe-group article span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.recipe-group article h3 {
  margin: 6px 0 7px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
}

.recipe-group article h3.fit-title {
  font-size: 0.86rem;
}

.recipe-group article p {
  margin: 0;
  color: rgba(24, 16, 13, 0.7);
  font-size: 0.8rem;
  line-height: 1.76;
}

.recipe-group details {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(180, 26, 34, 0.12);
}

.recipe-group summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  cursor: pointer;
  border: 1px solid rgba(238, 0, 29, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
}

.recipe-group ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.72;
}

.product-sheet {
  padding: 30px 18px 40px;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 225, 146, 0.22), transparent 9rem),
    radial-gradient(circle at 20% 88%, rgba(238, 0, 29, 0.18), transparent 10rem),
    linear-gradient(158deg, #23140e, #070303 48%, #170805);
  color: #fff7de;
}

.product-sheet .eyebrow {
  color: #edcf84;
}

.product-sheet h2 {
  margin: 10px 0 16px;
  color: #f8dda0;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.24;
  white-space: nowrap;
}

.package-proof {
  position: relative;
  overflow: hidden;
  margin: 18px 0 18px;
  border: 1px solid rgba(255, 225, 146, 0.25);
  border-radius: 22px;
  background: #050303;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.package-proof::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.2));
}

.package-proof img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-sheet dl {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.product-sheet dl div {
  grid-template-columns: 82px 1fr;
  align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  border-color: rgba(255, 225, 146, 0.22);
  border-radius: 16px;
}

.product-sheet dt {
  color: rgba(255, 225, 146, 0.62);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-sheet dd {
  color: rgba(255, 247, 222, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
}

.product-sheet a {
  margin-top: 18px;
}

@media (max-width: 1240px) {
  .side-note {
    display: none;
  }

  .recipe-stage {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, #fff 0 7.2rem, transparent 7.2rem),
      radial-gradient(circle at 78% 14%, rgba(255, 112, 124, 0.16), transparent 14rem),
      linear-gradient(180deg, #fffdf7 0 9%, var(--paper) 9% 72%, var(--red) 72% 100%);
  }

  .site-chrome {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: 6px;
    max-width: 380px;
    margin: 0 auto;
    padding: 7px;
    border: 1px solid rgba(238, 0, 29, 0.18);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 16px 40px rgba(24, 16, 13, 0.16);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-dock a {
    flex: 1 1 0;
    min-height: 34px;
    padding: 0 8px;
    color: rgba(24, 16, 13, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .recipe-stage {
    min-height: 100svh;
    padding: calc(env(safe-area-inset-top) + 34px) 0 calc(env(safe-area-inset-bottom) + 72px);
  }

  .phone-wrap {
    min-height: auto;
    place-items: start center;
  }

  .phone-frame {
    width: min(118vw, 520px);
    max-width: none;
    margin-top: 0;
    padding: 10px;
    border-radius: 48px;
  }

  .phone-frame::before {
    border-radius: 38px;
  }

  .phone-screen {
    border-radius: 36px;
  }

  .status-bar {
    min-height: 48px;
    padding: 16px 24px 4px;
  }

  .app-nav {
    top: 48px;
    min-height: 66px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .brand-mini {
    font-size: 0.98rem;
  }

  .recipe-hero,
  .recipe-hero img {
    min-height: 500px;
  }

  .recipe-hero-copy h1 {
    font-size: 1.64rem;
  }

  .recipe-hero-copy p:not(.eyebrow) {
    max-width: none;
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {
  .phone-frame {
    width: min(120vw, 500px);
    padding: 9px;
  }

  .phone-screen {
    border-radius: 34px;
  }

  .phone-screen::before {
    width: 108px;
    height: 29px;
    margin-top: 7px;
  }

  .status-bar {
    padding-right: 23px;
    padding-left: 23px;
    font-size: 0.82rem;
  }

  .app-nav {
    min-height: 64px;
  }

  .pill-link {
    min-height: 32px;
    padding: 0 10px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .recipe-hero,
  .recipe-hero img {
    min-height: 486px;
  }

  .recipe-hero-copy {
    width: min(94%, 320px);
  }

  .recipe-hero-copy h1 {
    font-size: 1.54rem;
  }

  .recipe-lead,
  .section-title {
    padding-right: 18px;
    padding-left: 18px;
  }

  .featured-card img {
    height: 190px;
  }

  .featured-copy h3 {
    font-size: 1.18rem;
  }

  .featured-copy h3.fit-title {
    font-size: 0.94rem;
  }

  .recipe-group article h3.fit-title {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
