:root {
  --cream: #faf6ee;
  --cream-deep: #f2eadc;
  --paper: #fcf8f0;
  --charcoal: #1a1712;
  --muted: #6e665a;
  --line: rgba(26, 23, 18, 0.1);
  --chili: #96362d;
  --chili-dark: #742820;
  --basil: #2c4a3b;
  --basil-soft: #e3ebe3;
  --gold: #a9824b;
  --gold-soft: #ead8bc;
  --shadow: 0 20px 50px rgba(26, 23, 18, 0.08);
  --radius: 6px;
  --max: 1180px;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 12% 0%, rgba(169, 130, 75, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html:lang(no) body {
  letter-spacing: 0.01em;
}

html:lang(th) body {
  font-family: "Noto Sans Thai", Thonburi, "Thonburi UI", var(--font-body);
  line-height: 1.72;
}

html:lang(th) h1,
html:lang(th) h2,
html:lang(th) .city-card h3,
html:lang(th) .restaurant-card h3,
html:lang(th) .dish-body h3,
html:lang(th) .campaign-grid h3,
html:lang(th) .blog-grid h3,
html:lang(th) .owner-card h3,
html:lang(th) .hero-badge strong {
  font-family: "Noto Sans Thai", Thonburi, serif;
  font-weight: 600;
  line-height: 1.2;
}

html:lang(th) h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
}

html:lang(th) h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.65rem 1rem;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(169, 130, 75, 0.55);
  border-radius: 50%;
  color: var(--gold);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus { color: var(--basil); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2px;
  background: var(--paper);
}

.language-option {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: calc(var(--radius) - 1px);
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.language-option.is-active {
  background: var(--basil);
  color: var(--paper);
}

.header-cta,
.button,
.search-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.header-cta {
  padding: 0 1rem;
  background: var(--charcoal);
  color: var(--paper);
}

.header-cta:hover { background: #2a2620; }

.button { padding: 0 1.25rem; }

.button-primary,
.search-row button {
  background: var(--chili);
  color: var(--paper);
  box-shadow: 0 8px 20px rgba(150, 54, 45, 0.22);
}

.button-primary:hover,
.search-row button:hover {
  background: var(--chili-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--paper);
  color: var(--charcoal);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  border-color: var(--basil);
  color: var(--basil);
}

.button--light {
  background: var(--paper);
  color: var(--basil);
  box-shadow: none;
}

.button--light:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--charcoal);
}

/* ── Hero (food cover background) ── */
.hero--cover {
  min-height: min(90svh, 920px);
  align-items: center;
  border-bottom: 0;
}

.hero-scrim--dark {
  background: linear-gradient(
    100deg,
    rgba(26, 23, 18, 0.86) 0%,
    rgba(26, 23, 18, 0.55) 48%,
    rgba(26, 23, 18, 0.12) 100%
  );
}

.hero--cover .hero-copy h1 {
  color: var(--cream);
  text-shadow: none;
}

.hero--cover .eyebrow--hero {
  color: #ead8bc;
}

.hero-lede--light {
  color: rgba(250, 246, 238, 0.82);
  max-width: 46ch;
}

.hero--cover .search-panel--hero {
  background: rgba(250, 246, 238, 0.97);
  box-shadow: 0 20px 50px rgba(26, 23, 18, 0.25);
}

.hero--cover .quick-link {
  border-color: rgba(26, 23, 18, 0.14);
  background: transparent;
  color: #6e665a;
}

.quick-label {
  align-self: center;
  color: #9a9186;
  font-size: 0.78rem;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid var(--basil);
  border-radius: var(--radius);
  background: transparent;
  color: var(--basil);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.button-outline--basil:hover {
  background: rgba(44, 74, 59, 0.06);
}

.hero-badge--glass {
  align-self: start;
  margin-top: 0.5rem;
  width: min(100%, 230px);
  background: rgba(250, 246, 238, 0.12);
  border: 1px solid rgba(250, 246, 238, 0.25);
  box-shadow: none;
  color: var(--cream);
}

.hero-badge--glass .badge-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.hero-badge--glass strong {
  color: var(--cream);
}

.hero-badge--glass small {
  color: rgba(250, 246, 238, 0.7);
}

.rating-star {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.why-list li {
  border-top: 1px solid rgba(26, 23, 18, 0.12);
  padding: 1.1rem 0;
}

.why-list li:last-child {
  border-bottom: 1px solid rgba(26, 23, 18, 0.12);
}

.why-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.why-list span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.campaign-featured {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--cream);
}

.campaign-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.campaign-featured-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 23, 18, 0.88) 0%, rgba(26, 23, 18, 0.2) 70%);
}

.campaign-featured-body {
  position: relative;
}

.campaign-featured h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cream);
}

.campaign-featured p {
  max-width: 36ch;
  color: rgba(250, 246, 238, 0.8);
  font-size: 0.92rem;
}

.campaign-tag--chili {
  background: var(--chili);
  color: var(--paper);
}

.campaign-tag--gold {
  background: var(--gold);
  color: var(--charcoal);
}

.media-card--dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: rgba(26, 23, 18, 0.2);
}

.media-card--dark h3 {
  color: var(--cream);
}

.media-card--dark p {
  color: rgba(250, 246, 238, 0.65);
}

.media-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.blog-card {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.blog-card:hover .card-media img {
  transform: scale(1.04);
}

.owner-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--paper);
}

.owner-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: url("assets/restaurant-interior.jpg") center / cover no-repeat;
  opacity: 0.32;
}

.owner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--charcoal) 50%, rgba(26, 23, 18, 0.5) 100%);
  pointer-events: none;
}

.owner-layout {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 2rem;
  align-items: center;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-brand-row strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--paper);
}

.article-reader {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow-y: auto;
  background: var(--cream);
}

.article-reader-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.article-reader-inner {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-back {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.article-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.article-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 2.75rem 0 6rem;
}

.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.04;
}

.article-meta {
  color: #9a9186;
  font-size: 0.88rem;
}

.article-hero {
  height: clamp(220px, 40vw, 380px);
  margin: 1.75rem 0 2rem;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.article-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.45;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 2rem 0 0.85rem;
}

.article-content p {
  color: #4a443b;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-close {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-style: italic;
}

body.article-open {
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg picture,
.hero-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 38%;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      102deg,
      rgba(250, 246, 238, 0.78) 0%,
      rgba(250, 246, 238, 0.52) 26%,
      rgba(250, 246, 238, 0.22) 46%,
      rgba(250, 246, 238, 0.04) 66%,
      transparent 82%
    ),
    linear-gradient(180deg, rgba(250, 246, 238, 0.12) 0%, transparent 32%, rgba(26, 23, 18, 0.08) 100%);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88svh, 880px);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  text-shadow: 0 1px 18px rgba(250, 246, 238, 0.65);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--basil);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light { color: rgba(252, 248, 240, 0.65); }

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

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 640px;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-lede {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.search-panel {
  margin: 1.75rem 0 1.25rem;
  padding: 1.1rem;
  max-width: 560px;
  background: rgba(252, 248, 240, 0.88);
  border: 1px solid rgba(26, 23, 18, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.search-panel label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.search-row input {
  min-height: 50px;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
}

.search-row input:focus {
  border-color: var(--basil);
  box-shadow: 0 0 0 3px rgba(44, 74, 59, 0.12);
}

.search-row button { padding: 0 1.1rem; white-space: nowrap; }

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.quick-links button,
.quick-links .quick-link {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(44, 74, 59, 0.2);
  border-radius: 999px;
  background: var(--cream);
  color: var(--basil);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.quick-links .quick-link:hover {
  border-color: rgba(169, 130, 75, 0.55);
  color: var(--charcoal);
}

.search-status {
  margin: 0.55rem 0 0;
  color: var(--basil);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 480px;
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.hero-proof dt {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold);
  line-height: 1;
}

.hero-proof dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-badge {
  align-self: end;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(26, 23, 18, 0.78);
  backdrop-filter: blur(14px);
  color: var(--paper);
  border: 1px solid rgba(252, 248, 240, 0.14);
  box-shadow: 0 16px 40px rgba(26, 23, 18, 0.2);
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 248, 240, 0.28);
}

.badge-gold {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-badge small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(252, 248, 240, 0.72);
  font-size: 0.84rem;
}

/* ── Sections ── */
.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--surface {
  background: var(--paper);
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--surface > * {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading { max-width: 640px; margin-bottom: 2rem; }
.section-heading.narrow { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p,
.split-heading p,
.catering-copy p,
.owner-copy p,
.site-footer p { color: var(--muted); }

.section-sub { margin-top: 0.45rem; font-size: 0.9rem; }

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

.text-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(169, 130, 75, 0.45);
}

/* ── Shared card media ── */
.card-media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 280ms ease;
}

.media-card:hover .card-media img,
.city-card:hover .card-media img,
.restaurant-card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.2rem;
}

/* ── Cities ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.city-card {
  min-height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.city-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem 1.15rem;
}

.city-card:hover {
  border-color: rgba(169, 130, 75, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 23, 18, 0.08);
}

.city-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}

.city-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.city-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ── Restaurants ── */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.restaurant-card {
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.restaurant-card:hover {
  border-color: rgba(169, 130, 75, 0.35);
  box-shadow: 0 12px 28px rgba(26, 23, 18, 0.07);
}

.restaurant-card .card-body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.tag, .verified {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.tag { background: var(--basil-soft); color: var(--basil); }
.verified { background: var(--gold-soft); color: var(--charcoal); border: 1px solid rgba(169, 130, 75, 0.35); }

.card-rating {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.rating {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
}

.rating-note { font-size: 0.75rem; color: var(--muted); }

.restaurant-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

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

.restaurant-card ul,
.owner-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.restaurant-card li,
.owner-card li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

/* ── Food guide ── */
.guide-section {
  background: var(--charcoal);
  color: var(--paper);
  width: 100%;
  max-width: none;
  padding-left: 18px;
  padding-right: 18px;
}

.guide-section .section-heading {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.guide-section .eyebrow { color: var(--gold-soft); }
.guide-section .section-heading p { color: rgba(252, 248, 240, 0.6); }

.dish-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.dish-card {
  grid-column: span 2;
  background: rgba(252, 248, 240, 0.04);
  border: 1px solid rgba(252, 248, 240, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.dish-card--wide { grid-column: span 2; }

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-body { padding: 0.95rem 1rem 1.1rem; }

.dish-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--paper);
}

.dish-body p {
  margin: 0;
  color: rgba(252, 248, 240, 0.62);
  font-size: 0.86rem;
}

/* ── Catering ── */
.catering-section {
  background: var(--basil);
  color: var(--paper);
}

.catering-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.catering-copy p { color: rgba(252, 248, 240, 0.75); max-width: 480px; }

.catering-aside {
  display: grid;
  gap: 0.85rem;
}

.catering-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(252, 248, 240, 0.16);
  box-shadow: 0 18px 40px rgba(26, 23, 18, 0.18);
}

.catering-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.occasion-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.occasion-grid li {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(252, 248, 240, 0.14);
  border-radius: var(--radius);
  background: rgba(252, 248, 240, 0.06);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Campaigns ── */
.campaign-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.85rem;
}

.campaign-grid article,
.media-card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.25rem 1.25rem;
}

.campaign-grid .card-body p {
  margin-top: auto;
}

.campaign-tag {
  color: var(--basil);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campaign-grid h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.campaign-grid p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ── Why ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.why-grid article {
  padding: 1.2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-grid h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 0.85rem;
  background: var(--gold);
}

.why-grid p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ── Trust & FAQ ── */
.trust-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.trust-copy p { color: var(--muted); max-width: 520px; }

.trust-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.trust-steps li {
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.trust-steps span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-panel {
  padding: 1.35rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--paper);
  overflow: hidden;
}

.faq-list summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  color: var(--basil);
}

.faq-list p {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ── Search page ── */
.search-page .search-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 1rem;
}

.search-panel--page {
  max-width: 640px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-meta {
  margin: 1rem 0 0;
  color: var(--basil);
  font-size: 0.92rem;
  font-weight: 600;
}

.search-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.search-empty h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.search-empty p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-bottom--solo {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-bottom--solo a {
  color: rgba(252, 248, 240, 0.72);
  font-weight: 600;
}

.footer-bottom--solo a:hover { color: var(--paper); }

/* ── Owner ── */
.owner-copy p { color: rgba(252, 248, 240, 0.75); }

.owner-media {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(252, 248, 240, 0.14);
  box-shadow: 0 16px 36px rgba(26, 23, 18, 0.22);
}

.owner-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.owner-card {
  padding: 1.35rem;
  background: var(--paper);
  color: var(--charcoal);
  border-radius: var(--radius);
}

.owner-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.owner-card .button { width: 100%; margin-top: 0.85rem; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.blog-grid article {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-grid .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.25rem 1.25rem;
}

.blog-cat {
  color: var(--basil);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-grid h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}

.blog-grid a {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--chili);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ── Footer ── */
.site-footer {
  padding: 3.25rem 0 1.25rem;
  background: var(--charcoal);
  color: rgba(252, 248, 240, 0.72);
}

.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .brand-mark {
  border-color: rgba(252, 248, 240, 0.2);
  background: transparent;
}

.footer-brand strong { color: var(--paper); }

.footer-grid h2 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 248, 240, 0.45);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(252, 248, 240, 0.72);
}

.footer-grid a:hover { color: var(--paper); }
.site-footer p { color: rgba(252, 248, 240, 0.5); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(252, 248, 240, 0.1);
  font-size: 0.82rem;
}

/* ── Responsive ── */
@media (max-width: 1040px) {
  .hero-layout,
  .catering-layout,
  .owner-layout,
  .trust-layout { grid-template-columns: 1fr; }

  .hero {
    min-height: auto;
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(250, 246, 238, 0.82) 0%,
        rgba(250, 246, 238, 0.58) 42%,
        rgba(250, 246, 238, 0.18) 68%,
        transparent 100%
      ),
      linear-gradient(180deg, transparent 50%, rgba(26, 23, 18, 0.2) 100%);
  }

  .hero-bg img {
    object-position: 55% 32%;
  }

  .hero-scrim--dark {
    background: linear-gradient(
      180deg,
      rgba(26, 23, 18, 0.82) 0%,
      rgba(26, 23, 18, 0.55) 45%,
      rgba(26, 23, 18, 0.2) 100%
    );
  }

  .hero-badge--glass {
    max-width: 420px;
  }

  .owner-bg {
    width: 100%;
    height: 42%;
    top: auto;
    bottom: 0;
    opacity: 0.22;
  }

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

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

  .restaurant-grid,
  .campaign-grid,
  .blog-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 820px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }

  .header-actions { margin-left: auto; }
  .header-actions .header-cta { display: none; }

  .split-heading { flex-direction: column; align-items: start; }
  .search-row { grid-template-columns: 1fr; }
  .search-row button { width: 100%; }
}

@media (max-width: 640px) {
  .brand small { display: none; }

  .hero-proof { grid-template-columns: 1fr; gap: 0.65rem; }

  .city-grid,
  .restaurant-grid,
  .campaign-grid,
  .why-grid,
  .blog-grid,
  .occasion-grid,
  .footer-grid,
  .dish-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button-primary:hover, .city-card:hover { transform: none; }
}

/* —— Restaurant profiles, forms & legal —— */

a.restaurant-card,
article.restaurant-card {
  display: block;
  color: inherit;
}

.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chili);
}

.tag--verified {
  background: var(--basil-soft);
  color: var(--basil);
}

.restaurant-hero {
  display: grid;
  gap: 0;
}

.restaurant-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.restaurant-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 0.75rem;
}

.restaurant-lede {
  color: var(--muted);
  max-width: 42rem;
}

.rating-star--lg {
  font-size: 1.1rem;
  margin: 0.5rem 0 1rem;
}

.restaurant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.restaurant-order {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.restaurant-info-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.restaurant-info-grid h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.info-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.info-list--dishes {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-list--dishes li {
  background: var(--cream-deep);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.restaurant-not-found {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.catering-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

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

.form-full { grid-column: 1 / -1; }

.catering-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: var(--basil-soft);
  border-radius: var(--radius);
}

.legal-page {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 1.75rem;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .restaurant-actions .button { width: 100%; justify-content: center; }
}

@media (min-width: 900px) {
  .restaurant-hero {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .restaurant-hero-media img {
    max-height: none;
    height: 100%;
    min-height: 360px;
  }
}

/* —— Mobile order UX (1–3) —— */

.hero-title-mobile { display: none; }

.hero-mobile-cta {
  display: none;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.button--block {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.button--compact {
  min-height: 44px;
  padding: 0 0.85rem;
  font-size: 0.88rem;
  flex: 1 1 auto;
  justify-content: center;
}

.restaurant-card-link {
  display: block;
  color: inherit;
}

.restaurant-card-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 0.75rem;
}

.card-order-note {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.tag--eta {
  background: rgba(169, 130, 75, 0.15);
  color: var(--gold);
}

.mobile-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
  background: rgba(252, 248, 240, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(26, 23, 18, 0.08);
  backdrop-filter: blur(10px);
}

.mobile-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.mobile-dock__item--primary {
  color: var(--chili);
}

.mobile-dock__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.restaurant-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(252, 248, 240, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 32px rgba(26, 23, 18, 0.12);
}

body.has-mobile-dock {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
}

body.has-restaurant-sticky {
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
}

body.nav-open .mobile-dock,
body.article-open .mobile-dock,
body.nav-open .restaurant-sticky-bar,
body.article-open .restaurant-sticky-bar {
  display: none !important;
}

@media (max-width: 820px) {
  body.has-mobile-dock .mobile-dock {
    display: grid;
  }

  body.has-restaurant-sticky .restaurant-sticky-bar {
    display: flex;
  }

  .hero--cover {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-title-desktop { display: none; }

  .hero-title-mobile {
    display: block;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.05;
    margin: 0 0 0.65rem;
  }

  .hero-mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge--glass {
    display: none;
  }

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

  .restaurant-card-actions .button {
    flex: 1;
  }

  .restaurant-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-mobile-cta {
    grid-template-columns: 1fr;
  }
}

.menu-picker {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.menu-picker legend {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.menu-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.menu-picker-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.menu-picker-item:has(input:checked) {
  border-color: var(--basil);
  box-shadow: 0 0 0 1px var(--basil);
}

.menu-picker-item input {
  margin-top: 0.2rem;
  accent-color: var(--basil);
}

.menu-picker-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu-picker-item__body small {
  color: var(--muted);
}

a.dish-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
}

a.dish-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 23, 18, 0.1);
}
