/* Straightforward visual layer: intentionally restrained and conventional. */
:root {
  --ink: #202522;
  --cream: #f6f7f6;
  --paper: #fff;
  --orange: #d95f32;
  --orange-dark: #b94822;
  --muted: #66706a;
  --line: #dfe3e0;
  --shadow: 0 8px 24px rgba(24, 34, 29, .08);
}

body { background: var(--cream); }

.site-header {
  height: 68px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  transform: none;
  font-size: 18px;
}

.btn {
  border-radius: 7px;
  padding: 10px 17px;
  font-weight: 600;
  transition: background .15s;
}

.btn:hover { transform: none; }
.btn-primary { box-shadow: none; }
.btn-large { padding: 10px 17px; }
.btn-large span { display: none; }

.hero {
  min-height: 0;
  display: block;
  padding: 64px max(24px, calc((100vw - 1120px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.hero::before,
.hero-art { display: none; }
.hero-copy { max-width: 700px; }

h1 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -.035em;
  margin: 12px 0 16px;
  font-weight: 800;
}

h1 em { color: var(--ink); }

.hero-copy p {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.75;
}

.content {
  min-height: 500px;
  padding: 48px max(24px, calc((100vw - 1120px) / 2)) 80px;
  background: var(--cream);
  border-radius: 0;
}

.section-heading { margin-bottom: 28px; }
.section-heading h2 { margin: 6px 0 0; font-size: 30px; letter-spacing: -.025em; }
.restaurant-grid { gap: 20px; }

.restaurant-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: box-shadow .15s;
}

.restaurant-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.card-photo { height: 200px; }
.card-content { padding: 20px; }
.rating-button:hover,
.rating-button.selected { transform: none; }

footer {
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.brand-footer { color: var(--ink); }
.modal { border-radius: 12px; padding: 32px; }
.modal::backdrop {
  background: rgba(16, 24, 19, .58);
  backdrop-filter: none;
}


@media (max-width: 620px) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  button, a, input { touch-action: manipulation; }
  .site-header { padding: 0 16px; }
  .hero { padding: 40px 20px; }
  .content { padding: 38px 18px 60px; }
  .modal { padding: 30px 20px; }
}
