:root {
  --nyam-ink: oklch(0.18 0.035 28);
  --nyam-text: oklch(0.27 0.025 30);
  --nyam-muted: oklch(0.43 0.025 30);
  --nyam-white: oklch(0.99 0 0);
  --nyam-soft: oklch(0.955 0.015 28);
  --nyam-red: oklch(0.51 0.22 28);
  --nyam-red-dark: oklch(0.39 0.17 28);
  --nyam-blue: oklch(0.38 0.17 254);
  --nyam-blue-dark: oklch(0.27 0.13 254);
  --nyam-lime: oklch(0.86 0.17 116);
  --nyam-yellow: oklch(0.9 0.17 92);
  --nyam-line: oklch(0.78 0.02 30);
  --nyam-display: "Do Hyeon", "Apple SD Gothic Neo", sans-serif;
  --nyam-body: "Gowun Dodum", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --z-sticky: 40;
}

html { scroll-behavior: smooth; }
body {
  background: var(--nyam-white);
  color: var(--nyam-ink);
  font-family: var(--nyam-body);
  line-height: 1.68;
}
h1, h2, h3 {
  color: var(--nyam-ink);
  font-family: var(--nyam-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
p { color: var(--nyam-text); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--nyam-lime);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  translate: 0 -160%;
  padding: 10px 14px;
  background: var(--nyam-ink);
  color: white;
  font-weight: 800;
}
.skip-link:focus { translate: 0; }

/* Global shell */
.site-header {
  z-index: var(--z-sticky);
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 2px solid var(--nyam-ink);
  background: oklch(0.99 0 0 / 0.96);
  backdrop-filter: blur(10px);
}
.brand { gap: 10px; }
.brand-mark {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  object-fit: contain;
}
.brand strong {
  font-family: var(--nyam-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.brand em { color: var(--nyam-blue); font-size: 0.72rem; }
.top-nav { gap: 0; padding: 0; background: transparent; }
.top-nav a {
  min-height: 42px;
  border-radius: 2px;
  padding: 10px 13px;
  color: var(--nyam-text);
  font-size: 0.86rem;
}
.top-nav a[aria-current="page"] {
  background: var(--nyam-yellow);
  color: var(--nyam-ink);
  box-shadow: none;
}
.top-nav a:hover { background: var(--nyam-soft); color: var(--nyam-red-dark); }
.header-cta {
  min-height: 42px;
  border-radius: 3px;
  background: var(--nyam-blue);
  font-size: 0.84rem;
}
.header-cta:hover { background: var(--nyam-blue-dark); }
.button {
  min-height: 48px;
  border: 2px solid var(--nyam-ink);
  border-radius: 3px;
  padding: 0 20px;
  background: white;
  color: var(--nyam-ink);
  font-weight: 900;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background 160ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--nyam-yellow); }
.button.primary { border-color: var(--nyam-red); background: var(--nyam-red); color: white; }
.button.primary:hover { background: var(--nyam-red-dark); }
.button.inverse { border-color: white; background: transparent; color: white; }
.button.inverse:hover { background: white; color: var(--nyam-ink); }
.eyebrow { color: var(--nyam-red); font-size: 0.86rem; font-weight: 900; }
.crumb { color: var(--nyam-blue); font-weight: 900; }

/* Home */
.nyamnyam-home { overflow: hidden; background: var(--nyam-white); }
.nyam-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 72px));
  overflow: hidden;
  background: var(--nyam-ink);
  color: white;
}
.nyam-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nyam-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.12 0.03 28 / 0.92) 0%, oklch(0.15 0.04 28 / 0.66) 48%, transparent 80%);
}
.nyam-hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 78vw);
  padding: clamp(72px, 12vh, 132px) clamp(22px, 7vw, 112px) 150px;
}
.brand-stamp {
  display: inline-flex;
  border: 2px solid currentColor;
  border-radius: 2px;
  padding: 7px 10px 5px;
  color: var(--nyam-lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.nyam-hero h1 {
  margin-top: 22px;
  color: white;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.nyam-hero h1 em { color: var(--nyam-yellow); font-style: normal; }
.nyam-hero-copy > p { max-width: 620px; margin: 28px 0 0; color: white; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.nyam-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.nyam-hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(180px, 310px) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--nyam-lime);
  color: var(--nyam-ink);
}
.nyam-hero-note span { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; }
.nyam-hero-note strong { line-height: 1.4; }
.nyam-hero-note i { font-size: 1.4rem; font-style: normal; }
.taste-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 70px;
  border-bottom: 2px solid var(--nyam-ink);
  background: var(--nyam-yellow);
}
.taste-route > * { padding: 9px clamp(12px, 2vw, 28px); }
.taste-route span { font-weight: 900; }
.taste-route a { border-left: 1px solid var(--nyam-ink); font-weight: 800; }
.taste-route a:hover { color: var(--nyam-red-dark); text-decoration: underline; text-underline-offset: 4px; }
.nyam-section { max-width: 1320px; margin: 0 auto; padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 72px); }
.nyam-heading { display: grid; grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr); gap: 32px clamp(40px, 7vw, 100px); }
.nyam-heading > span, .nyam-heading > div > span { color: var(--nyam-red); font-weight: 900; }
.nyam-heading h2 { font-size: clamp(2.35rem, 4.5vw, 4rem); line-height: 1.08; text-wrap: balance; }
.nyam-heading > p { max-width: 580px; margin: 0; font-size: 1.05rem; }
.menu-board-list { margin-top: 54px; border-top: 3px solid var(--nyam-ink); }
.menu-board-list a {
  display: grid;
  grid-template-columns: 44px 104px minmax(160px, 0.7fr) minmax(260px, 1.3fr) 30px;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  border-bottom: 1px solid var(--nyam-line);
  transition: background 160ms ease;
}
.menu-board-list a:hover { background: var(--nyam-soft); }
.menu-board-list a > span { color: var(--nyam-red); font-weight: 900; }
.menu-board-list img { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; }
.menu-board-list strong { font-family: var(--nyam-display); font-size: clamp(1.5rem, 3vw, 2.35rem); font-weight: 400; }
.menu-board-list p { margin: 0; color: var(--nyam-muted); }
.menu-board-list i { font-size: 1.5rem; font-style: normal; }
.world-window {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  min-height: 690px;
  background: var(--nyam-blue);
  color: white;
}
.world-window-copy { align-self: center; padding: clamp(64px, 8vw, 120px); }
.world-window-copy > span { color: var(--nyam-lime); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.08em; }
.world-window h2 { margin-top: 20px; color: white; font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 1.05; text-wrap: balance; }
.world-window p { max-width: 520px; margin: 28px 0; color: white; }
.world-window-copy a { display: inline-flex; gap: 14px; border-bottom: 2px solid var(--nyam-lime); padding-bottom: 5px; color: white; font-weight: 900; }
.world-window-copy i { color: var(--nyam-lime); font-style: normal; }
.world-window-countries { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.world-window-countries a { position: relative; min-height: 690px; overflow: hidden; border-left: 2px solid var(--nyam-blue-dark); }
.world-window-countries img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08); transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }
.world-window-countries a:hover img { transform: scale(1.035); }
.world-window-countries span, .world-window-countries strong { position: absolute; left: 24px; z-index: 2; padding: 6px 9px; color: var(--nyam-ink); }
.world-window-countries span { bottom: 58px; background: var(--nyam-yellow); font-weight: 900; }
.world-window-countries strong { bottom: 24px; background: white; }
.nyam-heading.horizontal { grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr); align-items: end; }
.nyam-heading.horizontal h2 { margin-top: 10px; font-size: clamp(2.5rem, 4.5vw, 4rem); }
.verified-restaurant-list { margin-top: 50px; border-top: 3px solid var(--nyam-ink); }
.verified-restaurant-list a {
  display: grid;
  grid-template-columns: 44px minmax(220px, 0.9fr) minmax(220px, 1.1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--nyam-line);
}
.verified-restaurant-list a:hover { background: var(--nyam-yellow); }
.verified-restaurant-list > a > span { color: var(--nyam-blue); font-weight: 900; }
.verified-restaurant-list strong { font-family: var(--nyam-display); font-size: 1.75rem; font-weight: 400; }
.verified-restaurant-list p { margin: 3px 0 0; color: var(--nyam-muted); }
.verified-restaurant-list em { color: var(--nyam-muted); font-style: normal; }
.verified-restaurant-list i { font-size: 1.25rem; font-style: normal; }
.section-link { display: inline-flex; gap: 12px; margin-top: 28px; border-bottom: 2px solid currentColor; padding-bottom: 4px; color: var(--nyam-blue); font-weight: 900; }
.home-record-index { background: var(--nyam-soft); }
.home-record-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 48px; border-top: 3px solid var(--nyam-ink); }
.home-record-links a { display: grid; grid-template-columns: minmax(0, 1fr) minmax(120px, auto) 24px; gap: 18px; align-items: center; min-height: 82px; padding: 14px 16px; border-bottom: 1px solid var(--nyam-line); }
.home-record-links a:nth-child(odd) { border-right: 1px solid var(--nyam-line); }
.home-record-links a:hover { background: var(--nyam-yellow); }
.home-record-links strong { display: block; font-family: var(--nyam-display); font-size: 1.45rem; font-weight: 400; line-height: 1.15; }
.home-record-links span, .home-record-links em { color: var(--nyam-muted); font-size: 0.9rem; font-style: normal; }
.home-record-links i { font-style: normal; text-align: right; }
.brand-story-preview {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding: clamp(70px, 10vw, 150px) clamp(22px, 9vw, 150px);
  background: var(--nyam-red);
  color: white;
}
.brand-story-mark { justify-self: center; }
.brand-story-mark img { width: min(320px, 72vw); height: auto; filter: drop-shadow(0 6px 0 oklch(0.18 0.035 28 / 0.25)); }
.brand-story-preview span { color: var(--nyam-yellow); font-weight: 900; }
.brand-story-preview h2 { margin-top: 16px; color: white; font-size: clamp(2.45rem, 4.8vw, 4.25rem); line-height: 1.07; text-wrap: balance; }
.brand-story-preview p { max-width: 680px; margin: 28px 0; color: white; font-size: 1.08rem; }
.brand-story-preview a { display: inline-flex; gap: 12px; border-bottom: 2px solid var(--nyam-yellow); padding-bottom: 4px; color: white; font-weight: 900; }
.brand-story-preview i { color: var(--nyam-yellow); font-style: normal; }
.latest-guide-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-top: 48px; }
.latest-guide-grid a { grid-column: span 4; }
.latest-guide-grid a:first-child { grid-column: span 8; }
.latest-guide-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.latest-guide-grid a:first-child img { aspect-ratio: 16 / 9; }
.latest-guide-grid span { display: block; margin-top: 14px; color: var(--nyam-red); font-size: 0.82rem; font-weight: 900; }
.latest-guide-grid strong { display: block; margin-top: 7px; font-family: var(--nyam-display); font-size: clamp(1.55rem, 2.5vw, 2.25rem); font-weight: 400; line-height: 1.2; }
.latest-guide-grid p { margin: 8px 0 0; color: var(--nyam-muted); }
.home-trust-note { display: flex; gap: 26px; justify-content: center; padding: 26px clamp(20px, 6vw, 90px); background: var(--nyam-lime); }
.home-trust-note p { max-width: 850px; margin: 0; }

/* Brand story */
.brand-story-page { background: var(--nyam-white); }
.brand-story-hero { position: relative; min-height: 720px; overflow: hidden; background: var(--nyam-ink); }
.brand-story-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.58; }
.brand-story-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--nyam-blue-dark), transparent 78%); opacity: 0.86; }
.brand-story-hero > div { position: relative; z-index: 2; width: min(760px, 84vw); padding: clamp(100px, 15vw, 190px) clamp(22px, 8vw, 130px); color: white; }
.mascot-story-hero > div { width: min(700px, calc(100% - 350px)); }
.mascot-story-hero .story-mascot { position: absolute; inset: auto clamp(18px, 7vw, 110px) 26px auto; z-index: 3; width: clamp(150px, 22vw, 300px); height: auto; object-fit: contain; opacity: 1; filter: drop-shadow(0 8px 0 oklch(0.12 0.03 28 / 0.35)); }
.brand-story-hero h1 { margin-top: 25px; max-width: 11ch; color: white; font-size: clamp(3rem, 6.5vw, 4.8rem); line-height: 1.06; text-wrap: balance; }
.brand-story-hero p { max-width: 590px; margin-top: 28px; color: white; font-size: 1.18rem; }
.story-chapter { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(40px, 9vw, 140px); max-width: 1280px; margin: 0 auto; padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 80px); }
.story-lead { margin: 0; color: var(--nyam-red-dark); font-family: var(--nyam-display); font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.18; }
.story-chapter h2 { font-size: clamp(2.25rem, 4.3vw, 3.8rem); line-height: 1.08; text-wrap: balance; }
.story-chapter div p { max-width: 65ch; font-size: 1.08rem; }
.story-table { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 640px; background: var(--nyam-yellow); }
.mascot-intro { display: grid; grid-template-columns: minmax(180px, 0.45fr) minmax(280px, 1fr); align-items: center; gap: clamp(28px, 7vw, 100px); padding: clamp(70px, 10vw, 130px) clamp(22px, 8vw, 130px); background: var(--nyam-red); color: white; }
.mascot-intro img { width: min(300px, 70vw); height: auto; justify-self: center; }
.mascot-intro p, .mascot-intro h2 { color: white; }
.mascot-intro h2 { margin: 12px 0 20px; font-size: clamp(2.25rem, 4.3vw, 3.8rem); line-height: 1.08; text-wrap: balance; }
.mascot-intro div > p:first-child { color: var(--nyam-yellow); font-weight: 900; }
.story-table-image img { width: 100%; height: 640px; object-fit: cover; }
.story-table > div:last-child { align-self: center; padding: clamp(60px, 8vw, 120px); }
.story-table h2 { font-size: clamp(2.3rem, 4.4vw, 3.9rem); line-height: 1.08; text-wrap: balance; }
.story-table p { margin: 28px 0; font-size: 1.08rem; }
.story-link { display: inline-flex; gap: 14px; border-bottom: 2px solid var(--nyam-ink); padding-bottom: 4px; font-weight: 900; }
.story-principles { padding: clamp(90px, 12vw, 170px) clamp(22px, 8vw, 130px); background: var(--nyam-blue); color: white; }
.story-principles > h2 { max-width: 800px; color: white; font-size: clamp(2.45rem, 4.8vw, 4.2rem); line-height: 1.08; text-wrap: balance; }
.story-principles ol { max-width: 1080px; margin: 60px 0 0; padding: 0; list-style: none; counter-reset: promise; }
.story-principles li { counter-increment: promise; display: grid; grid-template-columns: 70px 0.7fr 1.3fr; gap: 24px; align-items: baseline; border-top: 1px solid oklch(0.85 0.05 254 / 0.5); padding: 28px 0; }
.story-principles li::before { content: "0" counter(promise); color: var(--nyam-lime); font-weight: 900; }
.story-principles strong { font-family: var(--nyam-display); font-size: 1.8rem; font-weight: 400; }
.story-principles span { color: white; }
.story-closing { padding: clamp(90px, 12vw, 170px) 22px; text-align: center; }
.story-closing > p { margin: 0; color: var(--nyam-red); font-weight: 900; }
.story-closing h2 { margin: 12px 0 32px; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.08; text-wrap: balance; }
.story-closing > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* Existing content surfaces, re-skinned */
.food-home, .food-section-page, .food-inventory-page, .food-article-page { background: var(--nyam-white); }
.hero, .section-hero, .article-hero {
  max-width: 1320px;
  padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 72px);
}
.section-hero, .food-section-masthead, .food-inventory-masthead, .food-article-masthead {
  gap: 0;
  margin-top: 0;
  border: 0;
  border-bottom: 2px solid var(--nyam-ink);
  background: var(--nyam-yellow);
}
.section-hero > div, .food-section-masthead > div, .food-inventory-masthead > div, .food-article-masthead > div { padding: clamp(45px, 7vw, 90px); }
.section-hero h1, .food-section-masthead h1, .food-inventory-masthead h1, .food-article-masthead h1 {
  font-family: var(--nyam-display);
  font-size: clamp(2.45rem, 4.8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.food-article-masthead h1 { max-width: 12ch; font-size: clamp(2.35rem, 4.2vw, 4rem); }
.section-hero img, .food-section-masthead > img, .food-inventory-masthead > img, .food-article-masthead > img {
  min-height: 480px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}
.section-wrap { max-width: 1280px; padding: clamp(65px, 9vw, 120px) clamp(20px, 5vw, 70px); }
.section-wrap.alt { background: var(--nyam-soft); }
.section-heading { max-width: 800px; }
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.05; }
.section-heading > p:last-child { max-width: 65ch; color: var(--nyam-muted); }
.section-grid, .article-grid, .inventory-grid, .country-preview-grid, .home-restaurant-grid { gap: 18px; }
.section-card, .article-card, .inventory-card, .country-preview-card, .home-restaurant-card, .restaurant-card, .side-box, .article-answer {
  border: 1px solid var(--nyam-ink);
  border-radius: 5px;
  background: white;
  box-shadow: none;
}
.section-card:hover, .article-card:hover, .country-preview-card:hover, .home-restaurant-card:hover { border-color: var(--nyam-red); background: var(--nyam-yellow); transform: translateY(-3px); }
.article-card img, .country-preview-card img { border-radius: 4px 4px 0 0; }
.article-card strong, .section-card strong, .country-preview-card strong { font-family: var(--nyam-display); font-weight: 400; }
.article-layout { max-width: 1140px; }
.food-article-page .article-body { max-width: 70ch; }
.food-article-page .article-body > p, .food-article-page .prose-flow p { color: var(--nyam-text); font-size: 1.05rem; line-height: 1.82; }
.food-article-page .article-side { top: 96px; }
.article-answer { border-color: var(--nyam-blue); background: oklch(0.94 0.045 254); }
.body-topic { color: var(--nyam-red-dark); font-family: var(--nyam-display); font-size: 1.3em; font-weight: 400; }
.checklist { border-radius: 5px; background: var(--nyam-lime); }
.restaurant-row-card, .restaurant-name-grid li, .country-restaurant-card { border-color: var(--nyam-line); border-radius: 4px; box-shadow: none; }
.restaurant-row-card:hover, .restaurant-name-grid li:hover { border-color: var(--nyam-blue); }
.topic-choice-guide { background: var(--nyam-soft); }
.topic-choice-guide dl, .menu-glossary { display: grid; gap: 0; margin-top: 34px; border-top: 2px solid var(--nyam-ink); }
.topic-choice-guide dl > div, .menu-glossary > div { display: grid; grid-template-columns: minmax(120px, 0.35fr) 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--nyam-line); }
.topic-choice-guide dt, .menu-glossary dt { font-weight: 900; }
.topic-choice-guide dd, .menu-glossary dd { margin: 0; color: var(--nyam-text); }
.verification-summary { max-width: 65ch; margin-top: 18px; padding: 12px 14px; background: var(--nyam-yellow); color: var(--nyam-ink); }
.verification-badge { display: inline-flex; margin-top: 18px; border: 1px solid currentColor; border-radius: 999px; padding: 7px 12px; color: var(--nyam-ink); font-size: 0.86rem; font-weight: 900; }
.stat-strip { border-radius: 3px; background: white; }
.status-chip { border-radius: 3px; }
.restaurant-directory-list { margin-top: 50px; box-shadow: inset 0 3px 0 var(--nyam-ink); }
.restaurant-finder { margin-top: 44px; padding: clamp(24px, 4vw, 42px); background: var(--nyam-blue); color: white; }
.restaurant-search label { display: block; margin-bottom: 12px; color: white; font-family: var(--nyam-display); font-size: clamp(1.55rem, 3vw, 2.2rem); }
.restaurant-search > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; max-width: 820px; }
.restaurant-search input { min-width: 0; min-height: 56px; border: 0; border-radius: 0; padding: 0 18px; background: white; color: var(--nyam-ink); font: inherit; }
.restaurant-search input::placeholder { color: oklch(0.46 0.02 28); }
.restaurant-search button { min-height: 56px; border: 0; border-left: 2px solid var(--nyam-ink); padding: 0 18px; background: var(--nyam-yellow); color: var(--nyam-ink); font: inherit; font-weight: 900; cursor: pointer; }
.restaurant-search p { margin: 12px 0 0; color: white; }
.restaurant-search p a { margin-left: 8px; border-bottom: 1px solid white; color: white; font-weight: 900; }
.restaurant-directory-list a {
  display: grid;
  grid-template-columns: 48px minmax(220px, 0.9fr) minmax(240px, 1.1fr) 28px;
  align-items: center;
  gap: 20px;
  padding: 25px 5px;
  border-bottom: 1px solid var(--nyam-line);
}
.restaurant-directory-list a:hover { background: var(--nyam-yellow); }
.restaurant-directory-list > a > span { color: var(--nyam-red); font-weight: 900; }
.restaurant-directory-list strong { font-family: var(--nyam-display); font-size: 1.9rem; font-weight: 400; }
.restaurant-directory-list p { margin: 3px 0 0; color: var(--nyam-muted); }
.restaurant-directory-list em { color: var(--nyam-muted); font-style: normal; }
.restaurant-directory-list i { font-size: 1.3rem; font-style: normal; }
.restaurant-policy-band {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(320px, 1.2fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(48px, 7vw, 90px) clamp(22px, 8vw, 130px);
  background: var(--nyam-lime);
}
.restaurant-policy-band strong { font-family: var(--nyam-display); font-size: 2rem; font-weight: 400; }
.restaurant-policy-band p { margin: 0; }
.restaurant-policy-band a { border-bottom: 2px solid var(--nyam-ink); padding-bottom: 4px; font-weight: 900; white-space: nowrap; }

.site-footer {
  grid-template-columns: 1.05fr 1.4fr;
  max-width: none;
  margin: 0;
  padding: clamp(55px, 8vw, 110px) clamp(22px, 7vw, 110px) 40px;
  border: 0;
  background: var(--nyam-ink);
  color: white;
}
.site-footer::before { display: none; }
.footer-brand strong { color: var(--nyam-yellow); font-family: var(--nyam-display); font-size: 2.4rem; font-weight: 400; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; }
.footer-brand em, .site-footer p, .site-footer nav a { color: oklch(0.9 0.01 30); }
.site-footer .footer-disclosure, .site-footer .footer-copyright { color: oklch(0.78 0.015 30); }
.site-footer nav strong { color: var(--nyam-lime); }
.site-footer nav a { border-radius: 2px; }
.site-footer nav a:hover { background: var(--nyam-blue); color: white; }
.footer-legal, .footer-disclosure, .footer-copyright { border-color: oklch(0.5 0.02 30); }

@media (prefers-reduced-motion: no-preference) {
  .nyam-hero-copy { animation: nyam-enter 650ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  .nyam-hero-note { animation: nyam-note 720ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  @keyframes nyam-enter { from { opacity: 0.5; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes nyam-note { from { opacity: 0.5; transform: translateX(26px); } to { opacity: 1; transform: translateX(0); } }
}

@media (max-width: 1000px) {
  .site-header { align-items: flex-start; min-height: 68px; padding-block: 12px; }
  .header-actions { overflow-x: auto; }
  .brand em, .header-cta { display: none; }
  .world-window { grid-template-columns: 1fr; }
  .world-window-countries a { min-height: 480px; border-top: 2px solid var(--nyam-blue-dark); }
  .brand-story-preview, .story-chapter, .story-table, .mascot-intro { grid-template-columns: 1fr; }
  .mascot-story-hero > div { width: 100%; padding-bottom: 28px; }
  .mascot-story-hero .story-mascot { position: relative; inset: auto; display: block; width: min(190px, 40vw); margin: 0 24px 28px auto; }
  .brand-story-mark { justify-self: start; }
  .story-table-image img { height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
  .latest-guide-grid a, .latest-guide-grid a:first-child { grid-column: span 6; }
  .section-hero, .food-section-masthead, .food-inventory-masthead, .food-article-masthead { grid-template-columns: 1fr; }
  .restaurant-policy-band { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { display: block; }
  .brand { margin-bottom: 8px; }
  .header-actions { justify-content: flex-start; gap: 4px; width: 100%; overflow: visible; padding-bottom: 2px; }
  .top-nav { flex: 1 1 auto; flex-wrap: nowrap; justify-content: space-between; min-width: 0; }
  .top-nav a { min-height: 38px; padding: 8px 6px; font-size: 0.78rem; white-space: nowrap; }
  .site-header .language-switcher summary { min-height: 38px; gap: 5px; padding-inline: 8px; }
  .nyam-hero { min-height: 700px; }
  .nyam-hero-shade { background: linear-gradient(0deg, oklch(0.12 0.03 28 / 0.95), oklch(0.12 0.03 28 / 0.25)); }
  .nyam-hero-copy { width: 100%; padding: 86px 20px 180px; }
  .nyam-hero h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .nyam-hero-note { right: 16px; left: 16px; grid-template-columns: 1fr auto; }
  .nyam-hero-note span { display: none; }
  .home-record-links { grid-template-columns: 1fr; }
  .home-record-links a { grid-template-columns: minmax(0, 1fr) 24px; }
  .home-record-links a:nth-child(odd) { border-right: 0; }
  .home-record-links em { display: none; }
  .mascot-story-hero .story-mascot { width: min(190px, 52vw); margin-right: 18px; }
  .taste-route { justify-content: flex-start; overflow-x: auto; }
  .taste-route > * { flex: 0 0 auto; }
  .taste-route span { display: none; }
  .nyam-heading, .nyam-heading.horizontal { grid-template-columns: 1fr; gap: 18px; }
  .menu-board-list a { grid-template-columns: 34px 68px 1fr 24px; gap: 12px; min-height: 104px; }
  .menu-board-list img { width: 60px; height: 60px; }
  .menu-board-list p { display: none; }
  .world-window-countries { grid-template-columns: 1fr; }
  .world-window-countries a { min-height: 440px; border-left: 0; }
  .verified-restaurant-list a { grid-template-columns: 34px 1fr 24px; }
  .verified-restaurant-list em { display: none; }
  .brand-story-preview { padding-inline: 22px; }
  .brand-story-mark { font-size: 9rem; }
  .latest-guide-grid { grid-template-columns: 1fr; }
  .latest-guide-grid a, .latest-guide-grid a:first-child { grid-column: auto; }
  .home-trust-note { display: block; }
  .home-trust-note p { margin-top: 8px; }
  .brand-story-hero { min-height: 650px; }
  .story-principles li { grid-template-columns: 44px 1fr; }
  .story-principles li span { grid-column: 2; }
  .restaurant-directory-list a { grid-template-columns: 34px 1fr 24px; }
  .restaurant-directory-list em { display: none; }
  .section-hero > div, .food-section-masthead > div, .food-inventory-masthead > div, .food-article-masthead > div { padding: 48px 22px; }
  .section-hero img, .food-section-masthead > img, .food-inventory-masthead > img, .food-article-masthead > img { min-height: 300px; }
  .site-footer { grid-template-columns: 1fr; }
}

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