:root {
  --ink: #090908;
  --ink-soft: #151511;
  --gold: #cea812;
  --gold-bright: #e1bc19;
  --cream: #f7f0df;
  --cream-deep: #eadfca;
  --white: #fefefe;
  --berry: #8d2333;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(9, 9, 8, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 8, 0.88);
  border-bottom: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  min-height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  position: relative;
  z-index: 3;
  display: block;
  width: 148px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  color: var(--white);
}

.nav-links > a:not(.button),
.footer-nav a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links > a:not(.button)::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.nav-toggle span:first-child {
  top: 19px;
}

.nav-toggle span:last-child {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.68rem;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 33%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(125deg, #060605 0%, #0b0b09 56%, #12120e 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.35;
}

.hero-orbit {
  position: absolute;
  border: clamp(36px, 5vw, 76px) solid var(--gold);
  border-radius: 50%;
  opacity: 0.94;
}

.hero-orbit--one {
  top: -250px;
  right: -310px;
  width: 610px;
  aspect-ratio: 1;
}

.hero-orbit--two {
  bottom: -260px;
  left: -300px;
  width: 500px;
  aspect-ratio: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 940px;
  padding-top: 142px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 0.84fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 28px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(206, 168, 18, 0.14);
}

.hero h1,
.intro h2,
.section-head h2,
.story-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 6.4vw, 7.1rem);
}

.hero h1 em,
.section-head h2 em,
.story-copy h2 em,
.closing h2 em {
  display: inline-block;
  color: var(--gold-bright);
  font-weight: 500;
}

.hero-lead {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  padding: 10px 0;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.hero-facts {
  margin: 52px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts span {
  color: var(--gold);
  font-size: 0.6rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-number {
  position: absolute;
  top: 2%;
  right: -4%;
  margin: 0;
  color: transparent;
  font-size: clamp(4.8rem, 8.5vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.62;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.11);
  transform: rotate(90deg) translateX(72%);
  transform-origin: right top;
}

.plate-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(490px, 42vw);
  aspect-ratio: 1;
  transform: translate(-52%, -52%) rotate(-5deg);
  transition: transform 220ms ease-out;
}

.plate-shadow {
  position: absolute;
  inset: 10% -5% -9% 8%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  filter: blur(34px);
}

.plate {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, #f7f2e8 0 58%, #dcd3c1 59% 63%, #fff 64% 73%, #cfc6b3 74% 75%, #faf7f0 76%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow:
    inset -22px -18px 40px rgba(63, 48, 18, 0.12),
    inset 10px 10px 20px rgba(255, 255, 255, 0.85),
    var(--shadow);
}

.poffertje {
  position: absolute;
  z-index: 2;
  width: 25%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 244, 180, 0.9) 0 3%, transparent 4%),
    radial-gradient(circle at 58% 42%, rgba(123, 65, 0, 0.3) 0 4%, transparent 5%),
    radial-gradient(circle at 42% 38%, #f7d565 0 13%, #d9a517 53%, #9d6805 78%, #4c3105 100%);
  border: 2px solid rgba(96, 55, 0, 0.36);
  border-radius: 50%;
  box-shadow:
    inset 6px 7px 13px rgba(255, 238, 147, 0.38),
    inset -8px -10px 13px rgba(98, 52, 0, 0.27),
    8px 13px 15px rgba(43, 26, 1, 0.25);
}

.poffertje::after {
  position: absolute;
  inset: 16%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1.5px, transparent 1.9px);
  background-position: 0 0, 9px 11px;
  background-size: 13px 14px, 18px 16px;
  border-radius: 50%;
  content: "";
  opacity: 0.78;
}

.poffertje--1 { top: 22%; left: 21%; transform: rotate(-9deg); }
.poffertje--2 { top: 16%; left: 39%; transform: rotate(7deg); }
.poffertje--3 { top: 25%; left: 57%; transform: rotate(14deg); }
.poffertje--4 { top: 40%; left: 16%; transform: rotate(8deg); }
.poffertje--5 { top: 37%; left: 37%; z-index: 4; transform: rotate(-3deg); }
.poffertje--6 { top: 43%; left: 59%; transform: rotate(-12deg); }
.poffertje--7 { top: 57%; left: 24%; transform: rotate(4deg); }
.poffertje--8 { top: 58%; left: 44%; z-index: 3; transform: rotate(12deg); }
.poffertje--9 { top: 61%; left: 62%; transform: rotate(-8deg); }

.berry-swish {
  position: absolute;
  z-index: 5;
  right: 23%;
  bottom: 26%;
  width: 34%;
  height: 7%;
  background: linear-gradient(90deg, transparent, var(--berry) 18% 82%, transparent);
  border-radius: 50%;
  box-shadow: 0 6px 8px rgba(70, 5, 14, 0.22);
  transform: rotate(-25deg);
  opacity: 0.9;
}

.sugar {
  position: absolute;
  z-index: 6;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  box-shadow:
    20px 4px 0 -1px var(--white),
    41px -11px 0 -1px var(--white),
    72px 7px 0 -1px var(--white),
    100px -4px 0 -1px var(--white),
    121px 15px 0 -1px var(--white);
  opacity: 0.8;
}

.sugar--1 { top: 31%; left: 29%; transform: rotate(12deg); }
.sugar--2 { top: 51%; left: 22%; transform: rotate(-8deg); }
.sugar--3 { top: 68%; left: 34%; transform: rotate(6deg); }

.round-note {
  position: absolute;
  z-index: 8;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--gold);
  border: 5px solid var(--ink);
  border-radius: 50%;
  outline: 1px solid var(--gold);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.round-note span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.round-note strong {
  font-family: var(--display);
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
}

.round-note--top {
  top: 2%;
  left: -7%;
  width: 110px;
  transform: rotate(-11deg);
}

.round-note--bottom {
  right: -4%;
  bottom: 4%;
  width: 120px;
  color: var(--white);
  background: var(--berry);
  border-color: var(--cream);
  outline-color: var(--berry);
  transform: rotate(9deg);
}

.round-note--bottom strong {
  font-family: var(--sans);
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 4%;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-caption span {
  width: 28px;
  height: 1px;
  margin-top: 8px;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--gold);
  content: "";
  animation: scrollLine 1.7s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-110%); }
  70%, 100% { transform: translateY(230%); }
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border-block: 1px solid rgba(0, 0, 0, 0.32);
}

.ticker-track {
  width: max-content;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ticker i {
  font-style: normal;
  font-size: 0.75rem;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.intro {
  color: var(--ink);
  background: var(--cream);
}

.intro::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.3fr 0.45fr;
  align-items: center;
  gap: 56px;
}

.section-kicker {
  color: #6f5a08;
}

.intro-grid > .section-kicker {
  align-self: start;
  padding-top: 16px;
}

.intro h2 {
  max-width: 730px;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.intro h2 span {
  display: block;
  color: #9f8110;
  font-style: italic;
}

.intro-copy > p {
  max-width: 700px;
  margin: 36px 0 0;
  color: rgba(9, 9, 8, 0.65);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.intro-seal {
  position: relative;
  width: 170px;
  aspect-ratio: 1;
  justify-self: end;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  animation: sealFloat 4s ease-in-out infinite;
}

.intro-seal svg {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  animation: sealSpin 26s linear infinite;
}

.intro-seal text {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 8.2px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.intro-seal > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2.35rem;
  font-style: italic;
}

@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes sealFloat { 50% { transform: translateY(-10px) rotate(2deg); } }

.menu {
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
}

.menu-orbit {
  position: absolute;
  top: 7%;
  right: -180px;
  width: 360px;
  aspect-ratio: 1;
  border: 52px solid rgba(206, 168, 18, 0.2);
  border-radius: 50%;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.section-head .section-kicker {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(3.7rem, 6vw, 6.6rem);
}

.section-head h2 em {
  color: #9f8110;
}

.section-head > p {
  margin: 0 0 10px;
  color: rgba(9, 9, 8, 0.58);
  font-size: 1.05rem;
  line-height: 1.75;
}

.menu-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.menu-card {
  position: relative;
  min-height: 590px;
  padding: 28px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(32, 24, 3, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.menu-card:hover {
  z-index: 2;
  box-shadow: 0 32px 80px rgba(32, 24, 3, 0.2);
  transform: translateY(-12px) rotate(-0.4deg);
}

.menu-card--berry {
  color: var(--ink);
  background: var(--gold);
  border-color: rgba(0, 0, 0, 0.13);
}

.menu-card--juice {
  color: var(--ink);
  background: #eee4ce;
  border-color: rgba(0, 0, 0, 0.1);
}

.menu-card-topline {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-card--feature .menu-card-topline {
  color: var(--gold-bright);
}

.mini-pan,
.ingredient-art {
  position: relative;
  z-index: 2;
  height: 250px;
  margin-top: 10px;
}

.mini-pan::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  aspect-ratio: 1;
  background: #22221d;
  border: 3px solid #34342e;
  border-radius: 50%;
  box-shadow: inset 0 0 0 15px #151512, 18px 26px 30px rgba(0, 0, 0, 0.3);
  content: "";
  transform: translate(-50%, -50%);
}

.mini-pan::after {
  position: absolute;
  top: 50%;
  right: -46px;
  width: 120px;
  height: 30px;
  background: #2b2b26;
  border-radius: 0 18px 18px 0;
  content: "";
  transform: rotate(-8deg);
}

.mini-pan span {
  position: absolute;
  z-index: 2;
  width: 72px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 38% 32%, #f1d766, #c7930c 63%, #704603);
  border: 2px solid #5c3e04;
  border-radius: 50%;
  box-shadow: inset 5px 5px 8px rgba(255, 240, 143, 0.4), 5px 8px 10px rgba(0, 0, 0, 0.34);
}

.mini-pan span:nth-child(1) { top: 45px; left: calc(50% - 83px); }
.mini-pan span:nth-child(2) { top: 36px; left: calc(50% - 12px); }
.mini-pan span:nth-child(3) { top: 103px; left: calc(50% - 104px); }
.mini-pan span:nth-child(4) { top: 107px; left: calc(50% - 35px); }
.mini-pan span:nth-child(5) { top: 99px; left: calc(50% + 37px); }

.ingredient-art--berry::before {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 154px;
  height: 180px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 22%),
    linear-gradient(#a92e3e 0 19%, #7c1628 20% 100%);
  border: 3px solid var(--ink);
  border-radius: 18px 18px 30px 30px;
  box-shadow: 14px 18px 0 rgba(9, 9, 8, 0.16);
  content: "";
  transform: translateX(-50%) rotate(4deg);
}

.ingredient-art--berry::after {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 50%;
  width: 168px;
  height: 28px;
  background: var(--ink);
  border-radius: 7px;
  content: "";
  transform: translateX(-50%) rotate(4deg);
}

.ingredient-art--berry span {
  position: absolute;
  z-index: 4;
  width: 52px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #f56d79, #a5142c 60%, #65101e);
  border: 2px solid rgba(9, 9, 8, 0.8);
  border-radius: 52% 48% 49% 51%;
}

.ingredient-art--berry span:first-child { right: 24%; bottom: 16px; transform: rotate(-10deg); }
.ingredient-art--berry span:nth-child(2) { right: 11%; bottom: 1px; transform: scale(0.72) rotate(18deg); }

.ingredient-art--berry i {
  position: absolute;
  z-index: 5;
  right: 22%;
  bottom: 61px;
  width: 42px;
  height: 28px;
  border-top: 4px solid #274b25;
  border-right: 4px solid #274b25;
  border-radius: 50%;
  transform: rotate(-21deg);
}

.ingredient-art--juice::before {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 136px;
  height: 210px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66), transparent 22%),
    linear-gradient(to bottom, transparent 0 22%, #efbd3c 23% 100%);
  border: 3px solid var(--ink);
  border-radius: 22px 22px 48px 48px;
  box-shadow: 14px 18px 0 var(--gold);
  content: "";
  transform: translateX(-50%) rotate(-3deg);
}

.ingredient-art--juice::after {
  position: absolute;
  z-index: 3;
  top: 32px;
  left: 53%;
  width: 4px;
  height: 126px;
  background: var(--berry);
  border-radius: 4px;
  content: "";
  transform: rotate(8deg);
}

.ingredient-art--juice span,
.ingredient-art--juice i,
.ingredient-art--juice b {
  position: absolute;
  z-index: 4;
  display: block;
  width: 66px;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.ingredient-art--juice span {
  right: 17%;
  bottom: 6px;
  background: radial-gradient(circle, #f5e990 0 43%, #e5cb29 44% 100%);
}

.ingredient-art--juice i {
  right: 6%;
  bottom: 30px;
  background: repeating-conic-gradient(#f2ab45 0 12deg, #ffd890 12deg 24deg);
  transform: scale(0.78);
}

.ingredient-art--juice b {
  left: 12%;
  bottom: 12px;
  background: repeating-conic-gradient(#f39a4e 0 13deg, #ffd3a4 13deg 26deg);
  transform: scale(0.7);
}

.menu-card-content {
  position: relative;
  z-index: 4;
  margin-top: auto;
}

.menu-label {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card--berry .menu-label,
.menu-card--juice .menu-label {
  color: rgba(9, 9, 8, 0.8);
}

.menu-card h3 {
  max-width: 330px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 2.5vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.menu-card-content > p:not(.menu-label) {
  max-width: 340px;
  min-height: 72px;
  margin: 17px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.91rem;
  line-height: 1.55;
}

.menu-card--berry .menu-card-content > p,
.menu-card--juice .menu-card-content > p {
  color: rgba(9, 9, 8, 0.74);
}

.price {
  display: flex;
  align-items: flex-start;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  margin: 4px 0 0 4px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
}

.price--word {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-footnote {
  margin: 48px 0 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: rgba(9, 9, 8, 0.56);
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
}

.menu-footnote span {
  color: #9f8110;
  font-style: normal;
}

.story {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.story::before {
  position: absolute;
  top: -180px;
  left: -210px;
  width: 420px;
  aspect-ratio: 1;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.story-art {
  position: relative;
  min-height: 590px;
}

.story-frame {
  position: absolute;
  width: min(440px, 90%);
  aspect-ratio: 0.78;
  border-radius: 12px;
}

.story-frame--back {
  top: 15px;
  left: 9%;
  background: var(--gold);
  transform: rotate(-6deg);
}

.story-frame--front {
  top: 40px;
  left: 4%;
  padding: clamp(38px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(206, 168, 18, 0.16), transparent 25%),
    #181814;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.story-frame--front::before {
  position: absolute;
  top: 40px;
  right: 40px;
  left: 40px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.story-frame .story-claim {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.story-frame .story-signature {
  position: relative;
  z-index: 2;
  margin: 25px 0 0;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-dot {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
}

.story-dot--1 { top: 90px; left: -48px; width: 120px; height: 120px; }
.story-dot--2 { top: 88px; right: 50px; width: 28px; height: 28px; }
.story-dot--3 { top: 140px; right: 92px; width: 13px; height: 13px; }

.story-tag {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 55px;
  padding: 13px 22px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  transform: rotate(-8deg);
}

.story-copy .section-kicker {
  color: var(--gold-bright);
}

.story-copy h2 {
  max-width: 680px;
  font-size: clamp(3.7rem, 5.6vw, 6.5rem);
}

.story-copy > p:not(.section-kicker) {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.06rem;
  line-height: 1.78;
}

.story-values {
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
}

.story-values div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.story-values dt {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
}

.story-values dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.closing {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.closing-orbit {
  position: absolute;
  border: 2px solid rgba(9, 9, 8, 0.25);
  border-radius: 50%;
}

.closing-orbit--one {
  top: -180px;
  left: -140px;
  width: 420px;
  aspect-ratio: 1;
  box-shadow: 0 0 0 55px rgba(9, 9, 8, 0.05);
}

.closing-orbit--two {
  right: -110px;
  bottom: -220px;
  width: 510px;
  aspect-ratio: 1;
  box-shadow: 0 0 0 75px rgba(9, 9, 8, 0.05);
}

.closing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing .section-kicker {
  margin-bottom: 22px;
  color: rgba(9, 9, 8, 0.76);
}

.closing h2 {
  font-size: clamp(4.5rem, 8.5vw, 9rem);
}

.closing h2 em {
  color: var(--ink);
}

.closing p:not(.section-kicker) {
  max-width: 580px;
  margin: 28px auto 34px;
  color: rgba(9, 9, 8, 0.76);
  font-size: 1.1rem;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 50px;
}

.footer-brand {
  width: 210px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.25;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.footer-bottom {
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid var(--line-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
    gap: 30px;
  }

  .plate-scene {
    width: min(430px, 43vw);
  }

  .hero-caption {
    right: -10px;
  }

  .intro-grid {
    grid-template-columns: 0.4fr 1.25fr;
  }

  .intro-seal {
    display: none;
  }

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

  .menu-card--feature {
    grid-column: 1 / -1;
    min-height: 510px;
  }

  .menu-card--feature .mini-pan {
    position: absolute;
    top: 74px;
    right: 20px;
    width: 52%;
    height: 300px;
  }

  .menu-card--feature .menu-card-content {
    max-width: 42%;
  }

  .story-grid {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .section {
    padding: 100px 0;
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand {
    width: 128px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    padding: 130px 32px 50px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background:
      radial-gradient(circle at 100% 0, rgba(206, 168, 18, 0.4) 0 22%, transparent 22.5%),
      var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    visibility: hidden;
    transition:
      opacity 240ms ease,
      transform 240ms ease,
      visibility 0s linear 240ms;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-open .site-header {
    height: 100dvh;
    background: var(--ink);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-open .nav-links {
    position: absolute;
    min-height: 100dvh;
  }

  .nav-links > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.7rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .nav-links .button {
    margin-top: 34px;
    align-self: flex-start;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    padding-top: 160px;
    padding-bottom: 110px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 690px;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 15px;
  }

  .plate-scene {
    width: min(520px, 80vw);
  }

  .hero-caption {
    right: 5%;
  }

  .hero-number {
    right: 2%;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-grid > .section-kicker {
    padding-top: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-head > p {
    max-width: 530px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .story-art {
    width: min(570px, 100%);
    margin-inline: auto;
  }

  .story-tag {
    right: 7%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  html {
    scroll-padding-top: 84px;
  }

  .section {
    padding: 86px 0;
  }

  .hero-grid {
    padding-top: 135px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 4rem);
    line-height: 0.94;
  }

  .hero-orbit--one {
    top: -300px;
    right: -550px;
    width: 650px;
    border-width: 55px;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    min-height: 54px;
  }

  .hero-facts {
    margin-top: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .plate-scene {
    width: min(400px, 88vw);
  }

  .round-note--top {
    left: -1%;
    width: 88px;
  }

  .round-note--bottom {
    right: 1%;
    width: 96px;
  }

  .round-note strong {
    font-size: 1.4rem;
  }

  .round-note--bottom strong {
    font-size: 1.55rem;
  }

  .hero-caption,
  .hero-number {
    display: none;
  }

  .ticker-track {
    min-height: 60px;
  }

  .intro h2,
  .section-head h2,
  .story-copy h2 {
    font-size: clamp(3.2rem, 14vw, 4.65rem);
  }

  .menu-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .menu-card,
  .menu-card--feature {
    grid-column: auto;
    min-height: 550px;
  }

  .menu-card--feature .mini-pan {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: 250px;
  }

  .menu-card--feature .menu-card-content {
    max-width: none;
  }

  .story-art {
    min-height: 500px;
  }

  .story-frame {
    width: 88%;
  }

  .story-frame--front {
    padding: 38px;
  }

  .story-tag {
    right: 0;
    bottom: 25px;
  }

  .story-values div {
    grid-template-columns: 110px 1fr;
  }

  .closing {
    padding: 105px 0;
  }

  .closing h2 {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }

  .footer-main {
    padding-top: 62px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    width: 185px;
  }

  .footer-nav {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
