/* ============================================================
   BELLA & BRAVA – Main Stylesheet
   Colors: Deep Blue (#28313a) + Cream (#f5ede0) + Gold (#c8a86b)
   ============================================================ */

:root {
  --forest: #28313a;
  --forest-deep: #1a2229;
  --forest-mid: #374757;
  --cream: #f5ede0;
  --cream-warm: #ede0c8;
  --cream-soft: #faf5ee;
  --gold: #c8a86b;
  --gold-light: #e2c998;
  --text-dark: #1a1a1a;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 20px; }

body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  background: var(--cream-soft);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.8;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(26, 34, 41, 0.97);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 1;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-book {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--gold-light); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
/* ── GloriaFood override: nav ── */
span.glf-button.nav-order {
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
  display: inline-block !important;
  white-space: nowrap;
  position: relative;
}
span.glf-button.nav-order::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
  margin-top: 2px;
}
span.glf-button.nav-order:hover { opacity: 1 !important; }
span.glf-button.nav-order:hover::after { transform: scaleX(1); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(245,237,224,0.6);
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  font-weight: 300;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-hero-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(245,237,224,0.75);
  text-decoration: none;
  padding: 1.1rem 0.5rem;
  transition: color 0.2s;
  display: inline-block;
}
.btn-hero-text:hover { color: var(--gold-light); }
/* ── GloriaFood override: hero ── */
span.glf-button.btn-order-hero {
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--forest-deep) !important;
  background: var(--cream) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 1.1rem 2.6rem !important;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block !important;
  white-space: nowrap;
}
span.glf-button.btn-order-hero:hover {
  background: var(--cream-warm) !important;
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(200,168,107,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(55,71,87,0.5) 0%, transparent 60%),
    linear-gradient(160deg, #0d1218 0%, #28313a 50%, #1a2229 100%);
}
.hero-ring {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,107,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
}
.hero-ring-2 {
  width: 700px; height: 700px;
  border-color: rgba(200,168,107,0.08);
  animation-delay: 1.5s;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.03); opacity: 0.6; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { display: block; font-style: italic; color: var(--gold); }
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-sub {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: #f5ede0;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s 1.4s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}
.scroll-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(200,168,107,0.6);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── AWARDS STRIP ── */
.awards-strip {
  background: var(--forest);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-light);
}
.award-icon { font-size: 1.4rem; }
.award-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--cream);
  opacity: 1;
}
.award-sep { width: 1px; height: 30px; background: rgba(200,168,107,0.3); }

/* ── SECTION SHARED ── */
section { padding: 6rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 300;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-deep);
}
.section-title em { font-style: italic; color: var(--forest); }
.gold-line { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* ── ABOUT ── */
.about { background: var(--cream-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
  color: #1e1812;
  margin-bottom: 1.6rem;
}
.about-text p strong { font-weight: 600; color: var(--forest); }
.about-images { position: relative; height: 480px; }
.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 72%; height: 370px;
  object-fit: cover;
  box-shadow: 20px 20px 60px rgba(18,38,25,0.2);
}
.about-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 52%; height: 260px;
  object-fit: cover;
  border: 6px solid var(--cream-soft);
  box-shadow: 10px 10px 40px rgba(18,38,25,0.15);
}
.about-badge {
  position: absolute;
  right: -1rem; bottom: 4rem;
  width: 100px; height: 100px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  z-index: 3;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  font-weight: 300;
  margin-top: 2px;
}

/* ── MENU SECTION ── */
.menu-section { background: var(--forest-deep); color: var(--cream); }
.menu-section .section-title { color: var(--cream); }
.menu-section .section-title em { color: var(--gold); }
.menu-intro {
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(245,237,224,0.95);
  max-width: 620px;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}
.full-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5px;
  background: rgba(200,168,107,0.1);
}
.menu-panel {
  background: rgba(18,38,25,0.8);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.menu-panel:hover { background: rgba(42,80,64,0.6); }
.menu-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.menu-panel:hover::before { transform: scaleX(1); }
.menu-panel.wide { grid-column: span 3; }
.menu-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
  font-weight: 300;
}
.menu-subheading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.25rem 0 0.7rem;
  font-weight: 300;
}
.menu-subheading:first-of-type { margin-top: 0; }
.menu-subheading span {
  color: rgba(245,237,224,0.7);
  display: inline-block;
  margin-left: 0.45rem;
  letter-spacing: 0.08em;
}
.menu-list {
  display: grid;
  gap: 1rem;
}
.menu-list.compact { gap: 0.85rem; }
.menu-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}
.menu-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(245,237,224,0.12);
}
.menu-list.compact .menu-item { padding-bottom: 0.75rem; }
.menu-item:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-item-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
}
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  color: var(--cream);
}
.menu-item span {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--gold-light);
  font-size: 0.82rem;
  white-space: nowrap;
}
.menu-item p {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(245,237,224,0.95);
  line-height: 1.65;
  margin-top: 0.35rem;
}
.drink-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.menu-note,
.menu-service-note {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.62);
}
.menu-note { margin-top: 1.8rem; }
.menu-service-note {
  max-width: 520px;
  line-height: 1.7;
}
.menu-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── EXPERIENCE ── */
.experience { background: var(--cream-warm); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.experience-visual { position: relative; }
.experience-img { width: 100%; height: 500px; object-fit: cover; display: block; }
.experience-overlay {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--forest);
  padding: 2rem 2.5rem;
  max-width: 240px;
}
.overlay-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.overlay-attr {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}
.features-list { list-style: none; margin-top: 2rem; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(28,58,42,0.1);
}
.features-list li:last-child { border-bottom: none; }
.feat-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 2px;
}
.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.35rem;
}
.feat-desc { font-size: 1.1rem; font-weight: 400; color: #1e1812; line-height: 1.8; }

/* ── REVIEWS ── */
.reviews { background: var(--forest); }
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.reviews .section-title { color: var(--cream); }
.reviews .section-title em { color: var(--gold); }
.reviews-score { text-align: right; }
.score-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.score-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.score-source {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.75);
  font-weight: 300;
  margin-top: 0.3rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,107,0.12);
  padding: 2.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.review-card:hover {
  border-color: rgba(200,168,107,0.35);
  background: rgba(255,255,255,0.06);
}
.review-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  display: block;
}
.review-text {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: #f5ede0;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.review-author {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.review-platform { font-size: 0.88rem; color: rgba(245,237,224,0.6); margin-top: 0.3rem; font-style: italic; }
.review-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.8rem; letter-spacing: 2px; }

/* ── AWARDS FULL ── */
.awards-full { background: var(--cream-soft); }
.awards-full .section-title,
.awards-full .section-label { text-align: center; }
.awards-full .gold-line { margin: 1.5rem auto; }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.award-card {
  background: var(--forest);
  padding: 2rem 1.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.award-card:hover { transform: translateY(-6px); }
.award-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.award-card-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.award-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.award-card-year {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

/* ── VISIT ── */
.visit { background: var(--forest-deep); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.visit .section-title { color: var(--cream); }
.visit .section-label { color: var(--gold); }
.visit .gold-line { background: var(--gold); }
.info-blocks { margin-top: 2rem; }
.info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200,168,107,0.1);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.info-block:last-child { border-bottom: none; }
.info-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,168,107,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.info-value { font-size: 1.2rem; color: #f5ede0; font-weight: 400; line-height: 1.8; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,168,107,0.1);
  margin-top: 2rem;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(200,168,107,0.12);
  grid-column: span 2;
}
.hours-day {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5ede0;
  font-weight: 400;
}
.hours-time { font-size: 1.15rem; color: var(--gold-light); font-style: italic; font-weight: 400; }
.hours-closed { color: rgba(245,237,224,0.65); font-style: italic; font-size: 1rem; }
.book-cta {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: rgba(200,168,107,0.06);
  border: 1px solid rgba(200,168,107,0.2);
  text-align: center;
}
.book-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.book-cta p { font-size: 1.1rem; color: rgba(245,237,224,0.9); font-weight: 400; margin-bottom: 1.8rem; line-height: 1.8; }
.book-email {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 1.1rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.book-email:hover { background: var(--gold-light); }
.book-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* ── GloriaFood override: visit ── */
span.glf-button.btn-order-visit {
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--forest-deep) !important;
  background: var(--gold) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 1.1rem 2.2rem !important;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block !important;
  white-space: nowrap;
}
span.glf-button.btn-order-visit:hover { background: var(--gold-light) !important; }

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 240px;
  overflow: hidden;
}
.photo-strip-item { overflow: hidden; position: relative; }
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.85);
}
.photo-strip-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* ── FOOTER ── */
footer { background: #080f0a; padding: 3.5rem 3rem; text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 1.05rem; font-style: italic; color: rgba(245,237,224,0.85); margin-bottom: 2rem; font-weight: 400; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.85);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.95rem; color: rgba(245,237,224,0.7); font-style: italic; }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 201;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile CTAs inside nav overlay — hidden on desktop */
.nav-mobile-ctas { display: none; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
  html { font-size: 18px; }

  /* Nav */
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-actions { display: none; } /* hidden on mobile — CTAs move into overlay */

  /* Full-screen nav overlay */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    position: fixed;
    inset: 0;
    background: rgba(26, 34, 41, 0.99);
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    color: var(--cream);
  }
  .nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200,168,107,0.2);
    width: 80%;
  }

  /* Mobile CTA buttons inside overlay */
  span.glf-button.nav-order-mobile {
    font-family: 'Josefin Sans', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--forest-deep) !important;
    background: var(--cream) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 1rem 2.4rem !important;
    cursor: pointer;
    display: block !important;
    text-align: center;
    width: 100%;
  }
  .nav-book-mobile {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200,168,107,0.5);
    padding: 1rem 2.4rem;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Sections */
  section { padding: 4rem 0; }
  .section-inner { padding: 0 1.5rem; }

  /* Grids → single column */
  .about-grid,
  .experience-grid,
  .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .full-menu { grid-template-columns: 1fr; }
  .menu-panel.wide { grid-column: auto; }
  .drink-columns { grid-template-columns: 1fr; gap: 1.25rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }

  /* About images */
  .about-images { height: auto; min-height: 280px; }
  .about-img-main { position: static; width: 100%; height: 260px; display: block; }
  .about-img-accent { display: none; }
  .about-badge { position: absolute; right: 1rem; bottom: 1rem; }

  /* Awards strip */
  .awards-strip { gap: 1.2rem; padding: 1.8rem 1.5rem; }
  .award-sep { display: none; }

  /* Hero */
  .hero-ring, .hero-ring-2 { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-ctas .btn-outline,
  .hero-ctas .btn-hero-text { width: auto; }

  /* Experience overlay */
  .experience-overlay { position: static; margin-top: 2rem; max-width: 100%; right: auto; bottom: auto; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .reviews-score { text-align: left; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
  html { font-size: 17px; }

  /* Nav */
  .nav-logo { font-size: 1.3rem; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-ctas { width: 100%; padding: 0 1rem; }
  span.glf-button.btn-order-hero,
  .hero-ctas .btn-outline {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }
  .btn-hero-text { display: block; text-align: center; }

  /* Awards strip — stack to 2 per row */
  .awards-strip { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 2rem 1.5rem; }
  .award-item { width: 100%; }

  /* Section titles */
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Full menu */
  .menu-panel { padding: 1.5rem; }
  .menu-heading { font-size: 0.78rem; }
  .menu-list.two-column { grid-template-columns: 1fr; }
  .menu-item-line { gap: 0.75rem; }
  .menu-item h4 { font-size: 1.1rem; }

  /* Awards grid → 1 column on very small */
  .awards-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .award-card { padding: 1.5rem 1rem; }

  /* Photo strip → 1 row of 2 */
  .photo-strip { grid-template-columns: 1fr 1fr; height: 180px; }

  /* Reviews */
  .review-card { padding: 2rem 1.2rem; }

  /* Visit section */
  .hours-grid { padding: 1.2rem; }
  .book-cta { padding: 1.8rem 1.2rem; }
  .book-cta-buttons { flex-direction: column; }
  span.glf-button.btn-order-visit,
  .book-email { width: 100% !important; text-align: center; display: block !important; }

  /* Footer */
  footer { padding: 2.5rem 1.5rem; }
  .footer-links { gap: 1.5rem; }

  /* Experience */
  .experience-img { height: 280px; }
  .experience-overlay { padding: 1.5rem; }
}
