:root {
  --color-bg: #fbf6ee;
  --color-bg-alt: #f5ebd9;
  --color-text: #2c2117;
  --color-text-soft: #5a4b3c;
  --color-dark: #1b140f;
  --color-primary: #e0392c;
  --color-primary-dark: #b82a1f;
  --color-gold: #f2a93b;
  --color-green: #4c7a4a;
  --color-cream-card: #ffffff;
  --shadow-soft: 0 12px 30px rgba(27, 20, 15, 0.12);
  --radius-lg: 20px;
  --radius-pill: 999px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
  color: var(--color-dark);
}

p { margin: 0 0 1em; }

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-order {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(224, 57, 44, 0.4);
}

.btn-order:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 57, 44, 0.5);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(27, 20, 15, 0.96);
  backdrop-filter: blur(6px);
}

.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  font-family: 'Fraunces', serif;
  font-weight: 900;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #f1e6d6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--color-gold); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/photo-7.jpg');
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 13, 8, 0.55) 0%, rgba(20, 13, 8, 0.72) 55%, rgba(20, 13, 8, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--color-gold); }

.hero-tagline {
  font-size: 1.15rem;
  color: #f1e6d6;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f1e6d6;
  font-weight: 600;
  font-size: 0.95rem;
}

.stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-sub {
  margin-top: 14px;
  color: var(--color-text-soft);
}

section { padding: 88px 0; }

/* About */
.about { background: var(--color-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p { color: var(--color-text-soft); font-size: 1.02rem; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  background: var(--color-cream-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.highlight-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 10px;
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.highlight-card p {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  margin: 0;
}

/* Menu */
.menu { background: var(--color-bg-alt); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menu-category {
  background: var(--color-cream-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(224, 57, 44, 0.25);
}

.menu-list { list-style: none; margin: 0; padding: 0; }

.menu-list li { margin-bottom: 16px; }
.menu-list li:last-child { margin-bottom: 0; }

.menu-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
}

.menu-item-name {
  font-weight: 800;
  font-family: 'Fraunces', serif;
  font-size: 1.02rem;
}

.menu-item-desc {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  flex-basis: 100%;
}

.menu-item-price {
  margin-left: auto;
  font-weight: 800;
  color: var(--color-primary);
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.menu-note a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* Gallery */
.gallery { background: var(--color-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* Reviews */
.reviews { background: var(--color-dark); }

.reviews .section-eyebrow { color: var(--color-gold); }
.reviews .section-heading h2 { color: #fff; }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}

.review-card p {
  color: #f1e6d6;
  font-size: 1rem;
  margin: 12px 0 14px;
}

.review-card cite {
  color: var(--color-gold);
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
}

/* Location */
.location { background: var(--color-bg-alt); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-block h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.info-block p { color: var(--color-text-soft); margin: 0; }

.info-block a { font-weight: 700; color: var(--color-text); }

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  border-bottom: 1px dashed rgba(90, 75, 60, 0.2);
  padding-bottom: 6px;
}

.hours-list li span:first-child {
  font-weight: 700;
  color: var(--color-text);
}

.location-info .btn { align-self: flex-start; margin-top: 6px; }

.location-map {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #f1e6d6;
  padding-top: 48px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.footer-address {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: #c9b8a4;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.92rem;
  color: #d9c9b6;
  font-weight: 600;
}

.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.82rem;
  color: #8a7663;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 13, 8, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  position: relative;
  background: var(--color-cream-card);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.modal p {
  color: var(--color-text-soft);
  margin-bottom: 26px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg-alt);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
}

.modal-close:hover { background: var(--color-primary); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(27, 20, 15, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar-actions .btn-order { padding: 10px 18px; font-size: 0.85rem; }
  section { padding: 64px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 2; aspect-ratio: 16/10; }
}
