/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tokens */
:root {
  --primary: #6f4e37;
  --accent: #d4a574;
  --bg: #faf6f0;
  --text: #2c2118;
  --text-muted: #5c4a3a;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(111, 78, 55, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 720px);
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(212, 165, 116, 0.35), transparent 55%),
    linear-gradient(160deg, #3e2a1c 0%, #6f4e37 45%, #8b6347 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1rem 5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.hero-nav a {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Location cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.card .address {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card .hours {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

/* Menu */
.menu-bg {
  background: linear-gradient(180deg, #f3ebe1 0%, var(--bg) 100%);
}

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

.menu-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.menu-block h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(111, 78, 55, 0.25);
  font-family: system-ui, -apple-system, sans-serif;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list .item {
  color: var(--text);
}

.menu-list .price {
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
  margin-left: auto;
  text-align: right;
}

/* Story */
.story {
  text-align: center;
}

.story p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* CTA */
.cta-strip {
  background: linear-gradient(90deg, var(--primary), #8b6347);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.cta-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #e0b88a;
  color: var(--text);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: #2c2118;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 1.75rem 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 4.5rem 1rem 3.5rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .card-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 0.75rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card,
  .menu-block {
    padding: 1.25rem;
  }

  .hero-nav {
    gap: 0.6rem;
  }

  .hero-nav a {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
  }
}
