:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-gold: #f2a541;
  --brand-green: #1f6b3b;
  --ink: #241a15;
  --cream: #fff8ef;
  --cream-alt: #fbeee0;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow: 0 10px 30px rgba(36, 26, 21, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order.btn-lg {
  font-size: 1.1rem;
  padding: 16px 40px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(36, 26, 21, 0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand-mark {
  background: var(--brand-green);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.brand-text small { font-size: 0.65em; opacity: 0.75; }
.nav-links {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.nav-links a:hover { color: var(--brand-red); }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,20,15,0.55) 0%, rgba(36,20,15,0.75) 60%, rgba(36,20,15,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-gold);
  font-size: 0.85rem;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 800px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 0 34px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.stars {
  color: var(--brand-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-alt); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin: 0 0 10px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 20px;
}
.section-lede {
  max-width: 640px;
  margin: 0 auto 50px;
  color: #5a4b42;
  font-size: 1.05rem;
}
.center { text-align: center; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: #4a3d35; }
.about-photo img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(36,26,21,0.15);
}
.menu-category li:last-child { border-bottom: none; }
.dish { font-weight: 800; font-size: 1.05rem; }
.desc { color: #6b5c52; font-size: 0.92rem; margin-top: 4px; }
.menu-note {
  text-align: center;
  margin-top: 50px;
  color: #5a4b42;
  font-style: italic;
}
.menu-note a { color: var(--brand-red); font-weight: 700; text-decoration: none; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin: 0;
}
.review-card .stars { margin-bottom: 12px; }
.review-card p { font-size: 1.02rem; color: #3a2f28; margin: 0 0 16px; }
.review-card cite {
  font-weight: 800;
  color: var(--brand-red);
  font-style: normal;
}
.reviews-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-weight: 700;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.location-info address {
  font-style: normal;
  font-size: 1.05rem;
  margin: 10px 0;
  color: #4a3d35;
}
.tel-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-red);
  text-decoration: none;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0 32px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(36,26,21,0.1);
  font-weight: 600;
}
.hours-table th { color: #5a4b42; font-weight: 700; }
.location-map iframe {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--ink);
  color: #f4e9de;
  padding: 50px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-info p { margin: 4px 0; }
.footer-info a { text-decoration: none; color: var(--brand-gold); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(244, 233, 222, 0.15);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 20, 15, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: modal-pop 0.2s ease;
}
@keyframes modal-pop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 14px;
}
.modal p {
  color: #5a4b42;
  margin: 0 0 24px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #8a7a6f;
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-tel { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .phone-link { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 20px 60px; }
  .modal { padding: 32px 24px; }
}
