:root {
  --ink: #0f0d0b;
  --ink-deep: #080706;
  --panel: #171411;
  --panel-2: #211c17;
  --cream: #f4efe6;
  --muted: #a09070;
  --low: #5d503f;
  --gold: #c8a96e;
  --blue: #8aabb8;
  --violet: #7a6a90;
  --line: rgba(200, 169, 110, .18);
  --nav-h: 86px;
}

* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; background: var(--ink-deep); color: var(--cream); }
body {
  font-family: "DM Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
button, input, textarea { font: inherit; }
button { color: inherit; }

#app {
  width: 100%;
  max-width: 430px;
  height: 100dvh;
  min-height: 100dvh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 20% -10%, rgba(200, 169, 110, .18), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(138, 171, 184, .16), transparent 32%),
    linear-gradient(180deg, #15110d 0%, var(--ink) 42%, var(--ink-deep) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,.75);
}

.auth-screen {
  position: relative;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  padding: calc(30px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(circle at 78% 12%, rgba(200,169,110,.16), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(122,106,144,.12), transparent 30%),
    linear-gradient(180deg, #0b0907 0%, #1a1208 45%, #0e0c0a 100%);
}
.auth-lines span {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(200,169,110,.18), transparent);
  opacity: .28;
}
.auth-lines span:nth-child(1) { left: 18%; }
.auth-lines span:nth-child(2) { left: 50%; }
.auth-lines span:nth-child(3) { left: 82%; }
.auth-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-inner.narrow { max-width: 330px; margin: 0 auto; }
.auth-flow-screen { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.auth-flow-shell {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.auth-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.auth-flow-meta {
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .18em;
  color: var(--gold);
}
.auth-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-bottom: 16px;
}
.auth-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(200,169,110,.14);
}
.auth-progress span.active { background: var(--gold); }
.auth-flow-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.06;
  margin: 0 0 16px;
}
.auth-flow-body { flex: 1; }
.auth-option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-option-card {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(200,169,110,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(0,0,0,.16));
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}
.auth-option-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}
.auth-option-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.auth-option-card em {
  font-style: normal;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .08em;
}
.auth-option-card.selected {
  border-color: rgba(200,169,110,.4);
  background: linear-gradient(135deg, rgba(200,169,110,.14), rgba(0,0,0,.18));
  box-shadow: 0 14px 38px rgba(0,0,0,.2);
}
.auth-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200,169,110,.24);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 14px;
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .16em;
}
.auth-summary-card {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(200,169,110,.18);
  background: rgba(255,255,255,.03);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.auth-summary-card span {
  color: var(--low);
  font-size: 11px;
}
.auth-summary-card b {
  color: var(--cream);
  font-weight: 500;
  text-align: right;
}
.pref-group { margin-bottom: 18px; }
.pref-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pref-chip {
  border: 1px solid rgba(200,169,110,.18);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.pref-chip.selected {
  color: #130f0a;
  background: linear-gradient(135deg, #e0c07d, #b88943);
  border-color: transparent;
}
.night-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.night-card {
  min-height: 88px;
  border-radius: 18px;
  border: 1px solid rgba(200,169,110,.14);
  background: rgba(255,255,255,.03);
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
}
.night-card strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
}
.night-card span {
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--low);
}
.night-card.selected {
  border-color: var(--gold);
  background: rgba(200,169,110,.15);
}
.auth-reveal {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(200,169,110,.26);
  background: rgba(23,20,17,.88);
}
.auth-reveal .media { height: 180px; }
.auth-reveal-body { padding: 18px; }
.auth-reveal-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 28px;
  margin: 8px 0 10px;
}
.auth-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.auth-detail-grid div {
  border-radius: 14px;
  border: 1px solid rgba(200,169,110,.14);
  background: rgba(0,0,0,.16);
  padding: 11px 12px;
}
.auth-detail-grid span {
  display: block;
  color: var(--low);
  font-size: 10px;
  margin-bottom: 4px;
}
.auth-detail-grid b {
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
}
.auth-flow-actions {
  position: sticky;
  bottom: 0;
  padding-top: 18px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(14,12,10,0), rgba(14,12,10,.92) 24%, rgba(14,12,10,.98) 100%);
}
.auth-input { margin-top: 18px; }
.auth-assigning {
  min-height: 52dvh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}
.assign-orbit {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.18);
  border-top-color: rgba(240,210,137,.82);
  animation: spin 1.2s linear infinite;
  position: relative;
}
.assign-core {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  margin: -91px auto 18px;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #140f08;
  background: linear-gradient(135deg, #f0d08a, #c8a96e);
  box-shadow: 0 14px 40px rgba(200,169,110,.28);
}
.auth-brand {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: .42em;
  color: var(--gold);
  text-align: center;
  padding-left: .42em;
}
.auth-mark {
  width: 82px;
  height: 82px;
  margin: 22px auto 18px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #120f0a;
  background: linear-gradient(135deg, #f2d48f, #c8a96e 62%, #8d6428);
  box-shadow: 0 18px 50px rgba(200,169,110,.28);
}
.auth-kicker {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
}
.auth-screen h1, .auth-pin-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-align: center;
  margin: 14px 0 12px;
}
.auth-screen h1 { font-size: 38px; line-height: 1.02; }
.auth-pin-title { font-size: 28px; }
.auth-copy {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-family: "Cormorant", serif;
  font-size: 19px;
  line-height: 1.45;
}
.auth-guest-card {
  width: 100%;
  margin-top: 28px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(200,169,110,.24);
  background: linear-gradient(135deg, rgba(38,27,14,.94), rgba(17,13,10,.96));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}
.auth-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-size: 18px;
  color: #140f08;
  background: linear-gradient(135deg, #ebcb84, #c8a96e);
}
.auth-avatar.large {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  margin: 18px auto 0;
  font-size: 26px;
}
.auth-guest-copy strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--cream);
}
.auth-guest-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.auth-tier {
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid rgba(200,169,110,.24);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .14em;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
}
.auth-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.18), transparent);
}
.auth-divider b {
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--low);
  font-weight: 500;
}
.auth-cta { width: 100%; margin-bottom: 14px; }
.auth-foot {
  text-align: center;
  color: var(--low);
  font-size: 11px;
  margin: 0;
}
.auth-back {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .16em;
  padding: 0;
  margin-bottom: 10px;
}
.auth-suite-line {
  margin: 14px auto 18px;
  color: var(--low);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .17em;
  text-align: center;
}
.pin-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.26);
  background: rgba(200,169,110,.08);
}
.pin-dot.filled {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(200,169,110,.45);
}
.auth-error {
  margin: 0 auto 18px;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: center;
  color: #ff9e9e;
  border: 1px solid rgba(255,120,120,.28);
  background: rgba(120,20,20,.18);
  font-size: 12px;
}
.pin-pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.pin-key, .pin-pad-spacer {
  min-height: 70px;
  border-radius: 20px;
}
.pin-key {
  border: 1px solid rgba(200,169,110,.18);
  background: linear-gradient(135deg, rgba(200,169,110,.08), rgba(0,0,0,.2));
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  cursor: pointer;
}
.pin-key.utility {
  font-size: 22px;
  color: var(--gold);
}
.signout-btn { margin-top: 10px; }

.boot { height: 100%; display: grid; place-content: center; text-align: center; gap: 12px; }
.boot-mark { font-family: Georgia, serif; color: var(--gold); font-size: 56px; }
.boot-word { font-family: "Cinzel", serif; color: var(--gold); font-size: 11px; letter-spacing: .55em; padding-left: .55em; }
.boot-small { font-family: "Cormorant", serif; color: var(--muted); font-style: italic; }

.shell { height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.topbar {
  padding: calc(14px + env(safe-area-inset-top, 0px)) 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
}
.brand-kicker { font-family: "Cinzel", serif; font-size: 9px; letter-spacing: .32em; color: var(--gold); }
.brand-title { font-family: "Playfair Display", serif; font-size: 22px; line-height: 1; margin-top: 4px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(200,169,110,.45); display: grid; place-items: center; color: var(--gold); font-family: "Cinzel", serif; background: rgba(0,0,0,.24); }

.content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 18px calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + 28px);
}

.screen { animation: rise .32s ease both; }
.hero {
  min-height: 210px;
  border-radius: 30px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200,169,110,.22), rgba(122,106,144,.12)),
    linear-gradient(160deg, #251d13, #0f0d0b 68%);
  border: 1px solid rgba(200,169,110,.26);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
}
.hero:before { content: ""; position: absolute; inset: auto -60px -80px auto; width: 230px; height: 230px; border-radius: 50%; border: 1px solid rgba(200,169,110,.16); }
.eyebrow { font-family: "Cinzel", serif; font-size: 8px; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; }
.hero h1, .section-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin: 9px 0 8px;
}
.hero h1 { font-size: 34px; line-height: 1.02; max-width: 290px; }
.italic { font-style: italic; color: var(--gold); }
.copy { color: var(--muted); font-family: "Cormorant", serif; font-size: 16px; line-height: 1.55; }

.home-hero {
  position: relative;
  overflow: hidden;
  margin: -8px -18px 24px;
  padding: 18px 18px 22px;
  background:
    radial-gradient(circle at 82% 10%, rgba(200,169,110,.12), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(122,106,144,.12), transparent 32%),
    linear-gradient(180deg, #0f0c08 0%, #1a1208 45%, #0f0d0b 100%);
  border-bottom: 1px solid rgba(200,169,110,.16);
}
.home-sparkles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .28;
  animation: breathe 2.4s ease-in-out infinite;
}
.home-sparkles span:nth-child(1) { left: 12%; top: 18%; }
.home-sparkles span:nth-child(2) { left: 72%; top: 24%; animation-delay: .4s; }
.home-sparkles span:nth-child(3) { left: 34%; top: 74%; animation-delay: .8s; }
.home-sparkles span:nth-child(4) { left: 90%; top: 62%; animation-delay: 1.2s; }
.home-head { align-items: flex-start; position: relative; z-index: 1; }
.home-head h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.02;
  margin: 9px 0 0;
}
.tier-card {
  flex: 0 0 auto;
  min-width: 106px;
  padding: 9px 11px;
  border-radius: 15px;
  text-align: center;
  background: linear-gradient(135deg, rgba(200,169,110,.18), rgba(0,0,0,.18));
  border: 1px solid rgba(200,169,110,.28);
}
.tier-card span, .tier-card b, .tier-card em { display: block; }
.tier-card span { font-family: "Cinzel", serif; font-size: 8px; letter-spacing: .2em; color: var(--gold); }
.tier-card b { font-family: "Cinzel", serif; font-size: 11px; letter-spacing: .14em; color: var(--cream); margin-top: 4px; }
.tier-card em { font-style: normal; font-size: 11px; color: var(--muted); margin-top: 3px; }
.suite-line {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 14px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,110,.12);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .17em;
  color: var(--low);
}
.suite-line span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 18px rgba(76,175,80,.55);
}
.moment-card, .event-card, .list-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(23,20,17,.76);
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.moment-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 15px;
  margin-bottom: 14px;
}
.stay-card {
  overflow: hidden;
  border: 1px solid rgba(200,169,110,.24);
  border-radius: 22px;
  background: rgba(23,20,17,.9);
  box-shadow: 0 20px 60px rgba(0,0,0,.34);
}
.stay-card .media { height: 164px; }
.stay-card .media:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(18,13,8,.92));
}
.stay-body { padding: 16px; background: linear-gradient(135deg, #2a1e08, #17110a); }
.stay-body h2 { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 400; margin: 5px 0; }
.room-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200,169,110,.12);
  border-bottom: 1px solid rgba(200,169,110,.12);
  background: rgba(0,0,0,.16);
}
.room-status div { padding: 11px 4px; text-align: center; border-right: 1px solid rgba(200,169,110,.1); }
.room-status div:last-child { border-right: 0; }
.room-status span { display: block; font-family: "Cinzel", serif; font-size: 7px; letter-spacing: .12em; color: var(--low); margin-bottom: 4px; }
.room-status b { font-size: 11px; color: var(--muted); font-weight: 500; }
.room-status .good { color: #7fd27f; }
.home-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px 14px; }
.home-actions.compact { padding-top: 0; }
.home-actions .action { padding: 10px 8px; font-size: 9px; border-radius: 12px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 26px; }
.quick-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  display: grid;
  justify-items: center;
  gap: 8px;
  cursor: pointer;
}
.quick-btn span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(200,169,110,.12), rgba(0,0,0,.12));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 8px 24px rgba(0,0,0,.18);
}
.quick-btn span svg,
.list-icon svg,
.nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.quick-btn b { font-family: "Cinzel", serif; font-size: 8px; letter-spacing: .1em; font-weight: 500; }
.pref-card { margin: 0 0 18px; }
.section-row { margin-top: 2px; }
.link-btn {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .14em;
  cursor: pointer;
}
.list-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  margin-bottom: 10px;
}
.list-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.18);
  border: 1px solid var(--line);
}
.list-card h3, .event-card h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 16px; font-weight: 400; color: var(--cream); }
.list-card p, .event-card p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.35; }
.list-card em, .event-card em {
  font-style: normal;
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 999px;
  padding: 5px 8px;
}
.event-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 15px 16px;
  margin-bottom: 10px;
}
.event-card > span {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  opacity: .22;
}
.upgrade-card {
  margin: 20px 0 8px;
  padding: 23px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,.28);
  background:
    radial-gradient(circle at 90% 0%, rgba(200,169,110,.18), transparent 36%),
    linear-gradient(135deg, #1a1208, #0f0d0b, #1a1208);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.upgrade-card h2 { font-family: "Playfair Display", serif; font-size: 25px; font-weight: 400; line-height: 1.15; margin: 10px 0; }
.upgrade-card p { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 0 0 18px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0 18px; }
.stat, .card {
  border: 1px solid var(--line);
  background: rgba(23,20,17,.78);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.stat { padding: 13px 12px; }
.stat b { display: block; font-family: "Playfair Display", serif; font-size: 20px; color: var(--cream); font-weight: 400; }
.stat span { display: block; margin-top: 3px; color: var(--low); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.card { padding: 18px; margin-bottom: 14px; }
.card:active, .nav-btn:active, .action:active { transform: scale(.985); }
.row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.muted { color: var(--muted); }
.tiny { color: var(--low); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.section-title { font-size: 23px; }
.pill { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 6px 10px; border: 1px solid rgba(200,169,110,.25); color: var(--gold); font-family: "Cinzel", serif; font-size: 8px; letter-spacing: .14em; }
.pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.tabs { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 14px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-chip { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.18); padding: 10px 13px; font-family: "Cinzel", serif; font-size: 9px; letter-spacing: .12em; color: var(--muted); }
.tab-chip.active { color: var(--ink-deep); background: var(--gold); border-color: var(--gold); }
.category-tabs .tab-chip { cursor: pointer; }

.image-card { overflow: hidden; padding: 0; }
.media {
  height: 190px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(200,169,110,.2), transparent 34%),
    linear-gradient(135deg, rgba(200,169,110,.12), rgba(138,171,184,.08)),
    #120f0c;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: imageIn .45s ease both;
}
.media.empty {
  display: grid;
  place-items: center;
}
.media.empty:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.06) 45%, transparent 70%);
  animation: shimmer 1.6s ease-in-out infinite;
}
.media.empty span {
  position: relative;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .38em;
  color: rgba(200,169,110,.54);
}
.image-body { padding: 17px; }
.price { font-family: "Playfair Display", serif; font-size: 24px; color: var(--gold); white-space: nowrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.venue-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}
.menu-cta {
  width: 100%;
  margin: 2px 0 8px;
}
.action {
  border: 1px solid rgba(200,169,110,.35);
  background: linear-gradient(135deg, rgba(200,169,110,.18), rgba(200,169,110,.08));
  border-radius: 16px;
  padding: 13px 14px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: .16em;
  cursor: pointer;
}
.action-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.action-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.action-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.action-text {
  min-width: 0;
  white-space: nowrap;
}
.primary { background: linear-gradient(135deg, #c8a96e, #8d6428); color: #130f0a; border-color: transparent; font-weight: 700; }
.action:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}
.back {
  margin: 0 0 12px;
  background: rgba(0,0,0,.12);
}
.back .action-icon { transform: translateX(-1px); }
.venue-hero .media { height: 240px; }
.venue-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 36px;
  margin: 8px 0;
}
.menu-list { margin-top: 12px; }
.menu-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,169,110,.12);
}
.menu-line:last-child { border-bottom: 0; }
.menu-line div { min-width: 0; }
.menu-line span { display: block; font-family: "Playfair Display", serif; font-size: 17px; color: var(--cream); }
.menu-line p { margin: 4px 0 0; color: var(--low); font-size: 12px; line-height: 1.45; }
.menu-line b { color: var(--gold); font-size: 13px; font-weight: 600; white-space: nowrap; }
.note-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
}
.note-row span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex: 0 0 auto;
}
.note-row p {
  margin: 0;
  color: var(--muted);
  font-family: "Cormorant", serif;
  font-size: 16px;
  line-height: 1.45;
}
.sticky-cta { width: 100%; margin-bottom: 8px; }
.reserve-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
}
.reserve-summary div {
  border: 1px solid rgba(200,169,110,.16);
  background: rgba(0,0,0,.16);
  border-radius: 16px;
  padding: 12px 10px;
}
.reserve-summary span {
  display: block;
  color: var(--low);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.reserve-summary b {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 400;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0 18px;
}
.choice {
  border: 1px solid rgba(200,169,110,.18);
  background: rgba(0,0,0,.16);
  color: var(--muted);
  border-radius: 14px;
  padding: 12px 8px;
  font-size: 12px;
}
.choice.selected {
  border-color: var(--gold);
  color: #130f0a;
  background: var(--gold);
}
.confirm-card {
  text-align: center;
  padding: 18px 6px 12px;
  border: 1px solid rgba(200,169,110,.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(200,169,110,.08), rgba(0,0,0,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.confirm-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #130f0a;
  background: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 700;
}
.menu-frame {
  width: 100%;
  height: min(62dvh, 620px);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: 18px;
  background: #fff;
  margin: 14px 0 12px;
}
.menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.key-pass {
  text-align: center;
  padding: 8px 2px 2px;
}
.key-ring {
  width: 132px;
  height: 132px;
  margin: 8px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 4px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  letter-spacing: .12em;
  background: radial-gradient(circle, rgba(200,169,110,.16), rgba(0,0,0,.2));
  border: 2px solid rgba(200,169,110,.36);
  box-shadow: 0 0 60px rgba(200,169,110,.12);
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: transform .18s ease, border-color .25s ease, box-shadow .25s ease;
}
.key-ring:active { transform: scale(.96); }
.key-ring:before, .key-ring:after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.18);
  opacity: .45;
}
.key-ring:after { inset: -24px; opacity: .22; }
.key-shape {
  position: relative;
  display: block;
  width: 46px;
  height: 66px;
  margin-top: 8px;
}
.key-shape:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 30px;
  height: 30px;
  border: 7px solid currentColor;
  border-radius: 50%;
}
.key-shape:after {
  content: "";
  position: absolute;
  left: 20px;
  top: 32px;
  width: 8px;
  height: 33px;
  border-radius: 4px;
  background: currentColor;
}
.key-shape i {
  position: absolute;
  left: 28px;
  top: 52px;
  width: 18px;
  height: 8px;
  display: block;
  border-top: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
}
.key-ring b {
  display: block;
  font-size: 9px;
  letter-spacing: .14em;
  color: inherit;
}
.key-pass.enabled .key-ring {
  color: #120f0a;
  background: radial-gradient(circle, #f5d989 0%, #c8a96e 48%, #8d6428 100%);
  border-color: rgba(245,217,137,.9);
  box-shadow: 0 0 24px rgba(200,169,110,.7), 0 0 80px rgba(200,169,110,.36), inset 0 0 24px rgba(255,255,255,.22);
  animation: keyGlow 1.6s ease-in-out infinite;
}
.key-pass.enabled .key-ring:before {
  animation: keyPulse 1.8s ease-out infinite;
  border-color: rgba(245,217,137,.42);
}
.key-pass.enabled .key-ring:after {
  animation: keyPulse 1.8s ease-out infinite .28s;
  border-color: rgba(245,217,137,.3);
}
.key-pass h3, .upgrade-modal h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 6px;
}
.key-pass p { color: var(--muted); margin: 0 0 14px; }
.key-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 14px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(200,169,110,.16);
  background: rgba(0,0,0,.14);
  font-size: 11px;
}
.key-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--low);
}
.key-pass.enabled .key-status {
  color: #7fd27f;
  border-color: rgba(127,210,127,.25);
  background: rgba(127,210,127,.08);
}
.key-pass.enabled .key-status span {
  background: #7fd27f;
  box-shadow: 0 0 16px rgba(127,210,127,.8);
}
.control-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 14px 0; }
.control-grid .choice {
  min-height: 54px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  letter-spacing: .08em;
}
.tracking-list div {
  position: relative;
  padding: 0 0 18px 28px;
  border-left: 1px solid rgba(200,169,110,.2);
}
.tracking-list div:last-child { border-left-color: transparent; padding-bottom: 0; }
.tracking-list span {
  position: absolute;
  left: -6px;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}
.tracking-list b { display: block; color: var(--cream); font-family: "Playfair Display", serif; font-weight: 400; }
.tracking-list p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 8px 6px calc(12px + env(safe-area-inset-bottom, 0px));
  min-height: var(--nav-h);
  background: linear-gradient(180deg, rgba(8,7,6,.1), rgba(8,7,6,.98) 28%);
  border-top: 1px solid rgba(200,169,110,.14);
  backdrop-filter: blur(18px);
}
.nav-btn { border: 0; background: transparent; min-width: 0; padding: 5px 1px; display: grid; gap: 4px; justify-items: center; cursor: pointer; color: var(--low); }
.nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  line-height: 1;
  background: linear-gradient(135deg, rgba(255,255,255,.02), rgba(200,169,110,.06));
  border: 1px solid rgba(200,169,110,.08);
}
.nav-label { font-family: "Cinzel", serif; font-size: 7px; letter-spacing: .08em; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.nav-btn.active { color: var(--gold); }
.nav-btn.active .nav-icon {
  background: linear-gradient(135deg, rgba(200,169,110,.24), rgba(141,100,40,.18));
  border-color: rgba(200,169,110,.22);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  background:
    radial-gradient(circle at 50% 100%, rgba(200,169,110,.12), transparent 30%),
    rgba(8,7,6,.78);
  display: grid;
  align-items: end;
  backdrop-filter: blur(10px);
}
.sheet {
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  max-height: 88dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #1c1712, #0f0d0b);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 30px 30px 0 0;
  padding: 22px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -20px 60px rgba(0,0,0,.45);
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-title {
  margin-top: 6px;
  margin-bottom: 2px;
}
.modal-subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.modal-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  border: 1px solid rgba(200,169,110,.24);
  background: linear-gradient(135deg, rgba(200,169,110,.14), rgba(0,0,0,.16));
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 8px;
  letter-spacing: .14em;
}
.modal-divider {
  height: 1px;
  margin: 14px 0 16px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.2), transparent);
}
.modal-footer-btn {
  width: 100%;
  margin-top: 10px;
}
.field {
  width: 100%;
  margin: 10px 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(200,169,110,.18);
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(255,255,255,.03));
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.field::placeholder { color: var(--low); }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes imageIn {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes keyGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(200,169,110,.55), 0 0 70px rgba(200,169,110,.24), inset 0 0 18px rgba(255,255,255,.18); }
  50% { box-shadow: 0 0 34px rgba(245,217,137,.85), 0 0 100px rgba(245,217,137,.46), inset 0 0 24px rgba(255,255,255,.28); }
}

@keyframes keyPulse {
  0% { transform: scale(.9); opacity: .44; }
  70% { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
