/* ==========================================================
   THE GRAND MERIDIAN — Hospitality Demo
   Built by Lunar Web Studio
   ========================================================== */

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

:root {
  --wine:        #2C0E1A;
  --wine-mid:    #4A1E2E;
  --wine-light:  #6B3045;
  --cream:       #FAF6EE;
  --cream-warm:  #F5EBD8;
  --cream-dark:  #EDE0C8;
  --gold:        #B8943A;
  --gold-light:  #D4AF52;
  --gold-pale:   #F0DFA8;
  --charcoal:    #1A1A1A;
  --text:        #2E2626;
  --text-mid:    #4A3F3A;
  --muted:       #7A6E68;
  --border:      #DDD0BE;
  --border-light:#EDE5D8;
  --white:       #FFFFFF;
  --shadow:      rgba(44, 14, 26, 0.10);
  --shadow-gold: rgba(184, 148, 58, 0.22);
  --radius:      4px;
  --radius-lg:   10px;
  --ease:        0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---- DEMO BANNER ---------------------------------------- */
.demo-banner {
  background: linear-gradient(90deg, #0E0509, #2C0E1A, #3B1425, #2C0E1A, #0E0509);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.03em;
  border-bottom: 2px solid rgba(184,148,58,0.5);
  position: relative;
}
.demo-banner a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.demo-badge {
  background: var(--gold);
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(184,148,58,0.5);
  animation: demo-pulse 2.5s ease-in-out infinite;
}
@keyframes demo-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(184,148,58,0.45); }
  50%       { box-shadow: 0 0 18px rgba(184,148,58,0.85); }
}

/* ---- FLOATING DEMO TAB ---------------------------------- */
.demo-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: var(--wine);
  border: 1px solid rgba(184,148,58,0.55);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 1.1rem 0.55rem;
  text-decoration: none;
  box-shadow: -3px 0 20px rgba(44,14,26,0.35);
  transition: transform var(--ease), background var(--ease);
}
.demo-float:hover {
  transform: translateY(-50%) translateX(-5px);
  background: var(--wine-mid);
}
.demo-float-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.demo-float-arrow {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
}
@media (max-width: 600px) {
  .demo-float { display: none; }
}
.demo-cta-pill {
  background: var(--gold);
  color: var(--wine) !important;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  text-decoration: none !important;
}
.demo-cta-pill:hover { background: var(--gold-light); }

/* ---- HEADER / NAV --------------------------------------- */
.hosp-header {
  background: var(--wine);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(184,148,58,0.28);
}
.hosp-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.hosp-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.hosp-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.hosp-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.hosp-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.hosp-nav a {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
  font-weight: 400;
}
.hosp-nav a:hover,
.hosp-nav a[aria-current="page"] { color: var(--gold-light); }
.hosp-nav-cta {
  background: var(--gold);
  color: var(--wine) !important;
  padding: 0.52rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background var(--ease), transform var(--ease) !important;
}
.hosp-nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hosp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.hosp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.22s;
}

/* ---- HERO ----------------------------------------------- */
.hosp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(80,30,50,0.55), transparent 60%),
    linear-gradient(140deg, #120609 0%, #2A0F1A 30%, #3E1828 55%, #240F1A 80%, #100509 100%);
}
.hosp-hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.28), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.18), transparent),
    radial-gradient(1.5px 1.5px at 55% 18%, rgba(255,255,255,0.22), transparent),
    radial-gradient(1px 1px at 75% 72%, rgba(255,255,255,0.16), transparent),
    radial-gradient(2px 2px at 20% 78%, rgba(184,148,58,0.28), transparent),
    radial-gradient(1.5px 1.5px at 65% 42%, rgba(184,148,58,0.22), transparent),
    radial-gradient(80% 50% at 50% 120%, rgba(184,148,58,0.06), transparent);
}
.hosp-hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content:''; flex: 0 0 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.hero-h1 em { font-style: italic; color: var(--gold-pale); }
.hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 44ch;
  margin-bottom: 2.25rem;
  line-height: 1.72;
  font-weight: 300;
}
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--wine);
  padding: 0.88rem 1.85rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-gold); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: rgba(255,255,255,0.88);
  padding: 0.88rem 1.85rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--wine);
  color: #fff;
  padding: 0.88rem 1.85rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--wine);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-dark:hover { background: var(--wine-mid); border-color: var(--wine-mid); transform: translateY(-2px); }

/* Hero stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,148,58,0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(6px);
}
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-lbl {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.45rem;
}

/* ---- CONTAINERS / SECTIONS ------------------------------ */
.hosp-section { padding: 5rem 2rem; }
.hosp-section-sm { padding: 3rem 2rem; }
.hosp-container { max-width: 1240px; margin: 0 auto; }
.hosp-section-warm  { background: var(--cream-warm); }
.hosp-section-dark  { background: var(--wine); }
.hosp-section-white { background: var(--white); }

/* Section headings */
.sec-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.sec-eyebrow::before { content:''; width: 22px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--charcoal);
  margin-bottom: 0.9rem;
}
.sec-title-light { color: #FFFFFF; }
.sec-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.72;
  font-weight: 300;
}
.sec-body-light { color: rgba(255,255,255,0.65); }
.gold-rule { width: 50px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.25rem 0; }
.gold-rule-center { margin: 1.25rem auto; }
.ornament { color: var(--gold); opacity: 0.5; font-size: 1rem; letter-spacing: 0.6rem; }

/* ---- GRIDS ---------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.split  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ---- CARDS ---------------------------------------------- */
.card-base {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card-base:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }

.card-img { height: 200px; overflow: hidden; background: var(--cream-dark); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card-base:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wine);
  margin-bottom: 0.45rem;
}
.card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.85rem;
  font-style: italic;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

/* ---- RESERVE BAND --------------------------------------- */
.reserve-band {
  padding: 4.5rem 2rem;
  text-align: center;
  background:
    linear-gradient(rgba(44,14,26,0.90), rgba(44,14,26,0.90)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(184,148,58,0.04) 12px, rgba(184,148,58,0.04) 24px);
  border-top: 1px solid rgba(184,148,58,0.2);
  border-bottom: 1px solid rgba(184,148,58,0.2);
}
.reserve-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 0.65rem;
}
.reserve-band p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* ---- ICON FEATURES BAR ---------------------------------- */
.icon-bar {
  display: flex;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 2rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.icon-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: 0.75rem 1rem;
  min-width: 90px;
}
.icon-feat-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184,148,58,0.1);
  border: 1px solid rgba(184,148,58,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.icon-feat-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
  line-height: 1.3;
}

/* ---- PHOTO GRID ----------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 210px 210px;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-cell { overflow: hidden; }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-cell:hover img { transform: scale(1.06); }
.photo-cell.wide { grid-column: span 2; }
.photo-cell.tall { grid-row: span 2; }

/* ---- TESTIMONIALS --------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  line-height: 1;
}
.t-text {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1.75rem;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--wine);
  flex-shrink: 0;
}
.t-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.t-meta { font-size: 0.72rem; color: var(--muted); }

/* ---- MENU PAGE ------------------------------------------ */
.menu-hero {
  padding: 4rem 2rem 2.5rem;
  background:
    linear-gradient(rgba(44,14,26,0.85), rgba(44,14,26,0.85)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(184,148,58,0.04) 10px, rgba(184,148,58,0.04) 20px);
  text-align: center;
  color: white;
}
.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.menu-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; font-weight: 300; }

.menu-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.menu-tabs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 1.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  font-weight: 400;
}
.menu-tab.active { color: var(--wine); border-bottom-color: var(--gold); font-weight: 700; }
.menu-tab:hover:not(.active) { color: var(--text); }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }

.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--ease);
}
.menu-item:hover { box-shadow: 0 4px 20px var(--shadow); }
.menu-item.featured { border-left: 3px solid var(--gold); }

.menu-item-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-warm);
}
.menu-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.menu-item-info { flex: 1; min-width: 0; }
.menu-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.3rem; }
.menu-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.menu-price { font-size: 0.92rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.menu-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.menu-tags { display: flex; gap: 0.35rem; margin-top: 0.4rem; flex-wrap: wrap; }
.tag {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}
.tag-v  { background: #E8F5E9; color: #2E7D32; }
.tag-ve { background: #F3E5F5; color: #6A1B9A; }
.tag-gf { background: #FFF8E1; color: #E65100; }
.tag-c  { background: var(--wine-light); color: white; }
.tag-n  { background: var(--gold); color: var(--wine); }

.chef-note {
  background: rgba(184,148,58,0.08);
  border: 1px solid rgba(184,148,58,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.chef-note p { font-size: 0.9rem; color: var(--text-mid); font-style: italic; line-height: 1.65; }
.chef-note strong { font-style: normal; color: var(--wine); }

/* ---- RESERVATION FORM ----------------------------------- */
.res-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.res-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.38rem;
  flex: 1;
  max-width: 140px;
  position: relative;
}
.res-step::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.res-step:last-child::before { display: none; }
.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: all var(--ease);
}
.res-step.active .step-dot { background: var(--gold); color: var(--wine); }
.res-step.done .step-dot   { background: #388E3C; color: white; }
.step-lbl { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.res-step.active .step-lbl { color: var(--wine); font-weight: 700; }

.res-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 40px var(--shadow);
  max-width: 680px;
  margin: 0 auto;
}
.form-panel { display: none; }
.form-panel.active { display: block; }

.fgroup { margin-bottom: 1.2rem; }
.flabel {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.38rem;
  font-weight: 700;
}
.finput, .fselect, .ftextarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease), box-shadow var(--ease);
  font-family: 'Lato', sans-serif;
}
.finput:focus, .fselect:focus, .ftextarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,58,0.14);
}
.fselect {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8943A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0.45rem;
  margin-top: 0.45rem;
}
.time-slot {
  padding: 0.58rem 0.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
  background: var(--white);
  color: var(--text);
  font-family: 'Lato', sans-serif;
}
.time-slot:hover:not(.unavail) { border-color: var(--gold); color: var(--gold); }
.time-slot.sel { background: var(--gold); border-color: var(--gold); color: var(--wine); font-weight: 700; }
.time-slot.unavail { opacity: 0.32; cursor: not-allowed; text-decoration: line-through; }

.seating-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.75rem;
  margin-top: 0.45rem;
}
.seating-opt {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
  background: var(--white);
}
.seating-opt:hover { border-color: var(--gold); }
.seating-opt.sel { border-color: var(--gold); background: rgba(184,148,58,0.07); }
.seating-icon { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.seating-lbl { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); }

.form-actions { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.75rem; }

/* Confirmation state */
.res-confirm {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.res-confirm.active { display: block; }
.confirm-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.confirm-h { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--wine); margin-bottom: 0.75rem; }
.confirm-p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; max-width: 44ch; margin: 0 auto 1.5rem; }
.confirm-ref {
  display: inline-block;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 1.5rem;
}

/* ---- EVENTS PAGE ---------------------------------------- */
.event-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
.event-img { height: 260px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.event-card:hover .event-img img { transform: scale(1.04); }
.event-body { padding: 1.75rem; }
.event-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--wine); margin-bottom: 0.45rem; }
.event-meta { display: flex; gap: 1.25rem; margin: 0.85rem 0 1rem; flex-wrap: wrap; }
.meta-pill {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--cream-warm);
  border: 1px solid var(--border-light);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow var(--ease);
}
.package-card:hover { box-shadow: 0 8px 28px var(--shadow); }
.package-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,58,0.12);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--wine);
  margin-bottom: 0.35rem;
}
.package-price { font-size: 1.6rem; font-weight: 900; color: var(--charcoal); margin-bottom: 0.2rem; }
.package-price span { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.package-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.55; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.package-features li { font-size: 0.84rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.45rem; }
.package-features li::before { content: '✓'; color: #388E3C; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ---- LOCATION PAGE -------------------------------------- */
.map-wrap {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.hours-tbl { width: 100%; border-collapse: collapse; }
.hours-tbl tr { border-bottom: 1px solid var(--border-light); }
.hours-tbl td { padding: 0.7rem 0; font-size: 0.9rem; }
.hours-tbl td:first-child { color: var(--text-mid); font-weight: 700; letter-spacing: 0.04em; width: 40%; }
.hours-tbl td:last-child { text-align: right; color: var(--text); }
.hours-today { background: rgba(184,148,58,0.07); }
.hours-today td { color: var(--gold) !important; font-weight: 700 !important; }
.hours-closed td { opacity: 0.5; }

/* SEO features highlight box */
.seo-box {
  background: linear-gradient(135deg, rgba(184,148,58,0.07), rgba(184,148,58,0.02));
  border: 1px solid rgba(184,148,58,0.28);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.seo-box-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; }
.seo-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--text-mid); }
.seo-item::before { content: '✓'; color: #388E3C; font-weight: 700; flex-shrink: 0; }

/* ---- FOOTER --------------------------------------------- */
.hosp-footer {
  background: #111111;
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 2rem 2.5rem;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .f-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.footer-brand .f-sub { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.86rem; line-height: 1.65; color: rgba(255,255,255,0.5); max-width: 30ch; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-copy { color: rgba(255,255,255,0.35); }
.footer-lws { color: rgba(255,255,255,0.3); }
.footer-lws a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ---- PAGE HERO (inner pages) ---------------------------- */
.page-hero-inner {
  background:
    linear-gradient(rgba(44,14,26,0.82), rgba(44,14,26,0.82)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(184,148,58,0.04) 10px, rgba(184,148,58,0.04) 20px);
  padding: 4.5rem 2rem;
  text-align: center;
}
.page-hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  margin-bottom: 0.65rem;
}
.page-hero-inner p { color: rgba(255,255,255,0.62); font-size: 1rem; font-weight: 300; max-width: 52ch; margin: 0 auto; }

/* ---- RESPONSIVE ----------------------------------------- */
@media (max-width: 920px) {
  .hosp-nav { display: none; }
  .hosp-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--wine);
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    z-index: 300;
  }
  .hosp-nav.open a { font-size: 1rem; }
  .hosp-nav-toggle { display: flex; }
  .hosp-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-eyebrow { justify-content: center; }
  .btn-row { justify-content: center; }
  .hero-lead { margin: 0 auto 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .photo-cell.wide, .photo-cell.tall { grid-column: span 1; grid-row: span 1; height: 180px; }
  .menu-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .seo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hosp-section { padding: 3rem 1rem; }
  .hosp-section-sm { padding: 2rem 1rem; }
  .hosp-nav-inner { padding: 0 1rem; }
  .res-form-card { padding: 1.5rem 1rem; }
  .reserve-band { padding: 3rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .time-grid { grid-template-columns: repeat(2,1fr); }
  .seating-grid { grid-template-columns: repeat(3,1fr); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .demo-banner { font-size: 0.72rem; }
  .page-hero-inner { padding: 3rem 1rem; }
  .icon-bar { gap: 0; }
  .icon-feat { padding: 0.5rem; min-width: 70px; }
  .icon-feat-ring { width: 44px; height: 44px; font-size: 1.1rem; }
}
