:root {
  --cream: #fff7e8;
  --vanilla: #fffdf5;
  --pink: #f47c9b;
  --pink-dark: #d95f7f;
  --pink-soft: #ffe1e7;
  --mint: #a8e6dc;
  --mint-soft: #ddfbf6;
  --teal: #2bb8ad;
  --teal-dark: #177d78;
  --sky: #c9f2f3;
  --sky-dark: #8fdade;
  --coral: #ff9b8f;
  --lemon: #fff2b8;
  --chocolate: #4b2f2a;
  --text: #2d2a2a;
  --muted: #6f6863;
  --card: #fffaf0;
  --line: rgba(75, 47, 42, 0.16);
  --shadow: 0 12px 30px rgba(75, 47, 42, 0.12);
  --soft-shadow: 0 8px 18px rgba(75, 47, 42, 0.10);
  --radius: 8px;
  --max-width: 1280px;
  --display-font: "Cooper Black", Georgia, "Times New Roman", serif;
  --body-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at 18px 20px, rgba(75, 47, 42, 0.045) 1.1px, transparent 1.2px),
    radial-gradient(circle at 65px 50px, rgba(43, 184, 173, 0.055) 1px, transparent 1.1px),
    var(--cream);
  background-size: 88px 88px, 124px 124px, auto;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--vanilla);
  background: var(--chocolate);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.awning {
  position: relative;
  overflow: hidden;
  height: 28px;
  background-color: #fff7dc;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='28' viewBox='0 0 60 28' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='19' fill='%23ef7892'/%3E%3Crect x='30' width='30' height='19' fill='%23fff7dc'/%3E%3Cpath d='M0 18C0 25.5 6.7 28 15 28S30 25.5 30 18V0H0z' fill='%23ef7892'/%3E%3Cpath d='M30 18C30 25.5 36.7 28 45 28S60 25.5 60 18V0H30z' fill='%23fff7dc'/%3E%3Cpath d='M0 18C0 25.5 6.7 28 15 28S30 25.5 30 18M30 18C30 25.5 36.7 28 45 28S60 25.5 60 18' fill='none' stroke='%234b2f2a' stroke-opacity='.18' stroke-width='1.4'/%3E%3Cpath d='M30 0v18M60 0v18' stroke='%234b2f2a' stroke-opacity='.08' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 28px;
  background-repeat: repeat-x;
  box-shadow: 0 3px 9px rgba(75, 47, 42, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 232, 0.93);
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 116px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(190px, 21vw, 260px);
  height: auto;
}

.brand-word {
  display: none;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 3.55rem);
  font-style: italic;
  line-height: 0.85;
  text-shadow: 3px 3px 0 #fff7dc, 5px 5px 0 rgba(75, 47, 42, 0.10);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.site-nav a {
  position: relative;
  color: var(--text);
  font-weight: 750;
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--pink-dark);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--chocolate);
  background: var(--mint-soft);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 0 0 0 2px rgba(43, 184, 173, 0.22), var(--soft-shadow);
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
}

.menu-toggle {
  display: none;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  gap: 4px;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(75, 47, 42, 0.14);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  background: var(--mint);
  clip-path: polygon(0 72%, 12% 76%, 27% 72%, 43% 58%, 58% 34%, 75% 20%, 100% 16%, 100% 100%, 0 100%);
  opacity: 0.78;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(620px, 1.16fr);
  gap: 30px;
  align-items: center;
  min-height: 560px;
  padding: 34px 0 0;
}

.hero-copy {
  position: relative;
  padding-bottom: 36px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(5.1rem, 8.4vw, 8.75rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow: 4px 4px 0 #fff7dc, 7px 7px 0 rgba(75, 47, 42, 0.12);
}

.hero-tagline {
  max-width: 520px;
  margin: 24px 0 10px;
  color: var(--teal-dark);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.3vw, 2.7rem);
  font-style: italic;
  line-height: 1.05;
}

.hero-copy p {
  max-width: 500px;
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.sparkle {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--pink);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.75;
}

.sparkle.mint {
  background: var(--teal);
}

.sparkle.one {
  top: 36px;
  right: 4px;
}

.sparkle.two {
  top: 142px;
  left: -42px;
}

.sparkle.three {
  right: 20px;
  bottom: 142px;
}

.button,
.pill-button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
  box-shadow: 0 8px 16px rgba(217, 95, 127, 0.27);
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.button,
.pill-button {
  padding: 0 26px;
  font-size: 1rem;
}

.card-button {
  padding: 0 22px;
}

.button.secondary,
.card-button {
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  box-shadow: 0 8px 16px rgba(43, 184, 173, 0.24);
}

.button:hover,
.pill-button:hover,
.card-button:hover {
  transform: translateY(-1px);
}

.button::after,
.card-button::after {
  content: ">";
  font-weight: 900;
}

.hero-art {
  position: relative;
  align-self: stretch;
  display: grid;
  align-items: end;
  min-height: 520px;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(112%, 820px);
  height: 520px;
  margin: 0 -44px 8px auto;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 150px;
  box-shadow: var(--shadow);
}

.section {
  padding: 38px 0;
}

.feature-band {
  padding: 0;
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
  background: rgba(255, 253, 245, 0.64);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.42fr 0.76fr 0.72fr;
  gap: 18px;
  align-items: center;
  min-height: 205px;
  padding: 24px 28px;
  border-right: 1px solid rgba(75, 47, 42, 0.14);
}

.feature-panel:nth-child(2) {
  grid-template-columns: 0.95fr 0.56fr;
  border-right: 0;
  background: rgba(201, 242, 243, 0.36);
}

.feature-panel h2,
.split-panel h2,
.section-heading,
.page-section h2,
.footer-title {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-style: italic;
  letter-spacing: 0;
}

.feature-panel h2,
.split-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.feature-panel p,
.split-panel p,
.topic-card p,
.content-card p,
.fact-row p {
  margin: 0;
  color: var(--text);
}

.feature-panel .card-button {
  margin-top: 18px;
  padding: 0 18px;
}

.feature-art {
  width: 100%;
  max-width: 220px;
  justify-self: center;
}

.feature-icon-art {
  width: 78px;
  justify-self: center;
}

.feature-photo {
  aspect-ratio: 1.45;
  max-width: 250px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.round-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(43, 184, 173, 0.22);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 26px;
  font-size: clamp(2rem, 4vw, 2.65rem);
  text-align: center;
}

.section-heading::before,
.section-heading::after {
  content: "";
  width: 58px;
  height: 2px;
  background: var(--pink);
  box-shadow: 26px 0 0 -22px var(--pink);
}

.flavors-band {
  background:
    radial-gradient(circle at 32px 36px, rgba(255, 255, 255, 0.48) 1px, transparent 1.2px),
    linear-gradient(180deg, #ffe6eb, #ffeff2);
  background-size: 62px 62px, auto;
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.flavor-card,
.topic-card,
.content-card,
.mini-card,
.fact-row,
.plain-card {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.flavor-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 236px;
  padding: 16px 14px 14px;
  text-align: center;
}

.flavor-card h3 {
  margin: 10px 0 2px;
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0;
}

.flavor-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.3;
}

.flavor-scoop {
  position: relative;
  width: 112px;
  height: 86px;
  border-radius: 50% 50% 45% 45%;
  background: var(--scoop, #f47c9b);
  box-shadow: inset -12px -12px 0 rgba(75, 47, 42, 0.07), 0 8px 14px rgba(75, 47, 42, 0.12);
}

.flavor-image {
  width: 154px;
  height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(75, 47, 42, 0.10));
}

.flavor-scoop::before {
  content: "";
  position: absolute;
  inset: 16px 12px auto;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.flavor-scoop::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 18px;
  bottom: 18px;
  border-radius: 50%;
  background: var(--chip, rgba(75, 47, 42, 0.7));
  box-shadow: -38px -4px 0 -4px var(--chip, rgba(75, 47, 42, 0.7)), -18px 22px 0 -5px var(--chip, rgba(75, 47, 42, 0.7));
}

.heart {
  width: 22px;
  height: 22px;
  margin-top: 12px;
  color: var(--pink);
}

.flavor-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.split-section {
  padding: 0;
  background: linear-gradient(90deg, rgba(168, 230, 220, 0.55), rgba(255, 242, 184, 0.52));
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr;
}

.split-panel {
  min-height: 288px;
  padding: 26px 30px;
}

.split-panel:first-child {
  border-right: 1px solid rgba(75, 47, 42, 0.14);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.panel-header img {
  width: 62px;
  height: 62px;
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: end;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  overflow: hidden;
  min-height: 160px;
  background: var(--vanilla);
}

.mini-visual {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.mini-card h3,
.mini-card p {
  margin: 0;
  padding: 0 10px;
  text-align: center;
}

.mini-card h3 {
  padding-top: 8px;
  font-size: 0.94rem;
}

.mini-card p {
  padding-bottom: 9px;
  font-size: 0.78rem;
  line-height: 1.2;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.fact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  background: rgba(255, 250, 240, 0.90);
}

.fact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--teal-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.topic-section {
  background: rgba(255, 253, 245, 0.62);
}

.topic-grid,
.content-grid,
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.topic-card,
.content-card,
.plain-card {
  padding: 18px;
}

.topic-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 118px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.topic-card:hover,
.content-card:hover,
.plain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.topic-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--sky);
  font-weight: 900;
}

.topic-card h3,
.content-card h3,
.plain-card h3 {
  margin: 0 0 6px;
  color: var(--chocolate);
  font-size: 1.06rem;
  line-height: 1.2;
}

.topic-card p,
.content-card p,
.plain-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  margin-top: 0;
  color: var(--text);
  background: var(--sky);
}

.footer-inner {
  display: block;
  min-height: calc(0.9rem + 28px);
  padding: 0;
}

.footer-inner > * {
  display: none;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 190px;
  height: auto;
}

.footer-logo .brand-word {
  font-size: 2.1rem;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--chocolate);
  font-size: 1.2rem;
}

.footer-col ul {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

.newsletter {
  text-align: center;
}

.newsletter img {
  width: 92px;
  margin: 0 auto 6px;
}

.newsletter-form {
  display: flex;
  max-width: 330px;
  margin: 12px auto 0;
  padding: 4px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
}

.newsletter-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 0 12px;
  color: var(--text);
  background: transparent;
}

.newsletter-form button {
  min-height: 38px;
  padding: 0 18px;
}

.form-message {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.socials {
  display: flex;
  gap: 10px;
  margin: 10px 0 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.truck {
  width: 156px;
}

.copyright {
  display: block;
  padding: 14px 16px;
  color: #fff;
  background: var(--coral);
  text-align: center;
  font-size: 0.9rem;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 30%, rgba(244, 124, 155, 0.20) 0 90px, transparent 91px),
    radial-gradient(circle at 12% 80%, rgba(168, 230, 220, 0.45) 0 140px, transparent 141px),
    linear-gradient(135deg, rgba(255, 247, 232, 0.92), rgba(255, 225, 231, 0.52));
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: center;
  min-height: 270px;
  padding: 38px 0;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.12rem;
}

.page-hero-art {
  display: grid;
  place-items: center;
}

.page-hero-art .cone-badge {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--mint-soft);
  border: 2px solid rgba(43, 184, 173, 0.25);
  box-shadow: var(--shadow);
  font-size: 4rem;
}

.storage-page-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.storage-hero-art {
  justify-self: end;
  width: min(100%, 420px);
}

.storage-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid rgba(255, 250, 240, 0.88);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(75, 47, 42, 0.18);
}

.page-section {
  padding: 48px 0;
}

.page-section h2 {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.intro-panel,
.source-note,
.comparison-wrap {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--soft-shadow);
}

.intro-panel {
  padding: 24px;
}

.intro-panel p {
  margin: 0;
  font-size: 1.06rem;
}

.content-card {
  min-height: 148px;
}

.content-card a,
.plain-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

.science-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 242, 184, 0.78) 0 92px, transparent 93px),
    radial-gradient(circle at 16% 84%, rgba(168, 230, 220, 0.62) 0 136px, transparent 137px),
    linear-gradient(135deg, #fff7e8 0%, #ffe1e7 48%, #ddfbf6 100%);
}

.science-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.science-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
}

.science-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.science-hero-art {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.science-orbit {
  position: relative;
  width: 240px;
  height: 240px;
  border: 2px dashed rgba(75, 47, 42, 0.24);
  border-radius: 50%;
  background: rgba(255, 253, 245, 0.54);
  box-shadow: var(--shadow);
}

.science-hero-scoop {
  position: absolute;
  z-index: 2;
  width: 96px;
  filter: drop-shadow(0 14px 18px rgba(75, 47, 42, 0.18));
}

.science-hero-scoop-one {
  left: -28px;
  top: 26px;
  transform: rotate(-10deg);
}

.science-hero-scoop-two {
  right: -26px;
  top: 74px;
  transform: rotate(12deg);
}

.science-hero-scoop-three {
  left: 64px;
  bottom: -30px;
  transform: rotate(5deg);
}

.science-orbit::before,
.science-orbit::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 2px solid rgba(43, 184, 173, 0.18);
  border-radius: 50%;
}

.science-orbit::after {
  inset: 72px;
  border-color: rgba(244, 124, 155, 0.22);
}

.science-scoop {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 98px;
  height: 82px;
  border-radius: 54% 54% 42% 42%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.55) 0 13px, transparent 14px),
    linear-gradient(145deg, #f47c9b, #ffb5c5);
  box-shadow: inset -12px -12px 0 rgba(75, 47, 42, 0.08), 0 10px 18px rgba(75, 47, 42, 0.16);
  transform: translate(-50%, -50%);
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(75, 47, 42, 0.13);
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  font-size: 0.78rem;
}

.dot-fat {
  top: -12px;
  left: 48px;
  background: var(--lemon);
}

.dot-sugar {
  top: 58px;
  right: -20px;
  background: var(--pink-soft);
}

.dot-air {
  right: 34px;
  bottom: -16px;
  background: var(--sky);
}

.dot-ice {
  left: -14px;
  bottom: 56px;
  background: var(--mint-soft);
}

.science-nav-section {
  position: sticky;
  top: 117px;
  z-index: 8;
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(12px);
}

.science-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 11px 0;
  scrollbar-width: thin;
}

.science-nav a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(75, 47, 42, 0.13);
  border-radius: 999px;
  color: var(--chocolate);
  background: var(--vanilla);
  font-size: 0.9rem;
  font-weight: 850;
}

.science-nav a:hover {
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.science-intro {
  background: rgba(255, 253, 245, 0.62);
}

.science-image-strip {
  padding-top: 38px;
}

.science-photo-card {
  min-height: 372px;
}

.science-photo-card img {
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 242, 184, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(221, 251, 246, 0.42));
}

.science-intro-grid,
.science-split,
.science-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.science-intro .intro-panel h2 {
  margin: 0 0 12px;
}

.science-intro .intro-panel p + p,
.science-note-card p + p,
.science-story p + p {
  margin-top: 13px;
}

.section-lede {
  max-width: 900px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.science-snapshot,
.science-freezer-card,
.science-lab-card,
.science-feature-card,
.science-note-card,
.science-trouble-card,
.science-story,
.science-faq details {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.science-snapshot {
  padding: 20px;
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 242, 243, 0.78) 0 42px, transparent 43px),
    var(--card);
}

.science-snapshot h2,
.science-freezer-card h3,
.science-lab-card h3 {
  margin: 0 0 12px;
  color: var(--chocolate);
  font-family: var(--display-font);
  font-style: italic;
}

.science-snapshot dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.science-snapshot div {
  padding-top: 10px;
  border-top: 1px solid rgba(75, 47, 42, 0.12);
}

.science-snapshot div:first-child {
  border-top: 0;
  padding-top: 0;
}

.science-snapshot dt {
  color: var(--teal-dark);
  font-weight: 900;
}

.science-snapshot dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.science-feature-grid,
.science-columns,
.science-trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.science-feature-card,
.science-note-card,
.science-trouble-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.science-feature-card {
  min-height: 190px;
}

.science-card-photo {
  float: right;
  width: 92px;
  margin: -8px -8px 8px 14px;
  filter: drop-shadow(0 10px 14px rgba(75, 47, 42, 0.14));
}

.science-feature-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(168, 230, 220, 0.38);
}

.science-card-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
}

.science-feature-card h3,
.science-note-card h3,
.science-trouble-card h3 {
  margin: 0 0 8px;
  color: var(--chocolate);
  font-size: 1.1rem;
}

.science-feature-card p,
.science-note-card p,
.science-trouble-card p,
.science-freezer-card p,
.science-lab-card p,
.science-story p,
.science-faq p {
  margin: 0;
  color: var(--muted);
}

.science-band {
  background:
    radial-gradient(circle at 34px 34px, rgba(255, 255, 255, 0.52) 1px, transparent 1.2px),
    linear-gradient(180deg, rgba(221, 251, 246, 0.54), rgba(255, 247, 232, 0.72));
  background-size: 58px 58px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.science-freezer-card {
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(201, 242, 243, 0.72), rgba(255, 253, 245, 0.92));
}

.science-side-photo {
  width: 100%;
  height: 178px;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 22px rgba(75, 47, 42, 0.12);
}

.science-freezer-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal-dark);
  font-weight: 900;
}

.science-table td:first-child {
  color: var(--chocolate);
  font-weight: 900;
}

.science-trouble-card {
  background: rgba(255, 250, 240, 0.92);
}

.science-trouble-card p + p {
  margin-top: 10px;
}

.science-trouble-card strong {
  color: var(--chocolate);
}

.science-lab-list {
  margin-top: 8px;
}

.science-lab-card {
  padding: 22px;
  text-align: center;
}

.science-lab-card img {
  width: min(190px, 80%);
  margin: 0 auto 14px;
}

.science-story {
  max-width: 980px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 242, 184, 0.72) 0 82px, transparent 83px),
    var(--card);
}

.science-story-visual {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 1040px;
}

.science-story-visual img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(75, 47, 42, 0.16));
}

@media (max-width: 820px) {
  .science-story-visual {
    grid-template-columns: 1fr;
  }

  .science-story-visual img {
    max-height: 220px;
  }
}

.science-faq {
  display: grid;
  gap: 12px;
}

.science-faq details {
  padding: 0;
  background: rgba(255, 250, 240, 0.94);
}

.science-faq summary {
  cursor: pointer;
  padding: 17px 20px;
  color: var(--chocolate);
  font-weight: 900;
}

.science-faq p {
  padding: 0 20px 18px;
}

.source-note {
  padding: 18px 20px;
  color: var(--muted);
}

.source-note strong {
  color: var(--chocolate);
}

.history-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 247, 232, 0.96), rgba(255, 225, 231, 0.68)),
    radial-gradient(circle at 80% 16%, rgba(168, 230, 220, 0.65) 0 150px, transparent 151px);
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
}

.history-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.54fr);
  gap: 34px;
  align-items: center;
  min-height: 520px;
  padding: 46px 0;
}

.history-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(4rem, 8vw, 7.4rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.84;
  text-shadow: 4px 4px 0 #fff7dc, 7px 7px 0 rgba(75, 47, 42, 0.12);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-lede,
.history-section-lede {
  max-width: 820px;
  color: var(--text);
  font-size: 1.13rem;
}

.history-lede {
  margin: 24px 0 0;
}

.history-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.history-hero-card {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
}

.history-hero-card img {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.history-stamp {
  position: absolute;
  right: -12px;
  bottom: 36px;
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding: 16px 18px;
  border: 2px solid rgba(75, 47, 42, 0.13);
  border-radius: var(--radius);
  background: var(--lemon);
  box-shadow: var(--soft-shadow);
  transform: rotate(-3deg);
}

.history-stamp strong {
  color: var(--chocolate);
  font-family: var(--display-font);
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1;
}

.history-stamp span {
  color: var(--muted);
  font-weight: 800;
}

.history-nav-band {
  position: sticky;
  top: 145px;
  z-index: 8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(12px);
}

.history-jump-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.history-jump-list a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  color: var(--chocolate);
  background: var(--mint-soft);
  font-size: 0.92rem;
  font-weight: 850;
}

.history-jump-list a:hover {
  color: #fff;
  background: var(--teal);
}

.history-split,
.history-feature,
.history-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: 22px;
  align-items: stretch;
}

.history-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
}

.history-intro .intro-panel h2,
.history-feature h2,
.history-story h3,
.history-aside h2 {
  margin-top: 0;
}

.history-intro .intro-panel h2 {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.04;
}

.history-intro .intro-panel p + p,
.history-story p + p,
.history-feature p + p,
.history-aside p + p {
  margin-top: 14px;
}

.history-aside,
.history-note-card,
.myth-card {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.history-aside {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(221, 251, 246, 0.82), rgba(255, 250, 240, 0.92));
}

.history-aside dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.history-aside div {
  padding-top: 13px;
  border-top: 1px solid rgba(75, 47, 42, 0.12);
}

.history-aside div:first-child {
  padding-top: 0;
  border-top: 0;
}

.history-aside dt {
  color: var(--chocolate);
  font-weight: 900;
}

.history-aside dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.history-band {
  background:
    radial-gradient(circle at 26px 26px, rgba(255, 255, 255, 0.54) 1px, transparent 1.2px),
    linear-gradient(180deg, rgba(255, 225, 231, 0.42), rgba(201, 242, 243, 0.32));
  background-size: 58px 58px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.history-timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.history-era {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--soft-shadow);
}

.history-era h3 {
  margin: 0 0 4px;
  color: var(--chocolate);
}

.history-era p {
  margin: 0;
  color: var(--muted);
}

.history-story {
  padding: 22px;
  border-left: 5px solid var(--pink);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
}

.sherbet-section {
  background: linear-gradient(90deg, rgba(168, 230, 220, 0.38), rgba(255, 242, 184, 0.42));
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.history-feature {
  align-items: center;
}

.history-note-card {
  padding: 22px;
  background: var(--vanilla);
}

.history-note-card h3,
.history-aside h2,
.myth-card h3 {
  color: var(--chocolate);
}

.history-note-card a,
.history-more-link a {
  font-weight: 850;
}

.history-card-grid,
.myth-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.world-card-grid .plain-card {
  min-height: 174px;
}

.cone-callout {
  background:
    linear-gradient(180deg, rgba(255, 242, 184, 0.74), rgba(255, 250, 240, 0.94));
}

.history-visual-band {
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.88), rgba(221, 251, 246, 0.68));
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.history-photo-frame {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--pink-soft);
  box-shadow: var(--soft-shadow);
}

.history-photo-frame img {
  width: min(78%, 280px);
  filter: drop-shadow(0 12px 14px rgba(75, 47, 42, 0.12));
}

.history-more-link {
  margin: 22px 0 0;
  text-align: center;
}

.myth-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.myth-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--coral);
}

.myth-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.myth-card p,
.faq-list p {
  margin-bottom: 0;
}

.source-section {
  padding-top: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-weight: 850;
}

.comparison-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--chocolate);
  background: var(--mint-soft);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.step-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.step-list h3 {
  margin: 0 0 4px;
  color: var(--chocolate);
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

.glossary-list {
  columns: 2;
  column-gap: 28px;
}

.glossary-list div {
  break-inside: avoid;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
}

.glossary-list dt {
  color: var(--chocolate);
  font-weight: 900;
}

.glossary-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.glossary-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 242, 184, 0.95) 0 118px, transparent 119px),
    radial-gradient(circle at 90% 78%, rgba(168, 230, 220, 0.68) 0 154px, transparent 155px),
    linear-gradient(135deg, rgba(255, 247, 232, 0.98), rgba(255, 225, 231, 0.74) 52%, rgba(221, 251, 246, 0.72));
}

.glossary-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  min-height: 430px;
}

.glossary-hero h1 {
  max-width: 860px;
  font-size: clamp(3.9rem, 7.4vw, 7.3rem);
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-microcopy span,
.alphabet-rail a {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.78);
  box-shadow: var(--soft-shadow);
  color: var(--chocolate);
  font-weight: 900;
}

.hero-microcopy span {
  padding: 8px 14px;
}

.glossary-hero-art {
  min-height: 320px;
}

.glossary-scoop-stack {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 320px);
  min-height: 320px;
}

.scoop-letter {
  position: absolute;
  display: grid;
  place-items: center;
  width: 170px;
  height: 142px;
  border: 2px solid rgba(75, 47, 42, 0.12);
  border-radius: 50% 50% 44% 44%;
  box-shadow: inset -16px -18px 0 rgba(75, 47, 42, 0.06), var(--shadow);
  color: var(--chocolate);
  font-family: var(--display-font);
  font-size: 4.4rem;
  font-style: italic;
}

.scoop-letter-a {
  top: 20px;
  left: 26px;
  z-index: 2;
  background: var(--pink-soft);
  transform: rotate(-8deg);
}

.scoop-letter-z {
  top: 92px;
  right: 22px;
  z-index: 3;
  background: var(--mint-soft);
  transform: rotate(7deg);
}

.cone-waffle {
  position: absolute;
  bottom: 4px;
  width: 148px;
  height: 164px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background:
    linear-gradient(33deg, transparent 44%, rgba(75, 47, 42, 0.16) 45% 47%, transparent 48%),
    linear-gradient(-33deg, transparent 44%, rgba(75, 47, 42, 0.16) 45% 47%, transparent 48%),
    linear-gradient(180deg, #f3c178, #d9964b);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: var(--soft-shadow);
}

.glossary-intro-section,
.glossary-cheatsheet-section {
  background: rgba(255, 253, 245, 0.58);
}

.glossary-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 22px;
  align-items: stretch;
}

.glossary-intro-copy h2 {
  margin: 0 0 12px;
}

.glossary-intro-copy p + p {
  margin-top: 14px;
}

.glossary-stats {
  display: grid;
  gap: 12px;
}

.glossary-stats div,
.glossary-map-card,
.cheatsheet-card {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.glossary-stats div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.glossary-stats strong {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-style: italic;
}

.glossary-stats span {
  color: var(--muted);
}

.glossary-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.glossary-map-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
}

.glossary-map-card::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(168, 230, 220, 0.52);
}

.map-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
  box-shadow: var(--soft-shadow);
}

.glossary-map-card h3,
.cheatsheet-card h3 {
  margin: 16px 0 8px;
  color: var(--chocolate);
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.05;
}

.glossary-map-card p,
.cheatsheet-card p {
  margin: 0;
  color: var(--muted);
}

.glossary-section {
  background:
    radial-gradient(circle at 24px 28px, rgba(255, 255, 255, 0.64) 1px, transparent 1.3px),
    linear-gradient(180deg, rgba(255, 225, 231, 0.54), rgba(221, 251, 246, 0.38));
  background-size: 56px 56px, auto;
}

.glossary-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.glossary-heading-row h2 {
  margin-bottom: 0;
}

.alphabet-rail {
  position: sticky;
  top: 145px;
  z-index: 7;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 12px;
  border: 1px solid rgba(75, 47, 42, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.alphabet-rail a {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
}

.alphabet-rail a:hover {
  color: #fff;
  background: var(--pink);
}

.glossary-groups {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.letter-group {
  scroll-margin-top: 222px;
}

.letter-group > h3 {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 0 14px;
  border: 2px solid rgba(75, 47, 42, 0.12);
  border-radius: 50%;
  color: var(--pink-dark);
  background: var(--lemon);
  box-shadow: var(--soft-shadow);
  font-family: var(--display-font);
  font-size: 2rem;
  font-style: italic;
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.term-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: var(--soft-shadow);
}

.term-card dt {
  color: var(--chocolate);
  font-family: var(--display-font);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.05;
}

.term-card dd {
  margin: 0;
  color: var(--muted);
}

.term-card .term-note {
  padding: 10px 12px;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--mint-soft);
  color: var(--chocolate);
  font-size: 0.94rem;
  font-weight: 750;
}

.cheatsheet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cheatsheet-card {
  padding: 20px;
}

.cheatsheet-card:nth-child(2n) {
  background: var(--mint-soft);
}

.cheatsheet-card:nth-child(3n) {
  background: var(--pink-soft);
}

.made-page .eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.made-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.types-hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 242, 184, 0.80) 0 96px, transparent 97px),
    radial-gradient(circle at 88% 68%, rgba(168, 230, 220, 0.58) 0 132px, transparent 133px),
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(255, 225, 231, 0.62) 50%, rgba(201, 242, 243, 0.54));
}

.types-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  min-height: 390px;
}

.types-hero h1 {
  max-width: 780px;
}

.types-hero-art {
  position: relative;
  min-height: 300px;
}

.types-hero-art img {
  width: min(100%, 330px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 18px rgba(75, 47, 42, 0.16));
}

.scoop-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 78px;
  min-height: 78px;
  padding: 10px;
  border: 2px solid rgba(75, 47, 42, 0.12);
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.orbit-one {
  top: 6px;
  left: 8px;
  background: var(--lemon);
}

.orbit-two {
  right: 0;
  top: 42px;
  background: var(--mint-soft);
}

.orbit-three {
  right: 38px;
  bottom: 10px;
  background: var(--pink-soft);
}

.types-intro {
  background: rgba(255, 253, 245, 0.56);
}

.types-lede,
.texture-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.types-lede p,
.texture-guide p {
  margin: 0 0 14px;
  font-size: 1.04rem;
}

.definition-stack {
  display: grid;
  gap: 12px;
}

.definition-stack article,
.type-feature-card,
.types-ribbon-grid article,
.novelty-layout article,
.choice-grid article,
.faq-grid article {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.definition-stack article {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas:
    "number title"
    "number text";
  gap: 12px;
  align-items: start;
  padding: 14px;
}

.definition-stack span {
  grid-area: number;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.definition-stack h3 {
  grid-area: title;
}

.definition-stack p {
  grid-area: text;
}

.definition-stack h3,
.definition-stack p,
.section-kicker h2,
.type-feature-card h3,
.types-ribbon-grid h3,
.novelty-layout h3,
.choice-grid h3,
.faq-grid h3,
.texture-meter strong {
  margin: 0;
}

.definition-stack p,
.type-feature-card li,
.types-ribbon-grid p,
.novelty-layout p,
.choice-grid p,
.faq-grid p,
.texture-meter p {
  color: var(--muted);
}

.comparison-band,
.types-guide-band {
  background:
    radial-gradient(circle at 24px 24px, rgba(255, 255, 255, 0.62) 1px, transparent 1.2px),
    linear-gradient(180deg, rgba(221, 251, 246, 0.72), rgba(255, 247, 232, 0.46));
  background-size: 58px 58px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.section-kicker {
  max-width: 840px;
  margin-bottom: 20px;
}

.types-table-wrap {
  background: rgba(255, 253, 245, 0.94);
}

.types-table th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.types-table td:first-child {
  color: var(--chocolate);
  font-weight: 900;
}

.types-table tbody tr:nth-child(even) td {
  background: rgba(255, 225, 231, 0.25);
}

.types-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.types-photo-card {
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.types-photo-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.types-photo-card figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  color: var(--chocolate);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
}

.types-photo-wide img {
  height: 360px;
}

.types-photo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: stretch;
}

.types-photo-split img {
  height: 100%;
  min-height: 300px;
}

.types-photo-split figcaption {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 242, 184, 0.82) 0 58px, transparent 59px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(221, 251, 246, 0.62));
}

.novelty-photo figcaption {
  color: var(--vanilla);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 242, 184, 0.24) 0 62px, transparent 63px),
    linear-gradient(145deg, rgba(75, 47, 42, 0.94), rgba(217, 95, 127, 0.88));
}

.type-feature-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.95), rgba(255, 250, 240, 0.95));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.type-feature-card:hover,
.types-ribbon-grid article:hover,
.novelty-layout article:hover,
.choice-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.type-chip {
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.type-feature-card p {
  margin: 0;
}

.type-feature-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}

.types-ribbon-section {
  background:
    linear-gradient(90deg, rgba(255, 225, 231, 0.62), rgba(255, 242, 184, 0.52), rgba(201, 242, 243, 0.58));
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.types-ribbon-grid,
.choice-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.types-ribbon-grid article,
.choice-grid article,
.faq-grid article {
  padding: 18px;
}

.types-ribbon-grid h3,
.novelty-layout h3,
.choice-grid h3,
.faq-grid h3 {
  color: var(--chocolate);
  font-size: 1.08rem;
  line-height: 1.2;
}

.types-ribbon-grid p,
.novelty-layout p,
.choice-grid p,
.faq-grid p {
  margin: 8px 0 0;
}

.novelty-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.novelty-layout article {
  min-height: 158px;
  padding: 18px;
}

.novelty-layout .novelty-main {
  grid-row: span 2;
  display: grid;
  align-content: center;
  min-height: 332px;
  color: var(--vanilla);
  background:
    linear-gradient(145deg, rgba(75, 47, 42, 0.92), rgba(217, 95, 127, 0.86));
}

.novelty-main h3,
.novelty-main p {
  color: var(--vanilla);
}

.texture-guide {
  align-items: center;
}

.texture-meter {
  display: grid;
  gap: 12px;
}

.texture-meter div {
  padding: 14px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
}

.texture-meter span {
  display: block;
  width: var(--meter);
  max-width: 100%;
  height: 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
}

.faq-section {
  background: rgba(255, 253, 245, 0.62);
}

.faq-grid a {
  color: var(--teal-dark);
  font-weight: 850;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.back-top.show {
  display: grid;
  place-items: center;
}

.flavor-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 225, 231, 0.94), rgba(221, 251, 246, 0.84) 58%, rgba(255, 242, 184, 0.70)),
    var(--cream);
}

.flavor-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: 34px;
  align-items: center;
  min-height: 470px;
  padding: 48px 0;
}

.flavor-hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flavor-hero h1 {
  margin: 0;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(4.4rem, 8vw, 8.3rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow: 4px 4px 0 #fff7dc, 7px 7px 0 rgba(75, 47, 42, 0.12);
}

.flavor-lede {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.flavor-hero-art {
  position: relative;
  isolation: isolate;
  min-height: 375px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 32px 32px 8px 8px;
  background:
    radial-gradient(circle at 24px 28px, rgba(255, 255, 255, 0.72) 1px, transparent 1.3px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 225, 231, 0.86));
  background-size: 46px 46px, auto;
  box-shadow: var(--shadow);
}

.flavor-hero-art::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 92px;
  border-radius: 50% 50% 12px 12px;
  background: rgba(168, 230, 220, 0.52);
  box-shadow: inset 0 -12px 0 rgba(75, 47, 42, 0.04);
}

.hero-scoop {
  position: absolute;
  width: clamp(118px, 15vw, 168px);
  filter: drop-shadow(0 14px 16px rgba(75, 47, 42, 0.16));
}

.hero-scoop-one {
  top: 36px;
  left: 34px;
}

.hero-scoop-two {
  top: 82px;
  right: 34px;
}

.hero-scoop-three {
  bottom: 58px;
  left: 92px;
}

.hero-scoop-four {
  right: 110px;
  bottom: 28px;
}

.flavor-ticket {
  position: absolute;
  top: 26px;
  right: 158px;
  display: grid;
  gap: 6px;
  width: 126px;
  padding: 12px;
  border: 1px dashed rgba(75, 47, 42, 0.22);
  border-radius: var(--radius);
  background: var(--lemon);
  color: var(--chocolate);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
  transform: rotate(-5deg);
}

.flavor-jump-band {
  position: sticky;
  top: 117px;
  z-index: 8;
  border-bottom: 1px solid rgba(75, 47, 42, 0.14);
  background: rgba(255, 253, 245, 0.95);
  backdrop-filter: blur(12px);
}

.flavor-jump-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: thin;
}

.flavor-jump-list a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  background: var(--vanilla);
  color: var(--chocolate);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 4px 10px rgba(75, 47, 42, 0.06);
}

.flavor-jump-list a:hover {
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.flavor-page .page-section {
  scroll-margin-top: 184px;
}

.flavor-intro {
  background: rgba(255, 253, 245, 0.54);
}

.flavor-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.flavor-intro .intro-panel h2,
.flavor-note h2 {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-style: italic;
  line-height: 1.05;
}

.flavor-intro .intro-panel p + p,
.global-flavor-layout p + p,
.pairing-layout p + p {
  margin-top: 14px;
}

.flavor-note {
  padding: 22px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--mint-soft), rgba(255, 250, 240, 0.96));
  box-shadow: var(--soft-shadow);
}

.flavor-note dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.flavor-note div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.flavor-note div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.flavor-note dt {
  color: var(--chocolate);
  font-weight: 900;
}

.flavor-note dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.classic-flavors-section {
  background:
    radial-gradient(circle at 24px 26px, rgba(255, 255, 255, 0.48) 1px, transparent 1.2px),
    linear-gradient(180deg, #ffeff2, #fff7e8);
  background-size: 68px 68px, auto;
}

.section-intro {
  max-width: 860px;
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.flavor-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.flavor-profile {
  display: grid;
  isolation: isolate;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 246px;
  padding: 20px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.flavor-profile img {
  width: 148px;
  min-height: 112px;
  object-fit: contain;
  mix-blend-mode: darken;
  filter: drop-shadow(0 10px 10px rgba(75, 47, 42, 0.12));
}

.flavor-page .hero-scoop {
  mix-blend-mode: darken;
}

.flavor-profile h3,
.match-card h3,
.global-card h3,
.season-card h3,
.pairing-board h3 {
  margin: 0 0 8px;
  color: var(--chocolate);
  font-size: 1.18rem;
  line-height: 1.15;
}

.flavor-profile p,
.match-card p,
.global-card p,
.season-card p,
.pairing-board p {
  margin: 0;
  color: var(--muted);
}

.flavor-profile ul {
  display: grid;
  gap: 5px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.flavor-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.vanilla-card {
  background: linear-gradient(135deg, #fffdf5, #fff2b8);
}

.chocolate-card {
  background: linear-gradient(135deg, #fffaf0, #edd5c9);
}

.strawberry-card,
.cookies-card {
  background: linear-gradient(135deg, #fffaf0, #ffe1e7);
}

.mint-card,
.pistachio-card {
  background: linear-gradient(135deg, #fffaf0, #ddfbf6);
}

.flavor-table-section {
  background: rgba(255, 253, 245, 0.62);
}

.flavor-table td:first-child {
  color: var(--chocolate);
  font-weight: 900;
}

.scoop-matchmaker {
  background: linear-gradient(90deg, rgba(168, 230, 220, 0.42), rgba(255, 242, 184, 0.46));
}

.matchmaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.match-card,
.global-card,
.season-card {
  position: relative;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--soft-shadow);
}

.match-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
  box-shadow: inset -5px -5px 0 rgba(75, 47, 42, 0.08);
}

.global-flavor-section {
  background: rgba(255, 250, 240, 0.86);
}

.global-flavor-layout,
.pairing-layout,
.toppings-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
}

.global-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.global-card {
  min-height: 152px;
}

.global-card:nth-child(1) {
  background: linear-gradient(135deg, #ddfbf6, #fffaf0);
}

.global-card:nth-child(2) {
  background: linear-gradient(135deg, #ffe1e7, #fffaf0);
}

.global-card:nth-child(3) {
  background: linear-gradient(135deg, #fff2b8, #fffaf0);
}

.global-card:nth-child(4) {
  background: linear-gradient(135deg, #c9f2f3, #fffaf0);
}

.seasonal-flavors-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.94), rgba(255, 225, 231, 0.48));
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.season-card {
  min-height: 210px;
  padding-top: 72px;
  overflow: hidden;
}

.season-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 18px 0 0 -8px rgba(255, 255, 255, 0.72), 36px 0 0 -14px rgba(75, 47, 42, 0.16);
}

.season-card.spring {
  background: linear-gradient(180deg, #ddfbf6, #fffaf0);
}

.season-card.summer {
  background: linear-gradient(180deg, #fff2b8, #fffaf0);
}

.season-card.fall {
  background: linear-gradient(180deg, #ffd8c8, #fffaf0);
}

.season-card.winter {
  background: linear-gradient(180deg, #c9f2f3, #fffaf0);
}

.section-cta {
  margin: 22px 0 0;
}

.pairing-section {
  background: rgba(221, 251, 246, 0.52);
}

.pairing-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pairing-board article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.toppings-section {
  background: rgba(255, 253, 245, 0.70);
}

.toppings-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.toppings-art {
  display: grid;
  place-items: center;
  min-height: 250px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, #ffe1e7, #fffaf0);
  box-shadow: var(--soft-shadow);
}

.toppings-art img {
  width: 190px;
}

.topping-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.topping-chip-list span {
  padding: 8px 12px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  background: var(--vanilla);
  color: var(--chocolate);
  font-weight: 800;
}

.flavor-faq-section {
  background: linear-gradient(180deg, rgba(255, 225, 231, 0.42), rgba(255, 247, 232, 0.94));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flavor-faq-section .plain-card {
  min-height: 206px;
}

.related-scoops-section {
  background: rgba(255, 253, 245, 0.62);
}

.world-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 242, 184, 0.82) 0 120px, transparent 121px),
    radial-gradient(circle at 90% 18%, rgba(201, 242, 243, 0.9) 0 170px, transparent 171px),
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(255, 225, 231, 0.78) 54%, rgba(221, 251, 246, 0.84));
}

.world-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.8fr);
  gap: 34px;
  align-items: center;
  min-height: 540px;
  padding: 52px 0 58px;
}

.world-hero-copy {
  position: relative;
  z-index: 1;
}

.world-hero .eyebrow,
.destination-topline {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.world-hero h1 {
  max-width: 920px;
  margin: 6px 0 0;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(4.1rem, 8.2vw, 8rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.84;
  text-shadow: 4px 4px 0 #fff7dc, 7px 7px 0 rgba(75, 47, 42, 0.12);
}

.world-hero-lede {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 1.1rem;
}

.world-postcards {
  position: relative;
  min-height: 500px;
}

.postcard-card {
  position: absolute;
  display: grid;
  justify-items: center;
  width: 210px;
  margin: 0;
  padding: 12px 12px 16px;
  border: 1px solid rgba(75, 47, 42, 0.16);
  border-radius: var(--radius);
  background: var(--vanilla);
  box-shadow: var(--shadow);
}

.postcard-card img {
  width: 100%;
  aspect-ratio: 1.25;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
}

.postcard-card figcaption {
  margin-top: 10px;
  color: var(--chocolate);
  font-family: var(--display-font);
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
}

.postcard-card figcaption span {
  color: var(--teal-dark);
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.italy-card {
  top: 18px;
  left: 8px;
  transform: rotate(-7deg);
}

.japan-card {
  top: 0;
  right: 4px;
  transform: rotate(6deg);
}

.india-card {
  left: 48px;
  bottom: 6px;
  transform: rotate(5deg);
}

.thailand-card {
  right: 48px;
  bottom: 18px;
  transform: rotate(-5deg);
}

.world-snapshot {
  background: rgba(255, 253, 245, 0.68);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-card,
.destination-card,
.care-panel,
.texture-list article {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.snapshot-card {
  padding: 18px;
}

.snapshot-icon,
.region-marker {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.snapshot-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.snapshot-card h3,
.destination-card h4 {
  margin: 0 0 8px;
  color: var(--chocolate);
  font-size: 1.12rem;
  line-height: 1.2;
}

.snapshot-card p,
.destination-card p {
  margin: 0;
  color: var(--muted);
}

.world-gallery-section {
  scroll-margin-top: 122px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 242, 184, 0.62) 0 120px, transparent 121px),
    linear-gradient(180deg, #fffdf5, rgba(255, 225, 231, 0.46));
  border-top: 1px solid rgba(75, 47, 42, 0.1);
  border-bottom: 1px solid rgba(75, 47, 42, 0.1);
}

.world-gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.74fr);
  gap: 28px;
  align-items: start;
}

.world-gallery-feature {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.world-gallery-feature img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.world-gallery-feature figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
}

.world-gallery-feature strong {
  color: var(--chocolate);
  font-size: 1.05rem;
}

.world-gallery-feature span {
  color: var(--muted);
}

.world-gallery-copy h2 {
  margin-bottom: 12px;
}

.world-image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.world-image-strip figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(75, 47, 42, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.92);
  box-shadow: var(--soft-shadow);
}

.world-image-strip img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.world-image-strip figcaption {
  padding: 9px 10px 11px;
  color: var(--teal-dark);
  font-weight: 900;
  text-align: center;
}

.contents-band {
  background:
    radial-gradient(circle at 28px 28px, rgba(43, 184, 173, 0.10) 2px, transparent 2.5px),
    var(--mint-soft);
  background-size: 62px 62px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.10);
}

.world-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.world-contents a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(43, 184, 173, 0.28);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 253, 245, 0.86);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
}

.world-contents a:hover {
  color: var(--pink-dark);
  transform: translateY(-1px);
}

.world-tour-section {
  background: rgba(255, 247, 232, 0.56);
}

.world-tour-section .section-kicker,
.at-home-band .section-kicker,
.faq-section .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--lemon);
  letter-spacing: 0;
}

.region-block {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(75, 47, 42, 0.14);
}

.region-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.region-marker {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
}

.region-heading h3 {
  margin: 4px 0 0;
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-style: italic;
  line-height: 1.05;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.destination-card {
  display: grid;
  gap: 8px;
  min-height: 230px;
  padding: 18px;
}

.feature-destination {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(255, 225, 231, 0.76), rgba(255, 250, 240, 0.96));
}

.feature-destination h4 {
  font-family: var(--display-font);
  font-size: 1.55rem;
  font-style: italic;
}

.taste-note {
  align-self: end;
  padding-top: 12px;
  border-top: 1px solid rgba(75, 47, 42, 0.13);
}

.taste-note strong {
  color: var(--chocolate);
}

.texture-band,
.at-home-band {
  background:
    linear-gradient(90deg, rgba(168, 230, 220, 0.52), rgba(255, 242, 184, 0.52));
  border-top: 1px solid rgba(75, 47, 42, 0.12);
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.split-feature h2 {
  margin-bottom: 12px;
}

.split-feature p {
  margin-top: 0;
  font-size: 1.05rem;
}

.texture-list {
  display: grid;
  gap: 10px;
}

.texture-list article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  background: rgba(255, 253, 245, 0.9);
}

.texture-list strong {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-style: italic;
}

.texture-list span {
  color: var(--muted);
}

.world-table-wrap td:first-child {
  color: var(--chocolate);
  font-weight: 850;
}

.world-steps li {
  background: rgba(255, 250, 240, 0.94);
}

.care-panel {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 96% 16%, rgba(255, 242, 184, 0.9) 0 80px, transparent 81px),
    var(--card);
}

.care-panel h2 {
  margin-bottom: 0;
}

.care-panel p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.faq-section .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-section .plain-card {
  min-height: 190px;
}

.related-world-section {
  background: rgba(255, 253, 245, 0.62);
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 84px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: 119px;
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(75, 47, 42, 0.16);
    border-radius: var(--radius);
    background: var(--vanilla);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav a[aria-current="page"] {
    background: var(--pink-soft);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 84px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: 119px;
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(75, 47, 42, 0.16);
    border-radius: var(--radius);
    background: var(--vanilla);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav a[aria-current="page"] {
    background: var(--pink-soft);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-art {
    min-height: 360px;
  }

  .feature-panel {
    grid-template-columns: 0.65fr 1fr;
  }

  .feature-art {
    grid-row: span 2;
  }

  .flavor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .science-nav-section {
    top: 85px;
  }

  .science-feature-grid,
  .science-columns,
  .science-trouble-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .types-card-grid,
  .types-ribbon-grid,
  .glossary-map,
  .cheatsheet-grid,
  .choice-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .types-photo-split {
    grid-template-columns: 1fr;
  }

  .types-photo-split img,
  .types-photo-wide img {
    height: 320px;
    min-height: 0;
  }

  .novelty-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .novelty-layout .novelty-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 230px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .world-postcards {
    max-width: 620px;
    min-height: 500px;
  }

  .snapshot-grid,
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .brand img {
    width: clamp(165px, 32vw, 210px);
  }

  .hero h1 {
    font-size: clamp(4rem, 16vw, 5.4rem);
  }

  .feature-grid,
  .split-grid,
  .world-layout,
  .page-hero-inner,
  .science-intro-grid,
  .science-split,
  .science-lab {
    grid-template-columns: 1fr;
  }

  .types-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-panel:nth-child(2),
  .split-panel:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(75, 47, 42, 0.14);
  }

  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .types-lede,
  .texture-guide,
  .glossary-intro-grid {
    grid-template-columns: 1fr;
  }

  .types-photo-card img,
  .types-photo-split img,
  .types-photo-wide img {
    height: 280px;
  }

  .glossary-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .glossary-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .alphabet-rail {
    top: 113px;
  }

  .topic-grid,
  .content-grid,
  .more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glossary-list {
    columns: 1;
  }

  .page-hero-art {
    display: none;
  }

  .world-hero-inner,
  .world-gallery-layout,
  .split-feature,
  .care-panel {
    grid-template-columns: 1fr;
  }

  .world-postcards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: auto;
  }

  .postcard-card {
    position: static;
    width: 100%;
    transform: none;
  }

  .region-heading {
    align-items: flex-start;
  }

  .feature-destination {
    grid-row: auto;
  }

  .faq-section .faq-grid {
    grid-template-columns: 1fr;
  }

  .science-hero-art {
    display: grid;
  }

  .science-orbit {
    width: 210px;
    height: 210px;
  }

  .history-hero-inner,
  .history-split,
  .history-split.reverse,
  .history-feature,
  .history-article-grid {
    grid-template-columns: 1fr;
  }

  .history-card-grid,
  .myth-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-nav-band {
    top: 113px;
  }

  .copyright {
    grid-template-columns: 1fr;
  }

  .copyright span:first-child,
  .copyright span:last-child {
    justify-self: center;
  }
}

@media (max-width: 580px) {
  .header-inner {
    width: min(100% - 22px, var(--max-width));
    gap: 10px;
  }

  .brand img {
    width: clamp(142px, 48vw, 178px);
  }

  .icon-button,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 108px;
    grid-template-columns: 1fr;
  }

  .science-nav-section {
    top: 108px;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 15vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero-tagline {
    font-size: 1.55rem;
  }

  .hero-photo {
    width: 100%;
    height: 360px;
    margin: 0;
    border-top-left-radius: 80px;
    object-position: 58% center;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .feature-art {
    grid-row: auto;
    order: -1;
    max-width: 170px;
  }

  .flavor-grid,
  .topic-grid,
  .content-grid,
  .more-grid,
  .snapshot-grid,
  .destination-grid,
  .world-image-strip,
  .types-card-grid,
  .types-ribbon-grid,
  .glossary-map,
  .term-grid,
  .cheatsheet-grid,
  .novelty-layout,
  .choice-grid,
  .faq-grid,
  .science-feature-grid,
  .science-columns,
  .science-trouble-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .world-gallery-feature img {
    aspect-ratio: 1.18;
  }

  .types-photo-card img,
  .types-photo-split img,
  .types-photo-wide img {
    height: 240px;
  }

  .types-photo-card figcaption {
    padding: 13px 14px 15px;
  }

  .glossary-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.4rem);
  }

  .hero-microcopy,
  .glossary-heading-row .button {
    width: 100%;
  }

  .hero-microcopy span,
  .glossary-heading-row .button {
    flex: 1 1 100%;
  }

  .alphabet-rail {
    position: static;
  }

  .letter-group {
    scroll-margin-top: 22px;
  }

  .term-card {
    padding: 15px;
  }

  .science-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .science-hero-actions .button {
    width: 100%;
  }

  .science-hero-art {
    min-height: 220px;
  }

  .science-orbit {
    width: 188px;
    height: 188px;
  }

  .orbit-dot {
    width: 54px;
    height: 54px;
    font-size: 0.72rem;
  }

  .dot-fat {
    left: 38px;
  }

  .dot-sugar {
    right: -10px;
  }

  .dot-air {
    right: 28px;
  }

  .dot-ice {
    left: -8px;
  }

  .science-scoop {
    width: 82px;
    height: 70px;
  }

  .hero-actions {
    display: grid;
  }

  .world-hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.7rem);
  }

  .world-postcards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .postcard-card img {
    max-height: 140px;
  }

  .world-contents {
    display: grid;
  }

  .world-contents a {
    justify-content: center;
    border-radius: var(--radius);
    text-align: center;
  }

  .texture-list article {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .care-panel {
    padding: 20px;
  }

  .definition-stack article {
    grid-template-columns: 46px 1fr;
    grid-template-areas:
      "number title"
      "number text";
    padding: 12px;
  }

  .definition-stack span {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .split-panel {
    padding: 24px 18px;
  }

  .newsletter-form {
    display: grid;
    gap: 6px;
    padding: 8px;
    border-radius: var(--radius);
  }

  .newsletter-form input {
    min-height: 40px;
  }

  .footer-inner {
    padding-top: 52px;
  }

  .history-hero-inner {
    min-height: auto;
    padding: 34px 0;
  }

  .history-hero-copy h1 {
    font-size: clamp(3.25rem, 18vw, 4.8rem);
  }

  .history-actions,
  .history-actions .button {
    width: 100%;
  }

  .history-hero-card img {
    min-height: 260px;
  }

  .history-stamp {
    right: 8px;
    bottom: 18px;
  }

  .history-nav-band {
    position: static;
  }

  .history-era {
    grid-template-columns: 1fr;
  }

  .history-card-grid,
  .myth-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.made-page {
  overflow: hidden;
}

.made-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(75, 47, 42, 0.14);
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 242, 184, 0.86) 0 110px, transparent 111px),
    radial-gradient(circle at 86% 20%, rgba(168, 230, 220, 0.72) 0 150px, transparent 151px),
    linear-gradient(135deg, rgba(255, 247, 232, 0.98), rgba(255, 225, 231, 0.66));
}

.made-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: rgba(168, 230, 220, 0.74);
  clip-path: polygon(0 66%, 16% 54%, 34% 66%, 54% 38%, 74% 54%, 100% 28%, 100% 100%, 0 100%);
}

.made-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 550px;
  padding: 52px 0 48px;
}

.made-hero-copy {
  position: relative;
}

.made-page .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(43, 184, 173, 0.25);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(221, 251, 246, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.made-hero h1 {
  margin: 0;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(4.15rem, 7vw, 7.7rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.84;
  text-shadow: 4px 4px 0 #fff7dc, 7px 7px 0 rgba(75, 47, 42, 0.12);
}

.made-lede {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.5;
}

.made-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.made-hero-visual {
  position: relative;
  align-self: stretch;
  display: grid;
  align-items: center;
  min-height: 410px;
}

.made-hero-photo {
  width: 100%;
  height: 420px;
  border: 1px solid rgba(75, 47, 42, 0.12);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 44px rgba(75, 47, 42, 0.18);
}

.recipe-ticket {
  position: absolute;
  right: -10px;
  bottom: 36px;
  display: grid;
  gap: 8px;
  width: 150px;
  padding: 16px;
  border: 1px solid rgba(75, 47, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 245, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.recipe-ticket span {
  display: block;
  padding-bottom: 7px;
  border-bottom: 1px dashed rgba(75, 47, 42, 0.22);
  color: var(--chocolate);
  font-weight: 900;
}

.recipe-ticket span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.made-overview {
  padding: 46px 0;
  background: rgba(255, 253, 245, 0.72);
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.made-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.made-intro-grid h2,
.content-nav a,
.scoop-summary h3,
.ingredient-card h3,
.process-map h3,
.texture-grid h3,
.mix-card h3,
.mistake-grid h3,
.story-strip h3,
.made-page .faq-list summary {
  letter-spacing: 0;
}

.made-intro-grid h2 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-style: italic;
  line-height: 1.05;
}

.made-intro-grid p,
.made-page .section-kicker {
  max-width: 850px;
  color: var(--text);
  font-size: 1.05rem;
}

.made-intro-grid p {
  margin: 0 0 14px;
}

.scoop-summary {
  padding: 22px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.scoop-summary h3 {
  margin: 0 0 10px;
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-style: italic;
}

.scoop-summary ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
}

.scoop-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.scoop-stats article {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(221, 251, 246, 0.84), rgba(255, 250, 240, 0.92));
  box-shadow: var(--soft-shadow);
}

.scoop-stats strong,
.scoop-stats span {
  display: block;
}

.scoop-stats strong {
  color: var(--chocolate);
  font-size: 1.05rem;
}

.scoop-stats span {
  margin-top: 4px;
  color: var(--muted);
}

.made-nav-section {
  padding-bottom: 28px;
}

.content-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  color: var(--chocolate);
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
}

.content-nav a:hover {
  color: #fff;
  background: var(--teal-dark);
  text-decoration: none;
}

.made-page .section-kicker {
  margin: -6px 0 22px;
}

.ingredient-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.image-tour-section {
  padding-top: 32px;
  background: rgba(255, 253, 245, 0.62);
}

.image-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-tour-card,
.wide-photo-card,
.process-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.image-tour-card {
  min-height: 390px;
}

.science-photo-card {
  min-height: 372px;
}

.image-tour-card img,
.wide-photo-card img,
.process-photo img {
  width: 100%;
  object-fit: cover;
}

.image-tour-card img {
  height: 250px;
}

.image-tour-card figcaption {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.image-tour-card strong {
  color: var(--chocolate);
  font-size: 1.08rem;
}

.image-tour-card span,
.wide-photo-card figcaption {
  color: var(--muted);
}

.wide-photo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
  margin-bottom: 22px;
}

.wide-photo-card img {
  height: 280px;
}

.wide-photo-card figcaption {
  display: grid;
  align-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 242, 184, 0.68) 0 80px, transparent 81px),
    var(--vanilla);
  font-size: 1.02rem;
  font-weight: 750;
}

.process-photo {
  margin-top: 16px;
}

.process-photo img {
  height: 260px;
}

.mixin-photo img {
  object-position: center;
}

.ingredient-card {
  min-height: 280px;
  padding: 20px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.ingredient-card.cream {
  background: linear-gradient(180deg, #fffdf5, #fff1cf);
}

.ingredient-card.sugar {
  background: linear-gradient(180deg, #fffdf5, #ffe1e7);
}

.ingredient-card.flavor {
  background: linear-gradient(180deg, #fffdf5, #ddfbf6);
}

.ingredient-card.body {
  background: linear-gradient(180deg, #fffdf5, #e8f8ff);
}

.ingredient-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-weight: 950;
}

.ingredient-card h3,
.mix-card h3,
.mistake-grid h3,
.story-strip h3,
.texture-grid h3 {
  margin: 0 0 8px;
  color: var(--chocolate);
}

.ingredient-card p,
.mix-card p,
.mistake-grid p,
.story-strip p,
.texture-grid p {
  margin: 0;
  color: var(--muted);
}

.process-band {
  background:
    radial-gradient(circle at 24px 24px, rgba(255, 255, 255, 0.54) 1px, transparent 1.2px),
    linear-gradient(180deg, rgba(255, 225, 231, 0.66), rgba(255, 247, 232, 0.92));
  background-size: 64px 64px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.process-map {
  counter-reset: process;
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-map li {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--soft-shadow);
}

.process-map li::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 84px;
  bottom: -20px;
  width: 3px;
  border-radius: 99px;
  background: rgba(43, 184, 173, 0.28);
}

.process-map li:last-child::after {
  display: none;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  box-shadow: var(--soft-shadow);
  font-weight: 950;
}

.process-map h3 {
  margin: 0 0 8px;
  color: var(--chocolate);
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.1;
}

.process-map p {
  margin: 0 0 10px;
  color: var(--muted);
}

.process-map p:last-child {
  margin-bottom: 0;
}

.made-comparison .comparison-table th {
  background: var(--pink-soft);
}

.texture-lab {
  background: linear-gradient(90deg, rgba(168, 230, 220, 0.44), rgba(255, 242, 184, 0.42));
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.texture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 26px;
  align-items: center;
}

.texture-layout p {
  max-width: 850px;
  margin: 0 0 14px;
}

.texture-art {
  width: 190px;
  justify-self: center;
  filter: drop-shadow(0 12px 12px rgba(75, 47, 42, 0.12));
}

.texture-grid,
.mix-grid,
.mistake-grid,
.story-strip {
  display: grid;
  gap: 18px;
}

.texture-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.texture-grid article,
.mix-card,
.mistake-grid article,
.story-strip article {
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--soft-shadow);
}

.mixin-band {
  background: rgba(255, 253, 245, 0.70);
}

.mix-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mix-card {
  min-height: 200px;
}

.mix-card:nth-child(1) {
  border-top: 7px solid var(--coral);
}

.mix-card:nth-child(2) {
  border-top: 7px solid var(--pink);
}

.mix-card:nth-child(3) {
  border-top: 7px solid var(--chocolate);
}

.mix-card:nth-child(4) {
  border-top: 7px solid var(--teal);
}

.mistakes-band {
  background: linear-gradient(180deg, rgba(255, 225, 231, 0.42), rgba(255, 253, 245, 0.76));
  border-top: 1px solid rgba(75, 47, 42, 0.10);
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.mistake-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mistake-grid article {
  min-height: 166px;
}

.story-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-strip article {
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(221, 251, 246, 0.72));
}

.story-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint-soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.made-page .faq-section {
  background: rgba(255, 247, 232, 0.72);
}

.made-page .faq-list {
  display: grid;
  gap: 12px;
}

.made-page .faq-list details {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.made-page .faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--chocolate);
  font-weight: 900;
}

.made-page .faq-list summary::marker {
  color: var(--pink);
}

.made-page .faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.related-band {
  background:
    radial-gradient(circle at 28px 30px, rgba(255, 255, 255, 0.44) 1px, transparent 1.1px),
    linear-gradient(180deg, rgba(221, 251, 246, 0.58), rgba(255, 247, 232, 0.92));
  background-size: 74px 74px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.10);
}

@media (max-width: 1100px) {
  .made-hero-inner,
  .made-intro-grid,
  .texture-layout {
    grid-template-columns: 1fr;
  }

  .made-hero-visual {
    min-height: auto;
  }

  .made-hero-photo {
    height: 360px;
  }

  .scoop-stats,
  .image-tour-grid,
  .ingredient-lanes,
  .texture-grid,
  .mix-grid,
  .story-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-photo-card {
    grid-template-columns: 1fr;
  }

  .wide-photo-card img {
    height: 320px;
  }

  .texture-art {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .made-hero-inner {
    min-height: auto;
    padding: 40px 0 42px;
  }

  .made-hero h1 {
    font-size: clamp(3.4rem, 14vw, 5.2rem);
  }

  .recipe-ticket {
    right: 14px;
    bottom: 18px;
  }

  .mistake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .made-page .hero-actions,
  .made-page .content-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .made-page .hero-actions .button,
  .made-page .hero-actions .pill-button,
  .made-page .content-nav a {
    width: 100%;
  }

  .made-hero-photo {
    height: 300px;
  }

  .recipe-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    transform: none;
  }

  .scoop-stats,
  .image-tour-grid,
  .ingredient-lanes,
  .texture-grid,
  .mix-grid,
  .mistake-grid,
  .story-strip {
    grid-template-columns: 1fr;
  }

  .image-tour-card {
    min-height: auto;
  }

  .image-tour-card img,
  .wide-photo-card img,
  .process-photo img {
    height: 220px;
  }

  .process-map li {
    grid-template-columns: 1fr;
  }

  .process-map li::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .flavor-hero-inner,
  .global-flavor-layout,
  .pairing-layout {
    grid-template-columns: 1fr;
  }

  .flavor-hero-art {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .flavor-profile-grid,
  .matchmaker-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .flavor-jump-band {
    top: 85px;
  }

  .flavor-page .page-section {
    scroll-margin-top: 150px;
  }

  .flavor-intro-grid,
  .toppings-layout {
    grid-template-columns: 1fr;
  }

  .toppings-art {
    min-height: 190px;
    border-radius: var(--radius);
  }

  .toppings-art img {
    width: 150px;
  }
}

@media (max-width: 580px) {
  .flavor-hero-inner {
    gap: 24px;
    min-height: auto;
    padding: 36px 0;
  }

  .flavor-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.1rem);
  }

  .flavor-lede {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .flavor-hero-art {
    min-height: 288px;
    border-radius: var(--radius);
  }

  .hero-scoop {
    width: 118px;
  }

  .hero-scoop-one {
    top: 26px;
    left: 22px;
  }

  .hero-scoop-two {
    top: 42px;
    right: 18px;
  }

  .hero-scoop-three {
    bottom: 42px;
    left: 46px;
  }

  .hero-scoop-four {
    right: 54px;
    bottom: 22px;
  }

  .flavor-ticket {
    display: none;
  }

  .flavor-profile-grid,
  .matchmaker-grid,
  .global-card-stack,
  .season-grid,
  .pairing-board,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .flavor-profile {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
  }

  .flavor-profile img {
    width: 132px;
  }

  .season-card,
  .match-card,
  .global-card,
  .pairing-board article,
  .flavor-faq-section .plain-card {
    min-height: auto;
  }
}

.facts-hero {
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(255, 225, 231, 0.66) 48%, rgba(221, 251, 246, 0.78));
}

.facts-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.facts-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  min-height: 430px;
}

.facts-hero h1 {
  max-width: 900px;
}

.facts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.facts-hero-art {
  position: relative;
  overflow: visible;
  min-height: 320px;
}

.facts-hero-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(75, 47, 42, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.facts-hero-art .cone-badge {
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 92px;
  height: 92px;
  color: var(--chocolate);
  background: var(--lemon);
  border-color: rgba(75, 47, 42, 0.15);
  font-size: 1.8rem;
}

.facts-ribbon {
  padding: 18px 0;
  background: var(--teal);
  border-bottom: 1px solid rgba(75, 47, 42, 0.15);
}

.facts-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.facts-stat-grid article {
  display: grid;
  gap: 2px;
  min-height: 108px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--chocolate);
  background: rgba(255, 253, 245, 0.94);
  box-shadow: var(--soft-shadow);
}

.facts-stat-grid strong {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  line-height: 0.9;
}

.facts-stat-grid span {
  color: var(--text);
  font-weight: 750;
  line-height: 1.25;
}

.facts-intro {
  background: rgba(255, 253, 245, 0.58);
}

.facts-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.facts-lede {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
}

.facts-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.facts-pill-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
}

.facts-pill-row a:hover {
  color: var(--pink-dark);
  transform: translateY(-1px);
}

.facts-callout,
.facts-list-panel,
.facts-feature-card,
.facts-faq-list details {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.facts-callout {
  padding: 22px;
}

.facts-callout h2 {
  margin-bottom: 10px;
  color: var(--pink-dark);
  font-size: 1.5rem;
}

.facts-callout p {
  margin: 0;
  color: var(--muted);
}

.facts-image-section {
  padding-top: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.82), rgba(221, 251, 246, 0.42));
}

.facts-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 18px;
  align-items: stretch;
}

.facts-photo-card,
.facts-side-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.facts-photo-card img,
.facts-side-photo img,
.facts-feature-card img {
  width: 100%;
  object-fit: cover;
}

.facts-photo-card img {
  height: 250px;
}

.facts-photo-card.featured img {
  height: 360px;
}

.facts-photo-card figcaption,
.facts-side-photo figcaption {
  display: grid;
  gap: 5px;
  padding: 16px;
  color: var(--muted);
}

.facts-photo-card strong {
  color: var(--chocolate);
  font-size: 1.08rem;
}

.facts-band {
  background:
    radial-gradient(circle at 18px 18px, rgba(244, 124, 155, 0.10) 1.2px, transparent 1.4px),
    rgba(255, 253, 245, 0.68);
  background-size: 58px 58px, auto;
  border-top: 1px solid rgba(75, 47, 42, 0.08);
  border-bottom: 1px solid rgba(75, 47, 42, 0.08);
}

.facts-section-head {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.facts-section-head > span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
  box-shadow: var(--soft-shadow);
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-style: italic;
}

.facts-section-head h2 {
  margin-bottom: 8px;
}

.facts-section-head p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.facts-section-head.compact {
  grid-template-columns: 86px minmax(0, 1fr);
}

.facts-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.science-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scoop-fact-card {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.scoop-fact-card h3 {
  margin: 0 0 8px;
  color: var(--chocolate);
  font-size: 1.08rem;
  line-height: 1.2;
}

.scoop-fact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.scoop-fact-card:hover,
.facts-feature-card:hover,
.facts-mini-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.facts-list-panel {
  padding: 8px;
}

.facts-number-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flavor-facts;
}

.facts-number-list li {
  counter-increment: flavor-facts;
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 62px;
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  color: var(--muted);
}

.facts-number-list li:nth-child(odd) {
  border-right: 1px solid rgba(75, 47, 42, 0.12);
}

.facts-number-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.facts-number-list li::before {
  content: counter(flavor-facts);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.facts-number-list strong {
  color: var(--chocolate);
}

.facts-flavor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 18px;
  align-items: stretch;
}

.facts-side-photo {
  background: var(--vanilla);
}

.facts-side-photo img {
  height: min(560px, 62vw);
}

.facts-feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

.facts-feature-card {
  display: grid;
  align-content: center;
  overflow: hidden;
  min-height: 280px;
  padding: 0 0 24px;
  background: linear-gradient(180deg, var(--mint-soft), var(--card));
}

.facts-feature-card img {
  height: 210px;
  margin-bottom: 20px;
}

.facts-feature-card h3 {
  margin: 0 0 10px;
  padding: 0 24px;
  color: var(--chocolate);
  font-size: 1.45rem;
}

.facts-feature-card p {
  margin: 0 0 18px;
  padding: 0 24px;
  color: var(--muted);
}

.facts-feature-card a,
.facts-source-note a {
  color: var(--teal-dark);
  font-weight: 850;
}

.facts-feature-card a {
  padding: 0 24px;
}

.facts-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.facts-mini-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--vanilla);
  box-shadow: var(--soft-shadow);
}

.facts-mini-grid h3 {
  margin: 0 0 6px;
  color: var(--chocolate);
}

.facts-mini-grid p {
  margin: 0;
  color: var(--muted);
}

.facts-table-wrap {
  background: var(--card);
}

.facts-table td:first-child {
  color: var(--chocolate);
  font-weight: 850;
}

.experiment-card {
  min-height: 172px;
  background: linear-gradient(180deg, var(--vanilla), rgba(221, 251, 246, 0.66));
}

.faq-layout {
  align-items: start;
}

.facts-faq-list {
  display: grid;
  gap: 10px;
}

.facts-faq-list details {
  padding: 0;
  overflow: hidden;
}

.facts-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--chocolate);
  font-weight: 900;
}

.facts-faq-list summary:hover {
  color: var(--pink-dark);
}

.facts-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.facts-source-note p {
  margin: 0 0 14px;
}

.facts-source-note ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

@media (max-width: 1100px) {
  .facts-card-grid,
  .science-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .facts-hero .page-hero-inner,
  .facts-two-col,
  .facts-feature-layout,
  .facts-image-grid,
  .facts-flavor-layout {
    grid-template-columns: 1fr;
  }

  .facts-hero-art {
    display: grid;
    min-height: 0;
  }

  .facts-hero-art img,
  .facts-photo-card.featured img,
  .facts-photo-card img,
  .facts-side-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .facts-number-list {
    grid-template-columns: 1fr;
  }

  .facts-number-list li,
  .facts-number-list li:nth-child(odd),
  .facts-number-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  }

  .facts-number-list li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 580px) {
  .facts-hero-actions,
  .facts-pill-row {
    display: grid;
  }

  .facts-hero-actions .button,
  .facts-pill-row a {
    width: 100%;
  }

  .facts-stat-grid,
  .facts-card-grid,
  .science-grid,
  .facts-mini-grid {
    grid-template-columns: 1fr;
  }

  .facts-section-head,
  .facts-section-head.compact {
    grid-template-columns: 1fr;
  }

  .facts-section-head > span {
    width: 74px;
  }
}

.recipe-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 242, 184, 0.86) 0 86px, transparent 87px),
    radial-gradient(circle at 82% 28%, rgba(168, 230, 220, 0.58) 0 150px, transparent 151px),
    linear-gradient(135deg, rgba(255, 247, 232, 0.98), rgba(255, 225, 231, 0.68) 56%, rgba(201, 242, 243, 0.72));
  border-bottom: 1px solid rgba(75, 47, 42, 0.13);
}

.recipe-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 104px;
  background: rgba(255, 253, 245, 0.72);
  clip-path: polygon(0 56%, 10% 62%, 22% 50%, 36% 68%, 52% 44%, 69% 62%, 84% 48%, 100% 58%, 100% 100%, 0 100%);
}

.recipe-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.66fr);
  gap: 34px;
  align-items: center;
  min-height: 520px;
  padding: 48px 0 74px;
}

.recipe-kicker {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recipe-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--pink);
  font-family: var(--display-font);
  font-size: clamp(4rem, 7vw, 7.65rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.86;
  text-shadow: 4px 4px 0 #fff7dc, 7px 7px 0 rgba(75, 47, 42, 0.12);
}

.recipe-hero-copy > p:not(.recipe-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.recipe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.recipe-hero-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.recipe-bowl {
  width: min(100%, 360px);
  filter: drop-shadow(0 22px 22px rgba(75, 47, 42, 0.14));
}

.recipe-note-card {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 168px;
  padding: 14px;
  border: 1px solid rgba(75, 47, 42, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--soft-shadow);
  transform: rotate(-4deg);
}

.recipe-note-card strong {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-style: italic;
  font-size: 1.15rem;
}

.recipe-note-card span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.25;
}

.recipe-note-card.note-one {
  top: 26px;
  left: 0;
}

.recipe-note-card.note-two {
  right: 0;
  bottom: 38px;
  transform: rotate(5deg);
}

.recipe-jump-band {
  position: sticky;
  top: 145px;
  z-index: 8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(12px);
}

.recipe-jump-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.recipe-jump-list a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: 999px;
  background: var(--vanilla);
  color: var(--chocolate);
  font-weight: 850;
  box-shadow: 0 6px 14px rgba(75, 47, 42, 0.07);
}

.recipe-jump-list a:hover {
  color: #fff;
  background: var(--teal-dark);
}

.recipe-intro-section {
  background: rgba(255, 253, 245, 0.58);
}

.recipe-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.recipe-intro-grid .intro-panel h2 {
  margin-top: 0;
}

.recipe-intro-grid .intro-panel p + p {
  margin-top: 14px;
}

.recipe-stat-panel {
  display: grid;
  gap: 12px;
}

.recipe-stat-panel div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--mint-soft);
  box-shadow: var(--soft-shadow);
}

.stat-number {
  color: var(--pink-dark);
  font-family: var(--display-font);
  font-size: 2.6rem;
  font-style: italic;
  line-height: 1;
}

.stat-label {
  color: var(--chocolate);
  font-weight: 800;
  line-height: 1.25;
}

.method-section {
  background:
    linear-gradient(90deg, rgba(168, 230, 220, 0.30), rgba(255, 242, 184, 0.32)),
    rgba(255, 250, 240, 0.5);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-card,
.recipe-feature-card,
.flavor-lab-card {
  border: 1px solid rgba(75, 47, 42, 0.14);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.method-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 330px;
  padding: 18px;
}

.method-tag,
.recipe-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--chocolate);
  background: var(--lemon);
  font-size: 0.8rem;
  font-weight: 900;
}

.method-card h3,
.recipe-feature-card h3,
.flavor-lab-card h3 {
  margin: 0;
  color: var(--chocolate);
  line-height: 1.15;
}

.method-card p,
.method-card ul,
.recipe-feature-card p,
.recipe-feature-card ul,
.recipe-feature-card ol,
.flavor-lab-card p,
.flavor-lab-card span {
  margin: 0;
  color: var(--muted);
}

.method-card ul,
.recipe-feature-card ul,
.recipe-feature-card ol {
  padding-left: 20px;
}

.method-card li + li,
.recipe-feature-card li + li {
  margin-top: 5px;
}

.recipe-card-section {
  background: rgba(255, 225, 231, 0.35);
}

.recipe-card-stack {
  display: grid;
  gap: 18px;
}

.recipe-feature-card {
  overflow: hidden;
  padding: 0;
}

.recipe-card-head {
  display: grid;
  gap: 10px;
  padding: 22px 22px 18px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 255, 255, 0.72) 0 42px, transparent 43px),
    linear-gradient(135deg, rgba(255, 253, 245, 0.94), rgba(221, 251, 246, 0.72));
  border-bottom: 1px solid rgba(75, 47, 42, 0.12);
}

.recipe-badge {
  color: #fff;
  background: var(--teal-dark);
}

.chocolate-badge {
  background: var(--chocolate);
}

.mint-badge {
  color: var(--chocolate);
  background: var(--mint);
}

.tropical-badge {
  color: var(--chocolate);
  background: var(--lemon);
}

.berry-badge {
  background: var(--pink-dark);
}

.recipe-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
}

.recipe-detail-grid h4 {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-family: var(--display-font);
  font-size: 1.3rem;
  font-style: italic;
}

.recipe-tip {
  margin: 0;
  padding: 16px 22px 20px;
  border-top: 1px solid rgba(75, 47, 42, 0.12);
  background: rgba(255, 242, 184, 0.32);
}

.recipe-tip strong {
  color: var(--chocolate);
}

.formula-section {
  background: rgba(255, 253, 245, 0.74);
}

.recipe-table td:first-child {
  color: var(--chocolate);
  font-weight: 900;
}

.flavor-lab-section {
  background:
    radial-gradient(circle at 30px 36px, rgba(255, 255, 255, 0.6) 1px, transparent 1.2px),
    linear-gradient(180deg, rgba(201, 242, 243, 0.56), rgba(255, 247, 232, 0.74));
  background-size: 62px 62px, auto;
}

.flavor-lab-grid,
.mix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mix-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flavor-lab-card {
  display: grid;
  gap: 10px;
  min-height: 226px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 253, 245, 0.92));
}

.flavor-lab-card span {
  align-self: end;
  display: block;
  padding-top: 10px;
  color: var(--teal-dark);
  font-weight: 850;
  border-top: 1px solid rgba(75, 47, 42, 0.12);
}

.troubleshooting-section {
  background: rgba(255, 250, 240, 0.64);
}

.trouble-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trouble-list .fact-row {
  align-items: start;
}

.trouble-list h3 {
  margin: 0 0 4px;
  color: var(--chocolate);
}

.recipe-safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.recipe-safety-grid p {
  margin: 0;
  font-size: 1.06rem;
}

.source-links {
  margin-top: 12px;
}

.source-links a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .recipe-jump-band {
    top: 113px;
  }
}

@media (max-width: 1100px) {
  .recipe-hero-inner,
  .recipe-intro-grid,
  .recipe-safety-grid {
    grid-template-columns: 1fr;
  }

  .recipe-hero-art {
    min-height: 320px;
  }

  .method-grid,
  .flavor-lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .recipe-hero-inner {
    padding: 38px 0 62px;
  }

  .recipe-hero-art {
    display: none;
  }

  .recipe-detail-grid,
  .mix-grid,
  .trouble-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .recipe-hero h1 {
    font-size: clamp(3.4rem, 17vw, 4.75rem);
  }

  .recipe-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .recipe-jump-band {
    top: 108px;
  }

  .recipe-stat-panel div,
  .method-grid,
  .flavor-lab-grid {
    grid-template-columns: 1fr;
  }

  .recipe-stat-panel div {
    gap: 8px;
  }
}
