@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400&family=Marck+Script&display=swap');

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arvo', serif;
  color: #333333;
  background: #fff;
  line-height: 1.5em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Variables ───────────────────────────────────── */
:root {
  --gold:       #F0D579;
  --black:      #000000;
  --body-text:  #333333;
  --mid:        #757575;
  --cream:      #faf6f0;
  --dark:       #1a1a1a;
  --gallery-bg: #3a3a3a;
  --footer-bg:  #353638;
  /* kept for page-specific accents — will be updated in later specs */
  --wine:       #7b1c2e;
  --wine-dk:    #5a1220;
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Arvo', serif;
  line-height: 1.25;
}
h1 { font-size: 4em;   font-weight: 700; }
h2 { font-size: 2.5em; font-weight: 700; }
@media (max-width: 767px) {
  h1 { font-size: 1.8em; }
  h2 { font-size: 2.1em; }
}

/* ── Utility ─────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark); color: #fff; }
.section--wine  { background: var(--wine); color: #fff; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Arvo', serif;
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-rule {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 2.5rem;
}
.btn-dark {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  padding: 10px 40px;
  font-family: 'Arvo', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.btn-dark:hover {
  background: transparent;
  color: #000000;
}
.btn-gold {
  display: inline-block;
  background: #F0D579;
  color: #000000;
  border: 2px solid #F0D579;
  padding: 10px 40px;
  font-family: 'Arvo', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.btn-gold:hover {
  background: transparent;
  color: #F0D579;
  border-color: #F0D579;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #000000;
  height: 131px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff;
  transition: height .3s ease;
}
.nav--scrolled { height: 100px; }
.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.nav__menu { display: contents; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1 1 0;
  justify-content: flex-end;
}
.nav__links--left { order: 1; }
.nav__links--right { order: 3; justify-content: flex-start; }
.nav__links li a {
  display: block;
  color: #ffffff;
  font-family: 'Arvo', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0 8px;
  line-height: 20px;
  transition: color .2s;
  white-space: nowrap;
}
.nav__links li a:hover,
.nav__links li a.active { color: #F0D579; }
.nav__logo {
  order: 2;
  flex: 0 0 100px;
  display: flex;
  justify-content: center;
}
.nav__logo img { height: 101px; display: block; transition: height .3s ease; }
.nav--scrolled .nav__logo img { height: 80px; }
.nav__social {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex; gap: 8px; align-items: center;
}
.nav__social a {
  color: #ffffff;
  font-size: 15px;
  transition: color .2s;
  padding: 4px;
}
.nav__social a:hover { color: #F0D579; }

/* Hamburger */
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

/* ── Hero Video ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 560px;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video-controls {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; gap: 8px; z-index: 10;
}
.hero__play-btn, .hero__volume-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff; border: none; cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero__play-btn:hover, .hero__volume-btn:hover { background: rgba(0,0,0,0.8); }

/* ── Announce bar ────────────────────────────────── */
.announce {
  background: var(--wine);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  font-size: .88rem;
  letter-spacing: .04em;
}
.announce a { color: var(--gold); font-weight: 700; }

/* ── Quick Info ──────────────────────────────────── */
.quick-info {
  background: var(--dark); color: #fff;
  padding: 36px 0;
}
.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.quick-info__item .label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .5rem;
}
.quick-info__item p { font-size: .95rem; line-height: 1.6; }

/* ── About ───────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 2px;
}
.about-split p { color: var(--mid); margin-bottom: 1.2rem; }

/* About slideshow */
.about-slides { position: relative; overflow: hidden; border-radius: 2px; }
.about-slides img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease;
}
.about-slides img.active { opacity: 1; position: relative; }

/* ── Services ────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.service-card__img {
  height: 200px; background-size: cover; background-position: center;
  background-color: #ddd;
}
.service-card__body { padding: 1.5rem; }
.service-card__body h3 {
  font-size: 1.25rem; margin-bottom: .5rem;
}
.service-card__body p { font-size: .9rem; color: var(--mid); margin-bottom: 1.2rem; }

/* ── Hours / Contact ─────────────────────────────── */
.hours-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td {
  padding: .5rem 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hours-table tr td:last-child { text-align: right; color: var(--gold); }

.review-by-google {
  font-family: 'Marck Script', cursive;
  font-size: 1.4rem;
  color: var(--mid);
  margin-bottom: .5rem;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 2px;
  border-top: 3px solid var(--wine);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.testimonial__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial__text {
  font-style: italic; color: var(--mid);
  font-size: .95rem; margin-bottom: 1rem;
  font-family: 'Arvo', serif;
}
.testimonial__author { font-weight: 700; font-size: .85rem; }

/* ── Menu Page ───────────────────────────────────── */
.menu-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 2px solid #eee;
  padding-bottom: .75rem;
}
.menu-tab {
  background: none; border: none; cursor: pointer;
  font-family: 'Arvo', serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1.2rem;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -1rem;
  transition: color .2s, border-color .2s;
}
.menu-tab.active, .menu-tab:hover {
  color: var(--wine); border-color: var(--wine);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category { margin-bottom: 3rem; }
.menu-category__title {
  font-size: 1.5rem; color: var(--wine);
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #e8d8cc;
}
.menu-category__note {
  font-size: .82rem; color: var(--mid);
  margin-bottom: 1.2rem; font-style: italic;
}
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.menu-item {
  display: flex; justify-content: space-between;
  gap: 1rem; padding: .75rem 0;
  border-bottom: 1px dotted #e0d0c0;
}
.menu-item__info { flex: 1; }
.menu-item__name { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.menu-item__desc { font-size: .82rem; color: var(--mid); }
.menu-item__price { font-weight: 700; color: var(--wine); white-space: nowrap; }
.menu-item__price--multi { text-align: right; font-size: .85rem; }

/* ── Events ──────────────────────────────────────── */
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.event-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.event-card__date {
  background: var(--wine); color: #fff;
  padding: 1rem 1.5rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.event-card__body { padding: 1.5rem; }
.event-card__body h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.event-card__time { font-size: .85rem; color: var(--gold); font-weight: 700; margin-bottom: .75rem; }
.event-card__body p { font-size: .9rem; color: var(--mid); }

/* ── Page Hero ───────────────────────────────────── */
.page-hero {
  height: 340px;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: flex-end;
  margin-top: 84px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.15) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  color: #fff; padding: 2.5rem 0;
}
.page-hero__content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { }
.contact-info__item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-info__icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--wine); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info__text strong { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.contact-info__text a:hover { color: var(--wine); }
.map-wrapper { border-radius: 2px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.map-wrapper iframe { width: 100%; height: 380px; border: none; }

/* ── Catering ────────────────────────────────────── */
.catering-intro { max-width: 680px; margin-bottom: 3rem; }
.catering-intro p { color: var(--mid); margin-bottom: 1rem; }
.catering-category { margin-bottom: 2.5rem; }
.catering-category__title {
  font-size: 1.3rem; color: var(--wine);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #e8d8cc;
}
.catering-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0;
  border-bottom: 1px dotted #e0d0c0;
  gap: 1rem;
}
.catering-item__name { font-weight: 700; }
.catering-item__prices { text-align: right; color: var(--wine); font-size: .9rem; font-weight: 700; white-space: nowrap; }

/* ── Party / Reservations ────────────────────────── */
.info-section { max-width: 680px; }
.info-section p { color: var(--mid); margin-bottom: 1.2rem; }
.info-section h2 { margin-bottom: 1rem; }
.info-section .btn { margin-top: 1rem; }
.placeholder-box {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--mid);
  margin-top: 2rem;
}
.placeholder-box p { margin-bottom: 1rem; }

/* ── Footer ──────────────────────────────────────── */
.footer-map-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #F0D579;
}
.footer-newsletter {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-right: 1px solid #8b8b8b;
}
.footer-newsletter__content {
  width: 80%;
  max-width: 560px;
  padding: 10px 60px 30px 30px;
  text-align: left;
}
.footer-newsletter h2 {
  font-family: 'Arvo', serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 46px;
}
.footer-newsletter p {
  color: #000000;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 36px;
  max-width: 460px;
}
.footer-newsletter__form label {
  display: block;
  color: #000000;
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-newsletter__row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.footer-newsletter__row input {
  flex: 1 1 auto;
  min-width: 0;
  height: 47px;
  padding: 10px 5px;
  border: 0;
  border-bottom: 2px solid #000000;
  background: transparent;
  color: #000000;
  font-family: 'Arvo', serif;
  font-size: 1.05em;
  font-weight: 700;
  outline: none;
}
.footer-newsletter__row input::placeholder { color: #000000; opacity: 1; }
.footer-newsletter__row button {
  min-width: 160px;
  height: 47px;
  border: 0;
  background: #000000;
  color: #ffffff;
  font-family: 'Arvo', serif;
  font-size: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-map {
  min-height: 520px;
  background: #dddddd;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}
.footer {
  background: #000000;
  color: #ffffff;
  min-height: 359px;
  padding: 60px 0 77px;
  font-family: 'Arvo', serif;
  font-size: 16.8px;
  line-height: 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  max-width: 1050px;
}
.footer__grid > div {
  display: table;
  width: auto;
  margin: 0 auto;
}
.footer-heading {
  font-family: 'Arvo', serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 1em;
}
.footer p {
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 20px;
}
.footer a { color: #ffffff; text-decoration: none; }
.footer a:hover { color: #ffffff; text-decoration: underline; }
.footer-social {
  display: flex;
  gap: 22px;
  margin-bottom: 3em;
}
.footer-social a {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}
.footer__contact-block p { margin-bottom: 5px; }
#accessibility-footer {
  padding: 20px 5px;
  background: #353638;
  color: #ffffff;
  text-align: center;
  font-family: 'Arvo', serif;
  font-size: 14px;
}
#accessibility-footer p {
  margin: 0;
  color: #ffffff;
}
#accessibility-footer .accessibility-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}
.bottom-navbar {
  display: none;
}

/* ── Scroll-top ──────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wine); color: #fff; border: none; cursor: pointer;
  font-size: 1.1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .about-split      { grid-template-columns: 1fr; }
  .about-split img  { height: 300px; }
  .hours-contact    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-map-newsletter { grid-template-columns: 1fr; }
  .footer-newsletter,
  .footer-map,
  .footer-map iframe { min-height: 420px; }
  .footer-newsletter {
    justify-content: center;
    border-right: 0;
  }
  .footer-newsletter__content {
    width: 100%;
    max-width: 620px;
    padding: 60px 30px;
  }
  .footer-newsletter h2 { font-size: 3em; margin-bottom: 30px; }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
  .nav__links li a  { font-size: 11px; padding: 0 8px; }
  .nav__logo img    { height: 72px; }
}
@media (max-width: 760px) {
  .nav__menu, .nav__social { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { padding: 0 16px; justify-content: space-between; }
  .nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav__menu.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(10,10,10,.98);
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 999;
  }
  .nav__menu.open .nav__links { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
  .nav__menu.open .nav__links li a { font-size: 1.1rem; padding: .5rem 0; line-height: normal; }
  .footer-newsletter__row { flex-direction: column; align-items: stretch; }
  .footer-newsletter__row button { width: 100%; }
  .footer__grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer { padding: 45px 0 90px; }
  .bottom-navbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: block;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,.3);
  }
  .bottom-navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .bottom-navbar li { flex: 1 1 20%; min-width: 0; }
  .bottom-navbar a {
    display: block;
    padding: 14px 4px;
    color: #ffffff;
    font-family: 'Arvo', serif;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }
  #accessibility-footer { padding-bottom: 70px; }
  #accessibility-footer .accessibility-link { display: block; }
  .hero__actions { flex-direction: column; align-items: center; }
  .menu-items    { grid-template-columns: 1fr; }
  .content-cards { grid-template-columns: 1fr; height: auto; }
  .content-card  { height: 280px; }
  .eat-drink-enjoy { height: 360px; }
}

/* ── Reservations CTA ────────────────────────────── */
.reservations-cta {
  background: #F0D579;
  text-align: center;
  padding: 60px 20px;
}
.reservations-cta h2 {
  font-family: 'Arvo', serif;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 5px;
}
.reservations-cta h3 {
  font-family: 'Arvo', serif;
  font-size: 1.4em;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}
.reservations-cta p {
  font-size: 1em;
  color: #333;
  margin-bottom: 25px;
}

/* ── Content Cards ───────────────────────────────── */
.content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 400px;
}
.content-card {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.card-overlay {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 30px;
  width: 100%;
  text-align: center;
}
.card-overlay h3 {
  font-family: 'Arvo', serif;
  font-size: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-overlay p {
  font-size: .95em;
  margin-bottom: 16px;
}

/* ── Video Section ───────────────────────────────── */
.video-section {
  background: #000;
  text-align: center;
  padding: 40px 0;
}
.video-section video {
  max-width: 900px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* ── Photo Gallery ───────────────────────────────── */
.photo-gallery {
  background: #3a3a3a;
  padding: 40px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.gallery-item:hover img { opacity: 0.8; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 36px; background: none; border: none;
  color: #fff; cursor: pointer; line-height: 1;
}

/* ── Reviews Section ─────────────────────────────── */
.reviews-section {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.reviews-section h2 {
  font-family: 'Arvo', serif;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.reviews-subtitle {
  font-family: 'Marck Script', cursive;
  font-size: 1.5em;
  color: #cccccc;
  margin-bottom: 30px;
}
.reviews-carousel { position: relative; min-height: 140px; }
.review-item {
  display: none;
}
.review-item.active { display: block; }
.review-stars {
  color: #F0D579;
  font-size: 1.4em;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-quote {
  font-size: 1.15em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
  font-style: italic;
}
.review-quote::before { content: '\00AB\00A0'; font-size: 1.5em; color: #F0D579; }
.review-quote::after  { content: '\00A0\00BB'; font-size: 1.5em; color: #F0D579; }
.reviews-dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.reviews-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; display: inline-block;
  transition: background .3s;
}
.reviews-dot.active { background: #F0D579; }

/* ── Eat. Drink. Enjoy. ──────────────────────────── */
.eat-drink-enjoy {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.ede-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.ede-slide.active { opacity: 1; }
.ede-prev, .ede-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff; border: none;
  font-size: 40px;
  padding: 10px 18px;
  cursor: pointer; z-index: 10;
  line-height: 1;
}
.ede-prev { left: 15px; }
.ede-next { right: 15px; }
.ede-prev:hover, .ede-next:hover { background: rgba(0,0,0,0.65); }
.ede-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.ede-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer; display: inline-block;
  transition: background .3s;
}
.ede-dot.active { background: #fff; }

/* ── Newsletter ──────────────────────────────────── */
.newsletter-section {
  background: #F0D579;
  text-align: center;
  padding: 60px 20px;
}
.newsletter-section h2 {
  font-family: 'Arvo', serif;
  font-size: 2em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 10px;
}
.newsletter-section p {
  color: #333;
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  padding: 10px 20px;
  font-family: 'Arvo', serif;
  font-size: 14px;
  border: 2px solid #000;
  min-width: 280px;
  outline: none;
}

/* ── Promo Modal ─────────────────────────────────── */
.promo-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.promo-modal-box {
  background: #F0D579;
  max-width: 560px;
  width: 90%;
  padding: 40px;
  position: relative;
  text-align: center;
}
.promo-modal-close {
  position: absolute; top: 10px; right: 15px;
  font-size: 24px; background: none; border: none;
  cursor: pointer; color: #000; line-height: 1;
}
.promo-modal-box h2 {
  font-family: 'Arvo', serif;
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000;
}
.promo-modal-box p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   SPECS 04–10  Page-specific styles
   ═══════════════════════════════════════════════════ */

/* ── About Page (spec-04) ──────────────────────────── */
.about-header {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 450px;
  margin-top: 100px;
}
.about-name {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 60px;
}
.about-name h1 {
  font-size: 3em;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  text-transform: uppercase;
}
.about-slideshow {
  position: relative;
  overflow: hidden;
}
.about-slides-inner {
  position: absolute;
  inset: 0;
}
.about-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.about-slide.active { opacity: 1; }
.about-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.about-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  display: inline-block;
  transition: background .3s;
}
.about-dot.active { background: #fff; }

.about-story {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.about-story h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin-bottom: 30px;
}
.about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
}
.about-text p { margin-bottom: 18px; }

.about-map { display: block; line-height: 0; }
.about-map iframe { display: block; width: 100%; border: 0; }

/* ── Menu Page (spec-05) ────────────────────────────── */
.menu-page { margin-top: 100px; }
.menu-tabs-bar {
  display: flex;
  justify-content: center;
  background: #f8f8f8;
  border-bottom: 2px solid #e0e0e0;
  padding: 0 20px;
}
.menu-tabs-bar .menu-tab {
  margin-bottom: -2px;
  padding: 16px 24px;
}
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
.menu-cat-title {
  font-size: 1.15em;
  font-weight: 700;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8d8cc;
}
.menu-col > .menu-cat-title:first-child { margin-top: 0; }
.menu-cat-note {
  display: block;
  font-size: 0.82em;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 10px;
}
.menu-item.with-photo {
  align-items: flex-start;
}
.menu-item.with-photo img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

/* ── Events Page (spec-06) ──────────────────────────── */
.page-header {
  text-align: center;
  padding: 50px 20px 30px;
  background: #ffffff;
  margin-top: 100px;
}
.page-header h1 {
  font-size: 3em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
}
.featured-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.featured-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-event-details {
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-event-details h2 {
  font-size: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.event-recurrence {
  font-size: 1em;
  font-weight: 700;
  color: #555;
  margin-bottom: 15px;
}
.event-description {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}
.event-time { font-size: 0.9em; color: #777; }
.events-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}
.event-item {
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.event-item:last-child { border-bottom: none; }
.event-item h2 {
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin-bottom: 8px;
}
.event-date-line {
  font-size: 1em;
  font-weight: 700;
  color: #555;
  margin-bottom: 12px;
}
.event-desc {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}
.event-time-line { font-size: 0.9em; color: #777; }

/* ── Parties Page (spec-07) ─────────────────────────── */
.parties-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  margin-top: 100px;
}
.parties-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.parties-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-line1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  font-style: italic;
}
.hero-line2 { font-size: 1.3em; color: #ddd; }
.parties-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  align-items: start;
}
.parties-info-content h2 {
  font-size: 2em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.parties-info-content p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}
.parties-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 25px;
}
.parties-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ── Shared Form Styles ──────────────────────────────── */
.party-form .form-group,
.catering-form .form-group,
.reservations-form .form-group { margin-bottom: 18px; }

.party-form label,
.catering-form label,
.reservations-form label {
  display: block;
  font-size: 0.85em;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.party-form input,
.party-form select,
.party-form textarea,
.catering-form input[type="text"],
.catering-form input[type="tel"],
.catering-form input[type="email"],
.reservations-form input,
.reservations-form select,
.reservations-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: 'Arvo', serif;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}
.party-form .form-row,
.reservations-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-group-checkbox .checkbox-label {
  display: flex;
  gap: 12px;
  font-size: 0.8em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.5;
  align-items: flex-start;
  letter-spacing: 0;
  cursor: pointer;
}
.form-group-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Catering Page (spec-08) ────────────────────────── */
.catering-hero {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  margin-top: 100px;
}
.catering-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.catering-hero-overlay h1 {
  font-size: 3em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.catering-form-section { background: #fff; padding: 60px 20px; }
.catering-form-wrapper { max-width: 600px; margin: 0 auto; }
.catering-intro-text {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ── Contact Page (spec-09) ─────────────────────────── */
.contact-header {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 100px;
}
.contact-header h1 {
  font-size: 3em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 15px;
}
.contact-phone,
.contact-email { font-size: 1.1em; color: #ddd; margin-bottom: 6px; }
.contact-email a { color: #F0D579; }
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}
.contact-detail-block h3 {
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
}
.contact-detail-block p,
.contact-detail-block address {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 10px;
}
.contact-photo { display: block; line-height: 0; }
.contact-photo img { width: 100%; height: auto; display: block; }

/* ── Reservations Page (spec-10) ────────────────────── */
.reservations-hero {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  margin-top: 100px;
}
.reservations-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservations-hero-overlay h1 {
  font-size: 3em;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.reservations-form-section { background: #fff; padding: 60px 20px; }
.reservations-form-wrapper { max-width: 700px; margin: 0 auto; }
.reservations-form-wrapper h2 {
  font-size: 2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.reservations-form-wrapper p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

/* ── Form Success Pages ──────────────────────────────── */
.form-success {
  min-height: calc(100vh - 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  margin-top: 100px;
  background: #fff;
}
.form-success h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.form-success p {
  font-size: 1.1em;
  color: #555;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ── Responsive — specs 04–10 ───────────────────────── */
@media (max-width: 900px) {
  .about-header    { grid-template-columns: 1fr; }
  .about-name      { padding: 40px 30px; min-height: 200px; }
  .about-slideshow { min-height: 300px; }
  .featured-event  { grid-template-columns: 1fr; }
  .featured-event-image img { height: 280px; }
  .parties-info    { grid-template-columns: 1fr; }
  .menu-columns    { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-name h1          { font-size: 2em; }
  .contact-details-grid   { grid-template-columns: 1fr; gap: 20px; }
  .parties-hero           { height: 320px; }
  .catering-hero          { height: 280px; }
  .reservations-hero      { height: 280px; }
  .party-form .form-row,
  .reservations-form .form-row { grid-template-columns: 1fr; }
}
