/* ===== Design tokens ===== */
:root {
  --color-bg: #FFF8F0;
  --color-surface: #FFFFFF;
  --color-text: #2B1C15;
  --color-text-soft: #5C4A3E;
  --color-primary: #8C1F28;
  --color-primary-dark: #6B1620;
  --color-cta: #E4572E;
  --color-cta-dark: #C8441F;
  --color-teal: #2C8C89;
  --color-gold: #E8A33D;
  --color-border: #EADFCF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-pill: 999px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(43, 28, 21, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 28, 21, 0.12);
  --shadow-cta: 0 6px 20px rgba(228, 87, 46, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

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

a { color: inherit; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-cta);
  margin: 0 0 10px;
}

.eyebrow--center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-soft);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn--cta {
  background: var(--color-cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--cta:hover {
  background: var(--color-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(228, 87, 46, 0.48);
}

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

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 34px;
}

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

.btn--nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-primary);
  text-decoration: none;
  margin-right: auto;
}

.navbar__brand span {
  color: var(--color-teal);
}

.navbar__links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}

.navbar__links a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.15s ease;
}

.navbar__links a:hover { color: var(--color-cta); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.navbar__toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--color-primary);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6B1620 0%, #2C8C89 100%), url('../images/photo-08.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: #fff;
  margin-bottom: 18px;
}

.hero__tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  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;
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* ===== About ===== */
.about { padding: 90px 0; }

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

.about__text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.about__text p { color: var(--color-text-soft); margin: 0 0 18px; }

.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ===== Menu ===== */
.menu {
  padding: 90px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.menu__category h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

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

.menu__category li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}

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

.item-name {
  font-weight: 800;
  display: block;
}

.item-desc {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin: 4px 0 0;
}

.item-price {
  font-weight: 800;
  color: var(--color-teal);
  flex-shrink: 0;
}

.menu__note {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin-top: 44px;
}

/* ===== Gallery ===== */
.gallery { padding: 90px 0; }

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

.gallery__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.gallery__grid img:hover { transform: scale(1.03); }

/* ===== Reviews ===== */
.reviews {
  padding: 90px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.review-card .stars { display: block; margin-bottom: 12px; font-size: 1.1rem; }

.review-quote {
  font-style: italic;
  color: var(--color-text);
  margin: 0 0 14px;
}

.review-author {
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

/* ===== Hours & Location ===== */
.hours-location { padding: 90px 0; }

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 26px;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}

.hours-table th { color: var(--color-text-soft); font-weight: 700; width: 40%; }

.hours-location__address {
  font-style: normal;
  margin: 0 0 12px;
  color: var(--color-text-soft);
}

.hours-location__phone {
  margin: 0 0 26px;
  font-size: 1.2rem;
  font-weight: 800;
}

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

.hours-location__map {
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 56px 0 24px;
}

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

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 6px;
}

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

.footer__brand p:last-child { color: rgba(255,255,255,0.7); margin: 0; }

.footer__contact p { margin: 0 0 8px; color: rgba(255,255,255,0.85); }
.footer__contact a { text-decoration: none; color: #fff; font-weight: 700; }

.footer__cta { text-align: right; }

.footer__fine {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin: 40px 0 0;
}

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

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

.modal {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.modal h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.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);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-soft);
}

.modal__close:hover { background: var(--color-border); }

.modal__call { width: 100%; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about__grid,
  .hours-location__grid {
    grid-template-columns: 1fr;
  }

  .about__image { order: -1; }

  .menu__grid { grid-template-columns: 1fr; gap: 48px; }

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

  .gallery__grid { grid-template-columns: repeat(3, 1fr); }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer__cta { text-align: center; }
}

@media (max-width: 720px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }

  .navbar__inner.is-open .navbar__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
  }

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

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .hero { min-height: 100vh; }
}

@media (max-width: 480px) {
  .btn--nav { display: none; }
}
