:root {
  --cream: #f4eee1;
  --paper: #fffaf1;
  --ink: #25251f;
  --muted: #646052;
  --green: #173f35;
  --green-light: #dce9df;
  --orange: #d95e31;
  --orange-dark: #a83f1d;
  --turmeric: #e9b93f;
  --pink: #e7b6ac;
  --line: #d8cfbd;
  --white: #fffdf8;
  --shadow: 0 16px 45px rgb(42 50 39 / 9%);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgb(255 255 255 / 45%) 0 2px, transparent 3px) 0 0 / 28px 28px,
    var(--cream);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.24;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

em {
  color: var(--orange);
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--green);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.preview-bar {
  padding: 0.55rem 1rem;
  color: white;
  background: #7d311a;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgb(244 238 225 / 92%);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  min-height: 88px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
  gap: 2rem;
}

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

.brand-mark {
  display: inline-block;
  width: 48px;
  flex: 0 0 48px;
}

.brand-mark-ground {
  fill: var(--green);
}

.brand-mark-curry {
  fill: var(--orange);
}

.brand-mark-bowl {
  fill: var(--paper);
}

.brand-mark-stem {
  fill: none;
  stroke: var(--paper);
  stroke-linecap: round;
  stroke-width: 2.4;
}

.brand-mark-leaf {
  fill: var(--turmeric);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand-copy em,
.footer-brand em {
  color: var(--orange);
  font-weight: 400;
}

.brand-copy small {
  color: var(--muted);
  margin-top: 0.2rem;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 1.8rem;
}

.site-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  font-weight: 700;
}

.button,
.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
}

.button {
  min-height: 50px;
  padding: 0.78rem 1.2rem;
  border: 2px solid var(--green);
  border-radius: 3px;
  color: white;
  background: var(--green);
  box-shadow: 4px 4px 0 var(--turmeric);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover {
  background: #205447;
  box-shadow: 2px 2px 0 var(--turmeric);
  transform: translate(2px, 2px);
}

.button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  box-shadow: 3px 3px 0 var(--turmeric);
}

.text-link {
  color: var(--orange-dark);
  text-decoration: none;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--orange-dark);
  background: none;
  text-decoration: underline;
  cursor: pointer;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 700px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8.5rem) 1.5rem 5.5rem;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

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

.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.trust-note {
  margin-top: 2.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.trust-note span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 0.4rem;
  border-radius: 50%;
  color: white;
  background: var(--green);
  place-items: center;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 49% 49% 3px 3px;
  background: var(--pink);
  box-shadow: 18px 18px 0 var(--turmeric);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  border: 2px solid rgb(23 63 53 / 25%);
  border-radius: 50%;
}

.hero-visual::before {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -100px;
}

.hero-visual::after {
  width: 260px;
  height: 260px;
  bottom: 40px;
  left: -130px;
}

.sun {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 58px;
  right: 48px;
  border-radius: 50%;
  background: var(--turmeric);
}

.bowl {
  position: absolute;
  width: 320px;
  height: 180px;
  top: 180px;
  left: 50%;
  border-radius: 10px 10px 160px 160px;
  background: var(--green);
  box-shadow: 0 22px 0 rgb(23 63 53 / 15%);
  transform: translateX(-50%);
}

.bowl::before {
  position: absolute;
  width: 340px;
  height: 85px;
  top: -40px;
  left: -10px;
  content: "";
  border: 14px solid var(--green);
  border-radius: 50%;
  background: var(--orange);
}

.rice,
.curry {
  position: absolute;
  z-index: 1;
  width: 90px;
  height: 60px;
  top: -45px;
  border-radius: 50% 50% 40% 45%;
}

.rice {
  left: 70px;
  background: var(--paper);
}

.curry-one {
  right: 68px;
  background: #9f3d20;
}

.curry-two {
  width: 65px;
  right: 132px;
  background: var(--turmeric);
}

.leaf {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 18px;
  top: -55px;
  border-radius: 100% 0 100% 0;
  background: #5d7d48;
}

.leaf-one {
  left: 135px;
  transform: rotate(25deg);
}

.leaf-two {
  left: 165px;
  transform: rotate(-15deg);
}

.hero-visual > p {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--green);
  background: rgb(255 250 241 / 92%);
  font-family: var(--serif);
  line-height: 1.35;
  transform: rotate(-1deg);
}

.quick-find {
  display: grid;
  padding: 4.25rem max(1.5rem, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--green);
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.quick-find h2 {
  color: var(--paper);
}

.quick-find p {
  max-width: 580px;
  color: #d4dfd8;
}

.quick-find .eyebrow {
  color: var(--turmeric);
}

.quick-search label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.input-button {
  display: flex;
  gap: 0.65rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.9rem;
  border: 1px solid #aaa28f;
  border-radius: 2px;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.quick-search .button {
  border-color: var(--turmeric);
  color: var(--ink);
  background: var(--turmeric);
  box-shadow: 4px 4px 0 var(--orange);
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

.section-shell.flush {
  padding-top: 1rem;
}

.section-heading {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-art {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  place-items: center;
}

.card-art::before,
.card-art::after {
  position: absolute;
  width: 130px;
  height: 130px;
  content: "";
  border: 20px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
}

.card-art::before {
  top: -45px;
  left: -20px;
}

.card-art::after {
  right: -25px;
  bottom: -55px;
}

.card-art span {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  transform: rotate(-4deg);
}

.card-art.recipe-photo {
  min-height: 0;
  aspect-ratio: 3 / 2;
  background: var(--paper);
}

.card-art.recipe-photo::before,
.card-art.recipe-photo::after {
  display: none;
}

.card-art.recipe-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 350ms ease;
}

.recipe-card:hover .recipe-photo img {
  transform: scale(1.025);
}

.spice-1 {
  background: var(--turmeric);
}

.spice-2 {
  background: var(--pink);
}

.spice-3 {
  background: #9db19b;
}

.card-body {
  padding: 1.4rem;
}

.card-body h3 {
  margin: 0.8rem 0;
}

.card-body h3 a {
  text-decoration: none;
}

.card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-meta {
  display: flex;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border: 1px solid #aaa28f;
  border-radius: 999px;
  background: #fffdf8;
  font-size: 0.67rem;
  font-weight: 800;
}

.badge.veg {
  border-color: #729369;
  background: #e3efdf;
}

.badge.vegan {
  border-color: #4c7a63;
  background: #dcebe2;
}

.badge.gf {
  border-color: #ca9032;
  background: #fff0c9;
}

.badge.draft {
  border-color: #b65b3d;
  color: #7c2f18;
  background: #fbe2d9;
}

.standards-band {
  padding: 6rem max(1.5rem, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.standards-band > div:first-child {
  max-width: 600px;
  margin-bottom: 3rem;
}

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

.standards-grid article {
  border-top: 1px solid var(--green);
  padding-top: 1rem;
}

.standards-grid strong {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.standards-grid h3 {
  margin: 1.3rem 0 0.7rem;
}

.standards-grid p {
  color: var(--muted);
}

.newsletter {
  display: grid;
  max-width: var(--max);
  margin: 6rem auto;
  padding: 3.5rem;
  color: white;
  background: var(--orange);
  box-shadow: 12px 12px 0 var(--pink);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.newsletter .eyebrow {
  color: #3d1b10;
}

.newsletter h2 {
  margin-bottom: 0;
}

.newsletter > p {
  margin-bottom: 0;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}

.page-hero.compact h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.page-hero > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.page-hero.editorial {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
}

.page-hero.editorial .eyebrow,
.page-hero.editorial h1 {
  grid-column: 1 / -1;
}

.directory-layout {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 7rem;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 3rem;
}

.filters {
  position: sticky;
  top: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.filters h2 {
  font-size: 1.7rem;
}

.filters > label,
.filters legend {
  display: block;
  margin: 1rem 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.filters fieldset {
  margin: 1.5rem 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.filters fieldset legend {
  padding-top: 1rem;
}

.check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500 !important;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.25rem;
}

.filter-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.results-head {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  font-size: 0.8rem;
}

.results-head p {
  margin: 0;
}

.listing-grid {
  display: grid;
  gap: 0.85rem;
}

.listing-card {
  display: grid;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  grid-template-columns: 1fr auto;
  gap: 1rem;
  transition: border-color 120ms ease, transform 120ms ease;
}

.listing-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.listing-card h2 {
  margin-bottom: 0.6rem;
  font-size: 2rem;
}

.listing-card h2 a {
  text-decoration: none;
}

.listing-card p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.arrow-link {
  color: var(--orange);
  font-size: 1.5rem;
}

.empty-state,
.no-results {
  padding: 4rem 2rem;
  border: 1px dashed #a99d86;
  text-align: center;
}

.empty-state h2 {
  max-width: 600px;
  margin-inline: auto;
}

.empty-state > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.recipe-filter-row {
  display: flex;
  margin-bottom: 1.4rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumbs {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.venue-page,
.recipe-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 7rem;
}

.venue-hero,
.recipe-hero {
  display: grid;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 5rem;
}

.venue-hero h1,
.recipe-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.venue-intro {
  max-width: 700px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.fact-card {
  padding: 1.5rem;
  border: 1px solid var(--green);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--turmeric);
}

.fact-card dl {
  margin: 0 0 1.5rem;
}

.fact-card dl > div {
  display: grid;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
}

.fact-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-card dd {
  margin: 0;
}

.fact-card .button {
  width: 100%;
}

.prose {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem 7rem;
}

.prose.narrow {
  max-width: 780px;
}

.venue-page .prose {
  padding-inline: 0;
}

.prose h2 {
  margin: 3.5rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.prose p,
.prose li {
  color: #4e4b41;
  font-size: 1.05rem;
}

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

.definition-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.definition-grid p {
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.standards-list {
  padding: 0;
  list-style: none;
  counter-reset: standards;
}

.standards-list li {
  display: grid;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px 1fr;
}

.standards-list strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.safety-note {
  margin: 3rem 0;
  padding: 1.4rem;
  border-left: 5px solid var(--orange);
  background: #fae4d8;
}

.safety-note strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.safety-note p {
  margin: 0.5rem 0 0;
}

.recipe-stamp {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  display: grid;
  width: 132px;
  height: 132px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--turmeric);
  box-shadow: 7px 7px 0 var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  place-content: center;
}

.recipe-stamp span {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.9;
}

.recipe-hero-media {
  position: relative;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--green);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--orange);
}

.recipe-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.recipe-facts {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.recipe-facts div {
  display: grid;
  text-align: center;
}

.recipe-facts span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recipe-facts strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.recipe-content {
  display: grid;
  padding: 4rem 0 2rem;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.recipe-content h2 {
  font-size: 2.5rem;
}

.ingredients {
  padding: 1.5rem;
  background: var(--paper);
}

.ingredients ul {
  padding-left: 1.2rem;
}

.ingredients li {
  padding: 0.35rem 0;
}

.method ol {
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.method li {
  display: grid;
  padding: 0 0 1.5rem;
  counter-increment: method;
  grid-template-columns: 48px 1fr;
}

.method li::before {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  content: counter(method);
  background: var(--green);
  font-family: var(--serif);
  place-items: center;
}

.method p {
  margin: 0;
}

.form-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 7rem;
}

.suggest-form {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.suggest-form > label,
.form-grid label {
  display: grid;
  margin-bottom: 1.4rem;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-actions {
  display: flex;
  margin-top: 1.8rem;
  align-items: center;
  gap: 1.5rem;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.form-status {
  margin: 1.3rem 0 0;
  font-weight: 700;
}

.form-status.success {
  color: #225f42;
}

.form-status.error {
  color: #a1371d;
}

.not-found {
  min-height: 65vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 9rem 1.5rem;
}

.not-found h1 {
  font-size: clamp(4rem, 10vw, 8rem);
}

.site-footer {
  padding: 5rem max(1.5rem, calc((100vw - var(--max)) / 2)) 2rem;
  color: #d5dfd8;
  background: #102e27;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 0.65fr;
  gap: 4rem;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-brand {
  color: white;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.footer-brand .brand-mark {
  width: 40px;
  flex-basis: 40px;
}

.footer-grid h2 {
  margin-bottom: 0.7rem;
  color: var(--turmeric);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p {
  max-width: 380px;
  color: #9fb3a8;
  font-size: 0.84rem;
}

.footer-grid a:not(.brand) {
  color: #d5dfd8;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #315249;
  justify-content: space-between;
  gap: 2rem;
  color: #91a69b;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 560px);
    justify-self: center;
  }

  .quick-find,
  .newsletter,
  .venue-hero,
  .recipe-hero {
    grid-template-columns: 1fr;
  }

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

  .directory-layout {
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
  }

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

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

  .recipe-stamp {
    right: 1rem;
    bottom: -1rem;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    gap: 0.35rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

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

  .hero {
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 420px;
    box-shadow: 9px 9px 0 var(--turmeric);
  }

  .bowl {
    width: 260px;
    height: 150px;
    top: 155px;
  }

  .bowl::before {
    width: 280px;
  }

  .section-shell,
  .standards-band,
  .page-hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .input-button,
  .section-heading,
  .recipe-filter-row,
  .form-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .card-grid,
  .standards-grid,
  .directory-layout,
  .recipe-content,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    margin: 3rem 1rem;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 7px 7px 0 var(--pink);
  }

  .filters {
    position: static;
  }

  .venue-hero,
  .recipe-hero {
    gap: 2.5rem;
  }

  .venue-hero h1,
  .recipe-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .recipe-content {
    gap: 2rem;
  }

  .footer-grid {
    gap: 2.5rem;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .button-row,
  .recipe-stamp {
    display: none;
  }

  body {
    background: white;
  }

  .recipe-page {
    padding: 0;
  }

  .recipe-content {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
