html {
  scroll-behavior: smooth;
}


:root {
  --bg: #2B1B14;
  --bg-light: #FAF3E8;
  --accent: #C77B3D;
  --muted: #B8A893;
  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--bg-light);
  font-family: var(--body);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(43, 27, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(250, 243, 232, 0.08);
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
}

.logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}


.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--bg-light);
}

/* ---------- HERO ---------- */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 24px 120px;
  text-align: center;

  background:
    linear-gradient(rgba(43, 27, 20, .70),
      rgba(43, 27, 20, .80)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085");

  background-size: cover;
  background-position: center;
  border-radius: 24px;
  margin-top: 30px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto;
}

.hero-sub {
  margin-top: 22px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  color: var(--muted);
}

.cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--accent);
  color: var(--bg);
  padding: 15px 34px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  transition: transform 0.15s ease, background 0.2s;
}

.cta:hover,
.cta:focus-visible {
  background: #d98e51;
  transform: translateY(-2px);
}

/* signature element: steam swirl divider */
.swirl-divider {
  margin-top: 60px;
  color: var(--accent);
  opacity: 0.6;
}

.swirl-divider svg {
  width: 200px;
  height: 30px;
  margin: 0 auto;
  display: block;
}

/* ---------- HIGHLIGHTS ---------- */
.highlights {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 50px 24px;
  border-top: 1px solid rgba(250, 243, 232, 0.08);
  border-bottom: 1px solid rgba(250, 243, 232, 0.08);
  flex-wrap: wrap;
  text-align: center;
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--accent);
}

.highlight-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  max-width: 140px;
}

/* ---------- MENU ---------- */
.menu-card {
  background: rgba(250, 243, 232, .05);
  border: 1px solid rgba(250, 243, 232, .1);
  padding: 28px;
  border-radius: 16px;

  transition: all .35s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
  border-color: var(--accent);
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 12px;
  margin-bottom: 50px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.menu-card {
  background: rgba(250, 243, 232, 0.04);
  border: 1px solid rgba(250, 243, 232, 0.1);
  padding: 28px;
  border-radius: 14px;
}

.menu-tag {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.menu-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  margin: 12px 0 10px;
}

.menu-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.menu-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bg-light);
}

/* ---------- STORY ---------- */
.story {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 24px 90px;
}

.story-inner {
  background: rgba(250, 243, 232, 0.04);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
}

.story .section-title {
  margin-bottom: 24px;
}

.story-text {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- VISIT ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 20px;
}

.visit-card {
  padding: 24px;
}

.visit-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
}

.visit-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- FOOTER ---------- */
.footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(250, 243, 232, 0.08);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .nav-links {
    gap: 18px;
  }

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

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

  .highlights {
    gap: 32px;
  }

  .story-inner {
    padding: 36px 24px;
  }

  .footer {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    display: inline-block;
    margin-top: 32px;
    background: var(--accent);
    color: var(--bg);
    padding: 15px 34px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 40px;

    box-shadow: 0 0 25px rgba(199, 123, 61, .35);

    transition: all .3s ease;
  }

  .cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(199, 123, 61, .55);
  }
}

.hero-title {
  animation: fadeUp 1s ease;
}

.hero-sub {
  animation: fadeUp 1.3s ease;
}

.cta {
  animation: fadeUp 1.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews {
  max-width: 1000px;
  margin: auto;
  padding: 80px 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(250, 243, 232, .05);
  border-radius: 16px;
  padding: 25px;
}