:root {
  --primary: #E63946;
  --primary-dark: #C22233;
  --accent: #1D3461;
  --dark: #1B1425;
  --paper: #FFF8EF;
  --ink: #241827;
  --gold: #F4A300;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1160px; margin: 0 auto; }

/* Top bar */
.topbar { background: var(--dark); color: #fff; padding: .6rem 1rem; font-size: .9rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 248, 239, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1rem; gap: 1rem; }
.brand {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800; letter-spacing: .01em;
  text-decoration: none; color: var(--accent); white-space: nowrap;
}
.nav-links { display: flex; gap: 1.4rem; align-items: center; font-weight: 700; }
.nav-links a:not(.button) { text-decoration: none; color: var(--ink); }
.nav-links a:not(.button):hover { color: var(--primary); }
.nav-cta { display: flex; }

/* Order Online button - the boldest element on the page */
.button {
  border: 0; border-radius: 999px;
  background: var(--primary); color: #fff;
  padding: .9rem 1.5rem; font-weight: 800; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(230, 57, 70, .4);
  border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(230, 57, 70, .5); }
.button.alt { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .7); box-shadow: none; }
.button.alt:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.button.light { background: var(--dark); color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, .25); }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background-image: linear-gradient(rgba(15, 10, 20, .72), rgba(15, 10, 20, .72)), url('../images/photo-1.jpg');
  background-size: cover; background-position: center;
}
.hero .wrap { min-height: 74vh; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; padding: 5rem 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .78rem; color: var(--gold); margin: 0 0 .8rem; }
h1, h2, h3, h4 { font-family: 'Fredoka', system-ui, sans-serif; line-height: 1.05; margin: 0; color: var(--ink); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); max-width: 780px; text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.7rem; }
.hero p { font-size: 1.2rem; line-height: 1.6; max-width: 620px; color: rgba(255, 255, 255, .92); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-card {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 1.5rem; padding: 1.75rem; box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  backdrop-filter: blur(6px);
}
.hero-card strong { font-family: 'Fredoka', system-ui, sans-serif; font-size: 1.1rem; display: block; margin-bottom: .8rem; }
.hero-card p { margin: .3rem 0; font-size: 1rem; }

main section { padding: 4.5rem 1rem; }
.section-heading { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-heading.compact { margin: 0 0 1.5rem; text-align: left; }
.section-heading p.muted { color: rgba(0, 0, 0, .6); line-height: 1.6; }

/* Story */
.split { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.split p { line-height: 1.7; color: rgba(0, 0, 0, .78); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.info-card {
  background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 1.25rem;
  padding: 1.35rem; box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
}
.info-card h4 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--accent); }
.info-card p { margin: 0; font-size: .95rem; }

/* Menu */
.menu-section { max-width: 1160px; margin: 0 auto; background: var(--dark); border-radius: 2rem; padding: 3rem 2.5rem; color: #fff; }
.menu-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 2rem; }
.menu-cat h3 { color: var(--gold); border-bottom: 2px solid rgba(244, 163, 0, .35); padding-bottom: .6rem; margin-bottom: 1rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed rgba(255, 255, 255, .14); }
.menu-item:last-child { border-bottom: 0; }
.menu-item h4 { font-size: 1.05rem; font-weight: 700; font-family: 'Inter', sans-serif; margin-bottom: .25rem; color: #fff; }
.menu-item p { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .68); line-height: 1.5; }

/* Gallery */
.gallery-section { background: #fff; }
.gallery-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid img, .gallery-grid .generated { width: 100%; height: 230px; border-radius: 1.25rem; box-shadow: 0 16px 36px rgba(0, 0, 0, .12); }
.gallery-grid img { object-fit: cover; }
.gallery-grid .generated {
  display: flex; align-items: flex-end; padding: 1rem;
  color: #fff; font-family: 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 1.05rem;
  background-size: cover; background-position: center;
}
.gallery-grid .generated span { text-shadow: 0 2px 10px rgba(0, 0, 0, .5); }
.gallery-grid .g-1 { background-image: repeating-linear-gradient(135deg, #E63946 0 24px, #C22233 24px 48px); }
.gallery-grid .g-2 { background-image: linear-gradient(160deg, #F4A300, #E63946); }
.gallery-grid .g-3 { background-image: linear-gradient(160deg, #7A4A21, #F4A300); }
.gallery-grid .g-4 { background-image: linear-gradient(160deg, #1D3461, #3A5FA0); }

/* Reviews */
.review-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
blockquote {
  background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 1.25rem;
  padding: 1.5rem; box-shadow: 0 16px 36px rgba(0, 0, 0, .06); margin: 0;
}
blockquote .rating { color: var(--gold); font-weight: 800; margin-bottom: .6rem; letter-spacing: .05em; }
blockquote p { line-height: 1.65; color: rgba(0, 0, 0, .78); font-size: .96rem; }
blockquote cite { display: block; margin-top: 1rem; font-weight: 700; color: var(--accent); font-style: normal; }

/* Contact / hours */
.contact-box { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-panel { background: var(--dark); color: #fff; border-radius: 2rem; padding: 2.25rem; }
.contact-panel p, .contact-panel li { line-height: 1.7; }
.contact-panel a { text-decoration: underline; text-decoration-color: var(--gold); }
.map-embed { border-radius: 1.5rem; overflow: hidden; border: 0; width: 100%; height: 100%; min-height: 320px; }

footer { background: var(--dark); color: #fff; padding: 2.5rem 1rem 3rem; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
footer .foot-brand { font-family: 'Fredoka', system-ui, sans-serif; font-size: 1.3rem; }
footer p { margin: .2rem 0; color: rgba(255, 255, 255, .7); font-size: .9rem; }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15, 10, 20, .65);
  display: none; align-items: center; justify-content: center; padding: 1rem; z-index: 60;
}
.modal-backdrop.open { display: flex; }
.modal-card {
  background: var(--paper); color: var(--ink); border-radius: 1.5rem; max-width: 440px; width: 100%;
  padding: 1.75rem; box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}
.modal-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal-close {
  border: 0; background: rgba(0, 0, 0, .08); border-radius: 999px; width: 2.1rem; height: 2.1rem;
  font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--ink);
}
.modal-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.4rem; }

@media (max-width: 900px) {
  .hero .wrap, .split, .contact-box, .menu-cats { grid-template-columns: 1fr; }
  .card-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a:not(.button) { display: none; }
  .menu-section { padding: 2.25rem 1.5rem; }
}
