/* ==========================================================================
   LE NINETY: the ninetieth minute, dressed for dinner.
   Pitch green out of the house logo, marble cream out of the printed carte,
   cognac out of the banquette leather, champagne gold out of the drinks card.
   Stadium-pill frames, a scoreboard ticker, minute-marker section numbers.
   Type: Young Serif (display) · Instrument Sans (body)
         · Instrument Serif italic (aside voice) · Big Shoulders (numerals).
   ========================================================================== */

:root {
  --pitch: #123223;
  --pitch-deep: #0b2117;
  --pine: #1b4530;
  --pine-soft: #29583e;
  --cream: #f2ede2;
  --paper: #faf7ef;
  --sand: #e7dfce;
  --ink: #14261c;
  --ink-soft: #566257;
  --line: rgba(20, 38, 28, 0.14);
  --cognac: #b4693c;
  --cognac-deep: #96522b;
  --champagne: #d9bc8a;
  --champagne-deep: #b7945c;
  --brick: #a5524a;
  --cream-on-dark: #f2ede2;
  --serif: 'Young Serif', 'Georgia', serif;
  --sans: 'Instrument Sans', 'Segoe UI', sans-serif;
  --accent: 'Instrument Serif', 'Georgia', serif;
  --count: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --shadow: 0 18px 44px rgba(11, 33, 23, 0.16);
  --shadow-soft: 0 10px 26px rgba(11, 33, 23, 0.10);
  --radius: 14px;
  /* the stadium pill: a running track drawn around a photograph */
  --stadium: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--pitch); color: var(--champagne); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }

/* ---------- shared section furniture ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cognac);
}
/* the minute marker: where we are in the match */
.kicker .mm {
  font-family: var(--count);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--champagne);
  background: var(--pitch);
  border-radius: 6px;
  padding: 5px 8px 4px;
}
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before,
.section-head.center .kicker::after {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-title {
  font-size: clamp(33px, 4.4vw, 54px);
  margin: 12px 0 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-script {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  color: var(--cognac);
}
.section-sub { color: var(--ink-soft); max-width: 640px; }

.container { width: min(1180px, 92vw); margin: 0 auto; }
section { padding: 96px 0; position: relative; }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ---------- buttons: ticket stubs, not pills ---------- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 rgba(20, 38, 28, 0.22); }
.btn.solid {
  background: var(--cognac);
  border-color: var(--cognac);
  color: #fff;
}
.btn.solid:hover { background: var(--cognac-deep); border-color: var(--cognac-deep); box-shadow: 4px 4px 0 rgba(11, 33, 23, 0.3); }
.btn.ghost { border-color: currentColor; background: transparent; }
.hero-actions .btn.ghost, .contact-band .btn.ghost, .afterwork .btn.ghost {
  color: var(--champagne);
  border-color: rgba(217, 188, 138, 0.7);
}
.hero-actions .btn.ghost:hover, .contact-band .btn.ghost:hover {
  box-shadow: 4px 4px 0 rgba(217, 188, 138, 0.25);
}
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; box-shadow: none; }

/* ---------- navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 16px 0;
  color: var(--cream-on-dark);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(242, 237, 226, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px rgba(11, 33, 23, 0.07);
  padding: 10px 0;
}
.nav.menu-open, .nav.scrolled.menu-open { background: var(--pitch-deep); color: var(--cream-on-dark); box-shadow: none; }
.nav .container { width: min(1320px, 94vw); }
.nav-inner { display: flex; align-items: center; gap: 26px; }
.nav-logo { flex: 0 0 auto; display: flex; }
.nav-logo img { height: 34px; width: auto; transition: height 0.3s ease, filter 0.3s ease; }
.nav.scrolled .nav-logo img { height: 29px; filter: invert(88%) sepia(14%) saturate(638%) hue-rotate(96deg) brightness(0.35); }
.nav.menu-open .nav-logo img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0 auto; }
.nav-right { display: flex; align-items: center; gap: 14px; list-style: none; }
.nav-links a, .nav-right a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav.scrolled .nav-links a::after { background: var(--cognac); }
.nav-links a:hover { color: var(--champagne); }
.nav.scrolled .nav-links a:hover { color: var(--cognac); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1.5px solid currentColor;
  border-radius: 9px;
  padding: 9px 18px !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-links > li > a, .nav-right > li > a { display: inline-block; }
.nav-cta:hover { background: var(--cognac); border-color: var(--cognac); color: #fff !important; }

.lang-switch {
  position: relative;
  display: inline-flex;
  border: 1px solid currentColor;
  border-radius: 9px;
  overflow: hidden;
  font-size: 11px;
}
.lang-switch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--cognac);
  border-radius: 7px;
  transition: transform 0.3s ease;
}
.lang-switch.on-fr::before { transform: translateX(100%); }
.lang-switch button {
  position: relative;
  z-index: 1;
  background: none;
  border: 0;
  color: inherit;
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lang-switch button.active { color: #fff; }

.burger { display: none; background: none; border: 0; color: inherit; width: 40px; height: 34px; position: relative; z-index: 70; }
.burger span {
  position: absolute;
  left: 7px;
  right: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 16px; }
.burger span:nth-child(3) { top: 23px; }
.burger.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* ---------- hero: kickoff ----------
   Not a photograph with text over it: a pitch-green stage, the wordmark
   large, and the room held in a stadium pill to the right. The faint
   centre circle and halfway line are the pitch markings of the name. */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream-on-dark);
  background:
    radial-gradient(1000px 700px at 82% -10%, rgba(41, 88, 62, 0.55), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(11, 33, 23, 0.9), transparent 60%),
    var(--pitch);
  overflow: hidden;
}
/* centre circle + halfway line, drawn once, never shouting */
.hero::before {
  content: '';
  position: absolute;
  left: -180px;
  top: 50%;
  width: 620px;
  height: 620px;
  border: 1.5px solid rgba(217, 188, 138, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(217, 188, 138, 0.18);
}
.hero-90 {
  position: absolute;
  right: -1vw;
  bottom: -7vw;
  font-family: var(--count);
  font-weight: 800;
  font-size: clamp(220px, 34vw, 520px);
  line-height: 0.8;
  color: rgba(217, 188, 138, 0.05);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: 130px 0 90px;
}
.hero-content { position: relative; }
.hero-over {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne);
}
.hero-name { margin: 22px 0 0; }
.hero-name img { width: min(520px, 88%); height: auto; }
.hero-script {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  color: var(--champagne);
  margin: 22px 0 8px;
}
.hero-tag { font-size: 13.5px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.85; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.hero-content > * { opacity: 0; transform: translateY(26px); animation: rise 0.9s ease forwards; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.24s; }
.hero-content > *:nth-child(4) { animation-delay: 0.36s; }
.hero-content > *:nth-child(5) { animation-delay: 0.48s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-family: var(--count);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.16em;
  color: var(--champagne);
  border-top: 1px solid rgba(217, 188, 138, 0.3);
  padding-top: 16px;
}
.hero-hours .dia {
  width: 7px;
  height: 7px;
  background: var(--cognac);
  border-radius: 50%;
  display: inline-block;
}
.hero-hours small {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.75);
}

/* the room, held in the stadium pill */
.hero-visual { position: relative; opacity: 0; animation: rise 1s 0.3s ease forwards; }
.hero-visual .pill {
  border-radius: var(--stadium);
  overflow: hidden;
  aspect-ratio: 4 / 5.4;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.hero-visual .pill img { width: 100%; height: 100%; object-fit: cover; animation: kb 26s ease-in-out infinite alternate; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(217, 188, 138, 0.35);
  border-radius: var(--stadium);
  pointer-events: none;
}
.hero-visual .pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(11, 33, 23, 0.5));
  border-radius: var(--stadium);
}

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.08); } }

/* ---------- ticker: the scoreboard strip ---------- */

.mc-ticker {
  background: var(--pitch-deep);
  color: var(--champagne);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  border-top: 1px solid rgba(217, 188, 138, 0.22);
  border-bottom: 1px solid rgba(217, 188, 138, 0.22);
}
.mc-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
  will-change: transform;
}
.mc-ticker span {
  font-family: var(--count);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.mc-ticker b {
  width: 6px;
  height: 6px;
  background: var(--cognac);
  border-radius: 1px;
  transform: rotate(45deg);
  font-size: 0;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- the kickoff badge ---------- */

.reserve-badge {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 50;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 12px 26px rgba(11, 33, 23, 0.35));
}
.reserve-badge svg { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.reserve-badge svg text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--pitch);
}
.reserve-badge .badge-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.35s ease;
  background: var(--pitch);
  display: grid;
  place-items: center;
}
.reserve-badge .badge-center img { width: 100%; height: 100%; object-fit: cover; }
.reserve-badge:hover .badge-center { transform: rotate(-10deg) scale(1.08); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- reveals ---------- */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal[data-delay='1'], .reveal-left[data-delay='1'] { transition-delay: 0.12s; }
.reveal[data-delay='2'], .reveal-left[data-delay='2'] { transition-delay: 0.24s; }
.reveal[data-delay='3'], .reveal-left[data-delay='3'] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
  .gal-track, .reserve-badge svg, .hero-visual .pill img, .mc-ticker-track { animation: none !important; }
  .hero video { display: none; }
}

/* ---------- about ---------- */

#about { padding-top: 110px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-images { position: relative; padding-bottom: 80px; }
.about-images .img-main { width: 76%; border-radius: var(--stadium); aspect-ratio: 4 / 5.3; }
.about-images .img-accent {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}
.img-frame { overflow: hidden; box-shadow: var(--shadow-soft); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.img-frame:hover img { transform: scale(1.05); }
.about-text p { color: var(--ink-soft); font-size: 16.5px; }
.about-sign {
  font-family: var(--accent);
  font-style: italic;
  font-size: 27px;
  color: var(--pitch);
  margin-top: 26px;
  line-height: 1.3;
}
.about-sign::before {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  background: var(--champagne-deep);
  margin-bottom: 14px;
}

/* ---------- menu preview: the printed carte ---------- */

.menu-section { background: var(--paper); }
.menu-section .kicker { color: var(--cognac); }
.menu-section .section-title { color: var(--pitch); }
.menu-section .section-sub { color: var(--ink-soft); }
.menu-section .container { position: relative; z-index: 1; }
#menu.menu-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.menu-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 46px; }
.menu-tabs button {
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  padding: 11px 34px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-tabs button.active { background: var(--pitch); border-color: var(--pitch); color: var(--champagne); }

.menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
}
.menu-cat h3 {
  font-size: 23px;
  color: var(--pitch);
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
/* the little diamond rule of the printed carte */
.menu-cat h3::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--champagne-deep);
  transform: rotate(45deg) translateY(-1px);
  flex: 0 0 auto;
  border-radius: 1px;
}
.menu-cat h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-6px);
}
.menu-cat-sub {
  font-size: 12px;
  color: var(--champagne-deep);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 10px;
}
.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 9px 0 2px; }
.menu-item .mi-name { font-weight: 600; font-size: 15.5px; }
.menu-item .mi-dots { flex: 1; border-bottom: 1.5px dotted rgba(20, 38, 28, 0.26); transform: translateY(-4px); }
.menu-item .mi-price { font-family: var(--count); font-weight: 700; font-size: 16px; letter-spacing: 0.05em; color: var(--brick); white-space: nowrap; }
.menu-item-desc { font-size: 13px; color: var(--ink-soft); margin: 0 0 4px; padding-right: 46px; font-family: var(--accent); font-style: italic; font-size: 14px; }
.menu-actions { text-align: center; margin-top: 54px; }
.menu-section .btn { border-color: var(--pitch); color: var(--pitch); }
.menu-section .btn:hover { background: var(--pitch); color: var(--champagne); }

.btn.wa-btn { display: inline-flex; align-items: center; gap: 10px; }
.btn.wa-btn:hover { background: var(--pitch); color: var(--champagne); }
.btn.wa-btn.busy { opacity: 0.6; pointer-events: none; }
.btn.wa-btn svg { width: 17px; height: 17px; fill: currentColor; }

.menu-page { padding-top: 70px; }
.menu-page .promo-notice { margin-bottom: 30px; }
.menu-cat.two-way .mi-price { min-width: 74px; text-align: right; }
.menu-cat.two-way .mi-price.alt { min-width: 84px; }
.menu-item.mi-head { padding-bottom: 0; }
.menu-item.mi-head .mi-price {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- spaces: four rooms, one house ---------- */

#spaces { background: var(--cream); }
.spaces-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.space-card {
  position: relative;
  text-align: left;
  transition: transform 0.4s ease;
}
.space-card:hover { transform: translateY(-8px); }
.space-card img {
  width: 100%;
  aspect-ratio: 3 / 3.8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
  filter: saturate(0.92);
}
.space-card:hover img { box-shadow: var(--shadow); filter: saturate(1.05); }
/* the touchline around the photograph */
.space-card::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 74px;
  border: 1px solid rgba(242, 237, 226, 0.55);
  border-radius: 9px;
  pointer-events: none;
}
.space-card figcaption { padding-top: 16px; }
.space-card figcaption::before {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--champagne-deep);
  margin-bottom: 10px;
  transition: width 0.35s ease, background 0.35s ease;
}
.space-card:hover figcaption::before { width: 58px; background: var(--cognac); }
.space-card figcaption span { font-family: var(--serif); font-size: 21px; color: var(--pitch); display: block; }
.space-card figcaption small:empty { display: none; }
.space-card figcaption small { color: var(--ink-soft); font-size: 13px; }

/* ---------- the cocktails signature band: the drinks card, at scale ---------- */

.afterwork {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(41, 88, 62, 0.5), transparent 60%),
    var(--pitch);
  color: var(--cream-on-dark);
  position: relative;
  overflow: hidden;
}
/* the drinks card's little diamond ornament, centred over the band */
.afterwork::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 188, 138, 0.4), transparent);
}
.afterwork .kicker { color: var(--champagne); }
.afterwork .kicker .mm { background: rgba(217, 188, 138, 0.14); }
.afterwork .section-title { color: #fff; }
.afterwork .t-script { color: var(--champagne); }
.afterwork-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.afterwork-copy .section-title { margin-bottom: 10px; }
.afterwork-copy p { color: rgba(242, 237, 226, 0.8); }
.afterwork-time {
  font-family: var(--count);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}
.afterwork-copy .btn { margin-top: 26px; }
.afterwork-list {
  background: rgba(11, 33, 23, 0.5);
  border: 1px solid rgba(217, 188, 138, 0.28);
  border-radius: var(--radius);
  padding: 30px 34px;
  position: relative;
}
.afterwork-list::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(217, 188, 138, 0.14);
  border-radius: 9px;
  pointer-events: none;
}
.aw-row { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; }
.aw-name { font-weight: 600; }
.aw-dots { flex: 1; border-bottom: 1.5px dotted rgba(217, 188, 138, 0.35); transform: translateY(-4px); }
.aw-price { font-family: var(--count); font-weight: 700; font-size: 16px; letter-spacing: 0.05em; color: var(--champagne); white-space: nowrap; }

/* ---------- gallery marquee ---------- */

.gallery-section { background: var(--paper); overflow: hidden; }
.gal-rows { display: grid; gap: 18px; }
.gal-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.gal-track { display: inline-flex; gap: 18px; animation: slide 42s linear infinite; will-change: transform; }
.gal-marquee.reverse .gal-track { animation-direction: reverse; }
.gal-marquee:hover .gal-track { animation-play-state: paused; }
.gal-track img {
  height: 250px;
  width: auto;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gal-track img:hover { transform: translateY(-6px); filter: brightness(1.06); }
@keyframes slide { to { transform: translateX(-50%); } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 33, 23, 0.95);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1000px, 90vw);
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox button {
  position: absolute;
  background: rgba(242, 237, 226, 0.08);
  border: 1px solid rgba(217, 188, 138, 0.4);
  color: var(--champagne);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}
.lightbox button:hover { background: var(--cognac); border-color: var(--cognac); color: #fff; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- hours & map ---------- */

#hours { background: var(--cream); }
#hours .kicker { color: var(--cognac); }
.info-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.info-grid.no-map { grid-template-columns: 1fr; }
.hours-list { list-style: none; }
.hours-list li { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours-list .day-col { display: flex; flex-direction: column; }
.hours-list .day { font-weight: 600; letter-spacing: 0.04em; }
.hours-list .day-note { color: var(--cognac); font-size: 12.5px; }
.hours-list .dots { flex: 1; }
.hours-list .time { font-family: var(--count); font-weight: 600; font-size: 17px; letter-spacing: 0.1em; color: var(--pitch); }
.hours-list .closed { color: var(--brick); font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-lines { margin-top: 28px; display: grid; gap: 9px; color: var(--ink-soft); }
.contact-lines a:hover { color: var(--cognac); }
.contact-lines strong { color: var(--pitch); }

#map {
  height: 430px;
  border-radius: var(--stadium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--paper);
  z-index: 1;
}
.map-pin { position: relative; width: 22px; height: 22px; }
.map-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--cognac);
  border: 3px solid var(--paper);
  box-shadow: 0 4px 12px rgba(11, 33, 23, 0.4);
}
.map-pin::after {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid var(--cognac);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  from { transform: scale(0.55); opacity: 0.9; }
  to { transform: scale(1.25); opacity: 0; }
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--paper); color: var(--ink); }
.leaflet-popup-content a { color: var(--cognac); font-weight: 600; }

/* ---------- contact band ---------- */

.contact-band {
  position: relative;
  color: var(--cream-on-dark);
  background: url('/images/contact-bg.jpg') center/cover fixed no-repeat;
  overflow: hidden;
}
.contact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 23, 0.93), rgba(18, 50, 35, 0.88));
}
.contact-band > .container { position: relative; z-index: 1; }
.contact-inner { text-align: center; }
.contact-inner .section-title { color: #fff; }
.contact-inner .t-script { color: var(--champagne); }
.contact-band .kicker { color: var(--champagne); }
.contact-band .kicker .mm { background: rgba(217, 188, 138, 0.14); }
.contact-lead { max-width: 560px; margin: 0 auto 40px; color: rgba(242, 237, 226, 0.85); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: rgba(242, 237, 226, 0.06);
  border: 1px solid rgba(217, 188, 138, 0.24);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
a.contact-card:hover { transform: translateY(-4px); background: rgba(242, 237, 226, 0.11); border-color: rgba(217, 188, 138, 0.5); }
.cc-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--cognac);
}
.cc-icon svg { width: 18px; height: 18px; fill: #fff; }
.cc-body { display: flex; flex-direction: column; min-width: 0; }
.cc-body small { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); }
.cc-body b { font-weight: 500; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.contact-band .socials { margin-top: 36px; justify-content: center; }

/* ---------- reservation: your seat, held ---------- */

.reserve-section { background: var(--sand); padding-bottom: 120px; }
.reserve-panel {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(34px, 5vw, 64px);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* the ticket edge: green band with a champagne perforation line */
.reserve-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background: var(--pitch);
}
.reserve-panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  border-top: 2px dashed rgba(20, 38, 28, 0.18);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; margin-top: 34px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input, .form-field select {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--pitch);
  box-shadow: 0 0 0 3px rgba(18, 50, 35, 0.14);
}
.form-field input::placeholder { color: rgba(86, 98, 87, 0.55); }
.form-field select { appearance: none; }
.form-field input[type='date'], .form-field input[type='time'] { color-scheme: light; }
.phone-row { display: grid; grid-template-columns: 118px 1fr; gap: 10px; }
.form-note { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 16px; }
.form-submit { text-align: center; margin-top: 30px; }
.form-msg { text-align: center; margin-top: 14px; font-weight: 500; min-height: 22px; }
.form-msg.ok { color: var(--pine-soft); }
.form-msg.err { color: var(--brick); }
.field-note { font-size: 12px; color: var(--ink-soft); }
.prefill-note { font-size: 13px; color: var(--pine-soft); margin-top: 10px; }

/* ---------- time picker ---------- */

.timepick { position: relative; }
.timepick-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: rgba(86, 98, 87, 0.85);
  padding: 13px 16px;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.timepick-btn:hover { border-color: var(--pitch); }
.timepick-btn.open { border-color: var(--pitch); box-shadow: 0 0 0 3px rgba(18, 50, 35, 0.14); }
.timepick-btn.chosen { color: var(--ink); }
.timepick-btn .tp-caret {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.timepick-btn.open .tp-caret { transform: rotate(-135deg) translateY(-2px); }
.timepick-btn svg { width: 17px; height: 17px; fill: var(--cognac); flex: 0 0 auto; }
.timepick-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 250px;
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
}
.timepick-panel[hidden] { display: none; }
.timepick-slot {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  padding: 9px 0;
  font-family: var(--count);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  transition: all 0.2s ease;
}
.timepick-slot:hover { border-color: var(--pitch); color: var(--pitch); }
.timepick-slot.on { background: var(--pitch); color: var(--champagne); }
.timepick-panel::-webkit-scrollbar { width: 8px; }
.timepick-panel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }

/* ---------- footer ---------- */

footer {
  background: var(--pitch-deep);
  color: rgba(242, 237, 226, 0.8);
  padding: 90px 0 34px;
  position: relative;
  overflow: hidden;
}
.footer-word {
  font-family: var(--count);
  font-weight: 800;
  font-size: clamp(120px, 19vw, 280px);
  letter-spacing: 0.02em;
  line-height: 0.6;
  color: rgba(217, 188, 138, 0.045);
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(217, 188, 138, 0.18);
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
}
.footer-grid p, .footer-grid a, .footer-grid li { font-size: 14.5px; line-height: 2; }
.footer-grid a:hover { color: var(--champagne); }
.footer-grid ul { list-style: none; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  background: rgba(242, 237, 226, 0.08);
}
.socials a img { width: 100%; height: 100%; object-fit: cover; }
.socials a:hover { transform: translateY(-4px) rotate(-4deg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13px;
  position: relative;
}
.footer-bottom a:hover { color: var(--champagne); }

/* ---------- inner page hero ---------- */

.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  place-items: end center;
  text-align: center;
  color: var(--cream-on-dark);
  overflow: hidden;
  padding-bottom: 60px;
  background: var(--pitch);
}
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 23, 0.68), rgba(11, 33, 23, 0.82));
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-video { position: absolute; inset: 0; }
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero h1 { position: relative; z-index: 2; font-size: clamp(44px, 7vw, 80px); color: #fff; }
.page-hero .kicker { color: var(--champagne); }

/* ---------- legal pages ---------- */

.legal { max-width: 760px; margin: 0 auto; padding: 150px 0 90px; }
.legal h1 { font-size: clamp(36px, 5vw, 54px); margin-bottom: 24px; }
.legal h2 { font-size: 24px; margin: 36px 0 12px; color: var(--pitch); }
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; }
.legal ul { padding-left: 22px; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 80px);
  background: var(--pitch);
  color: var(--champagne);
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 95;
  font-size: 14.5px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------- */

@media (min-width: 1500px) {
  .spaces-grid { gap: 34px; }
  .menu-cols { gap: 70px; }
}

@media (max-width: 1340px) {
  .reserve-badge { right: 18px; bottom: 18px; width: 92px; height: 92px; }
}

@media (max-width: 1024px) {
  .nav-inner { gap: 16px; }
  .nav-logo img { height: 28px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11.5px; }
  .nav-links .nav-cta { padding: 8px 16px !important; }
  .nav-links li { list-style: none; }
  .nav-links .lang-switch { font-size: 10px; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--pitch-deep);
    color: var(--cream-on-dark);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 60;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 19px; letter-spacing: 0.18em; }
  .nav-links .nav-cta { padding: 12px 28px !important; }
  .nav-links li { opacity: 1; }
  .nav-links .lang-switch { font-size: 12px; }
  .nav-links.open li { opacity: 0; transform: translateY(14px); animation: rise 0.5s ease forwards; }
  .nav-links.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.2s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.25s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.3s; }
  .nav-links.open li:nth-child(7) { animation-delay: 0.35s; }
  .nav-links.open li:nth-child(8) { animation-delay: 0.4s; }
  .nav-right { display: none; }
  .nav-links .mobile-only { display: block; }
  .burger { display: block; }
  .nav-simple .nav-links { position: static; transform: none; background: none; flex-direction: row; }
  .nav-simple .nav-links li { display: inline-block; }
  .nav-simple .nav-links a { font-size: 12px; }

  .hero-grid { grid-template-columns: 1fr; padding: 120px 0 80px; gap: 44px; }
  .hero-visual { max-width: 420px; }
  .hero-90 { font-size: 240px; right: -30px; bottom: -50px; }

  .about-grid, .info-grid { grid-template-columns: 1fr; }
  .afterwork-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  #map { height: 330px; border-radius: var(--radius); margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .reserve-section { padding-bottom: 90px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-cols { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) {
  .nav-links .mobile-only { display: none; }
}

@media (max-width: 720px) {
  .gal-track img { height: 190px; }
  .hero-actions .btn { padding: 13px 26px; font-size: 12px; }
  .hero-tag { font-size: 11.5px; letter-spacing: 0.22em; }
  .hero-name img { width: min(400px, 96%); }
}

@media (max-width: 560px) {
  .spaces-grid { grid-template-columns: 1fr; }
  .space-card img { aspect-ratio: 3 / 3.1; }
  .menu-cols { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .menu-item { flex-wrap: wrap; }
  .menu-item .mi-name { flex: 1 1 60%; }
  .menu-item .mi-dots { display: none; }
  .menu-cat.two-way .menu-item { flex-wrap: nowrap; }
  .menu-cat.two-way .mi-name { flex: 1; }
  .menu-cat.two-way .mi-dots { display: block; }
  .menu-cat.two-way .mi-price { min-width: 58px; font-size: 15px; }
  .menu-cat.two-way .mi-price.alt { min-width: 66px; }
  .menu-cat.two-way .mi-head .mi-price { font-size: 10px; }
  .reserve-badge { display: none; }
}

@media (prefers-reduced-motion: reduce), (max-width: 720px) {
  .contact-band { background-attachment: scroll; }
}

/* ==========================================================================
   Account, deals, reset & delete pages
   ========================================================================== */

.nav-auth { opacity: 0.92; }
.nav-auth:hover { color: var(--cognac); }
.nav-auth.signed-in { color: #8fc3a5; }

.page-account { min-height: 100vh; position: relative; }
.page-account::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('/images/account-bg.jpg') center/cover no-repeat;
  z-index: -2;
}
.page-account::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(242, 237, 226, 0.92), rgba(242, 237, 226, 0.96));
  z-index: -1;
}
.page-account .nav { position: sticky; top: 0; }
.page-account .nav-logo img { height: 29px; }
.account-main { padding: 60px 0 90px; }
.account-main > .container { width: min(1080px, 92vw); }
.page-account footer { margin-top: 0; }
.page-account .footer-word { display: none; }
.account-main section { padding: 30px 0; }

.auth-wrap { display: grid; place-items: center; padding: 30px 0; }
.auth-card {
  width: min(520px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(30px, 5vw, 50px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: var(--pitch);
}
.auth-logo { height: 40px; width: auto; margin: 8px auto 18px; filter: invert(88%) sepia(14%) saturate(638%) hue-rotate(96deg) brightness(0.35); }
.auth-card .section-title { font-size: clamp(28px, 4vw, 38px); }
.auth-sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }
.auth-form { display: grid; gap: 16px; text-align: left; }
#signupForm { grid-template-columns: 1fr 1fr; }
#signupForm .full { grid-column: 1 / -1; }
.auth-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.auth-form input {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.auth-form input:focus { outline: none; border-color: var(--pitch); box-shadow: 0 0 0 3px rgba(18, 50, 35, 0.14); }
.auth-form .btn { margin-top: 8px; }
.auth-form .btn.ghost { border-color: var(--pitch); color: var(--pitch); }
.auth-hint { font-size: 12px; color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 400; }
.gender-row { display: flex; gap: 8px; }
.gender-row button {
  flex: 1;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  color: var(--ink-soft);
  padding: 10px 0;
  font-size: 13px;
  transition: all 0.25s ease;
}
.gender-row button:hover { border-color: var(--pitch); }
.gender-row button.active { background: var(--pitch); border-color: var(--pitch); color: var(--champagne); }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.auth-msg { min-height: 20px; font-size: 14px; margin-top: 12px; }
.auth-msg.err { color: var(--brick); }
.auth-msg.ok { color: var(--pine-soft); }
.auth-switch { font-size: 14px; color: var(--ink-soft); margin-top: 18px; }
.auth-switch a { color: var(--cognac); font-weight: 600; }
.pending-title { font-size: 26px; }

.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.member-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 26px 28px;
}
.member-card h3 { font-size: 21px; margin-bottom: 12px; }
.member-card .btn { margin-top: 14px; padding: 11px 24px; font-size: 12px; }
.member-card .muted { color: var(--ink-soft); font-size: 14px; }
.fidelity-card { background: linear-gradient(135deg, var(--pitch-deep), var(--pine)); color: var(--cream-on-dark); border: 0; }
.fidelity-card .kicker { color: var(--champagne); }
.fidelity-card b { font-family: var(--count); font-weight: 700; font-size: 40px; display: block; line-height: 1.1; }
.fidelity-card p { font-size: 13.5px; color: rgba(242, 237, 226, 0.85); }
.fidelity-card.off b { font-size: 22px; }
.member-heading { font-size: 27px; margin: 40px 0 16px; }

.res-list { display: grid; gap: 14px; }
.res-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
}
.res-when { display: flex; flex-direction: column; min-width: 120px; }
.res-when b { font-family: var(--count); font-weight: 700; letter-spacing: 0.06em; font-size: 19px; }
.res-when span { color: var(--ink-soft); font-size: 13.5px; }
.res-meta { display: flex; flex-direction: column; }
.res-meta b { font-weight: 600; }
.res-meta span { color: var(--ink-soft); font-size: 13.5px; }
.res-badge {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 7px 16px;
}
.res-badge.pending { background: rgba(180, 105, 60, 0.14); color: var(--cognac-deep); }
.res-badge.confirmed { background: rgba(18, 50, 35, 0.12); color: var(--pitch); }
.res-badge.cancelled { background: rgba(20, 38, 28, 0.08); color: var(--ink-soft); }

.hidden { display: none !important; }

@media (max-width: 860px) {
  .member-grid { grid-template-columns: 1fr; }
  .res-card { flex-wrap: wrap; gap: 10px 20px; }
  .res-when { min-width: 0; }
}
@media (max-width: 560px) {
  #signupForm { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .account-main { padding-top: 30px; }
}

.auth-logo + .section-title { margin-top: 0; }
.auth-form select {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
}
.auth-form select:focus { outline: none; border-color: var(--pitch); }
.auth-form select option { background: var(--paper); color: var(--ink); }

.pw-wrap { position: relative; display: grid; }
.pw-wrap input { padding-right: 46px; }
.pw-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--ink-soft);
  opacity: 0.8;
}
.pw-eye svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.pw-eye .eye-shut { display: none; }
.pw-eye.on .eye-open { display: none; }
.pw-eye.on .eye-shut { display: block; }
.pw-eye:hover { opacity: 1; color: var(--pitch); }

.auth-form label.stay-row {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.stay-row input { accent-color: var(--pitch); width: 16px; height: 16px; }
.stay-line { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stay-line .stay-row { margin: 0; }
.forgot-link { font-size: 13px; color: var(--cognac); font-weight: 600; text-transform: none; letter-spacing: 0; }
.forgot-link:hover { text-decoration: underline; }
.birthday-note { font-size: 12px; color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 400; }

/* ---------- deals ---------- */

.mi-was { color: var(--ink-soft); opacity: 0.75; margin-right: 8px; font-size: 0.85em; }
.mi-deal { color: var(--cognac); }
.menu-section .mi-deal { color: var(--cognac); }
.nav-deals { color: var(--champagne) !important; }
.nav.scrolled .nav-deals { color: var(--cognac) !important; }

.deals-main { padding: 130px 0 90px; min-height: 70vh; }
.deals-main .section-head { text-align: center; }
.deals-empty { text-align: center; color: var(--ink-soft); max-width: 440px; margin: 40px auto 0; }
.deals-empty .contact-actions { margin-top: 24px; }
.deal-group h2 { font-size: 27px; margin: 44px 0 18px; }
.deal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.deal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.deal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.deal-card img { width: 100%; height: 170px; object-fit: cover; }
.deal-body { padding: 18px 20px 20px; }
.deal-body h3 { font-size: 19px; }
.deal-body p { color: var(--ink-soft); font-size: 13.5px; margin-top: 4px; }
.deal-prices { display: flex; align-items: baseline; gap: 10px; margin-top: 12px; font-family: var(--count); }
.deal-prices s { color: var(--ink-soft); font-size: 15px; }
.deal-prices b { color: var(--cognac); font-size: 21px; font-weight: 700; letter-spacing: 0.04em; }
.deal-badge {
  display: inline-block;
  background: var(--pitch);
  color: var(--champagne);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 7px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
@media (max-width: 860px) { .deal-cards { grid-template-columns: 1fr; } }

/* ---------- delete account ---------- */

.del-card { text-align: left; width: min(640px, 100%); }
.del-card .section-title { text-align: center; }
.del-card .auth-sub { text-align: center; }
.del-block h2 { font-size: 20px; margin: 26px 0 10px; color: var(--pitch); }
.del-list { list-style: none; display: grid; gap: 8px; }
.del-list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 14.5px; }
.del-list li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 2px; transform: rotate(45deg); background: var(--cognac); }
.del-note { font-size: 13.5px; color: var(--brick); font-weight: 600; margin-top: 16px; }
.del-or { text-align: center; color: var(--ink-soft); margin: 18px 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }
.del-app { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; font-size: 14.5px; color: var(--ink-soft); }
.del-card .btn { width: 100%; }
.btn.danger { background: #a8402f; border-color: #a8402f; color: #fff; }
.btn.danger:hover { background: #8c3323; border-color: #8c3323; }

/* ---------- boot veil ---------- */

.page-boot {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--pitch);
  transition: opacity 0.45s ease;
}
.page-boot.gone { opacity: 0; pointer-events: none; }
.boot-mark { position: relative; display: grid; place-items: center; }
.boot-mark img { height: 40px; width: auto; }
.boot-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--champagne);
  border-right-color: var(--cognac);
  animation: spin 1.1s linear infinite;
}

/* ---------- promo banner ---------- */

.promo-banner {
  position: relative;
  z-index: 55;
  background: var(--cognac);
  color: #fff;
  overflow: hidden;
  padding: 11px 0;
}
.promo-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: promoslide 26s linear infinite;
  will-change: transform;
  padding-left: 100%;
}
.promo-banner:hover .promo-track { animation-play-state: paused; }
.promo-banner-text { font-size: 13.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
a.promo-banner-text:hover { text-decoration: underline; }
@keyframes promoslide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.promo-notice {
  background: rgba(180, 105, 60, 0.1);
  border: 1px solid rgba(180, 105, 60, 0.3);
  color: var(--cognac-deep);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  text-align: center;
}
.promo-notice.hidden { display: none; }

/* ---------- the house rail ---------- */

.ritual-section { background: var(--cream); padding-bottom: 110px; }
.ritual-stage { position: relative; width: min(1320px, 96vw); margin: 0 auto; }
.ritual-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ritual-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ritual-track::-webkit-scrollbar { display: none; }
.ritual-card {
  flex: 0 0 auto;
  width: clamp(230px, 24vw, 320px);
  background: none;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--stadium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.ritual-card::after {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(242, 237, 226, 0.5);
  border-radius: var(--stadium);
  pointer-events: none;
}
.ritual-card img { width: 100%; aspect-ratio: 52 / 68; object-fit: cover; }
.ritual-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.ritual-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--pitch);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ritual-arrow.prev { left: -6px; }
.ritual-arrow.next { right: -6px; }
.ritual-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ritual-arrow:hover { background: var(--cognac); border-color: var(--cognac); color: #fff; }
.ritual-arrow:active { transform: translateY(-50%) scale(0.94); }
.ritual-arrow:focus-visible { outline: 2px solid var(--pitch); outline-offset: 2px; }

@media (max-width: 760px) {
  .ritual-arrow { width: 42px; height: 42px; }
  .ritual-arrow svg { width: 16px; height: 16px; }
}
