/* ============================================================
   Boots & Bubbles Bar — Shared Stylesheet
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'VintageOdities';
  src: url('/fonts/VintageOdities-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'VintageOdities';
  src: url('/fonts/VintageOdities-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CheerfulGirls';
  src: url('/fonts/CheerfulGirls.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --rouge:  #C86A7A;
  --pink:   #E8A8B5;
  --sugar:  #F6F0EB;
  --brown:  #4A3B35;
  --teal:   #1F5F63;
  --brown-dark: #3a2e29;
  --brown-nav:  rgba(74, 59, 53, 0.95);

  --font-display: 'VintageOdities', serif;
  --font-script:  'CheerfulGirls', cursive;
  --font-body:    'Montserrat', sans-serif;

  --nav-height: 72px;
  --max-width:  1400px;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
}

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

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--rouge);
  color: var(--sugar);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.skip-link:focus { top: 0.5rem; }

/* ══════════════════════════════════════════════════════════════
   NAV  (matches Vercel version exactly)
   ══════════════════════════════════════════════════════════════ */
.main-nav {
  position: absolute;
  top: 36px;   /* below announce bar */
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  color: var(--sugar);
}
.main-nav .nav-logo {
  height: 120px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.main-nav a {
  color: var(--sugar);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
}
.nav-cta {
  background: var(--rouge);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(246, 240, 235, 0.4);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sugar);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #b35568;
  color: var(--sugar) !important;
  transform: translateY(-1px);
}

/* Social icons in nav */
.social-icons {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-right: 18px;
}
.social-icons a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 240, 235, 0.45);
  border-radius: 50%;
  color: var(--sugar);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.social-icons a:hover {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--sugar);
  transform: translateY(-1px);
}
.social-icons svg { width: 16px; height: 16px; display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: rgba(200, 106, 122, 0.15);
  border: 1px solid rgba(232, 168, 181, 0.5);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 11px;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hamburger:hover, .hamburger:active {
  background: rgba(200, 106, 122, 0.3);
  border-color: var(--pink);
}
.hamburger span {
  display: block;
  width: 30px;
  height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}
.hamburger:hover span { background: var(--sugar); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--sugar);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav .mobile-cta {
  margin-top: 12px;
  background: var(--rouge);
  color: var(--sugar);
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid var(--pink);
  font-size: 0.85rem;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--sugar);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.8;
}
.mobile-nav-close:hover { opacity: 1; color: var(--pink); }
.mobile-nav .social-icons { margin: 16px 0 0; gap: 18px; }
.mobile-nav .social-icons a { width: 44px; height: 44px; border-color: rgba(246,240,235,0.6); }
.mobile-nav .social-icons svg { width: 20px; height: 20px; }

/* Mobile breakpoint */
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 36px; /* JS will correct this via adjustMobileNav() */
    left: 0;
    right: 0;
    padding: 10px 20px;
    background: rgba(74,59,53,0.97);
    backdrop-filter: blur(8px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .main-nav ul { display: none; }
  .main-nav .nav-cta { display: none; }
  .main-nav .social-icons { display: none; }
  .main-nav .nav-logo { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
  .main-nav > a:first-child { flex: 0 1 auto; min-width: 0; }
  .hamburger { display: flex; }
  /* Hero: sit content right below nav on mobile */
  .hero {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(var(--mobile-offset, 110px) + 20px);
    padding-bottom: 48px;
    height: auto;
    min-height: 85vh;
  }
  .page-hero { padding-top: calc(var(--mobile-offset, 110px) + 16px); }
  /* Hide diamond divider on mobile */
  .hero-diamond { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
/* ── Footer — matches production layout ──────────────────── */
.footer {
  background: var(--brown);
}

/* Top zone: logo+CTAs+social  |  map */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 320px;
}
.footer-top-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-logo {
  width: 200px;
  height: auto;
  display: block;
  aspect-ratio: 1600 / 777;
  object-fit: contain;
}
.footer-badge {
  width: 130px;
  height: 130px;
  display: block;
  object-fit: contain;
}
.footer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}
.footer-cta-btn {
  display: block;
  background: var(--sugar);
  color: var(--rouge);
  text-align: center;
  padding: 18px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.footer-cta-btn:hover {
  background: var(--pink);
  color: var(--brown);
}
.footer-social-row {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social-row a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-social-row a:hover { color: var(--sugar); }
.footer-social-row svg { width: 26px; height: 26px; display: block; }
.footer-map {
  overflow: hidden;
  position: relative;
  padding: 32px;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(1) contrast(0.9);
  min-height: 320px;
}

/* Bottom zone: 3-column info */
.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(232, 168, 181, 0.12);
  padding: 48px 48px 40px;
  max-width: 100%;
}
.footer-info-col {
  padding-right: 40px;
}
.footer-info-col + .footer-info-col {
  border-left: none;
}
.footer-info-col h5 {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink);
  margin: 0 0 16px;
  font-weight: normal;
}
.footer-info-col p,
.footer-info-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(246, 240, 235, 0.65);
  line-height: 1.9;
  margin: 0 0 24px;
}
.footer-info-col a {
  color: rgba(246, 240, 235, 0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-info-col a:hover { color: var(--pink); }
.footer-info-col .footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-info-col .footer-nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 240, 235, 0.65);
}
.footer-info-col .footer-join-team {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--pink);
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}
.footer-info-col .footer-apply {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 240, 235, 0.65);
}

/* Copyright bar */
.footer-copyright {
  border-top: 1px solid rgba(246, 240, 235, 0.1);
  padding: 20px 48px;
  text-align: center;
}
.footer-copyright p {
  font-size: 0.74rem;
  color: rgba(246, 240, 235, 0.35);
  margin: 0;
  line-height: 1.6;
}
.footer-copyright a { color: rgba(246, 240, 235, 0.45); text-decoration: none; }
.footer-copyright a:hover { color: var(--pink); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-map { display: none; }
  .footer-top-left { padding: 40px 24px; }
  .footer-bottom-grid { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px; }
  .footer-copyright { padding: 20px 24px; }
}
@media (max-width: 560px) {
  .footer-bottom-grid { grid-template-columns: 1fr; }
  .footer-ctas { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE WRAPPER
   ══════════════════════════════════════════════════════════════ */
.page-wrap {
  /* Nav is now position:absolute over hero — no offset needed */
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--brown-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58, 46, 41, 0.55) 0%,
    rgba(74, 59, 53, 0.7) 60%,
    rgba(74, 59, 53, 0.9) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--sugar);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(246, 240, 235, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  letter-spacing: 0.04em;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-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(246, 240, 235, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(246, 240, 235, 0.4), transparent);
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: 80px 5vw;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-dark {
  background-color: var(--brown);
}
.section-darker {
  background-color: var(--brown-dark);
}
.section-cream {
  background-color: var(--sugar);
  color: var(--brown);
}
.section-rouge {
  background-color: var(--rouge);
  color: var(--sugar);
}
.section-teal {
  background-color: var(--teal);
  color: var(--sugar);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .heading-script {
  margin-bottom: 8px;
}
.section-header .heading-display {
  margin-bottom: 16px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════════════ */
.heading-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--pink);
}
.section-cream .heading-script { color: var(--rouge); }
.section-rouge .heading-script { color: var(--sugar); }

.heading-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--sugar);
}
.section-cream .heading-display { color: var(--brown); }
.section-rouge .heading-display { color: var(--sugar); }

.heading-display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--sugar);
}
.section-cream .heading-display-sm { color: var(--brown); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.section-cream .eyebrow { color: var(--rouge); }

.text-rouge { color: var(--rouge); }
.text-pink  { color: var(--pink); }
.text-sugar { color: var(--sugar); }
.text-brown { color: var(--brown); }
.text-teal  { color: var(--teal); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--rouge);
  color: var(--sugar);
  border-color: var(--rouge);
}
.btn-primary:hover {
  background: #b35568;
  border-color: #b35568;
}

.btn-outline {
  background: transparent;
  color: var(--sugar);
  border-color: var(--sugar);
}
.btn-outline:hover {
  background: var(--sugar);
  color: var(--brown);
}
.btn-outline-rouge {
  background: transparent;
  color: var(--rouge);
  border-color: var(--rouge);
}
.btn-outline-rouge:hover {
  background: var(--rouge);
  color: var(--sugar);
}
.btn-secondary {
  background: var(--brown);
  color: var(--sugar);
  border-color: var(--brown);
}
.btn-secondary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
}
.btn-sm {
  font-size: 0.7rem;
  padding: 10px 22px;
}
.btn-lg {
  font-size: 0.85rem;
  padding: 18px 44px;
}

/* ══════════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════════ */
.card {
  background: var(--brown-dark);
  border: 1px solid rgba(232, 168, 181, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(200, 106, 122, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sugar);
  margin-bottom: 10px;
}
.card-body {
  font-size: 0.9rem;
  color: rgba(246, 240, 235, 0.75);
  line-height: 1.7;
}
.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(200, 106, 122, 0.15);
  color: var(--pink);
  border: 1px solid rgba(200, 106, 122, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ══════════════════════════════════════════════════════════════
   GALLERY GRID
   ══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img,
.gallery-grid .gallery-item {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.9; }
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid .gallery-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.07); }

/* ══════════════════════════════════════════════════════════════
   EVENTS LIST
   ══════════════════════════════════════════════════════════════ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--brown-dark);
  border: 1px solid rgba(232, 168, 181, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.event-card:hover {
  border-color: rgba(200, 106, 122, 0.4);
  transform: translateX(4px);
}
.event-date {
  text-align: center;
  background: rgba(200, 106, 122, 0.12);
  border: 1px solid rgba(200, 106, 122, 0.25);
  border-radius: var(--radius);
  padding: 12px 8px;
  flex-shrink: 0;
}
.event-date-month {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--sugar);
  margin: 4px 0;
}
.event-date-year {
  font-size: 0.65rem;
  color: rgba(246, 240, 235, 0.45);
}
.event-info {}
.event-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 6px;
}
.event-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sugar);
  margin-bottom: 8px;
}
.event-desc {
  font-size: 0.875rem;
  color: rgba(246, 240, 235, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.event-meta {
  font-size: 0.78rem;
  color: rgba(246, 240, 235, 0.5);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   VIP / PACKAGE CARDS
   ══════════════════════════════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.package-card {
  background: var(--brown-dark);
  border: 1px solid rgba(232, 168, 181, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.package-card:hover {
  border-color: var(--rouge);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.package-card.featured {
  border-color: var(--rouge);
  background: linear-gradient(135deg, var(--brown-dark) 0%, rgba(200, 106, 122, 0.08) 100%);
}
.package-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sugar);
  line-height: 1.2;
}
.package-capacity {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}
.package-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--rouge);
  line-height: 1;
}
.package-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(246, 240, 235, 0.5);
}
.package-desc {
  font-size: 0.875rem;
  color: rgba(246, 240, 235, 0.7);
  line-height: 1.7;
  flex: 1;
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(246, 240, 235, 0.1);
  padding-top: 16px;
}
.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(246, 240, 235, 0.75);
}
.package-feature::before {
  content: '✦';
  color: var(--rouge);
  font-size: 0.6rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════════════ */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 240, 235, 0.75);
}
.section-cream .form-group label {
  color: rgba(74, 59, 53, 0.75);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sugar);
  background: var(--brown-dark);
  border: 1px solid rgba(246, 240, 235, 0.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: rgba(246, 240, 235, 0.3);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(200, 106, 122, 0.15);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F6F0EB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px;
  background: var(--rouge);
  color: var(--sugar);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: #b35568;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 106, 122, 0.35);
}
.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 0.78rem;
  color: rgba(246, 240, 235, 0.45);
  text-align: center;
  margin-top: 12px;
}

/* Form feedback states */
.form-success,
.form-error {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-top: 16px;
  text-align: center;
}
.form-success {
  background: rgba(31, 95, 99, 0.2);
  border: 1px solid rgba(31, 95, 99, 0.5);
  color: #7fd8dc;
}
.form-error {
  background: rgba(200, 106, 122, 0.15);
  border: 1px solid rgba(200, 106, 122, 0.4);
  color: var(--pink);
}
.form-success.visible,
.form-error.visible {
  display: block;
}

/* Inline form (newsletter strip) */
.form-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.form-inline input {
  max-width: 260px;
  flex: 1;
}
.form-inline .btn { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   DIVIDER / DECORATIVE
   ══════════════════════════════════════════════════════════════ */
.divider {
  border: none;
  border-top: 1px solid rgba(246, 240, 235, 0.1);
  margin: 0;
}
.divider-rouge {
  border-top-color: rgba(200, 106, 122, 0.25);
}
.dot-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--rouge);
  font-size: 0.5rem;
  margin: 12px 0;
  letter-spacing: 0.5em;
}
.dot-divider::before,
.dot-divider::after {
  content: '✦ ✦ ✦';
  letter-spacing: 0.5em;
}

/* Pattern strip */
.pattern-strip {
  height: 80px;
  background-image: url('/brand/pattern-nobg.png');
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.12;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (interior pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 96px 5vw 72px;
  text-align: center;
  background: var(--brown-dark);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/brand/pattern-nobg.png');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.04;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   HOURS TABLE
   ══════════════════════════════════════════════════════════════ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hours-table tr {
  border-bottom: 1px solid rgba(246, 240, 235, 0.08);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 12px 4px;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--pink);
  font-weight: 700;
}
.hours-table .today td {
  color: var(--rouge);
  font-weight: 700;
}
.hours-table .closed td:last-child {
  color: rgba(246, 240, 235, 0.3);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   MENU PAGE
   ══════════════════════════════════════════════════════════════ */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(246, 240, 235, 0.2);
  color: rgba(246, 240, 235, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--sugar);
}
.menu-section { display: none; }
.menu-section.active { display: block; }
.menu-category { margin-bottom: 48px; }
.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sugar);
  margin-bottom: 4px;
}
.menu-category-sub {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 24px;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.menu-item {
  padding: 18px 20px;
  background: var(--brown-dark);
  border-radius: var(--radius);
  border: 1px solid rgba(246, 240, 235, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.menu-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sugar);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.78rem;
  color: rgba(246, 240, 235, 0.55);
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rouge);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   INFO BAND (address / hours strip)
   ══════════════════════════════════════════════════════════════ */
.info-band {
  background: var(--rouge);
  padding: 20px 5vw;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.info-band-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--sugar);
}
.info-band-item svg {
  width: 16px;
  height: 16px;
  fill: rgba(246, 240, 235, 0.7);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--brown-dark);
  border: 1px solid rgba(232, 168, 181, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars {
  color: var(--rouge);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.875rem;
  color: rgba(246, 240, 235, 0.75);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(246, 240, 235, 0.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(246, 240, 235, 0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: rgba(246, 240, 235, 0.65); }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX (gallery)
   ══════════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(30, 22, 18, 0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--sugar);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex   { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  .section { padding: 56px 5vw; }
  .section-header { margin-bottom: 36px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Events */
  .event-card { grid-template-columns: 1fr; gap: 16px; }
  .event-date { display: flex; align-items: center; gap: 12px; justify-content: flex-start; padding: 12px 16px; }
  .event-date-day { font-size: 1.5rem; margin: 0; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .form-inline { flex-direction: column; align-items: stretch; }
  .form-inline input { max-width: 100%; }

  /* Info band */
  .info-band { flex-direction: column; gap: 16px; text-align: center; }

  /* Menu */
  .menu-items { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  :root { --nav-height: 64px; }
  .nav-logo img { height: 40px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ══════════════════════════════════════════════════════════════
   FOLLOW STRIP  (below hero, matches Vercel version)
   ══════════════════════════════════════════════════════════════ */
.follow-strip {
  background: var(--sugar);
  border-top: 1px solid rgba(74, 59, 53, 0.08);
  border-bottom: none;
  padding: 20px 24px 28px;
}
.follow-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.follow-strip .follow-lede {
  font-family: var(--font-script);
  color: var(--rouge);
  font-size: 1.5rem;
  margin: 0;
  line-height: 1;
}
.follow-strip .follow-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.follow-strip .follow-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.18s ease;
}
.follow-strip .follow-links a:hover { color: var(--rouge); }
.follow-strip .follow-links svg { width: 16px; height: 16px; display: block; }
.follow-strip .dot {
  color: var(--pink);
  font-size: 0.7rem;
}
@media (max-width: 560px) {
  .follow-strip { padding: 14px 18px; }
  .follow-inner { gap: 12px; }
  .follow-strip .follow-lede { font-size: 1.3rem; }
  .follow-strip .follow-links a span { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE POLISH — comprehensive pass
   ══════════════════════════════════════════════════════════════ */

/* ── Global safety ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }

/* ── Announce bar: allow wrap on tiny screens ───────────────── */
@media (max-width: 480px) {
  .announce-bar { font-size: 0.62rem; letter-spacing: 0.08em; padding: 6px 12px; line-height: 1.5; }
}

/* ── Page hero: better min-height + padding on mobile ───────── */
@media (max-width: 600px) {
  .page-hero { min-height: 280px; padding: 100px 24px 48px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ── Menu tabs: ensure horizontal scroll on small screens ───── */
.menu-tabs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.menu-tabs { white-space: nowrap; }
@media (max-width: 600px) {
  .menu-tab { padding: 12px 16px; font-size: 0.8rem; }
}

/* ── Menu item cards: prevent overflow ──────────────────────── */
@media (max-width: 480px) {
  .menu-item { padding: 20px 16px; }
  .menu-item-name { font-size: 0.95rem; }
  .wb-card-header h3 { font-size: 0.9rem; }
  .wb-list li { padding: 11px 16px; font-size: 0.85rem; }
  .coming-soon-banner { padding: 28px 20px; }
}

/* ── VIP package cards ──────────────────────────────────────── */
@media (max-width: 600px) {
  .package-card { padding: 28px 20px; }
  .vip-intro-inner { padding: 48px 20px; }
}

/* ── Reservations / Contact forms ───────────────────────────── */
@media (max-width: 480px) {
  .reservation-form, .contact-form, .inquiry-form { padding: 24px 16px; }
  .form-tabs { flex-direction: column; gap: 8px; }
  .form-tab { text-align: center; padding: 12px; }
  .hours-table { font-size: 0.85rem; }
}

/* ── Events page ticker ─────────────────────────────────────── */
@media (max-width: 480px) {
  .events-coming-soon { padding: 48px 20px; }
}

/* ── Footer: tighten on very small screens ──────────────────── */
@media (max-width: 400px) {
  .footer-top-left { padding: 32px 16px; }
  .footer-bottom-grid { padding: 32px 16px; gap: 24px; }
  .footer-logo { width: 160px; height: auto; }
}

/* ── Touch targets: min 44px height for all interactive elements */
a, button, .menu-tab, .btn, input[type="submit"] {
  -webkit-tap-highlight-color: transparent;
}
.menu-tab, .btn { min-height: 44px; }

/* ── Images: never overflow their container ─────────────────── */
img { max-width: 100%; height: auto; }
.section-img { width: 100%; border-radius: 12px; }

/* ── About section: proper image aspect on mobile ───────────── */
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img img { border-radius: 12px; aspect-ratio: 16/9; object-fit: cover; }
}

/* ── VIP features grid ──────────────────────────────────────── */
@media (max-width: 480px) {
  .vip-features { grid-template-columns: 1fr; }
}
