/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --navy:       #241609;
  --navy-light: #3A2510;
  --teal:       #6B4C2A;
  --teal-light: #8B6640;
  --gold:       #8B6B3D;
  --gold-light: #A67C4A;
  --sand:       #EDE4D2;
  --sand-light: #F5EDE0;
  --cream:      #FAF6EF;
  --white:      #FFFFFF;
  --text:       #241609;
  --text-muted: #7A6548;
  --border:     #D9CCBA;
  --shadow-sm:  0 2px 8px rgba(36,22,9,.07);
  --shadow-md:  0 6px 24px rgba(36,22,9,.11);
  --shadow-lg:  0 16px 48px rgba(36,22,9,.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .22s ease;
}

/* ─── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--sand-light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* space for liquor warning banner */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

/* ─── Bootstrap overrides ────────────────────────────────────────────────── */
.btn-primary { --bs-btn-bg: var(--gold); --bs-btn-border-color: var(--gold); --bs-btn-hover-bg: var(--gold-light); --bs-btn-hover-border-color: var(--gold-light); --bs-btn-color: #fff; --bs-btn-hover-color: #fff; }
.btn-outline-primary { --bs-btn-color: var(--teal); --bs-btn-border-color: var(--teal); --bs-btn-hover-bg: var(--teal); --bs-btn-hover-border-color: var(--teal); }
.text-primary { color: var(--teal) !important; }
.bg-primary { background-color: var(--navy) !important; }
.accordion-button:not(.collapsed) { background: var(--sand); color: var(--navy); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(43,122,158,.25); }

/* ─── Typography helpers ─────────────────────────────────────────────────── */
.script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.script-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.gold-divider {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.tagline { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1040;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 88px;
}
.nav-logo img { height: 80px; width: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.nav-links { display: flex; gap: 6px; align-items: center; margin-left: auto; }
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--navy);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  padding: 0;
}
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1035;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 16px 0 32px;
}
.mobile-nav.open { display: flex; flex-direction: column; }
body.nav-open { overflow: hidden; position: fixed; width: 100%; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; margin: 0 0 16px; padding: 0; list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--border); }
.mobile-nav ul a {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  min-height: 56px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(139,107,61,.12);
  text-decoration: none;
}
.mobile-nav ul a:active, .mobile-nav ul a:hover { background: var(--sand); color: var(--gold); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; padding: 20px 28px; }
#nav-auth-desktop, #nav-auth-mobile { display: flex; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: #fff; }
.btn-secondary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal-light); border-color: var(--teal-light); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-loading { opacity: .7; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ─── Hero (homepage) ────────────────────────────────────────────────────── */
.hero {
  background: var(--sand-light);
  padding: 128px 0 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: center;
}

/* Location label */
.hero-location-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-label-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Main heading */
.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-gold-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

/* Subtitle */
.hero-subtitle {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-top: 16px;
  border-top: 1.5px solid var(--gold);
  display: inline-block;
}

/* Body text */
.hero-body {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

/* CTA buttons */
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border: 1.8px solid var(--navy);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-hero:hover { background: var(--navy); color: var(--sand-light); }

/* Arched hours card */
.hero-arch-wrap { display: flex; justify-content: center; }
.hero-arch-card {
  background: var(--white);
  border-radius: 180px 180px 20px 20px;
  padding: 48px 36px 36px;
  width: 320px;
  box-shadow: 0 8px 40px rgba(36,22,9,.10);
  text-align: center;
  border: 1px solid var(--border);
}
.arch-pin-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.arch-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.arch-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.arch-hours-table td {
  padding: 7px 0;
  font-size: .88rem;
  color: var(--navy);
  text-align: left;
}
.arch-hours-table td:first-child { color: var(--text-muted); }
.arch-hours-table td:last-child { text-align: right; }
.arch-hours-table tr + tr td { border-top: 1px solid var(--border); }
.arch-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}
.arch-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.arch-directions {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.arch-directions:hover { color: var(--navy); }

/* ─── Stats strip ─────────────────────────────────────────────────────────── */
.stats-strip { background: var(--navy); padding: 40px 0; }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.65); letter-spacing: .06em; text-transform: uppercase; }

/* ─── Feature blocks ──────────────────────────────────────────────────────── */
.feature-blocks { background: var(--sand-light); padding: 80px 0; }
.feature-blocks-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.feature-block { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.feature-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-block-img { height: 220px; overflow: hidden; }
.feature-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-block:hover .feature-block-img img { transform: scale(1.06); }
.feature-block-body { padding: 28px; }
.feature-block-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.feature-block-body p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

/* ─── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Menu tab bar ────────────────────────────────────────────────────────── */
.menu-tab-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.menu-tab {
  padding: 9px 22px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--text-muted); transition: all var(--transition); background: var(--white);
}
.menu-tab:hover { border-color: var(--teal); color: var(--teal); }
.menu-tab.active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ─── Menu list rows ──────────────────────────────────────────────────────── */
.menu-list { display: flex; flex-direction: column; gap: 2px; }
.menu-list-row {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border-radius: var(--radius); background: var(--white); transition: box-shadow var(--transition);
}
.menu-list-row:hover { box-shadow: var(--shadow-sm); }
.menu-list-img { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: var(--sand); }
.menu-list-img-placeholder {
  width: 68px; height: 68px; border-radius: 10px; background: var(--sand);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.menu-list-info { flex: 1; min-width: 0; }
.menu-list-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); font-weight: 600; }
.menu-list-desc { font-size: .83rem; color: var(--text-muted); margin-top: 3px; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.menu-list-price { font-size: 1rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.menu-list-add {
  background: var(--gold); color: #fff;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1; transition: background var(--transition), transform var(--transition); flex-shrink: 0;
}
.menu-list-add:hover { background: var(--gold-light); transform: scale(1.1); }

/* skeleton */
.skeleton-row { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--radius); background: var(--white); animation: pulse 1.4s infinite; }
.skel-img { width: 68px; height: 68px; border-radius: 10px; background: var(--sand); }
.skel-line { height: 14px; border-radius: 6px; background: var(--sand); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ─── About split ─────────────────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; height: 480px; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-br { position: absolute; bottom: -12px; right: -12px; width: 44px; height: 44px; background: var(--gold); border-radius: 10px; }
.about-accent-tl { position: absolute; top: -12px; left: -12px; width: 66px; height: 66px; border: 3px solid var(--gold); border-radius: 12px; }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; font-size: .97rem; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.about-feature-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─── Booking ─────────────────────────────────────────────────────────────── */
.book-section { background: var(--navy); padding: 80px 0; }
.book-section .section-header .script-label { color: var(--gold); }
.book-section .section-header h2 { color: var(--white); }
.booking-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,122,158,.12);
}
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #e05c5c; }
.form-group textarea { resize: vertical; }
.field-error { font-size: .78rem; color: #c0392b; min-height: 16px; display: none; }
.field-error.visible { display: block; }
.form-error-msg {
  background: #fdf0f0; border: 1px solid #f5c6c6; color: #c0392b;
  padding: 12px 16px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 18px; display: none;
}
.form-error-msg.visible { display: block; }
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); cursor: pointer; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 42px; width: 100%; }
.toggle-pw { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 1rem; opacity: .6; }
.toggle-pw:hover { opacity: 1; }
.pw-strength { margin-top: 6px; display: flex; align-items: center; gap: 10px; }
.pw-strength-bar { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.pw-strength-fill { height: 100%; width: 0; border-radius: 3px; transition: width .3s ease, background .3s ease; }
.pw-strength-fill.weak   { width: 33%; background: #e05c5c; }
.pw-strength-fill.fair   { width: 66%; background: var(--gold); }
.pw-strength-fill.strong { width: 100%; background: #27ae60; }
.pw-strength-text { font-size: .75rem; color: var(--text-muted); white-space: nowrap; }

/* ─── Reviews strip ──────────────────────────────────────────────────────── */
.reviews-strip { background: var(--sand); padding: 64px 0; overflow: hidden; }
.reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.reviews-track { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { min-width: 280px; background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: .82rem; font-weight: 700; color: var(--navy); }

/* ─── Follow Along ────────────────────────────────────────────────────────── */
.follow-section { padding: 64px 0; }
.follow-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; border-radius: var(--radius-lg); overflow: hidden; }
.follow-cell { aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.follow-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .3s ease; }
.follow-cell:hover img { transform: scale(1.08); opacity: .85; }

/* ─── Full menu page ──────────────────────────────────────────────────────── */
.menu-hero { background: var(--navy); height: 220px; padding-top: 72px; display: flex; align-items: center; justify-content: center; text-align: center; }
.menu-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); }
.menu-hero p  { color: rgba(255,255,255,.7); font-size: .97rem; margin-top: 8px; }
.menu-layout {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start;
}
.menu-sticky-bar {
  position: sticky; top: 80px; background: var(--white); border-radius: var(--radius);
  padding: 12px; box-shadow: var(--shadow-sm); display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 32px; z-index: 10;
}
.menu-sticky-bar button {
  padding: 8px 18px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-muted); transition: all var(--transition);
}
.menu-sticky-bar button.active, .menu-sticky-bar button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.menu-category { margin-bottom: 52px; }
.menu-category h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.menu-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.menu-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-card-img { height: 160px; overflow: hidden; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { padding: 16px; }
.menu-card-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); font-weight: 600; margin-bottom: 5px; }
.menu-card-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-size: 1rem; font-weight: 700; color: var(--gold); }
.addons-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.addon-chip {
  background: var(--sand-light); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  cursor: pointer; transition: border-color var(--transition), background var(--transition);
}
.addon-chip:hover { border-color: var(--gold); background: var(--sand); }
.addon-chip-name { font-size: .83rem; font-weight: 500; color: var(--navy); }
.addon-chip-price { font-size: .83rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ─── Cart sidebar ───────────────────────────────────────────────────────── */
.cart-sidebar { position: sticky; top: 100px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.cart-sidebar-header { background: var(--navy); color: #fff; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.cart-sidebar-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
.cart-count-badge { background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.cart-body { padding: 20px 24px; max-height: 420px; overflow-y: auto; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: .92rem; }
.cart-empty-icon { font-size: 2.5rem; margin-bottom: 10px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 50px; height: 50px; border-radius: 8px; flex-shrink: 0; background: var(--sand);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .88rem; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .82rem; color: var(--gold); font-weight: 600; }
.cart-qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-qty-btn {
  width: 22px; height: 22px; border: 1.5px solid var(--border); border-radius: 50%;
  font-size: .85rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.cart-qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-qty-num { font-size: .85rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-remove { color: #c0392b; font-size: .75rem; font-weight: 500; cursor: pointer; background: none; border: none; padding: 0; margin-left: auto; flex-shrink: 0; }
.cart-footer { padding: 20px 24px; border-top: 2px solid var(--border); background: var(--sand-light); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.cart-total-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); font-weight: 700; }

/* ─── About page ─────────────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--sand); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { font-size: .8rem; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--text-muted); font-size: .84rem; line-height: 1.55; }

/* ─── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-detail-text h4 { font-size: .9rem; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
.contact-detail-text p { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.contact-detail-text a { color: var(--teal); }
.contact-detail-text a:hover { color: var(--gold); }
.social-circle-links { display: flex; gap: 10px; margin-top: 20px; }
.social-circle-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background var(--transition), transform var(--transition); }
.social-circle-links a:hover { background: var(--gold); transform: scale(1.1); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }

/* ─── CTA banner ─────────────────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 72px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 32px; }

/* ─── Hero small (inner pages) ───────────────────────────────────────────── */
.hero-sm { background: var(--navy); display: flex; align-items: flex-end; padding-bottom: 48px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-sm-overlay { position: absolute; inset: 0; }
.hero-sm-content { position: relative; z-index: 1; text-align: center; color: var(--white); width: 100%; padding: 0 24px; }
.hero-sm-content h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 8px; }
.hero-sm-content p  { color: rgba(255,255,255,.8); font-size: 1rem; }

/* ─── Auth ────────────────────────────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 38% 1fr; }
.auth-left { position: relative; background: var(--navy); overflow: hidden; }
.auth-left-bg { position: absolute; inset: 0; }
.auth-left-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.auth-left-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; height: 100%; padding: 48px 40px; color: var(--white); }
.auth-left-logo { height: 52px; border-radius: 8px; margin-bottom: 16px; }
.auth-left-content h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 6px; }
.auth-left-content .tagline { color: rgba(255,255,255,.6); margin-bottom: 10px; }
.auth-left-content .script { font-size: 1.5rem; }
.auth-right { display: flex; align-items: center; justify-content: center; background: var(--cream); padding: 60px 24px; }
.auth-card { width: 100%; max-width: 480px; background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-lg); }
.auth-logo-mobile { display: none; height: 48px; border-radius: 8px; margin-bottom: 20px; }
.auth-card h1 { font-size: 1.9rem; margin-bottom: 6px; }
.auth-sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }
.auth-divider { text-align: center; color: var(--text-muted); font-size: .8rem; margin: 20px 0; position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 20px); height: 1px; background: var(--border); }
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-footer-link { text-align: center; font-size: .85rem; margin-bottom: 10px; }
.auth-footer-link a { color: var(--teal); font-weight: 600; }
.auth-back { display: block; text-align: center; font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.auth-back:hover { color: var(--teal); }
.text-center { text-align: center; }

/* ─── Profile ─────────────────────────────────────────────────────────────── */
.profile-wrap { max-width: 680px; margin: 0 auto; padding: 100px 24px 60px; }
.profile-avatar-section { text-align: center; margin-bottom: 32px; }
.profile-avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--navy); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--white); font-family: 'Playfair Display', serif; font-weight: 700; }
.profile-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.profile-card h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.profile-field { margin-bottom: 16px; }
.profile-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.profile-field p { font-size: .95rem; color: var(--navy); }
.order-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.order-row:last-child { border-bottom: none; }
.order-row-id { font-size: .8rem; color: var(--text-muted); font-family: monospace; }
.order-row-date { font-size: .82rem; color: var(--text-muted); }
.order-row-total { font-weight: 700; color: var(--navy); }
.status-badge { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em; }
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d1ecf1; color: #0c5460; }
.status-preparing { background: #d4edda; color: #155724; }
.status-ready     { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ─── Checkout ────────────────────────────────────────────────────────────── */
.checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 100px 24px 60px; display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.checkout-section-title { font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.checkout-items-panel { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.checkout-sidebar { position: sticky; top: 100px; background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.checkout-line { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: .92rem; color: var(--text-muted); }
.checkout-line.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 48px; border-radius: 8px; margin-bottom: 14px; }
.footer-tagline { font-size: .85rem; line-height: 1.65; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background var(--transition); }
.social-links a:hover { background: var(--gold); }
.footer-col h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: .85rem; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.hours-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.hours-table td { padding: 4px 0; }
.hours-table td:first-child { color: rgba(255,255,255,.65); padding-right: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.45); }

/* ─── Toast ──────────────────────────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--navy); color: #fff; padding: 14px 20px; border-radius: var(--radius); font-size: .88rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateX(24px); transition: opacity .25s ease, transform .25s ease; pointer-events: auto; max-width: 300px; }
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success .toast-icon::before { content: '✓'; color: #27ae60; font-weight: 700; }
.toast-error   .toast-icon::before { content: '✕'; color: #e05c5c; font-weight: 700; }
.toast-info    .toast-icon::before { content: 'ℹ'; color: var(--teal); }
.toast-warn    .toast-icon::before { content: '⚠'; color: var(--gold); }

/* ─── Scroll reveal ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ─── Admin badge ─────────────────────────────────────────────────────────── */
.admin-badge { font-size: .7rem; font-weight: 700; background: var(--gold); color: #fff; padding: 2px 7px; border-radius: 4px; letter-spacing: .05em; text-transform: uppercase; margin-left: 6px; }

/* ─── Utility ─────────────────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-gold  { color: var(--gold); }
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }   .mt-2 { margin-top: 16px; }  .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .hero-arch-card { width: 100%; max-width: 380px; }
  .hero-arch-wrap { width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-blocks-inner { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .menu-layout { grid-template-columns: 1fr; }
  .cart-sidebar { position: static; }
  .menu-cards { grid-template-columns: 1fr; }
  .addons-list { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .follow-grid { grid-template-columns: repeat(3, 1fr); }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-logo-mobile { display: block; }
}

@media (max-width: 767px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav-auth-desktop { display: none; }
  .navbar .nav-container { height: 72px; padding: 0 16px; }
  .nav-logo img { height: 60px; width: 60px; }
  .mobile-nav { top: 72px; }

  /* Hero */
  .hero { padding: 104px 0 52px; min-height: unset; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .hero-heading { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-body { font-size: .93rem; margin-bottom: 28px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero { width: 100%; justify-content: center; }
  .hero-arch-card { width: 100%; max-width: 340px; border-radius: 120px 120px 16px 16px; padding: 40px 28px 28px; }
  .hero-arch-wrap { width: 100%; }

  /* Sections */
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  /* Stats */
  .stats-strip { padding: 32px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 16px; }
  .stat-num { font-size: 2rem; }

  /* Feature blocks */
  .feature-blocks { padding: 52px 0; }
  .feature-blocks-inner { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
  .feature-block-img { height: 200px; }

  /* About */
  .about-img-wrap { height: 300px; }
  .about-accent-tl, .about-accent-br { display: none; }

  /* Menu */
  .menu-list-desc { display: none; }
  .menu-hero { height: 160px; }
  .menu-sticky-bar { position: static; margin-bottom: 20px; }
  .menu-layout { padding: 24px 16px; }
  .menu-category h2 { font-size: 1.25rem; }
  .addons-list { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Cart */
  .cart-body { max-height: 300px; }

  /* Booking */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-card { padding: 28px 18px; }
  .book-section { padding: 52px 0; }

  /* Reviews */
  .reviews-strip { padding: 48px 0; }
  .review-card { min-width: 260px; padding: 22px; }

  /* Follow grid */
  .follow-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .follow-section { padding: 48px 0; }

  /* Auth */
  .auth-card { padding: 32px 20px; }
  .auth-right { padding: 40px 16px; }

  /* Profile & Checkout */
  .profile-wrap { padding: 90px 16px 48px; }
  .checkout-wrap { padding: 90px 16px 48px; gap: 24px; }
  .checkout-items-panel, .checkout-sidebar { padding: 24px 18px; }

  /* Forms */
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px; /* prevents iOS auto-zoom */
    min-height: 48px;
  }
  .form-group textarea { min-height: unset; }
  .btn { min-height: 48px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .footer { padding-top: 48px; }

  /* Values / Team */
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-card { padding: 22px 14px; }

  /* Contact */
  .form-card { padding: 24px 18px; }

  /* CTA */
  .cta-banner { padding: 52px 0; }
  .cta-banner .btn-row { flex-direction: column; align-items: center; }
  .cta-banner .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .addons-list { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-left h1 { font-size: 2rem; }
  .review-card { min-width: 240px; }
  .auth-card { padding: 28px 16px; }
  .feature-blocks-inner { padding: 0 12px; }
}
