:root {
  color-scheme: dark;
  --ink: #101713;
  --ink-soft: #18241d;
  --moss: #244231;
  --leaf: #427057;
  --sage: #9fb8a4;
  --cream: #f3ead7;
  --cream-2: #e5d7bc;
  --paper: #d8c8aa;
  --ember: #f47d42;
  --ember-bright: #ffad65;
  --gold: #e5b950;
  --broth: #c85d2f;
  --line-dark: rgba(16, 23, 19, 0.18);
  --line-light: rgba(243, 234, 215, 0.18);
  --shadow: 0 30px 80px rgba(4, 10, 7, 0.28);
  --radius: 1.5rem;
  --container: min(92vw, 92rem);
  --steam-speed: 4.2s;
  --soup-hue: 0deg;
  --header-height: 5.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 17% 22%, transparent 0 1px, #fff 1px 2px),
    repeating-radial-gradient(circle at 71% 67%, transparent 0 2px, #000 2px 3px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--ember-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 99px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--container);
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  color: var(--cream);
  transform: translateX(-50%);
}

.site-header.is-sticky {
  position: fixed;
  top: 0.75rem;
  min-height: 4.4rem;
  padding: 0 1rem;
  border: 1px solid rgba(243, 234, 215, 0.16);
  border-radius: 1.1rem;
  background: rgba(16, 23, 19, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  animation: header-in 260ms ease both;
}

@keyframes header-in {
  from { transform: translate(-50%, -120%); }
  to { transform: translate(-50%, 0); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50% 50% 48% 52% / 62% 42% 58% 38%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: -0.2rem;
  color: var(--sage);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-end {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
}

.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  gap: 0.12rem;
  padding: 0.18rem;
  border: 1px solid rgba(243, 234, 215, 0.22);
  border-radius: 999px;
  background: rgba(16, 23, 19, 0.25);
}

.lang-switch button {
  min-width: 2.35rem;
  min-height: 2.2rem;
  padding: 0.3rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--cream);
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.5rem);
}

.site-nav a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 234, 215, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.32rem 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--ember);
  border-radius: 999px;
  background: var(--ember);
  color: #111a15;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--ember-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
}

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

.button-dark:hover {
  background: var(--moss);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.weather {
  position: fixed;
  z-index: 50;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.weather span {
  position: absolute;
  top: -12vh;
  width: 1px;
  height: 5.5rem;
  background: linear-gradient(transparent, rgba(211, 233, 219, 0.25));
  opacity: 0.45;
  animation: rain 2.8s linear infinite;
}

.weather span:nth-child(1) { left: 5%; animation-delay: -1.2s; }
.weather span:nth-child(2) { left: 15%; animation-delay: -2.5s; height: 3rem; }
.weather span:nth-child(3) { left: 27%; animation-delay: -0.4s; }
.weather span:nth-child(4) { left: 42%; animation-delay: -1.9s; height: 4rem; }
.weather span:nth-child(5) { left: 53%; animation-delay: -0.8s; }
.weather span:nth-child(6) { left: 65%; animation-delay: -2.1s; height: 3rem; }
.weather span:nth-child(7) { left: 72%; animation-delay: -0.2s; }
.weather span:nth-child(8) { left: 81%; animation-delay: -1.6s; }
.weather span:nth-child(9) { left: 91%; animation-delay: -2.7s; height: 4rem; }
.weather span:nth-child(10) { left: 97%; animation-delay: -0.9s; }

@keyframes rain {
  to { transform: translate3d(-3rem, 120vh, 0); }
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
  background:
    radial-gradient(circle at 77% 41%, rgba(159, 184, 164, 0.13), transparent 31%),
    linear-gradient(125deg, var(--ink) 0 58%, #1b2c22 58% 100%);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background:
    repeating-radial-gradient(ellipse at 80% 35%, transparent 0 3rem, var(--sage) 3.05rem 3.12rem, transparent 3.18rem 6rem);
  transform: rotate(-8deg) scale(1.25);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 52rem;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: calc(var(--header-height) + 4rem) 5vw 4rem max(4vw, calc((100vw - 92rem) / 2));
  overflow: visible;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 2.3rem;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow,
.eyebrow-light {
  color: var(--sage);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.closing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

h1 {
  max-width: min(100%, 22rem);
  margin-bottom: 1.75rem;
  font-size: clamp(3.2rem, 5.8vw, 6.8rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* Spanish expands 15–25%; keep the hero readable without overflow. */
html[lang="es"] h1 {
  max-width: min(100%, 24rem);
  font-size: clamp(2.85rem, 5.2vw, 6rem);
}

html[lang="es"] .segmented-control button {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  padding-inline: 0.2rem;
}

html[lang="es"] .hero-meta dd {
  font-size: 0.92rem;
}

html[lang="es"] .marquee-track {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1 em,
h2 em,
.closing h2 em {
  color: var(--ember-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: #d6ddcf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.hero-meta {
  display: grid;
  width: min(100%, 39rem);
  margin: clamp(2.7rem, 7vh, 5.8rem) 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-meta div {
  padding: 1.25rem 1rem 0 0;
}

.hero-meta dt {
  color: var(--sage);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 0.25rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
}

.hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(243, 234, 215, 0.12);
  border-radius: 50%;
}

.hero-art::before {
  width: min(42vw, 40rem);
  aspect-ratio: 1;
}

.hero-art::after {
  width: min(31vw, 29rem);
  aspect-ratio: 1;
}

.moon {
  position: absolute;
  top: 13%;
  right: 11%;
  width: 4.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 4rem rgba(229, 185, 80, 0.25);
}

.moon::after {
  position: absolute;
  inset: 0.55rem 0 0 0.8rem;
  border-radius: 50%;
  content: "";
  background: #1b2c22;
}

.art-label {
  position: absolute;
  margin: 0;
  color: var(--sage);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.art-label-top { top: 19%; left: 15%; }
.art-label-side { right: 7%; bottom: 25%; transform: rotate(90deg); }

.pot-scene {
  position: relative;
  width: clamp(20rem, 36vw, 35rem);
  height: clamp(20rem, 38vw, 37rem);
  transform: translateY(5%);
}

.pot {
  position: absolute;
  z-index: 4;
  bottom: 20%;
  left: 50%;
  width: 68%;
  height: 38%;
  overflow: hidden;
  border: 0.25rem solid #0b100d;
  border-radius: 10% 10% 38% 38% / 8% 8% 25% 25%;
  background: linear-gradient(105deg, #18241d, #3a5743 42%, #17231c 78%);
  box-shadow: inset -2rem -1rem 4rem rgba(0, 0, 0, 0.35), var(--shadow);
  transform: translateX(-50%);
}

.pot-highlight {
  position: absolute;
  top: 25%;
  bottom: 23%;
  left: 13%;
  width: 7%;
  border-radius: 99px;
  background: linear-gradient(rgba(255, 255, 255, 0.25), transparent);
  filter: blur(2px);
}

.pot-rim {
  position: absolute;
  z-index: 7;
  bottom: 55%;
  left: 50%;
  width: 72%;
  height: 8%;
  border: 0.22rem solid #0b100d;
  border-radius: 50%;
  background: #263a2e;
  box-shadow: inset 0 0.45rem 0 #4e7059;
  transform: translateX(-50%);
}

.soup {
  position: absolute;
  z-index: 2;
  top: -2%;
  left: 50%;
  width: 96%;
  height: 28%;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 211, 128, 0.5), transparent 12%),
    #ad4f2d;
  box-shadow: inset 0 0.7rem 1rem rgba(255, 188, 91, 0.35);
  filter: hue-rotate(var(--soup-hue));
  transform: translateX(-50%);
}

.ingredient,
.herb {
  position: absolute;
  display: block;
  transition: opacity 260ms ease, transform 260ms ease;
}

.ingredient {
  width: 13%;
  aspect-ratio: 1;
  border: 1px solid rgba(47, 34, 18, 0.4);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.calabaza { border-radius: 38% 52% 42% 54%; background: #ed8c37; }
.yuca { border-radius: 30% 43% 31% 47%; background: #f0dca7; }
.yautia { border-radius: 50% 35% 52% 37%; background: #b68c68; }
.plantain { width: 17%; border-radius: 45% 28% 45% 30%; background: #ced563; }
.corn { width: 18%; border-radius: 40%; background: repeating-linear-gradient(90deg, #f7c74a 0 4px, #df9e2f 4px 6px); }
.i-one { top: 35%; left: 13%; transform: rotate(13deg); }
.i-two { top: 47%; left: 36%; transform: rotate(-16deg); }
.i-three { top: 22%; left: 58%; transform: rotate(31deg); }
.i-four { top: 53%; left: 76%; transform: rotate(-25deg); }
.i-five { top: 12%; left: 79%; transform: rotate(20deg); }
.herb { width: 2%; height: 27%; border-radius: 99px; background: #547842; }
.h-one { top: 26%; left: 48%; transform: rotate(58deg); }
.h-two { top: 45%; left: 68%; transform: rotate(-61deg); }
.broth-shine { position: absolute; top: 15%; left: 21%; width: 31%; height: 12%; border-top: 2px solid rgba(255,255,255,.38); border-radius: 50%; transform: rotate(-4deg); }

.pot-lid {
  position: absolute;
  z-index: 9;
  bottom: 64%;
  left: 50%;
  width: 67%;
  height: 8%;
  border: 0.22rem solid #0b100d;
  border-radius: 50% 50% 25% 25%;
  background: linear-gradient(#5b7964, #203128);
  transform: translateX(-50%) rotate(-13deg) translateY(-4.5rem);
  transform-origin: right center;
  animation: lid-breathe 3.7s ease-in-out infinite;
}

.lid-knob {
  position: absolute;
  bottom: 68%;
  left: 50%;
  width: 13%;
  height: 110%;
  border: 0.2rem solid #0b100d;
  border-radius: 50% 50% 30% 30%;
  background: #263a2e;
  transform: translateX(-50%);
}

@keyframes lid-breathe {
  0%, 100% { transform: translateX(-50%) rotate(-13deg) translateY(-4.5rem); }
  50% { transform: translateX(-50%) rotate(-11deg) translateY(-4.8rem); }
}

.pot-handle {
  position: absolute;
  z-index: 3;
  bottom: 40%;
  width: 20%;
  height: 13%;
  border: 0.5rem solid #111914;
  border-radius: 50%;
}

.handle-left { left: 4%; transform: rotate(-8deg); }
.handle-right { right: 4%; transform: rotate(8deg); }
.stove-line { position: absolute; z-index: 5; bottom: 18%; left: 50%; width: 78%; height: 0.32rem; border-radius: 99px; background: #080d0a; transform: translateX(-50%); }

.flame {
  position: absolute;
  z-index: 1;
  bottom: 18%;
  width: 10%;
  height: 17%;
  border-radius: 80% 12% 70% 35%;
  background: linear-gradient(var(--gold), var(--ember));
  filter: drop-shadow(0 0 1rem rgba(244, 125, 66, 0.45));
  transform: rotate(45deg);
  animation: flicker 900ms ease-in-out infinite alternate;
}

.flame-one { left: 36%; }
.flame-two { left: 47%; animation-delay: -300ms; height: 13%; }
.flame-three { left: 58%; animation-delay: -600ms; }

@keyframes flicker {
  to { height: 13%; transform: rotate(42deg) scaleX(0.78); }
}

.steam-field {
  position: absolute;
  z-index: 10;
  top: 17%;
  left: 50%;
  width: 55%;
  height: 38%;
  transform: translateX(-50%);
}

.steam {
  position: absolute;
  bottom: 0;
  width: 14%;
  height: 55%;
  border: 0.18rem solid transparent;
  border-left-color: rgba(220, 231, 219, 0.45);
  border-radius: 50%;
  filter: blur(1px);
  animation: steam-rise var(--steam-speed) ease-in-out infinite;
}

.steam-one { left: 17%; }
.steam-two { left: 40%; height: 75%; animation-delay: -1.7s; }
.steam-three { left: 63%; height: 62%; animation-delay: -3.1s; }
.steam-four { left: 78%; height: 44%; animation-delay: -0.8s; }

@keyframes steam-rise {
  0% { opacity: 0; transform: translateY(2rem) scale(0.75) rotate(8deg); }
  35% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-5rem) scale(1.2) rotate(-14deg); }
}

.art-caption {
  position: absolute;
  right: 8%;
  bottom: 4.5%;
  left: 8%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1rem;
}

.art-caption span {
  color: var(--sage);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.art-caption p {
  max-width: 18rem;
  margin-bottom: 0;
  color: #cad4c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: right;
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--gold);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.2rem;
  padding: 1rem 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  animation: marquee 22s linear infinite;
}

.marquee-track i {
  font-style: normal;
}

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

.section-shell {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 11rem) 0;
}

.story {
  display: grid;
  grid-template-columns: 0.2fr 0.95fr 0.85fr;
  gap: clamp(2rem, 5vw, 7rem);
}

.section-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-style: italic;
  line-height: 1;
}

h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.3rem, 6.3vw, 7rem);
}

.story-heading h2,
.principles-intro h2 {
  font-size: clamp(3.2rem, 5.3vw, 6.6rem);
}

.story-body {
  padding-top: 3.2rem;
  font-size: 0.96rem;
}

.story-lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.5;
}

.story-body blockquote {
  margin: 2.8rem 0 0;
  padding: 1.5rem 0 0 1.5rem;
  border-top: 1px solid var(--line-dark);
  border-left: 2px solid var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

.bowl-lab {
  display: grid;
  min-height: 52rem;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
  background: var(--ink);
  color: var(--cream);
}

.bowl-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - 92rem) / 2));
  border-right: 1px solid var(--line-light);
}

.bowl-copy h2 {
  font-size: clamp(3.6rem, 6vw, 7.2rem);
}

.bowl-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: #c8d2c7;
}

fieldset {
  min-width: 0;
  margin: 2rem 0 0;
  padding: 0;
  border: 0;
}

legend,
.dialog-shell > label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.control-panel {
  margin-top: 1.75rem;
  padding: 1.15rem 1.15rem 1.35rem;
  border: 1px solid rgba(243, 234, 215, 0.22);
  border-radius: 1.15rem;
  background: rgba(243, 234, 215, 0.04);
}

.control-hint {
  margin: 0 0 1rem;
  color: var(--ember-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingredient-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ingredient-controls legend,
.simmer-controls legend {
  width: 100%;
}

.ingredient-button {
  display: inline-flex;
  min-height: 2.95rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(243, 234, 215, 0.34);
  border-radius: 999px;
  background: rgba(243, 234, 215, 0.06);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, opacity 180ms ease, background 180ms ease, transform 160ms ease;
}

.ingredient-button:hover {
  border-color: var(--ember-bright);
  transform: translateY(-1px);
}

.ingredient-button[aria-pressed="true"] {
  border-color: var(--ember);
  background: rgba(244, 125, 66, 0.18);
  box-shadow: inset 0 0 0 1px rgba(244, 125, 66, 0.35);
}

.ingredient-button[aria-pressed="false"] {
  opacity: 0.42;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.ingredient-swatch {
  display: inline-block;
  width: 0.82rem;
  aspect-ratio: 1;
  border-radius: 45% 55% 50% 40%;
}

.swatch-calabaza { background: #ed8c37; }
.swatch-yuca { background: #f0dca7; }
.swatch-yautia { background: #b68c68; }
.swatch-plantain { background: #ced563; }
.swatch-corn { background: #f7c74a; }

.simmer-controls {
  margin-top: 1.25rem;
}

.segmented-control {
  display: grid;
  width: min(100%, 24rem);
  padding: 0.28rem;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(243, 234, 215, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.segmented-control button {
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cream-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.segmented-control button:hover {
  color: var(--cream);
}

.segmented-control button[aria-pressed="true"] {
  background: var(--cream);
  color: var(--ink);
}

.bowl-stage {
  position: relative;
  display: grid;
  min-height: 46rem;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(229, 185, 80, 0.16), transparent 32%),
    repeating-radial-gradient(ellipse at 50% 45%, transparent 0 3rem, rgba(159, 184, 164, 0.08) 3.05rem 3.1rem, transparent 3.15rem 6rem),
    var(--ink-soft);
}

.bowl {
  position: relative;
  z-index: 4;
  width: min(68%, 35rem);
  aspect-ratio: 1.55;
  overflow: hidden;
  border: 0.35rem solid #0a0f0c;
  border-radius: 10% 10% 49% 49% / 12% 12% 82% 82%;
  background: linear-gradient(120deg, #d7c39e, #806b4e 63%, #3b3227);
  box-shadow: inset -2rem -2rem 4rem rgba(36, 22, 13, 0.5), 0 3.5rem 5rem rgba(0, 0, 0, 0.32);
  transform: translateY(-2rem);
}

.bowl::after {
  position: absolute;
  right: 7%;
  bottom: 19%;
  width: 8%;
  height: 45%;
  border-radius: 99px;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(13deg);
}

.bowl-soup {
  position: absolute;
  z-index: 2;
  top: -4%;
  left: 50%;
  width: 98%;
  height: 44%;
  overflow: hidden;
  border: 2px solid #5c2c1c;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 35%, rgba(255, 213, 135, 0.65), transparent 5%),
    radial-gradient(circle at 68% 62%, rgba(110, 41, 21, 0.45), transparent 21%),
    #bd572d;
  box-shadow: inset 0 1.1rem 2.4rem rgba(255, 173, 101, 0.3);
  filter: hue-rotate(var(--soup-hue));
  transform: translateX(-50%);
}

.food-piece,
.bowl-herb {
  position: absolute;
  transition: opacity 280ms ease, transform 280ms ease;
}

.food-piece.is-removed {
  opacity: 0;
  transform: translateY(-2.5rem) rotate(24deg) scale(0.4);
}

.food-piece { width: 12%; aspect-ratio: 1; border: 1px solid rgba(48, 30, 15, 0.4); box-shadow: inset 0 0 0 2px rgba(255,255,255,.13); }
.piece-calabaza { border-radius: 32% 53% 41% 58%; background: #ef943b; }
.piece-yuca { border-radius: 35% 47% 37% 54%; background: #f0dca7; }
.piece-yautia { border-radius: 50% 34% 52% 39%; background: #b68c68; }
.piece-plantain { width: 17%; border-radius: 50% 28% 48% 31%; background: #ccd15c; }
.piece-corn { width: 18%; border-radius: 38%; background: repeating-linear-gradient(90deg, #f8cc4c 0 5px, #df9e2f 5px 7px); }
.p1 { top: 18%; left: 10%; transform: rotate(13deg); }
.p2 { top: 54%; left: 73%; transform: rotate(-21deg); }
.p3 { top: 45%; left: 27%; transform: rotate(-12deg); }
.p4 { top: 12%; left: 51%; transform: rotate(31deg); }
.p5 { top: 59%; left: 49%; transform: rotate(5deg); }
.p6 { top: 17%; left: 75%; transform: rotate(-13deg); }
.p7 { top: 59%; left: 7%; transform: rotate(22deg); }
.p8 { top: 31%; left: 40%; transform: rotate(-5deg); }
.bowl-herb { width: 1.6%; height: 26%; border-radius: 99px; background: #4e783f; }
.bh1 { top: 22%; left: 34%; transform: rotate(66deg); }
.bh2 { top: 55%; left: 64%; transform: rotate(-73deg); }
.bowl-shine { position: absolute; top: 12%; left: 18%; width: 34%; height: 10%; border-top: 2px solid rgba(255,255,255,.38); border-radius: 50%; }

.spoon {
  position: absolute;
  z-index: 2;
  top: 26%;
  right: 10%;
  width: 8%;
  height: 46%;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(90deg, #7b6a55, #e4d5ba 42%, #8b795f);
  transform: rotate(24deg);
  transform-origin: bottom;
}

.bowl-steam {
  position: absolute;
  z-index: 7;
  top: 15%;
  left: 50%;
  display: flex;
  width: 34%;
  height: 25%;
  justify-content: space-around;
  transform: translateX(-50%);
}

.bowl-steam span {
  width: 18%;
  height: 100%;
  border: 0.15rem solid transparent;
  border-left-color: rgba(243, 234, 215, 0.4);
  border-radius: 50%;
  animation: steam-rise var(--steam-speed) ease-in-out infinite;
}

.bowl-steam span:nth-child(2) { height: 82%; animation-delay: -1.5s; }
.bowl-steam span:nth-child(3) { height: 110%; animation-delay: -2.7s; }

.bowl-readout {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  left: 2.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

.bowl-readout > span {
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bowl-readout strong {
  grid-row: span 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  text-align: right;
}

.bowl-readout p {
  max-width: 28rem;
  margin: 0;
  color: #c7d0c5;
  font-size: 0.78rem;
}

.principles {
  display: grid;
  grid-template-columns: 0.16fr 0.84fr;
  gap: 3rem;
}

.principles-intro {
  max-width: 56rem;
}

.principle-grid {
  display: grid;
  grid-column: 2;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle-card {
  min-height: 29rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.principle-card:last-child {
  border-right: 0;
}

.card-index {
  display: block;
  color: var(--leaf);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principle-card h3 {
  margin: 2rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.principle-card p {
  font-size: 0.88rem;
}

.root-art,
.rain-art,
.clock-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 15rem;
  place-items: center;
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 45% 55% 38% 62% / 55% 36% 64% 45%;
  background: var(--ink);
}

.root-art::before {
  width: 3.7rem;
  height: 6rem;
  border-radius: 54% 42% 59% 45%;
  content: "";
  background: var(--ember);
  box-shadow: -4rem 2rem 0 -0.8rem var(--gold), 4.2rem 1rem 0 -0.5rem #b68c68;
}

.root-art i {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 1px;
  height: 55%;
  background: var(--cream);
  transform-origin: top;
}

.root-art i:nth-child(1) { transform: rotate(22deg); }
.root-art i:nth-child(2) { transform: rotate(-30deg); }
.root-art i:nth-child(3) { transform: rotate(48deg); }

.rain-art { background: var(--moss); }
.rain-art::before { position: absolute; bottom: 20%; width: 66%; height: 34%; border-radius: 50% 50% 0 0; content: ""; background: var(--ink); clip-path: polygon(0 100%, 31% 30%, 48% 56%, 69% 10%, 100% 100%); }
.rain-art i { width: 1px; height: 3rem; background: var(--cream); transform: rotate(18deg); animation: small-rain 1.7s linear infinite; }
.rain-art i:nth-child(1) { position: absolute; top: -2rem; left: 21%; }
.rain-art i:nth-child(2) { position: absolute; top: 1rem; left: 43%; animation-delay: -.7s; }
.rain-art i:nth-child(3) { position: absolute; top: -1rem; left: 67%; animation-delay: -1.1s; }
.rain-art i:nth-child(4) { position: absolute; top: 2rem; left: 82%; animation-delay: -.2s; }
@keyframes small-rain { to { transform: translate(-1rem, 12rem) rotate(18deg); } }

.clock-art { background: var(--gold); }
.clock-art::before { width: 8rem; aspect-ratio: 1; border: 1.5px solid var(--ink); border-radius: 50%; content: ""; }
.clock-art i,
.clock-art b { position: absolute; top: 50%; left: 50%; width: 1px; height: 3rem; background: var(--ink); transform-origin: top; }
.clock-art i { transform: rotate(33deg); }
.clock-art b { height: 2.2rem; transform: rotate(132deg); }

.evening {
  display: grid;
  min-height: 52rem;
  grid-template-columns: 1.06fr 0.94fr;
  background: var(--paper);
}

.evening-visual {
  display: grid;
  min-height: 48rem;
  place-items: center;
  padding: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  background: var(--moss);
}

.window-frame {
  position: relative;
  width: min(90%, 39rem);
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 1rem solid var(--ink);
  border-radius: 48% 48% 0 0 / 22% 22% 0 0;
  background: linear-gradient(#748b82, #c5c7aa 58%, #6f7d5c);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.3);
}

.window-frame::after {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.7rem;
  content: "";
  background: var(--ink);
  transform: translateX(-50%);
}

.mountain { position: absolute; right: -14%; bottom: -8%; left: -14%; clip-path: polygon(0 100%, 16% 50%, 29% 69%, 46% 28%, 59% 57%, 77% 18%, 100% 100%); }
.mountain-back { height: 58%; background: #4f6857; opacity: .75; transform: translateY(-18%); }
.mountain-front { z-index: 2; height: 58%; background: #1c3427; }
.window-fog { position: absolute; z-index: 3; right: -20%; left: -20%; height: 16%; border-radius: 50%; background: rgba(235, 235, 214, 0.7); filter: blur(1rem); animation: fog 9s ease-in-out infinite alternate; }
.fog-one { top: 38%; }
.fog-two { top: 57%; animation-delay: -4s; opacity: .55; }
@keyframes fog { to { transform: translateX(9%); } }
.window-rain { position: absolute; z-index: 4; inset: 0; opacity: .35; background: repeating-linear-gradient(104deg, transparent 0 24px, rgba(245,248,238,.8) 25px 26px, transparent 27px 52px); animation: window-rain 5s linear infinite; }
@keyframes window-rain { to { background-position: -8rem 14rem; } }

.evening-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(5rem, 9vw, 9rem) max(4vw, calc((100vw - 92rem) / 2));
}

.evening-copy h2 {
  font-size: clamp(3.6rem, 6vw, 7.2rem);
}

.timeline {
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.timeline li {
  display: grid;
  padding: 1.2rem 0;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.timeline time {
  color: #2c503c;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.evening-copy .eyebrow {
  color: #2c503c;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.timeline span {
  margin-top: 0.15rem;
  font-size: 0.76rem;
}

.evening-copy .button {
  align-self: flex-start;
}

.closing {
  position: relative;
  display: grid;
  min-height: 42rem;
  place-content: center;
  overflow: hidden;
  padding: 7rem 4vw;
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 185, 80, 0.12), transparent 28%),
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 5rem, rgba(159, 184, 164, 0.08) 5.05rem 5.1rem, transparent 5.15rem 10rem),
    var(--ink);
  color: var(--cream);
  text-align: center;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  margin-bottom: 2.6rem;
  font-size: clamp(4rem, 8.5vw, 10rem);
}

.round-button {
  display: grid;
  width: 9.5rem;
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--ember);
  border-radius: 50%;
  background: var(--ember);
  color: var(--ink);
  cursor: pointer;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), background 180ms ease;
}

.round-button:hover {
  background: var(--ember-bright);
  transform: rotate(8deg) scale(1.06);
}

.round-button span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1;
}

.round-button i {
  font-size: 1rem;
  font-style: normal;
}

.site-footer {
  display: grid;
  width: 100%;
  min-height: 10rem;
  align-items: center;
  padding: 2.5rem max(4vw, calc((100vw - 92rem) / 2));
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  border-top: 1px solid var(--line-light);
  background: #0b100d;
  color: var(--cream);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
  color: var(--sage);
  text-align: center;
}

.site-footer > a:last-child {
  font-weight: 800;
  text-decoration: none;
}

.place-dialog {
  width: min(92vw, 38rem);
  max-height: 90vh;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(243, 234, 215, 0.22);
  border-radius: 1.5rem;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.5);
}

.place-dialog::backdrop {
  background: rgba(5, 11, 7, 0.78);
  backdrop-filter: blur(9px);
}

.place-dialog[open] {
  animation: dialog-in 280ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(1.5rem) scale(.97); }
}

.dialog-shell,
.place-confirmation {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.dialog-shell h2,
.place-confirmation h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 8vw, 4.6rem);
}

.dialog-shell > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: #3f4c44;
  font-size: 0.88rem;
}

.dialog-shell > label {
  color: var(--leaf);
}

.dialog-shell input[type="text"],
.dialog-shell input:not([type]) {
  width: 100%;
  min-height: 3.4rem;
  margin-bottom: 0.5rem;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.table-map {
  display: grid;
  width: min(100%, 22rem);
  margin: 1.5rem 0 1.75rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.table-map figcaption {
  grid-column: 1 / -1;
  margin: 0 0 0.15rem;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.table-map span {
  display: grid;
  min-height: 3.1rem;
  place-items: center;
  border: 1px solid rgba(16, 23, 19, 0.16);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evening-copy .table-map span {
  border-color: rgba(243, 234, 215, 0.2);
  background: rgba(243, 234, 215, 0.06);
  color: var(--cream);
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.seat-grid label {
  cursor: pointer;
}

.seat-grid input {
  position: absolute;
  opacity: 0;
}

.seat-grid span {
  display: flex;
  min-height: 6.5rem;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.8rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.seat-grid small {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seat-grid input:checked + span {
  border-color: var(--ember);
  background: rgba(244, 125, 66, 0.12);
}

.seat-grid input:focus-visible + span {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

.dialog-shell > .button {
  width: 100%;
  margin-top: 1.4rem;
}

.privacy-note {
  margin: 0.7rem 0 0 !important;
  font-size: 0.66rem !important;
  text-align: center;
}

.place-confirmation {
  min-height: 32rem;
  text-align: center;
}

.place-confirmation .eyebrow {
  justify-content: center;
}

.place-card {
  position: relative;
  display: flex;
  min-height: 13rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 2rem 0;
  padding: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: 50% 50% 48% 52% / 8% 8% 8% 8%;
  background: var(--paper);
}

.place-card span,
.place-card small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-card strong {
  margin: 0.65rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-style: italic;
  font-weight: 400;
}

.confirmation-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.text-button {
  min-height: 2.75rem;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--leaf);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: underline;
  cursor: pointer;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 1rem 1.2rem;
  border: 1px solid rgba(243, 234, 215, 0.2);
  border-radius: 0.9rem;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 52rem;
    padding-right: max(4vw, calc((100vw - 92rem) / 2));
  }

  .hero-art {
    min-height: 48rem;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .hero-art::before { width: min(80vw, 40rem); }
  .hero-art::after { width: min(60vw, 29rem); }
  .pot-scene { width: min(75vw, 34rem); height: min(78vw, 36rem); }

  .story {
    grid-template-columns: 0.18fr 1fr;
  }

  .story-body {
    grid-column: 2;
    padding-top: 0;
  }

  .bowl-lab {
    grid-template-columns: 1fr;
  }

  .bowl-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .principle-card {
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(13rem, 0.7fr) 1fr;
    gap: 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .principle-card:last-child { border-bottom: 0; }
  .principle-card .card-index { grid-column: 1 / -1; }
  .principle-card > div { grid-row: span 2; }
  .principle-card h3 { align-self: end; }

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

  .evening-visual {
    min-height: 42rem;
  }
}

@media (max-width: 49rem) {
  :root { --header-height: 4.8rem; }

  .site-header {
    width: calc(100% - 2rem);
  }

  .site-header.is-sticky {
    top: 0.5rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1rem;
    flex-direction: column;
    border: 1px solid rgba(243, 234, 215, 0.16);
    border-radius: 1rem;
    background: rgba(16, 23, 19, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(-3px) rotate(-45deg); }

  .hero-copy {
    min-height: 46rem;
    padding: calc(var(--header-height) + 4rem) 1rem 3rem;
  }

  h1 {
    max-width: min(100%, 18rem);
    font-size: clamp(2.85rem, 11vw, 4.8rem);
  }

  html[lang="es"] h1 {
    max-width: min(100%, 20rem);
    font-size: clamp(2.55rem, 10vw, 4.3rem);
  }

  html[lang="es"] .segmented-control {
    width: 100%;
  }

  html[lang="es"] .segmented-control button {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-meta {
    margin-top: 3rem;
  }

  .hero-meta div {
    padding-right: 0.45rem;
  }

  .hero-meta dd {
    font-size: 0.82rem;
  }

  html[lang="es"] .hero-meta dd {
    font-size: 0.74rem;
  }

  .hero-art {
    min-height: 39rem;
  }

  .pot-scene {
    width: min(92vw, 29rem);
    height: min(100vw, 32rem);
  }

  .art-caption {
    right: 1rem;
    left: 1rem;
  }

  .art-caption p { max-width: 13rem; }

  .section-shell {
    width: calc(100% - 2rem);
    padding: 5.5rem 0;
  }

  .story,
  .principles {
    display: block;
  }

  .section-number {
    margin-bottom: 2rem;
    font-size: 3.5rem;
  }

  h2,
  .story-heading h2,
  .principles-intro h2,
  .bowl-copy h2,
  .evening-copy h2 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .story-body {
    padding-top: 0;
  }

  .bowl-copy,
  .evening-copy {
    padding: 5rem 1rem;
  }

  .bowl-stage {
    min-height: 37rem;
  }

  .bowl {
    width: min(82%, 31rem);
  }

  .spoon { right: 3%; }

  .bowl-readout {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: block;
  }

  .bowl-readout strong,
  .bowl-readout p {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }

  .principle-grid {
    grid-column: auto;
  }

  .principle-card {
    display: block;
    padding: 1.3rem 0 2.5rem;
  }

  .principle-card > div {
    height: 13rem;
  }

  .evening-visual {
    min-height: 34rem;
    padding: 1rem;
  }

  .window-frame {
    width: min(88%, 26rem);
  }

  .closing {
    min-height: 36rem;
    padding: 5rem 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }

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

  .seat-grid span {
    min-height: 4.5rem;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}

@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;
  }
  .weather { display: none; }
}

@media (prefers-contrast: more) {
  :root {
    --sage: #c9ddca;
    --line-light: rgba(255, 255, 255, 0.42);
    --line-dark: rgba(0, 0, 0, 0.45);
  }
  .button { border-width: 2px; }
}
