/* ============================================================
   BELLA TAVERNA — Main Stylesheet
   Palette: dark navy, gold accents, off-white text
   Typography: Playfair Display (display) + Lato (body)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:          #0a0f1e;
  --navy-mid:      #0d1b2a;
  --navy-light:    #142236;
  --navy-card:     #111827;
  --gold:          #c9a84c;
  --gold-light:    #e8c97a;
  --gold-dark:     #a8872e;
  --cream:         #f5f0e8;
  --off-white:     #e8e4db;
  --text-main:     #e8e4db;
  --text-muted:    rgba(232,228,219,0.6);
  --border:        rgba(201,168,76,0.18);

  /* Legacy alias mappings — keep for any inline refs in HTML */
  --terracotta:    #c9a84c;
  --burgundy:      #142236;
  --olive:         #c9a84c;
  --cream-dark:    #0d1b2a;
  --warm-white:    #111827;
  --warm-black:    #0a0f1e;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-script:   'Dancing Script', cursive;
  --font-body:     'Lato', 'Helvetica Neue', sans-serif;

  --radius:        4px;
  --radius-lg:     8px;
  --shadow-card:   0 2px 20px rgba(0,0,0,0.35);
  --shadow-lifted: 0 8px 40px rgba(0,0,0,0.55);

  --nav-height:    72px;
  --max-width:     1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Layout Helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--navy); color: var(--cream); }
.section--cream { background: var(--navy-mid); }
.section--cream-dark { background: var(--navy-light); }
.section--texture {
  background-color: var(--navy-mid);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--olive { color: var(--gold); }

.section-title {
  margin-bottom: 16px;
  color: var(--cream);
}
.section-title--light { color: var(--cream); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-subtitle--light { color: var(--text-muted); }

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.divider--gold { background: var(--gold); }
.divider--center { margin: 20px auto; }

.text-center { text-align: center; }
.italic { font-style: italic; }
.script { font-family: var(--font-script); font-size: 1.4em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 24px rgba(201,168,76,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(232,228,219,0.5);
}
.btn-secondary:hover { background: rgba(232,228,219,0.08); border-color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-lg { padding: 18px 44px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav-logo__tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(232,228,219,0.75);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--gold-light); }
.nav-reserve {
  margin-left: 8px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy-mid);
  padding: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,30,0.6) 0%,
    rgba(10,15,30,0.75) 60%,
    rgba(10,15,30,0.90) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 24px;
}
.hero__kicker {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.hero__title {
  color: var(--cream);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(232,228,219,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stars rating strip */
.rating-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 1px;
}
.rating-label {
  font-size: 0.8rem;
  color: rgba(232,228,219,0.7);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rating-count {
  font-size: 0.75rem;
  color: rgba(232,228,219,0.45);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(232,228,219,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ---- Intro Strip ---- */
.intro-strip {
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 24px 0;
}
.intro-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.intro-strip__icon { font-size: 1.3rem; }
.intro-strip__text {
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Feature Cards ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.feature-card {
  padding: 40px 32px;
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lifted);
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.35);
}
.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}
.feature-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---- Menu Section ---- */
.menu-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.menu-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.menu-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,0.5), rgba(10,15,30,0.75));
}
.menu-hero__content { position: relative; z-index: 2; color: var(--cream); }

.menu-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.menu-nav__btn {
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(201,168,76,0.25);
  color: var(--text-muted);
  transition: all 0.2s;
  background: var(--navy-card);
}
.menu-nav__btn:hover,
.menu-nav__btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.menu-category { margin-bottom: 64px; }
.menu-category__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.menu-category__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  white-space: nowrap;
}
.menu-category__line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.menu-item:nth-child(odd) { padding-right: 32px; }
.menu-item:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(201,168,76,0.12); }
.menu-item__info { flex: 1; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.menu-item__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item--featured .menu-item__name::after {
  content: " ✦";
  font-size: 0.7rem;
  color: var(--gold);
  vertical-align: super;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 40px;
  font-style: italic;
}
.menu-note strong { color: var(--gold); font-style: normal; }

/* ---- Story Section ---- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image-wrap {
  position: relative;
}
.story-image-wrap__main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lifted);
}
.story-image-wrap__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--navy-mid);
  box-shadow: var(--shadow-card);
}
.story-text .divider { margin-bottom: 24px; }
.story-text p { color: var(--text-muted); font-size: 1.05rem; }
.story-text p + p { margin-top: 16px; }

.values-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.value-item__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cream);
}
.value-item__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
}
.testimonial-card .stars { font-size: 0.85rem; margin-bottom: 12px; }
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card__author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cream);
}
.testimonial-card__platform {
  font-size: 0.775rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Reservation Form ---- */
.res-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.res-form {
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--navy-mid);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; }

.res-info {}
.res-info .eyebrow { margin-bottom: 8px; }
.res-info h2 { margin-bottom: 16px; }
.res-info p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; }

.hours-block {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}
.hours-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--cream);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { font-weight: 700; color: var(--cream); }
.hours-row__time { color: var(--text-muted); }

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.expect-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Private Dining ---- */
.private-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.private-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lifted);
}
.packages-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package-card {
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  background: var(--navy-card);
}
.package-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cream);
}
.package-card__guests {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.package-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Contact Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-block { margin-bottom: 32px; }
.contact-block h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.contact-block p,
.contact-block a {
  font-size: 1rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.8;
}
.contact-block a:hover { color: var(--gold); }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  overflow: hidden;
}
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Gallery Strip ---- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-strip__item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-strip__item:hover img { transform: scale(1.05); }
.gallery-strip__item--wide { grid-column: span 2; }
.gallery-strip__item--tall { grid-row: span 2; aspect-ratio: auto; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  color: var(--cream);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand__tagline {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}
.footer-brand__desc {
  font-size: 0.875rem;
  color: rgba(232,228,219,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(232,228,219,0.55);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(232,228,219,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p {
  font-size: 0.875rem;
  color: rgba(232,228,219,0.55);
  line-height: 1.8;
  margin: 0;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.775rem;
  color: rgba(232,228,219,0.3);
  margin: 0;
}

/* ---- Page Banner (inner pages) ---- */
.page-banner {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
}
.page-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,0.5), rgba(10,15,30,0.75));
}
.page-banner__content { position: relative; z-index: 2; }
.page-banner__title { color: var(--cream); }
.page-banner__subtitle {
  color: rgba(232,228,219,0.7);
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Sticky Reserve Bar ---- */
.reserve-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  gap: 16px;
}
.reserve-bar.visible { display: flex; }
.reserve-bar__text {
  font-size: 0.875rem;
  color: rgba(232,228,219,0.85);
  font-weight: 700;
}

/* ---- Utility ---- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mb-0 { margin-bottom: 0 !important; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 56px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav-links, .nav-reserve { display: none; }
  .nav-toggle { display: flex; }

  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .story-image-wrap__accent { display: none; }
  .res-layout { grid-template-columns: 1fr; gap: 40px; }
  .private-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { padding-right: 0; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .intro-strip__inner { gap: 20px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .res-form { padding: 28px; }
  .rating-strip { gap: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .container { padding: 0 16px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip__item--wide { grid-column: span 1; }
  .feature-card { padding: 28px 20px; }
}
