/* ---------- Base ---------- */
:root {
  --pink: #e8175d;
  --pink-dark: #b8104a;
  --pink-light: #fff0f5;
  --cream: #fffaf6;
  --ink: #2b1220;
  --ink-soft: #5c4351;
  --cta: #ff5a36;
  --cta-dark: #e4431f;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(184, 16, 74, 0.15);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  margin: 0 0 0.5em;
  color: var(--pink-dark);
}

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

a { color: var(--pink-dark); text-decoration: none; }

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

.section-eyebrow {
  color: var(--cta);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.5em;
}
.section-eyebrow--center { text-align: center; }
.section-title--center { text-align: center; }
.section-subtitle {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.stars { color: #ffb400; letter-spacing: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.75em 1.6em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 1rem;
}

.btn--cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 90, 54, 0.4);
}
.btn--cta:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 90, 54, 0.5);
}

.btn--large { padding: 1em 2.2em; font-size: 1.1rem; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: calc(0.75em - 2px) calc(1.6em - 2px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__brand {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.navbar__strawberry { font-size: 1.5rem; }
.navbar__brand-accent { color: var(--cta); }

.navbar__nav {
  display: flex;
  gap: 24px;
  font-weight: 700;
}
.navbar__nav a {
  color: var(--ink);
}
.navbar__nav a:hover { color: var(--pink); }

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px 20px;
  background: #fff;
}
.mobile-nav a {
  color: var(--ink);
  font-weight: 700;
  padding: 6px 0;
}
.mobile-nav.is-open { display: flex; }

@media (max-width: 860px) {
  .navbar__nav, .navbar__inner > .btn--cta { display: none; }
  .navbar__toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(184,16,74,0.75) 0%, rgba(43,18,32,0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #ffd9e6;
  margin-bottom: 1em;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.6em;
}
.hero__subtitle {
  font-size: 1.15rem;
  margin-bottom: 2em;
  color: #fce9ef;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}
.hero__rating {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  flex-wrap: wrap;
}

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about__wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .about__wrap { grid-template-columns: 1fr; }
  .about__image { order: -1; }
}

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--pink-light); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-bottom: 20px;
}
.menu-card__img {
  height: 190px;
  background-size: cover;
  background-position: center;
}
.menu-card h3 { padding: 18px 20px 0; font-size: 1.25rem; }
.menu-card__desc { padding: 8px 20px 0; color: var(--ink-soft); font-size: 0.96rem; }
.menu__cta { text-align: center; margin-top: 48px; }

@media (max-width: 860px) {
  .menu__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .menu__grid { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(43,18,32,0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 24px 12px 10px;
}

@media (max-width: 860px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--pink-light); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin: 0;
}
.review-card p { color: var(--ink-soft); margin: 14px 0 0; }
.review-card footer { margin-top: 16px; font-weight: 800; color: var(--pink-dark); }

@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ---------- Hours & Location ---------- */
.hours { padding: 90px 0; }
.hours__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hours__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
}
.hours__table th, .hours__table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #f1dce4;
  font-weight: 700;
}
.hours__table td { color: var(--ink-soft); font-weight: 600; text-align: right; }
.hours__contact { margin-bottom: 28px; }
.hours__contact a { font-weight: 800; }
.hours__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}

@media (max-width: 860px) {
  .hours__wrap { grid-template-columns: 1fr; }
  .hours__map { order: -1; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #f7dbe4;
  padding: 56px 0 32px;
  text-align: center;
}
.footer__wrap > * + * { margin-top: 12px; }
.footer__brand {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.footer a { color: #ffb9cf; }
.footer .btn--cta { margin-top: 16px; }
.footer__copy { font-size: 0.85rem; opacity: 0.7; margin-top: 24px; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 18, 32, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { margin-bottom: 0.6em; font-size: 1.5rem; }
.modal p { color: var(--ink-soft); margin-bottom: 1.6em; }
.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.modal__close:hover { color: var(--pink-dark); }
