@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --red: #C8102E;
  --red-dark: #8F0B21;
  --orange: #F5793D;
  --orange-dark: #D9601F;
  --peach: #F5B090;
  --peach-light: #FBE0CF;
  --cream: #FDF6EC;
  --cream-deep: #F7EAD6;
  --ink: #2B2118;
  --ink-soft: #5B4A3D;
  --white: #FFFFFF;
  --line: #EADFCB;

  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-card: 0 10px 30px -12px rgba(43, 33, 24, 0.25);
  --shadow-pop: 0 6px 16px -6px rgba(200, 16, 46, 0.35);

  --container: 1160px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 0.5em;
  line-height: 1.15;
  color: var(--red-dark);
}

p { line-height: 1.65; margin: 0 0 1em; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.section--cream { background: var(--cream); }
.section--deep { background: var(--cream-deep); }
.section--red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}
.section--red h2, .section--red h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--peach-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head p { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn--secondary {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
}
.btn--secondary:hover { background: var(--peach-light); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

.btn--sm { padding: 10px 18px; font-size: 0.9rem; }

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  color: var(--red-dark);
}
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.05rem; }
.brand-text span { font-size: 0.75rem; color: var(--orange-dark); font-weight: 600; letter-spacing: 0.04em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 150ms ease, color 150ms ease;
}
.main-nav a:hover { background: var(--peach-light); color: var(--red-dark); }
.main-nav a.is-active { background: var(--red); color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--red-dark);
}
.header-phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--red-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 20px 80px;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 18px;
}
.hero-copy h1 span { color: var(--orange); }
.hero-copy p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-badge svg { width: 22px; height: 22px; color: var(--orange); flex: none; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
}
.hero-rating {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-rating svg { width: 30px; height: 30px; color: var(--orange); flex: none; }
.hero-rating strong { display: block; font-family: var(--font-head); color: var(--red-dark); font-size: 1.05rem; }
.hero-rating span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Feature strip ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.feature-card svg {
  width: 40px; height: 40px;
  color: var(--red);
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Favorites / cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px rgba(43,33,24,0.35); }
.dish-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dish-card-body { padding: 18px 20px 22px; }
.dish-card-body h3 { font-size: 1.05rem; margin-bottom: 4px; display: flex; justify-content: space-between; gap: 10px; }
.dish-card-body .price { color: var(--red); }
.dish-card-body p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ---------- Testimonial ---------- */
.testimonial-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.testimonial-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.testimonial-stat .big-num {
  font-family: var(--font-head);
  font-size: 3.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-stat .stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 12px; }
.testimonial-stat .stars svg { width: 22px; height: 22px; color: var(--orange); }
.testimonial-stat p { color: rgba(255,255,255,0.85); margin: 0; }
.testimonial-stat a { color: var(--white); text-decoration: underline; font-weight: 700; }

.testimonial-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--white);
}
.testimonial-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  display: block;
}
.testimonial-quote span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ---------- Gallery preview grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid a { border-radius: var(--radius-sm); overflow: hidden; display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid .tall { grid-row: span 2; }

/* ---------- Visit / location ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: none; }
.info-list svg { width: 24px; height: 24px; color: var(--red); flex: none; margin-top: 2px; }
.info-list strong { display: block; font-family: var(--font-head); color: var(--red-dark); margin-bottom: 2px; }
.info-list span, .info-list p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--red-dark); }
.hours-table tr.is-today td { color: var(--red); font-weight: 800; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: none;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand strong { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; display: block; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--orange); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--white);
  font-weight: 700;
}
.footer-social svg { width: 20px; height: 20px; color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.85rem;
}

/* ---------- Menu page ---------- */
.menu-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 56px 0 34px;
  text-align: center;
}
.menu-hero h1 { color: var(--white); }
.menu-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

.menu-nav-wrap {
  position: sticky;
  top: 77px;
  z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 14px -10px rgba(0,0,0,0.2);
}
.menu-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
  scrollbar-width: thin;
}
.menu-nav a {
  flex: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.menu-nav a:hover, .menu-nav a.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-category {
  padding: 46px 0;
  border-bottom: 1px dashed var(--line);
  scroll-margin-top: 150px;
}
.menu-category:last-child { border-bottom: none; }
.menu-category-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.menu-category-head h2 { margin: 0; font-size: 1.6rem; }
.menu-category-note { color: var(--ink-soft); font-size: 0.9rem; margin: -14px 0 22px; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 36px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
}
.menu-item .name { font-weight: 700; color: var(--ink); }
.menu-item .desc { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; margin-top: 2px; }
.menu-item .price { font-family: var(--font-head); color: var(--red); font-weight: 600; white-space: nowrap; }

.menu-item-sub { color: var(--ink-soft); font-size: 0.85rem; margin-left: 6px; }

.combo-callout {
  background: var(--peach-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.combo-callout .pick { font-family: var(--font-head); font-weight: 600; color: var(--red-dark); }
.combo-callout .pick strong { color: var(--red); font-size: 1.1rem; margin-left: 6px; }

.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 10px 0 6px;
}
.menu-photo-strip img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; }

/* ---------- Gallery page ---------- */
.masonry {
  columns: 4;
  column-gap: 16px;
}
.masonry .m-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.masonry .m-item img { width: 100%; display: block; }

/* ---------- Page header (about/gallery) ---------- */
.page-hero {
  background: var(--cream-deep);
  padding: 52px 0;
  text-align: center;
}
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* ---------- Story split ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }

/* ---------- Reviews page bits ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-card);
}
.review-card .stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-card .stars svg { width: 18px; height: 18px; color: var(--orange); }
.review-card p { color: var(--ink-soft); }
.review-card .who { font-family: var(--font-head); font-weight: 600; color: var(--red-dark); font-size: 0.95rem; }

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

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--red);
  padding: 12px 20px;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.25);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.mobile-call-bar svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-wrap { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 3; }
  .menu-items { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-phone span.phone-text { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn--sm-label { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .masonry { columns: 2; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 64px; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Nav (mobile open state) ---------- */
body.nav-open .main-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--cream);
  padding: 12px 20px 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
body.nav-open .main-nav a { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
