:root {
  --pink: #d81b7a;
  --pink-dark: #a3115a;
  --pink-deep: #7d0d45;
  --pink-pale: #fdf0f5;
  --ink: #241820;
  --ink-soft: #5a4a52;
  --cream: #fffaf9;
  --gold: #c9a24b;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin: 0 0 10px;
}

.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
}

h2 { font-size: 2.6rem; }
h3 { font-size: 1.5rem; color: var(--pink-dark); }

.section { padding: 90px 0; }
.section-alt { background: var(--pink-pale); }
.section-lede {
  max-width: 640px;
  margin: -6px auto 50px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Top strip */
#top-strip {
  background: var(--ink);
  color: #f4d9e6;
  text-align: center;
  font-size: 0.78rem;
  padding: 7px 10px;
  letter-spacing: 0.03em;
}
#top-strip a { color: #fff; font-weight: 600; }

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(216, 27, 122, 0.12);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--pink);
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: 0.01em;
}
#main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
#main-nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
#main-nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
#main-nav a:not(.nav-cta):hover:after { width: 100%; }
.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }

#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
#nav-toggle span {
  width: 26px; height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,10,20,0.55) 0%, rgba(60,10,35,0.45) 45%, rgba(20,5,15,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: 0 24px;
}
.hero .eyebrow {
  color: #f6c9de;
  font-size: 0.85rem;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  margin: 6px 0 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 34px;
  color: #fbe6f0;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--pink-deep); transform: translateY(-2px); }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.88rem;
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(125, 13, 69, 0.35);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-img-sub {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 45%;
  border: 6px solid var(--cream);
  border-radius: 6px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
  height: 220px;
  object-fit: cover;
}
.about-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.about-facts {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.about-facts li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pink-dark);
  padding-left: 22px;
  position: relative;
}
.about-facts li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.8rem;
}

/* Menu */
.menu-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.menu-showcase figure {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.menu-showcase img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-showcase figure:hover img { transform: scale(1.08); }
.menu-showcase figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(20,5,15,0.85), transparent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 30px 16px 14px;
  text-align: center;
}
.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.menu-col h3 {
  border-bottom: 2px solid var(--pink);
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(216,27,122,0.2);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.menu-list li span:first-child { flex: 1; }
.price {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--pink-dark);
  white-space: nowrap;
}
.menu-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Reviews */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}
.rating-score {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
}
.stars-large { font-size: 1.8rem; color: var(--gold); letter-spacing: 3px; }
.stars-large .half {
  background: linear-gradient(90deg, var(--gold) 50%, #ddd 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating-details p { margin: 6px 0 0; color: var(--ink-soft); font-size: 0.92rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(216,27,122,0.12);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 12px 30px -18px rgba(125,13,69,0.25);
}
.review-card .stars { display: block; margin-bottom: 14px; font-size: 1rem; }
.review-card p {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--ink);
  margin: 0 0 16px;
  font-style: italic;
}
.reviewer {
  font-size: 0.8rem;
  color: var(--pink-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px -16px rgba(125,13,69,0.4);
}
.gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img:nth-child(8) { grid-column: span 2; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-copy p { color: var(--ink-soft); }
.location-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 30px 0;
}
.location-facts h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin: 0 0 8px;
}
.location-facts p { margin: 0; font-size: 0.92rem; color: var(--ink); }
.location-facts a { color: var(--pink-dark); font-weight: 600; }
.social-links { display: flex; gap: 18px; }
.social-links a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--pink-dark);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 2px;
}
.location-map {
  height: 460px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(125,13,69,0.35);
}

/* Footer */
#site-footer {
  background: var(--ink);
  color: #eadde2;
  padding: 60px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand p { margin: 0; font-size: 0.85rem; color: #cbb7c1; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a, .footer-contact a { font-size: 0.85rem; color: #eadde2; }
.footer-links a:hover, .footer-contact a:hover { color: var(--pink); }
.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: #a68c96;
  margin: 24px 0 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,5,10,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
#lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-img-sub { position: static; width: 100%; height: 260px; margin-top: 20px; }
  .about-img-main { height: 340px; }
  .menu-columns { grid-template-columns: 1fr; gap: 40px; }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid img:nth-child(1) { grid-column: span 2; }
  .location-facts { grid-template-columns: 1fr; }
  .location-map { height: 320px; }
}

@media (max-width: 760px) {
  #main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  #main-nav.open { transform: translateX(0); }
  #nav-toggle { display: flex; }
  .nav-cta { margin-top: 10px; }
  h2 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
}
