:root {
  --bg: #f6f1ea;
  --paper: #fffdf9;
  --panel: #f0e4d8;
  --text: #1d1d1d;
  --muted: #5f5b56;
  --brand: #a95f3b;
  --brand-deep: #7b4025;
  --accent: #d89f5d;
  --line: rgba(29, 29, 29, 0.12);
  --shadow: 0 14px 36px rgba(35, 22, 14, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.hero {
  padding: 5rem 0 4rem;
  background-image: linear-gradient(135deg, rgba(33, 24, 17, 0.9), rgba(98, 62, 42, 0.68)), var(--hero-image, none);
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 36rem;
  color: rgba(255,255,255,0.82);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn.primary,
.btn:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.feature-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
}

.hero-image-credit {
  display: block;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.hero-image-credit a {
  text-decoration: underline;
}

.search-box {
  display: flex;
  gap: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  margin-top: 1.25rem;
}

.search-box input {
  border: 0;
  background: transparent;
  width: 100%;
  font-size: 1rem;
  outline: none;
}

.section {
  padding: 4rem 0;
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.category-card h3 {
  margin: 0.75rem 0 0.25rem;
  font-size: 1.2rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
}

.section-heading-row,
.discovery-block-heading,
.discovery-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading-row .section-title {
  margin-bottom: 0;
}

.section-link,
.discovery-block-heading a {
  color: var(--brand-deep);
  font-weight: 700;
  white-space: nowrap;
}

.discovery-section {
  background: var(--paper);
}

.featured-section {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.city-section {
  background: #1f342f;
  color: white;
}

.city-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: #29463f;
}

.city-feature-image {
  min-height: 360px;
  position: relative;
  background: #35564d;
}

.city-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-feature-image small {
  position: absolute;
  bottom: 0.8rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
}

.city-feature-image a,
.city-hero-credit a {
  color: inherit;
  text-decoration: underline;
}

.city-feature-copy {
  padding: clamp(2rem, 5vw, 4rem);
  align-self: center;
}

.city-feature-copy .section-title {
  margin-bottom: 0.8rem;
}

.city-feature-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 30rem;
}

.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.city-button {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.city-button:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.city-button small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.city-page .section-title {
  margin-bottom: 0.5rem;
}

.city-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.city-hero-image img,
.city-hero-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  background: var(--panel);
}

.city-hero-credit {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.city-hero-copy h1 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
}

.city-hero-copy > p:not(.eyebrow):not(.city-hero-stat) {
  color: var(--muted);
  font-size: 1.08rem;
}

.city-hero-stat,
.city-category-count {
  color: var(--brand-deep);
  font-weight: 700;
}

.city-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.city-category-nav .filter-btn span {
  opacity: 0.7;
  margin-left: 0.2rem;
}

.city-category-list {
  display: grid;
  gap: 3.5rem;
  padding-top: 3rem;
}

.city-browse-block,
.city-mood-block,
.city-filter-results {
  padding-top: 2rem;
}

.city-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}

.city-filter-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.city-filter-card:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.city-filter-card span,
.city-filter-results h3 {
  color: var(--muted);
  font-size: 0.82rem;
}

.city-filter-results {
  scroll-margin-top: 100px;
}

.city-category .section-heading-row {
  align-items: baseline;
  margin-bottom: 1rem;
}

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

.discovery-grid {
  display: grid;
  gap: 2.5rem;
}

.discovery-block-heading {
  align-items: baseline;
  margin-bottom: 0.9rem;
}

.discovery-block-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.discovery-block-image {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 auto;
}

.discovery-block-heading h3 {
  margin: 0;
  font-size: 1.45rem;
}

.discovery-block-heading p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.discovery-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.discovery-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  min-width: 0;
}

.discovery-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.55rem;
}

.image-credit {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-photo {
  margin: 0 0 1.25rem;
}

.listing-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.listing-photo figcaption {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

.listing-photo figcaption a {
  color: var(--brand-deep);
  text-decoration: underline;
}

.discovery-card h3 {
  margin: 0.35rem 0 0.2rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.discovery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating {
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.loading-state {
  color: var(--muted);
}

.listing-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.specials-section {
  background: linear-gradient(180deg, rgba(248, 241, 234, 0.8), rgba(255,255,255,0));
}

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

.special-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.special-badge {
  display: inline-block;
  background: #f5e1d1;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
}

.special-card h3 {
  margin: 0 0 0.5rem;
}

.special-card p,
.special-card small {
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.listing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.1rem;
}

.listing-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.55rem;
}

.listing-tag {
  display: inline-block;
  font-size: 0.72rem;
  background: #f7e7df;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.5rem;
}

.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.listing-tags .listing-tag {
  margin-bottom: 0;
}

.listing-tag-more {
  background: var(--line);
  color: var(--muted);
}

.listing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.listing-card p {
  margin: 0;
  color: var(--muted);
}

.listing-meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9rem;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.empty-state {
  padding: 2rem;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
}

.page {
  padding: 3rem 0 5rem;
}

.restaurant-hero {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.restaurant-lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.pill {
  display: inline-block;
  background: #f9eee5;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
}

.pill.muted {
  background: #f1f1f1;
  color: var(--muted);
}

/* ---------- Review slider ---------- */

.review-slider {
  margin: 1.5rem 0;
  position: relative;
}

.review-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.review-slider-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 140px;
  justify-content: center;
}

.review-slide-rating {
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 0.85rem;
}

.review-slide-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #1d1d1d;
}

.review-slide-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--brand-deep);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-arrow:hover {
  background: #f9eee5;
}

.review-arrow-prev {
  left: -14px;
}

.review-arrow-next {
  right: -14px;
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.7rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.review-dot:hover {
  background: var(--brand);
}

.review-dot.is-active {
  background: var(--brand-deep);
}

.detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.detail-actions .btn {
  color: var(--text);
  background: var(--paper);
  border-color: var(--line);
}

.detail-actions .btn.primary {
  background: var(--brand);
  color: white;
}

.restaurant-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.menu-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

.reviews-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.review-story {
  max-width: 68ch;
  margin-bottom: 1.25rem;
}

.review-story p {
  line-height: 1.65;
  margin: 0 0 0.9rem;
}

.review-story .review-story-source {
  color: var(--muted);
  font-size: 0.85rem;
}

.menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.menu-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1d1d1d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.menu-header .menu-subtitle {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-notice {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 480px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--brand-deep);
}

.breadcrumbs [aria-current="page"] {
  color: var(--brand-deep);
  font-weight: 600;
}

.related-wrap {
  margin-top: 2rem;
}

.related-wrap .section-title {
  margin-bottom: 1rem;
}

.menu-section + .menu-section {
  margin-top: 2rem;
}

.menu-section-title {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
  background: #1d1d1d;
  color: #fff;
  padding: 0.5rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--line);
  break-inside: avoid;
}

.menu-list li span {
  overflow-wrap: anywhere;
}

.menu-list li strong {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .menu-list {
    columns: 1;
  }

  .menu-wrap {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 700px) {
  .section-heading-row,
  .discovery-block-heading {
    display: block;
  }

  .section-link,
  .discovery-block-heading a {
    display: inline-block;
    margin-top: 0.7rem;
  }

  .discovery-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .restaurant-hero,
  .city-feature,
  .city-hero { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-inner { min-height: 64px; }

  .city-feature-image { min-height: 240px; }
}

/* Search and filters */
.search-box input[type="search"] { color: var(--text); min-width: 0; }

.hero-search .search-box { margin-top: 1rem; padding: 0.4rem 0.4rem 0.4rem 1rem; align-items: center; }
.search-submit { padding: 0.6rem 1.1rem; cursor: pointer; font: inherit; flex-shrink: 0; }

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
}

.quick-searches a {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}

.quick-searches a:hover { background: rgba(255,255,255,0.15); }

a.category-card { display: block; transition: border-color 0.15s, transform 0.15s; }
a.category-card:hover { border-color: var(--brand); transform: translateY(-2px); }

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.filter-controls .filter-bar { margin-bottom: 0; }

.filter-select {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.filter-select select {
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 2rem 0.55rem 0.9rem;
  min-width: 11rem;
  cursor: pointer;
}

.result-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.result-row p { margin: 0; }

.clear-filters,
.link-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--brand-deep);
  text-decoration: underline;
  cursor: pointer;
}

.listing-card .listing-match {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--brand-deep);
}

.filter-btn-search { background: var(--brand); border-color: var(--brand); color: white; }

@media (max-width: 700px) {
  .filter-controls { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-controls .filter-bar { grid-column: 1 / -1; }
  .filter-select select { min-width: 0; width: 100%; }
  .listing-shell { padding: 1rem; }
}

/* Pre-launch notice above the header */
.dev-banner {
  background: var(--brand-deep);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0.55rem 1rem;
}
