/* ============================================================
   Bistro — Essence Design System
   Palette: Cream · Charcoal · Terracotta · Gold
   ============================================================ */

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

/* ── Design tokens ──────────────────────────────────────── */
:root {
  --cream:        #F5F2EB;
  --warm-beige:   #EDE9DF;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #2C2C2C;
  --terracotta:   #B3592F;
  --terracotta-l: #C96A3F;
  --gold:         #D9A65F;
  --gold-light:   #E8C080;
  --muted:        #888880;
  --border:       rgba(26,26,26,0.10);

  --shadow-card:       0 1px 2px rgba(0,0,0,.03), 0 8px 32px rgba(0,0,0,.05);
  --shadow-card-hover: 0 20px 60px rgba(0,0,0,.11), 0 4px 12px rgba(0,0,0,.04);
  --shadow-gold:       0 6px 28px rgba(217,166,95,.22);
  --radius-card:       1.25rem;
  --radius-pill:       50rem;

  /* Keep Bootstrap accent wired to terracotta */
  --accent-color: var(--terracotta);
  --accent-dark:  var(--terracotta-l);
}

/* ── Base ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  padding-top: 72px; /* fixed navbar height */
}

h1, h2, h3, h4, h5, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26,26,26,.15); border-radius: 3px; }

/* ── Colour utilities ───────────────────────────────────── */
.text-accent     { color: var(--terracotta) !important; }
.text-gold       { color: var(--gold) !important; }
.text-cream      { color: var(--cream) !important; }
.text-charcoal   { color: var(--charcoal) !important; }
.bg-accent       { background-color: var(--terracotta) !important; }
.bg-cream        { background-color: var(--cream) !important; }
.bg-warm-beige   { background-color: var(--warm-beige) !important; }
.bg-charcoal     { background-color: var(--charcoal) !important; }
.border-accent   { border-color: var(--terracotta) !important; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-accent,
.btn-primary-essence {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 2rem;
  border-radius: var(--radius-pill);
  background: var(--terracotta);
  border: 2px solid var(--terracotta);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s ease;
  box-shadow: 0 4px 20px rgba(179,89,47,.22);
  cursor: pointer;
  white-space: nowrap;
}
.btn-accent:hover,
.btn-primary-essence:hover {
  background: var(--terracotta-l);
  border-color: var(--terracotta-l);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(179,89,47,.32);
}

.btn-outline-accent,
.btn-outline-essence {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 2rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 2px solid rgba(245,242,235,.35);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-accent:hover,
.btn-outline-essence:hover {
  background: rgba(245,242,235,.1);
  border-color: rgba(245,242,235,.6);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline-dark-essence {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 2rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 2px solid rgba(26,26,26,.2);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s ease;
  cursor: pointer;
}
.btn-outline-dark-essence:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s ease;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(217,166,95,.38);
  color: var(--charcoal);
}

/* ── Section typography ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .9rem;
  position: relative;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-tag { /* legacy alias */
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-title,
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-title .accent-italic,
.section-heading .accent-italic {
  font-style: italic;
  color: var(--terracotta);
}

/* Decorative divider */
.essence-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.5rem auto;
  justify-content: center;
}
.essence-divider::before,
.essence-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,166,95,.4), transparent);
}
.essence-divider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar-essence {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 1.25rem 0;
  background: transparent;
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease;
}
.navbar-essence.scrolled {
  background: rgba(26,26,26,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .65rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.navbar-essence .navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.navbar-essence .navbar-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(217,166,95,.7);
}
.navbar-essence .navbar-brand-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217,166,95,.2);
  transition: border-color .3s;
}
.navbar-essence .navbar-brand:hover .navbar-brand-logo {
  border-color: rgba(217,166,95,.5);
}

.navbar-essence .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(245,242,235,.6) !important;
  padding: .3rem 0 !important;
  position: relative;
  transition: color .3s;
}
.navbar-essence .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width .4s ease;
}
.navbar-essence .nav-link:hover,
.navbar-essence .nav-link.active {
  color: var(--gold) !important;
}
.navbar-essence .nav-link:hover::after,
.navbar-essence .nav-link.active::after {
  width: 100%;
}

.navbar-essence .navbar-toggler {
  border: none;
  padding: .3rem;
  color: var(--cream);
}
.navbar-essence .navbar-toggler:focus { box-shadow: none; }
.navbar-essence .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,242,235,0.8)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile collapse */
.navbar-essence .navbar-collapse {
  background: rgba(26,26,26,.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-top: 1px solid rgba(245,242,235,.06);
  margin-top: .5rem;
  border-radius: 0 0 1rem 1rem;
}
.navbar-essence .navbar-collapse .nav-link {
  padding: .65rem .75rem !important;
  border-radius: .75rem;
}
.navbar-essence .navbar-collapse .nav-link:hover {
  background: rgba(217,166,95,.08);
}
@media (min-width: 992px) {
  .navbar-essence .navbar-collapse {
    background: transparent;
    padding: 0;
    border: none;
    margin-top: 0;
    border-radius: 0;
  }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero-section {
  min-height: 100svh;
  margin-top: -72px; /* pull behind fixed navbar */
  padding-top: 104px; /* keep centered content clear of the fixed navbar */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,.8) 0%, rgba(90,40,15,.5) 100%);
}
.hero-section .hero-overlay-bottom {
  position: absolute;
  inset: 0;
  /* darker band at the very top so the fixed navbar stays readable over bright banner images */
  background: linear-gradient(to top, #1A1A1A 0%, transparent 40%, rgba(26,26,26,.55) 85%, rgba(26,26,26,.92) 100%);
}
.hero-diamond-pattern {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: repeating-linear-gradient(45deg, #D9A65F 0, #D9A65F 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(217,166,95,.5), transparent);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,242,235,.3);
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: color .5s;
}
.hero-scroll-indicator:hover { color: var(--gold); }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217,166,95,.25);
  background: rgba(217,166,95,.05);
  backdrop-filter: blur(20px);
  margin-bottom: 2.5rem;
}
.hero-badge-stars { display: flex; gap: 2px; }
.hero-badge-star { color: var(--gold); font-size: .7rem; }
.hero-badge-divider { width: 1px; height: 16px; background: rgba(217,166,95,.3); }
.hero-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero headline */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.hero-headline .gold-italic {
  font-style: italic;
  color: var(--gold);
  /* tagline reads as a subtitle, not a second headline-sized block */
  display: block;
  font-size: .42em;
  line-height: 1.25;
  margin-top: .6rem;
  letter-spacing: 0;
}

/* Hero sub */
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,242,235,.5);
  max-width: 460px;
  margin: 0 auto 3rem;
  letter-spacing: .02em;
}

/* Hero pills */
.hero-pill {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-pill);
  color: rgba(245,242,235,.5);
  background: rgba(245,242,235,.05);
  border: 1px solid rgba(245,242,235,.1);
}

/* ── Page header ────────────────────────────────────────── */
.page-header {
  background: var(--charcoal);
  padding: 5rem 0 3.5rem;
  border-bottom: 3px solid var(--terracotta);
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}
.page-header .lead {
  color: rgba(245,242,235,.4);
  font-family: 'Inter', sans-serif;
}

/* ── Cards ──────────────────────────────────────────────── */
.card-warm,
.menu-card {
  background: #fff;
  border: 1px solid rgba(26,26,26,.07) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease !important;
}
.card-warm:hover,
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover) !important;
  border-color: rgba(26,26,26,.12) !important;
}

.menu-card-img {
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}
.menu-card:hover .menu-card-img {
  transform: scale(1.04);
}
.menu-card-img-placeholder {
  height: 220px;
  background: var(--warm-beige);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card-img-placeholder i { color: var(--muted); font-size: 2.5rem; }

/* Category badge on card */
.item-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
}

/* Price badge */
.price-badge {
  background: var(--warm-beige);
  color: var(--terracotta);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Dietary badges */
.badge-veg   { background: rgba(40,167,69,.1);  color: #1a6b2a; border: 1px solid rgba(40,167,69,.25); }
.badge-vegan { background: rgba(40,167,69,.1);  color: #1a6b2a; border: 1px solid rgba(40,167,69,.25); }
.badge-gf    { background: rgba(255,193,7,.1);  color: #7d6008; border: 1px solid rgba(255,193,7,.25); }

/* Category pills */
.category-pill {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.3rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid rgba(26,26,26,.12);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
}
.category-pill:hover {
  border-color: rgba(179,89,47,.4);
  color: var(--terracotta);
}
.category-pill.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(179,89,47,.25);
  transform: scale(1.03);
}

/* ── List menu layout ───────────────────────────────────── */
.menu-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(26,26,26,.06);
  transition: background .2s;
}
.menu-list-item:last-child { border-bottom: none; }
.menu-list-item:hover { background: rgba(237,233,223,.4); }
.menu-list-item h6 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 .2rem;
  transition: color .3s;
}
.menu-list-item:hover h6 { color: var(--terracotta); }

/* ── About / team cards ─────────────────────────────────── */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(217,166,95,.25);
  transition: border-color .3s;
  margin-bottom: .75rem;
}
.team-card:hover .team-avatar { border-color: var(--gold); }
.team-role {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Reservation / form ─────────────────────────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.form-control, .form-select {
  border-radius: .75rem !important;
  border: 1px solid rgba(26,26,26,.12) !important;
  background: var(--cream) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  padding: .75rem 1rem !important;
  color: var(--charcoal) !important;
  transition: border-color .3s, box-shadow .3s !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--terracotta) !important;
  box-shadow: 0 0 0 3px rgba(179,89,47,.12) !important;
  outline: none !important;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--charcoal);
  margin-bottom: .4rem;
}

/* Info card (reservation sidebar) */
.info-card {
  background: var(--charcoal);
  border-radius: var(--radius-card);
  padding: 2rem;
  color: var(--cream);
  height: 100%;
}
.info-card h5 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.info-card .info-row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.info-card .info-icon { color: rgba(217,166,95,.7); flex-shrink: 0; margin-top: .15rem; }
.info-card .info-label { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(245,242,235,.4); }
.info-card .info-value { font-size: .9rem; color: rgba(245,242,235,.8); }
.info-card a { color: rgba(245,242,235,.6); text-decoration: none; transition: color .3s; }
.info-card a:hover { color: var(--gold); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  border-bottom: 1px solid rgba(245,242,235,.06);
  color: rgba(245,242,235,.5);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(245,242,235,.7); font-weight: 500; }

/* ── CTA section ────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  padding: 6rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .75rem;
}
.cta-section h2 em { color: var(--gold); }
.cta-section .lead { color: rgba(245,242,235,.4); font-family: 'Inter', sans-serif; }

/* ── Footer ─────────────────────────────────────────────── */
.footer-essence {
  background: linear-gradient(180deg, var(--charcoal) 0%, #0d0d0d 100%);
  color: var(--cream);
}
.footer-cta-band {
  border-bottom: 1px solid rgba(245,242,235,.05);
  padding: 4rem 0;
}
.footer-cta-band h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
}
.footer-cta-band h3 em { color: var(--gold); }
.footer-cta-band .sub { color: rgba(245,242,235,.3); font-size: .85rem; letter-spacing: .05em; }
.footer-main { padding: 4rem 0; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand-sub {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(217,166,95,.7);
}
.footer-brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217,166,95,.25);
}
.footer-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(245,242,235,.35);
  max-width: 260px;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.footer-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: rgba(245,242,235,.35);
  text-decoration: none;
  margin-bottom: .6rem;
  transition: color .3s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.footer-link:hover { color: var(--gold); }
.footer-contact-icon { color: rgba(217,166,95,.6); flex-shrink: 0; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245,242,235,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,242,235,.35);
  text-decoration: none;
  transition: all .3s;
  font-size: .9rem;
}
.footer-social-btn:hover { color: var(--gold); border-color: rgba(217,166,95,.4); }
.footer-bottom {
  border-top: 1px solid rgba(245,242,235,.05);
  padding-top: 2rem;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: rgba(245,242,235,.2);
}

/* ── Payment page ───────────────────────────────────────── */
#payment-element { margin-bottom: 1.5rem; }
#payment-message { color: #dc3545; margin-top: .75rem; font-size: .9rem; }
#pay-btn:disabled { opacity: .65; cursor: not-allowed; }

/* ── Order items ────────────────────────────────────────── */
.order-item-card {
  border-radius: .75rem;
  border: 1px solid rgba(26,26,26,.08) !important;
  background: #fff;
  transition: box-shadow .2s;
}
.order-item-card:hover { box-shadow: var(--shadow-card) !important; }
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-input { -moz-appearance: textfield; }

/* ── Confirmation / alerts ──────────────────────────────── */
.confirmation-icon { font-size: 5rem; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in .8s ease both;
}

/* ── Misc ───────────────────────────────────────────────── */
img { max-width: 100%; }
.stripe-connect-status-active   { color: #198754; font-weight: 600; }
.stripe-connect-status-pending  { color: #fd7e14; font-weight: 600; }
.stripe-connect-status-inactive { color: #6c757d; }

/* ── Navbar essence (custom markup) ────────────────────── */
.navbar-essence-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.navbar-essence-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217,166,95,.2);
  transition: border-color .3s;
  flex-shrink: 0;
}
.navbar-essence-brand:hover .navbar-essence-logo { border-color: rgba(217,166,95,.5); }
.navbar-essence-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .2rem;
}
.navbar-essence-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
}
.navbar-essence-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(217,166,95,.65);
}
.navbar-essence-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-essence-link {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(245,242,235,.55);
  text-decoration: none;
  position: relative;
  padding-bottom: .2rem;
  transition: color .3s;
}
.navbar-essence-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width .4s ease;
}
.navbar-essence-link:hover,
.navbar-essence-link.active {
  color: var(--gold);
}
.navbar-essence-link:hover::after,
.navbar-essence-link.active::after { width: 100%; }

/* Mobile hamburger */
.navbar-essence-toggle {
  background: none;
  border: none;
  padding: .4rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}
.navbar-essence-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .35s ease;
  transform-origin: center;
}
.navbar-essence-toggle.open .navbar-essence-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-essence-toggle.open .navbar-essence-toggle-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar-essence-toggle.open .navbar-essence-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.navbar-essence-mobile {
  display: none;
  background: rgba(26,26,26,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,242,235,.06);
  animation: fade-in .25s ease;
}
.navbar-essence-mobile.open { display: block; }
.navbar-essence-mobile-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(245,242,235,.6);
  text-decoration: none;
  padding: .65rem .75rem;
  border-radius: .75rem;
  transition: all .3s;
}
.navbar-essence-mobile-link:hover,
.navbar-essence-mobile-link.active {
  color: var(--gold);
  background: rgba(217,166,95,.08);
}

/* ── Footer (custom markup) ─────────────────────────────── */
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 0;
}
.footer-cta-heading {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.footer-cta-accent { color: var(--gold); font-style: italic; }
.footer-cta-sub { color: rgba(245,242,235,.3); font-size: .85rem; margin-top: .4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
}

.footer-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217,166,95,.25);
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(217,166,95,.6);
  margin-bottom: .75rem;
}
.footer-col-heading {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: rgba(245,242,235,.38);
}
.footer-contact-item i { color: rgba(217,166,95,.6); flex-shrink: 0; margin-top: .1rem; }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(245,242,235,.38);
  border-bottom: 1px solid rgba(245,242,235,.05);
}
.footer-hours-row:last-child { border-bottom: none; }

.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.5rem;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,242,235,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,242,235,.35);
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s;
}
.footer-social-link:hover { color: var(--gold); border-color: rgba(217,166,95,.4); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(245,242,235,.05);
  padding: 1.5rem 0 2rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: rgba(245,242,235,.2);
}

/* ── Language Switcher ── */
.btn-lang {
  background: transparent;
  border: 1px solid rgba(245,242,235,.35);
  color: rgba(245,242,235,.85);
  border-radius: 4px;
  padding: .25rem .55rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
  line-height: 1.4;
}
.btn-lang:hover,
.btn-lang:focus {
  background: rgba(245,242,235,.08);
  border-color: rgba(245,242,235,.6);
  color: #fff;
  outline: none;
}
.lang-switcher .dropdown-menu {
  min-width: 130px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
}
.lang-switcher .dropdown-item { font-size: .875rem; padding: .4rem .8rem; }
.lang-switcher .dropdown-item.active,
.lang-switcher .dropdown-item:active { background: var(--terracotta); color: #fff; }

.lang-select {
  background: transparent;
  border: 1px solid rgba(245,242,235,.35);
  color: rgba(245,242,235,.85);
  border-radius: 4px;
  padding: .25rem .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  outline: none;
}
.lang-select:focus { border-color: rgba(245,242,235,.6); }
.lang-select option { color: #1A1A1A; background: #fff; }

.lang-pill {
  background: transparent;
  border: 1px solid rgba(245,242,235,.25);
  color: rgba(245,242,235,.6);
  border-radius: 4px;
  padding: .2rem .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
}
.lang-pill:hover { border-color: rgba(245,242,235,.5); color: rgba(245,242,235,.9); }
.lang-pill--active { border-color: var(--gold); color: var(--gold); }
.footer-bottom-heart { display: inline-flex; align-items: center; gap: .3rem; }

/* ── Address autocomplete ───────────────────────────────── */
.address-ac-wrapper { position: relative; }
.address-ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .5rem;
  box-shadow: var(--shadow-card-hover);
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.address-ac-list li {
  padding: .55rem .85rem;
  cursor: pointer;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
  line-height: 1.35;
}
.address-ac-list li:last-child { border-bottom: none; }
.address-ac-list li:hover,
.address-ac-list li.ac-active { background: var(--warm-beige); color: var(--charcoal); }
