:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #f2a541;
  --brand-green: #2a6f4b;
  --ink: #241a14;
  --cream: #fff8ee;
  --cream-2: #fdeed6;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

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

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--order {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(214, 40, 40, 0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn--order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.5);
}

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

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.navbar__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brand-red);
  white-space: nowrap;
}
.navbar__brand span { color: var(--brand-green); }

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

.navbar__links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.navbar__links a:hover { color: var(--brand-red); }

.navbar__order { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.navbar__toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #7a1f1f 0%, #d62828 45%, #f2a541 100%),
              url('../images/photo-01.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.35) 0%, rgba(20,10,8,0.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* Section shared */
section { padding: 90px 0; }

.section-eyebrow {
  color: var(--brand-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-subtitle {
  color: #6b5a4d;
  max-width: 560px;
  margin: 0 auto 20px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__images img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.about__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about__text p { margin-bottom: 16px; color: #4a3b31; }

.about__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge {
  background: var(--cream-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-red-dark);
}

/* Menu */
.menu { background: var(--cream-2); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.menu__category {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.menu__category h3 {
  color: var(--brand-red);
  font-size: 1.4rem;
  margin-bottom: 18px;
  border-bottom: 3px solid var(--brand-gold);
  padding-bottom: 10px;
}

.menu__category ul { list-style: none; }
.menu__category li { margin-bottom: 18px; }
.menu__category li:last-child { margin-bottom: 0; }

.menu__item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 800;
  gap: 12px;
  margin-bottom: 4px;
}

.menu__item-row .price { color: var(--brand-green); white-space: nowrap; }

.menu__category p {
  font-size: 0.9rem;
  color: #6b5a4d;
}

.menu__note {
  text-align: center;
  margin-top: 40px;
  color: #6b5a4d;
  font-style: italic;
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery__grid img {
  border-radius: 14px;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery__grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--cream-2); }

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

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.review-card p { margin: 14px 0; color: #4a3b31; }
.review-card cite { font-weight: 800; color: var(--brand-red); }

/* Location */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.location__info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }

address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #4a3b31;
}

.location__phone {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 24px;
}

.hours-table {
  width: 100%;
  margin-bottom: 28px;
  border-collapse: collapse;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e8d9c5;
  font-weight: 600;
}
.hours-table th { color: #6b5a4d; font-weight: 700; }
.hours-table td { text-align: right; }

.location__map iframe {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background: var(--ink);
  color: #f4e9dc;
  padding: 60px 0 20px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}
.footer__logo span { color: var(--brand-gold); }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a:hover { color: var(--brand-gold); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer__contact a:hover { color: var(--brand-gold); }

.footer__copy {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

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

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

.modal {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--brand-red);
}

.modal p {
  color: #4a3b31;
  margin-bottom: 24px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cream-2);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal__close:hover { background: var(--brand-gold); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__contact, .footer__links { align-items: center; }
}

@media (max-width: 720px) {
  .navbar__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    display: none;
  }
  .navbar__links.is-open { display: flex; }
  .navbar__toggle { display: flex; }
  .navbar__order { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
  section { padding: 60px 0; }
}
