/* ═══════════════════════════════════════════════════
   SK-II Travel Retail · SE Conference 2026 · Shanghai
   Luxury Mobile-First Design System
   Brand Red : #E8192C  |  Charcoal : #1A1614
   ═══════════════════════════════════════════════════ */

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

/* ── Design Tokens ─────────────────────────────── */
:root {
  /* SK-II Brand */
  --red: #E8192C;
  --red-dk: #C0121F;
  --red-lt: #FEF0F1;
  --red-mid: #F5C6CA;

  /* Neutrals */
  --black: #1A1614;
  --charcoal: #2B2420;
  --charcoal-2: #361400;
  --ink: #3C3532;
  --gray-dark: #5A5450;
  --gray-mid: #9A9490;
  --gray-light: #CEC9C5;
  --gray-pale: #EDEAE7;
  --bg: #F2F2F3;
  --bg-warm: #EDE8E3;
  --white: #FFFFFF;
  --card: #FDFCFB;
  --border: #E3DDD8;
  --border-soft: #EAE6E2;

  /* Semantic */
  --green: #15803D;
  --green-bg: #F0FDF4;
  --green-bd: #86EFAC;
  --gold: #B45309;
  --gold-bg: #FFFBEB;
  --gold-bd: #FCD34D;
  --blue: #1D4ED8;
  --blue-bg: #EFF6FF;
  --blue-bd: #93C5FD;
  --pink: #BE185D;
  --pink-bg: #FDF2F8;
  --pink-bd: #F9A8D4;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --script: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation */
  --s0: 0 1px 2px rgba(26, 22, 20, .04);
  --s1: 0 2px 8px rgba(26, 22, 20, .08);
  --s2: 0 6px 24px rgba(26, 22, 20, .11);
  --s3: 0 16px 48px rgba(26, 22, 20, .15);
  --s4: 0 32px 80px rgba(26, 22, 20, .20);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-full: 9999px;

  /* Layout */
  --bar-h: 56px;
  --tab-h: 62px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--black);
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

input,
textarea {
  font-family: var(--sans);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 2px;
}


/* ═══════════════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════════════ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s;
}

#splash.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  text-align: center;
  padding: 2rem;
}

.splash-logo svg {
  width: 50px;
}

.splash-rule {
  width: 52px;
  height: 1px;
  background: var(--border);
}

.splash-tagline {
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--gray-mid);
  letter-spacing: .04em;
}

.splash-tagline em {
  font-style: italic;
  color: var(--red);
}

.splash-bar {
  width: 80px;
  height: 1.5px;
  background: var(--border);
  overflow: hidden;
  border-radius: 2px;
}

.splash-fill {
  height: 100%;
  background: var(--red);
  animation: splashLoad 1.2s var(--ease) forwards;
}

@keyframes splashLoad {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

.splash-event {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-light);
}


/* ═══════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════ */
#loginPage {
  display: none;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

#loginPage[style*="flex"] {
  display: flex !important;
}

/* ── Poster (top on mobile, left ≥768px) ── */
.lp-poster {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 62vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-poster-bg {
  position: absolute;
  inset: 0;
}

.lp-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.lp-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(26, 22, 20, .92) 0%,
      rgba(26, 22, 20, .78) 50%,
      rgba(232, 25, 44, .35) 100%);
}

.lp-poster-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 440px;
}

/* Corner crop marks */
.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(255, 255, 255, .25);
}

.corner.tl {
  top: 18px;
  left: 18px;
  border-top-style: solid;
  border-left-style: solid;
  border-width: 1px 0 0 1px;
}

.corner.tr {
  top: 18px;
  right: 18px;
  border-top-style: solid;
  border-right-style: solid;
  border-width: 1px 1px 0 0;
}

.corner.bl {
  bottom: 18px;
  left: 18px;
  border-bottom-style: solid;
  border-left-style: solid;
  border-width: 0 0 1px 1px;
}

.corner.br {
  bottom: 18px;
  right: 18px;
  border-bottom-style: solid;
  border-right-style: solid;
  border-width: 0 1px 1px 0;
}

.lp-logo {
  margin-bottom: 1.6rem;
}

.lp-logo svg {
  width: 160px;
  height: 42px;
}

/* Stacked Headline */
.lp-headline {
  display: flex;
  flex-direction: column;
  line-height: .92;
  margin-bottom: .35rem;
}

.lph-line {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 11vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.015em;
}

.lph-accent {
  color: var(--red);
}

.lph-key {
  display: flex;
  align-items: flex-end;
  gap: .25rem;
}

.lph-script {
  font-family: var(--script);
  font-style: italic;
  font-size: clamp(1.7rem, 7vw, 2.8rem);
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: .1rem;
}

.lp-divider {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, .25);
  margin: .9rem 0;
}

.lp-meta {}

.lpm-brand {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .18rem;
}

.lpm-conf {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .45rem;
}

.lpm-dates {
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .14em;
  margin-bottom: .2rem;
}

.lpm-venue {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .06em;
}

/* ── Login Form ── */
.lp-form {
  flex: 1;
  background: var(--white);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.25rem 1.5rem 3rem;
  overflow-y: auto;
}

.lp-form-inner {
  width: 100%;
  max-width: 420px;
}

.lf-top {
  margin-bottom: 1.85rem;
}

.lf-eyebrow {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.lf-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: .55rem;
}

.lf-sub {
  font-size: .8rem;
  color: var(--gray-dark);
  line-height: 1.68;
}

/* Field */
.lf-field {
  margin-bottom: 1.1rem;
}

.lf-label {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: .48rem;
}

.lf-input-wrap {
  position: relative;
}

.lf-input-icon {
  position: absolute;
  left: .92rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  font-size: .82rem;
  pointer-events: none;
  transition: color .2s;
}

.lf-input-wrap:focus-within .lf-input-icon {
  color: var(--red);
}

.lf-input {
  width: 100%;
  padding: .9rem 1rem .9rem 2.6rem;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: .96rem;
  color: var(--black);
  border-radius: var(--r-sm);
  outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.lf-input::placeholder {
  color: var(--gray-light);
}

.lf-input:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 25, 44, .09);
}

/* Enter button */
.btn-enter {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: .1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-sm);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background .2s, transform .15s;
}

.btn-enter span {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.btn-enter i {
  font-size: .8rem;
}

.btn-enter:active {
  transform: scale(.98);
  background: var(--red-dk);
}

.btn-enter:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn-enter::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  transform: translateX(-100%);
  transition: transform .55s;
}

.btn-enter:hover::after {
  transform: translateX(100%);
}

.lf-error {
  font-size: .76rem;
  color: var(--red);
  text-align: center;
  min-height: 1rem;
  margin-top: .6rem;
  line-height: 1.5;
}

/* Demo pills */
.lf-demo {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.lf-demo-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .8rem;
}

.lf-demo-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-pill {
  padding: .48rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray-dark);
  font-size: .68rem;
  font-weight: 600;
  border-radius: var(--r-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: all .18s;
  letter-spacing: .04em;
}

.demo-pill:active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-lt);
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-5px)
  }

  40% {
    transform: translateX(5px)
  }

  60% {
    transform: translateX(-3px)
  }

  80% {
    transform: translateX(3px)
  }
}

.shake {
  animation: shake .36s var(--ease);
}


/* ═══════════════════════════════════════════════
   APP SHELL
   ═══════════════════════════════════════════════ */
#appShell {
  display: none;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

#appShell.visible {
  display: flex;
}

/* ── App Bar ── */
.app-bar {
  height: var(--bar-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 .9rem 0 1.1rem;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: var(--s0);
  flex-shrink: 0;
  gap: .6rem;
}

/* Left: logo + divider + subtitle */
.ab-left {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.ab-logo {
  width: 68px;
  height: 20px;
  flex-shrink: 0;
}

.ab-divider {
  width: 1px;
  height: 13px;
  background: var(--border);
  flex-shrink: 0;
}

.ab-subtitle {
  font-family: var(--script);
  font-style: italic;
  font-size: .8rem;
  color: var(--gray-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Right: lang toggle + avatar */
.ab-right {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}

.ab-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .02em;
}

/* ab-user-info hidden in bar — identity lives in the hero card */
.ab-user-info {
  display: none;
}

.ab-name {
  display: none;
}

.ab-role {
  display: none;
}

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 2px;
  gap: 1px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--gray-dark);
  background: transparent;
  border: none;
  border-radius: var(--r-full);
  padding: .26rem .52rem;
  cursor: pointer;
  line-height: 1;
  transition: background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  min-width: 2rem;
  text-align: center;
}

.lang-btn:hover:not(.active) {
  color: var(--black);
  background: var(--white);
}

.lang-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 1px 4px rgba(232, 25, 44, .30);
}

/* Hide subtitle on very narrow viewports to keep bar uncluttered */
@media (max-width: 360px) {
  .ab-subtitle {
    display: none;
  }

  .ab-divider {
    display: none;
  }
}

/* Login page lang toggle — centred above form */
.lf-lang-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.lf-lang-toggle .lang-toggle {
  background: var(--gray-pale);
  border-color: var(--border-soft);
}

.lf-lang-toggle .lang-btn {
  font-size: .56rem;
  padding: .26rem .46rem;
  color: var(--gray-dark);
}

.lf-lang-toggle .lang-btn.active {
  background: var(--red);
  color: #fff;
}

/* ── Scrollable Body ── */
.app-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom) + .5rem);
}

/* ── Tab Bar ── */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--tab-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: stretch;
  justify-content: space-around;

  z-index: 200;
  box-shadow: 0 -1px 16px rgba(26, 22, 20, .06);
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .17rem;
  color: var(--gray-mid);
  transition: color .2s;
  padding: .35rem 0 0;
  position: relative;
  min-width: 0;

  -webkit-tap-highlight-color: transparent;
}

.tab-item.on {
  color: var(--red);
}

.tab-item.on::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 2px;
  background: var(--red);
  border-radius: 0 0 3px 3px;
}

.tab-item i {
  font-size: 1.05rem;
  transition: transform .22s var(--spring);
}

.tab-item.on i {
  transform: scale(1.15);
}

/* ── Reference-sheet SVG nav icons ── */
.nav-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform .22s var(--spring), opacity .18s;
}

.tab-item.on .nav-svg {
  transform: scale(1.15);
  fill: var(--red-dk)
}

/* Drawer icon chip wrapper */
.di-icon .nav-svg {
  width: 1.1rem;
  height: 1.1rem;
}

.tab-item span {
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 2px;
  line-height: 1;
}

/* ── Burger button ── */
.tab-burger {
  flex: 0 0 52px;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  width: 18px;
  height: 18px;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--spring), opacity .2s, width .3s var(--spring);
  transform-origin: center;
}

/* Animate burger → X when open */
.tab-burger.on .burger-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.tab-burger.on .burger-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.tab-burger.on .burger-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}


/* ══════════════════════════════════════════════════
   BURGER DRAWER
   ══════════════════════════════════════════════════ */

/* Scrim overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, .45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 290;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.drawer-overlay.open {
  display: block;
  animation: drawerScrimIn .3s var(--ease) forwards;
}

@keyframes drawerScrimIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* Drawer panel — slides up from below the tab bar */
.burger-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--tab-h) + env(safe-area-inset-bottom));
  z-index: 300;
  background: var(--white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 -8px 40px rgba(26, 22, 20, .18);
  padding: 0 0 .5rem;
  transform: translateY(110%);
  transition: transform .38s var(--spring);
  max-height: 72vh;
  display: flex;
  flex-direction: column;
}

.burger-drawer.open {
  transform: translateY(0);
}

/* Drag handle */
.drawer-handle {
  width: 36px;
  height: 4px;
  background: var(--gray-light);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

/* Header */
.drawer-header {
  padding: .9rem 1.4rem .4rem;
  flex-shrink: 0;
}

.drawer-eyebrow {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: .2rem;
}

.drawer-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
}

.drawer-rule {
  height: 1px;
  background: var(--border);
  margin: 0 1.4rem .4rem;
  flex-shrink: 0;
}

/* Scrollable list */
.drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: .3rem .8rem;
  -webkit-overflow-scrolling: touch;
}

/* Individual drawer row */
.drawer-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem .7rem;
  border-radius: var(--r-md);
  color: var(--ink);
  transition: background .18s, color .18s;
  text-align: left;
}

.drawer-item:hover,
.drawer-item:active {
  background: var(--bg);
}

.drawer-item.on {
  color: var(--red);
  background: var(--red-lt);
}

.di-icon {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-pale);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--gray-dark);
  transition: background .18s, color .18s;
}

.drawer-item.on .di-icon {
  background: var(--red-lt);
  color: var(--red);
}

.drawer-item:hover .di-icon {
  background: var(--border);
}

.di-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}

.di-label {
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

.di-desc {
  font-size: .68rem;
  color: var(--gray-mid);
  line-height: 1.3;
}

.drawer-item.on .di-desc {
  color: var(--red-dk);
  opacity: .7;
}

.di-arrow {
  font-size: .6rem;
  color: var(--gray-light);
  flex-shrink: 0;
  transition: transform .2s var(--ease), color .18s;
}

.drawer-item:hover .di-arrow {
  transform: translateX(2px);
  color: var(--gray-mid);
}

.drawer-item.on .di-arrow {
  color: var(--red);
}

/* Footer close button */
.drawer-footer {
  padding: .6rem 1.4rem calc(.6rem + env(safe-area-inset-bottom));
  flex-shrink: 0;
}

.drawer-close-btn {
  width: 100%;
  padding: .72rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gray-dark);
  transition: background .18s, border-color .18s, color .18s;
}

.drawer-close-btn:hover {
  background: var(--bg);
  border-color: var(--gray-mid);
}


/* ═══════════════════════════════════════════════
   PAGES — BASE
   ═══════════════════════════════════════════════ */
.page {
  display: none;
  animation: pgIn .28s var(--ease);
}

.page.on {
  display: block;
}

@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Page Header */
.pg-head {
  padding: 1.4rem 1.25rem .95rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.pg-eyebrow {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .25rem;
}

.pg-head h1 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.08;
  margin-bottom: .2rem;
}

.pg-head p {
  font-size: .78rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* Section Heading */
.section-head {
  padding: 0 1.25rem;
  margin: 1.4rem 0 .65rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.section-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-head span {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray-mid);
  white-space: nowrap;
}

/* Info Banner */
.info-banner {
  margin: 1rem 1.25rem 0;
  padding: .82rem 1rem;
  background: var(--red-lt);
  border: 1px solid var(--red-mid);
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.ib-icon {
  color: var(--red);
  font-size: .85rem;
  margin-top: .12rem;
  flex-shrink: 0;
}

.info-banner p {
  font-size: .77rem;
  color: var(--ink);
  line-height: 1.62;
}

.info-banner strong {
  color: var(--red);
}

/* Confirmed Box */
.confirmed-box {
  margin: 1rem 1.25rem 0;
  padding: .95rem 1rem;
  background: var(--green-bg);
  border: 1.5px solid var(--green-bd);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: .82rem;
}

.cb-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cb-body {
  flex: 1;
  min-width: 0;
}

.cb-body h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .16rem;
}

.cb-body p {
  font-size: .74rem;
  color: var(--gray-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-edit {
  flex-shrink: 0;
  padding: .4rem .7rem;
  border: 1.5px solid var(--green-bd);
  background: transparent;
  color: var(--green);
  font-size: .66rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .28rem;
  transition: all .18s;
}

.btn-edit:active {
  background: var(--green-bg);
}

/* CTA Buttons */
.cta-wrap {
  padding: 1.25rem;
}

.btn-cta {
  width: 100%;
  padding: .95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  position: relative;
  overflow: hidden;
}

.btn-cta:active {
  transform: scale(.98);
  background: var(--red-dk);
}

.btn-cta:disabled {
  opacity: .55;
}

.btn-ghost {
  width: 100%;
  padding: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: var(--gray-dark);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .18s;
}

.btn-ghost:active {
  border-color: var(--red);
  color: var(--red);
}

/* Field shared */
.field-label {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: .45rem;
}

.field-label .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-mid);
  font-size: .7rem;
}

.field-input {
  width: 100%;
  padding: .88rem 1rem .88rem 2.5rem;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: .95rem;
  color: var(--black);
  border-radius: var(--r-sm);
  outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field-input.no-icon {
  padding-left: 1rem;
}

.field-input::placeholder {
  color: var(--gray-light);
}

.field-input:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 25, 44, .09);
}

.field-row {
  padding: .9rem 1.25rem 0;
}

.pg-gap {
  height: 1.5rem;
}


/* ═══════════════════════════════════════════════
   HOME — IDENTITY HERO
   ═══════════════════════════════════════════════ */
.id-hero {
  background: var(--charcoal-2);
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.25rem 1.4rem;
}

.idh-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  opacity: .4;
}

.idh-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 25, 44, .22) 0%, transparent 68%);
  pointer-events: none;
}

.idh-wm {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .025);
  letter-spacing: .08em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.idh-body {
  position: relative;
  z-index: 1;
}

.idh-top {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.1rem;
}

/* Avatar */
.idh-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.idh-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idh-avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}

.idh-info {
  flex: 1;
  min-width: 0;
  padding-top: .1rem;
}

.idh-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .32rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Role badge */
.role-badge {
  display: inline-flex;
  align-items: center;
  padding: .18rem .55rem;
  border-radius: var(--r-full);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .28rem;
}

.rb-se {
  background: rgba(29, 78, 216, .22);
  color: #93C5FD;
  border: 1px solid rgba(29, 78, 216, .35);
}

.rb-tl {
  background: rgba(251, 191, 36, .18);
  color: #FDE68A;
  border: 1px solid rgba(251, 191, 36, .3);
}

.rb-mgmt {
  background: rgba(232, 25, 44, .25);
  color: #FCA5A5;
  border: 1px solid rgba(232, 25, 44, .4);
}

.idh-team {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
}

/* Info Chips */
.idh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
}

.idh-chip {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .26rem .6rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-full);
  font-size: .62rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.idh-chip i {
  font-size: .6rem;
  color: var(--red);
}


/* ═══════════════════════════════════════════════
   HOME — COUNTDOWN
   ═══════════════════════════════════════════════ */
.cd-card {
  margin: .85rem 1.25rem 0;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--s0);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.cd-info {
  flex: 1;
  min-width: 0;
}

.cd-label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .1rem;
}

.cd-sub {
  /* font-family:var(--script); font-style:italic; */
  font-size: .6rem;
  color: var(--gray-dark);
}

.cd-units {
  display: flex;
  align-items: flex-end;
  gap: .08rem;
  flex-shrink: 0;
}

.cd-unit {
  text-align: center;
  min-width: 30px;
}

.cd-unit b {
  /* display:block; font-family:var(--serif); font-size:1.45rem; */
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.cd-unit span {
  display: block;
  font-size: .46rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: .05rem;
}

.cd-sep {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--red);
  align-self: flex-start;
  padding-bottom: .2rem;
  line-height: 1.1;
}


/* ═══════════════════════════════════════════════
   HOME — VENUE HERO
   ═══════════════════════════════════════════════ */
.venue-hero {
  position: relative;
  overflow: hidden;
  height: 160px;
  margin: .75rem 1.25rem .6rem;
  border-radius: var(--r-lg);
  box-shadow: var(--s2);
  flex-shrink: 0;
}

.venue-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 22, 20, .15) 0%, rgba(26, 22, 20, .82) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
}

.vho-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .22rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.vho-loc {
  font-size: .64rem;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════
   HOME — ARRIVAL & DEPARTURE CARDS
   ═══════════════════════════════════════════════ */
.venue-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: 0 1.25rem .5rem;
}

.vs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .9rem .9rem .8rem;
  box-shadow: var(--s0);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.vs-card:hover {
  box-shadow: var(--s2);
  border-color: rgba(232, 25, 44, .18);
}

.vs-icon {
  margin-bottom: .42rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.vs-svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  overflow: visible;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
  opacity: .85;
}

.vs-card:hover .vs-svg {
  transform: translateY(-2px);
  opacity: 1;
}

.vs-label {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .16rem;
}

.vs-val {
  font-size: .8rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
}

.vs-sub {
  font-size: .64rem;
  color: var(--gray-mid);
  margin-top: .1rem;
}


/* ═══════════════════════════════════════════════
   HOME — CHECKLIST
   ═══════════════════════════════════════════════ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: .48rem;
  padding: 0 1.25rem;
}

.cl-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .88rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  cursor: pointer;
  transition: all .18s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.cl-card:active {
  transform: scale(.98);
}

.cl-card.done {
  border-color: var(--green-bd);
  background: var(--green-bg);
}

.cl-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--red-lt);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
  transition: all .2s;
}

.cl-icon.done {
  background: #DCFCE7;
  color: var(--green);
}

.cl-text {
  flex: 1;
  min-width: 0;
}

.cl-text h4 {
  font-size: .82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .07rem;
}

.cl-text p {
  font-size: .7rem;
  color: var(--gray-mid);
}

.cl-card.done .cl-text p {
  color: var(--green);
}

.cl-arrow {
  color: var(--gray-light);
  font-size: .7rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   HOME — REMINDERS
   ═══════════════════════════════════════════════ */
.reminders {
  display: flex;
  flex-direction: column;
  gap: .44rem;
  padding: 0 1.25rem;
}

.reminder-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 2.5px solid var(--red);
  border-radius: var(--r-sm);
  padding: .7rem .9rem;
}

.ri-title {
  font-size: .78rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .14rem;
}

.ri-desc {
  font-size: .7rem;
  color: var(--gray-dark);
  line-height: 1.55;
}

.ri-desc strong {
  color: var(--red);
}


/* ═══════════════════════════════════════════════
   HOME — SIGN OUT
   ═══════════════════════════════════════════════ */
.signout-area {
  padding: 1.5rem 1.25rem .5rem;
  text-align: center;
}

.btn-signout {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 17px 5px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);

  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .18s;

}

.btn-signout:active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red-dk);
}


/* ═══════════════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════════════ */
.group-switcher {
  display: flex;
  margin: 1rem 1.25rem 0;
  gap: .38rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px;
}

.gs-btn {
  flex: 1;
  padding: .56rem .5rem;
  border: none;
  background: none;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gray-mid);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  transition: all .22s var(--ease);
}

.gs-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--s1);
}

.sched-days {
  padding: .9rem 1.25rem 0;
}

.day-block {
  margin-bottom: 1.2rem;
}

.day-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .9rem;
  margin-bottom: .7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--s0);
}

.day-header-gala {
  background: var(--charcoal);
  border-color: transparent;
}

.day-header-gala .day-num {
  background: var(--red) !important;
}

.day-header-gala .day-info b {
  color: var(--white);
}

.day-header-gala .day-info span {
  color: rgba(255, 255, 255, .45);
}

.day-num {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.day-info {
  flex: 1;
  min-width: 0;
}

.day-info b {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.day-info span {
  display: block;
  font-size: .67rem;
  color: var(--gray-mid);
  margin-top: .08rem;
}

/* Timeline */
.timeline {
  padding: 0 0 0 .2rem;
}

.tl-item {
  display: flex;
  align-items: flex-start;
  gap: .68rem;
  padding-bottom: .68rem;
  position: relative;
}

.tl-item.tl-last {
  padding-bottom: 0;
}

.tl-time {
  font-size: .63rem;
  font-weight: 600;
  color: var(--gray-mid);
  min-width: 40px;
  text-align: right;
  flex-shrink: 0;
  padding-top: .12rem;
}

.tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: .18rem;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--gray-light);
  flex-shrink: 0;
}

.tl-dot.dot-red {
  background: var(--red);
  box-shadow: 0 0 0 1.5px var(--red-mid);
}

.tl-dot.dot-green {
  background: var(--green);
  box-shadow: 0 0 0 1.5px var(--green-bd);
}

.tl-dot.dot-gold {
  background: var(--gold);
  box-shadow: 0 0 0 1.5px var(--gold-bd);
}

.tl-dot.dot-pink {
  background: var(--pink);
  box-shadow: 0 0 0 1.5px var(--pink-bd);
}

.tl-dot.dot-gray {
  background: var(--gray-pale);
  box-shadow: none;
}

.tl-line {
  flex: 1;
  width: 1.5px;
  background: var(--border);
  min-height: 22px;
  margin-top: 4px;
}

.tl-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .66rem .82rem;
  box-shadow: var(--s0);
  min-width: 0;
}

.card-key {
  border-left: 2px solid var(--red);
}

.card-gala {
  background: var(--charcoal) !important;
  border-color: transparent !important;
  border-left: 2px solid var(--gold) !important;
}

.card-gala .tlc-title {
  color: var(--white) !important;
}

.card-gala .tlc-loc {
  color: rgba(255, 255, 255, .48) !important;
}

.card-gala .tlc-loc i {
  color: rgba(255, 255, 255, .3) !important;
}

.tlc-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .2rem;
  line-height: 1.35;
}

.tlc-loc {
  font-size: .66rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.tlc-loc i {
  font-size: .6rem;
  color: var(--gray-light);
  flex-shrink: 0;
}

/* Timeline Badges */
.tl-badge {
  display: inline-block;
  padding: .09rem .4rem;
  border-radius: var(--r-full);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .3rem;
}

.badge-red {
  background: var(--red-lt);
  color: var(--red);
  border: 1px solid var(--red-mid);
}

.badge-green {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-bd);
}

.badge-gold {
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid var(--gold-bd);
}

.badge-pink {
  background: var(--pink-bg);
  color: var(--pink);
  border: 1px solid var(--pink-bd);
}

.badge-gray {
  background: var(--bg-warm);
  color: var(--gray-dark);
  border: 1px solid var(--border);
}

.badge-dark {
  background: rgba(43, 36, 32, .07);
  color: var(--ink);
  border: 1px solid var(--border);
}

.day-nil .day-header {
  opacity: .5;
}


/* ═══════════════════════════════════════════════
   MEAL PREFERENCE
   ═══════════════════════════════════════════════ */
.meal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: 1rem 1.25rem 0;
}

.meal-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem .85rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.meal-card:active {
  transform: scale(.97);
}

.meal-card.picked {
  border-color: var(--red);
  background: var(--red-lt);
  box-shadow: 0 0 0 3px rgba(232, 25, 44, .1);
}

.mc-check {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.4);
  transition: all .2s var(--spring);
}

.meal-card.picked .mc-check {
  opacity: 1;
  transform: scale(1);
}

.mc-emoji {
  font-size: 1.85rem;
  margin-bottom: .4rem;
  display: block;
}

.mc-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .26rem;
}

.mc-desc {
  font-size: .67rem;
  color: var(--gray-dark);
  line-height: 1.45;
}

.meal-card.picked .mc-name {
  color: var(--red);
}


/* ═══════════════════════════════════════════════
   TOUR SELECTION
   ═══════════════════════════════════════════════ */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.25rem 0;
}

/* ── Tour Card (image-led vertical layout) ── */
.tour-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all .22s var(--ease);
  -webkit-tap-highlight-color: transparent;
  box-shadow: var(--s1);
}

.tour-card:active {
  transform: scale(.985);
}

.tour-card.picked {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 25, 44, .12), var(--s2);
}

/* check badge */
.tc-check {
  position: absolute;
  top: .72rem;
  right: .72rem;
  z-index: 4;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.3);
  transition: all .25s var(--spring);
  box-shadow: 0 2px 8px rgba(232, 25, 44, .4);
}

.tour-card.picked .tc-check {
  opacity: 1;
  transform: scale(1);
}

/* hero image strip */
.tc-hero-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--pale);
}

.tc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
  display: block;
}

.tour-card:hover .tc-hero-img img {
  transform: scale(1.04);
}

/* number overlay on image */
.tc-num-overlay {
  position: absolute;
  bottom: .6rem;
  left: .8rem;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .25);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

/* category tag pill on image */
.tc-tag {
  position: absolute;
  top: .7rem;
  left: .7rem;
  background: rgba(26, 22, 20, .62);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .63rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .3rem;
  letter-spacing: .02em;
}

/* gradient fade at bottom of image */
.tc-hero-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(26, 22, 20, .45), transparent);
  pointer-events: none;
}

/* body below image */
.tc-body {
  padding: .85rem 1rem .9rem;
}

.tc-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: .32rem;
  transition: color .2s;
}

.tour-card.picked .tc-name {
  color: var(--red);
}

.tc-desc {
  font-size: .75rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: .5rem;
}

.tc-meta {
  font-size: .66rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: .28rem;
  margin-bottom: .72rem;
}

/* action row: Read More + Select */
.tc-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.btn-read-more {
  flex: 1;
  padding: .46rem .7rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: transparent;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  transition: all .18s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn-read-more:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-lt);
}

.btn-select-tour {
  flex: 1;
  padding: .46rem .7rem;
  border: 1.5px solid var(--red);
  border-radius: var(--r-md);
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  transition: all .18s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn-select-tour:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.tour-card.picked .btn-select-tour {
  background: var(--green);
  border-color: var(--green);
}

.tour-card.picked .btn-select-tour::before {
  content: '✓ ';
}

/* ── Tour Detail Modal Overlay ── */
.td-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(26, 22, 20, .72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease);
}

.td-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.td-sheet {
  width: 100%;
  max-width: 540px;
  background: var(--white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: transform .32s var(--spring);
  box-shadow: 0 -4px 40px rgba(26, 22, 20, .22);
}

.td-overlay.open .td-sheet {
  transform: translateY(0);
}

/* hero image in modal */
.td-hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.td-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.td-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 20, .7) 0%, rgba(26, 22, 20, .1) 55%, transparent 100%);
}

.td-close-btn {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(26, 22, 20, .55);
  backdrop-filter: blur(6px);
  border: none;
  color: #fff;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}

.td-close-btn:hover {
  background: rgba(26, 22, 20, .8);
}

.td-hero-meta {
  position: absolute;
  bottom: 1rem;
  left: 1.1rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: .6rem;
}

.td-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .22);
  line-height: 1;
  user-select: none;
}

.td-tag-badge {
  background: rgba(232, 25, 44, .88);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: var(--r-full);
  margin-bottom: .38rem;
}

/* modal body */
.td-body {
  padding: 1.2rem 1.25rem 2rem;
}

.td-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: .8rem;
}

.td-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  margin-bottom: .9rem;
}

.td-info-chip {
  background: var(--pale);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 600;
  padding: .28rem .65rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .28rem;
  border: 1px solid var(--border-soft);
}

.td-tagline {
  font-family: var(--script);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--red);
  line-height: 1.5;
  margin-bottom: 1.1rem;
  padding-left: .8rem;
  border-left: 2.5px solid var(--red-lt);
}

.td-section-head {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin: .95rem 0 .55rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--border-soft);
}

.td-itinerary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.td-itinerary li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .78rem;
  color: var(--ink);
  line-height: 1.5;
}

.td-itinerary li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: .45rem;
}

.td-itinerary li strong {
  color: var(--black);
  font-weight: 600;
}

.td-expect {
  font-size: .78rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

.td-bring-row {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
}

.td-bring-chip {
  background: var(--bg);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 500;
  padding: .3rem .7rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: .28rem;
}

.td-footer-actions {
  margin-top: 1.4rem;
}

.btn-td-select {
  width: 100%;
  padding: .82rem 1rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  transition: all .18s var(--ease);
  letter-spacing: .02em;
  -webkit-tap-highlight-color: transparent;
}

.btn-td-select:hover {
  background: var(--red-dark);
}

.btn-td-select.selected {
  background: var(--green);
}


/* ═══════════════════════════════════════════════
   GLAMOUR PARLOUR
   ═══════════════════════════════════════════════ */
.glam-hero {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.glam-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.glam-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(232, 25, 44, .9) 0%, rgba(180, 12, 22, .72) 45%, transparent 100%);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 66%;
}

.gho-eyebrow {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .22rem;
}

.gho-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  line-height: 1.12;
}

.gho-sub {
  font-family: var(--script);
  font-style: italic;
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: .5rem;
}

.gho-list {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.gho-list li {
  font-size: .65rem;
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: .32rem;
}

.gho-list li::before {
  content: '·';
  color: var(--gold-bd);
  font-size: .9rem;
  line-height: 1;
}

/* ── First Come First Served Disclaimer ── */
.fcfs-disclaimer {
  margin: .6rem 1.25rem .2rem;
  border: 1.5px solid rgba(232, 25, 44, .2);
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(232, 25, 44, .05) 0%, rgba(232, 25, 44, .02) 100%);
  overflow: hidden;
}

.fcfs-inner {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .9rem 1rem;
}

.fcfs-icon {
  flex-shrink: 0;
  margin-top: .1rem;
  opacity: .9;
}

.fcfs-body {
  flex: 1;
  min-width: 0;
}

.fcfs-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .28rem;
}

.fcfs-text {
  font-size: .75rem;
  color: var(--ink);
  line-height: 1.55;
}

.fcfs-text strong {
  color: var(--black);
  font-weight: 700;
}

/* ── Slot subheading ── */
.slot-subhead {
  font-size: .65rem;
  color: var(--gray-mid);
  padding: .1rem 1.25rem .6rem;
  line-height: 1.45;
}

.slot-header {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: .9rem 1.25rem .3rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .48rem;
  padding: 0 1.25rem;
}

.slot-btn {
  padding: .66rem .3rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .7rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  transition: border-color .18s var(--ease);
}

.slot-btn.slot-readonly {
  cursor: default;
  pointer-events: none;
}

.sb-label {
  display: block;
  font-size: .54rem;
  font-weight: 500;
  color: var(--green);
  margin-top: .1rem;
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════
   TRAINING GROUPS
   ═══════════════════════════════════════════════ */
.my-group-banner {
  margin: 1rem 1.25rem 0;
  background: linear-gradient(135deg, var(--charcoal), #1A1614);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: var(--s2);
}

.mgb-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mgb-info {
  flex: 1;
  min-width: 0;
}

.mgb-title {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .16rem;
}

.mgb-sub {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
}

.grp-tabs {
  display: flex;
  gap: .38rem;
  padding: .75rem 1.25rem 0;
}

.gt-tab {
  flex: 1;
  padding: .55rem .5rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray-mid);
  font-size: .72rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .18s;
}

.gt-tab.on {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.grp-panel {
  display: none;
  padding: .65rem 1.25rem 0;
}

.grp-panel.on {
  display: block;
}

.member-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .88rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: .44rem;
  transition: all .15s;
}

.member-row.me {
  border-color: var(--red);
  background: var(--red-lt);
  box-shadow: 0 0 0 2px rgba(232, 25, 44, .09);
}

.mr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--gray-dark);
  font-size: .67rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

.member-row.me .mr-avatar {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.mr-info {
  flex: 1;
  min-width: 0;
}

.mr-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-row.me .mr-name {
  color: var(--red);
}

.mr-meta {
  font-size: .67rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .05rem;
}

.mr-badge {
  padding: .09rem .36rem;
  border-radius: var(--r-full);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mr-badge.b-se {
  background: var(--blue-bg);
  color: var(--blue);
}

.mr-badge.b-tl {
  background: var(--gold-bg);
  color: var(--gold);
}

.mr-badge.b-mgmt {
  background: var(--red-lt);
  color: var(--red);
}

.mr-me-tag {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--red);
  padding: .09rem .42rem;
  background: var(--red-lt);
  border: 1px solid var(--red-mid);
  border-radius: var(--r-full);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   GALA DINNER
   ═══════════════════════════════════════════════ */
.gala-hero {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.gala-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gala-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(26, 22, 20, .92) 0%,
      rgba(26, 22, 20, .62) 50%,
      rgba(26, 22, 20, .22) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
}

.gho-date {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .28rem;
}

.gho-title-main {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: .24rem;
}

.gho-venue-main {
  font-size: .72rem;
  color: rgba(255, 255, 255, .62);
  margin-bottom: .2rem;
}

.gho-theme {
  font-family: var(--script);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-bd);
  letter-spacing: .05em;
}

/* Dress Code */
.dress-card {
  margin: 1rem 1.25rem 0;
  padding: 1.2rem 1.25rem;
  background: var(--red);
  border-radius: var(--r-lg);
  box-shadow: var(--s2);
}

.dc-eyebrow {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .28rem;
}

.dc-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .48rem;
}

.dc-desc {
  font-size: .76rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.65;
  margin-bottom: .72rem;
}

.dc-desc strong {
  color: var(--white);
  font-weight: 700;
}

.dc-list {
  margin-bottom: .8rem;
}

.dc-list li {
  font-size: .73rem;
  color: rgba(255, 255, 255, .9);
  padding: .2rem 0;
  display: flex;
  align-items: center;
  gap: .48rem;
}

.dc-list li::before {
  content: '◆';
  font-size: .44rem;
  color: var(--gold-bd);
}

.dc-attire-tag {
  display: inline-block;
  padding: .32rem .82rem;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--r-full);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}

/* My Table Card */
.my-table-card {
  margin: 1rem 1.25rem 0;
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  box-shadow: var(--s2);
}

.mtc-eyebrow {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .28rem;
}

.mtc-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .18rem;
}

.mtc-sub {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
}

/* Floorplan */
.fp-wrap {
  margin: .5rem 1.25rem 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem;
  box-shadow: var(--s0);
  overflow-x: auto;
}

.fp-room {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  min-width: 300px;
}

.fp-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: .4rem;
}

.fp-stage-box {
  width: 50px;
  min-height: 80px;
  background: var(--charcoal);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  gap: .2rem;
  padding: .4rem;
}

.fp-stage-box span {
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.fp-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .36rem;
}

.fp-table {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .4rem .25rem;
  text-align: center;
  min-width: 0;
}

.fp-table.mine {
  background: var(--red-lt);
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(232, 25, 44, .14);
}

.fp-table.vip {
  background: var(--gold-bg);
  border-color: var(--gold-bd);
}

.fp-table-num {
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.fp-table.mine .fp-table-num {
  color: var(--red);
}

.fp-table.vip .fp-table-num {
  color: var(--gold);
}

.fp-table-emoji {
  font-size: .82rem;
  margin: .1rem 0;
  display: block;
}

.fp-table-name {
  font-size: .45rem;
  color: var(--gray-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  display: block;
}

.fp-legend {
  display: flex;
  gap: .9rem;
  justify-content: center;
  padding-top: .65rem;
  border-top: 1px solid var(--border);
  margin-top: .55rem;
}

.fp-leg {
  display: flex;
  align-items: center;
  gap: .32rem;
  font-size: .64rem;
  color: var(--gray-dark);
}

.fp-leg-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-leg-dot.mine {
  background: var(--red-lt);
  border: 2px solid var(--red);
}

.fp-leg-dot.vip {
  background: var(--gold-bg);
  border: 2px solid var(--gold-bd);
}

.fp-leg-dot.other {
  background: var(--bg);
  border: 1.5px solid var(--border);
}

/* Seating Table */
.seat-scroll {
  margin: .5rem 1.25rem 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.seat-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
  font-size: .75rem;
}

.seat-table th {
  background: var(--bg-warm);
  padding: .56rem .7rem;
  text-align: left;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.seat-table td {
  padding: .6rem .7rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--black);
  vertical-align: middle;
}

.seat-table tr:last-child td {
  border-bottom: none;
}

.seat-table tr.s-me td {
  background: var(--red-lt);
}

.meal-dot {
  display: inline-block;
  padding: .1rem .42rem;
  border-radius: var(--r-full);
  font-size: .57rem;
  font-weight: 700;
  white-space: nowrap;
}

.md-chicken {
  background: #FEF3C7;
  color: #92400E;
}

.md-fish {
  background: var(--blue-bg);
  color: var(--blue);
}

.md-beef {
  background: #FEE2E2;
  color: #991B1B;
}

.md-vegan {
  background: var(--green-bg);
  color: var(--green);
}

.md-pending {
  background: var(--bg);
  color: var(--gray-mid);
}


/* ═══════════════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: 1rem 1.25rem 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .85rem;
  box-shadow: var(--s0);
}

.sc-label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .3rem;
}

.sc-num {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.sc-num span {
  font-family: var(--sans);
  font-size: .68rem;
  color: var(--gray-mid);
  margin-left: .12rem;
}

.sc-pct {
  font-size: .66rem;
  color: var(--green);
  font-weight: 600;
  margin-top: .2rem;
}

.admin-scroll {
  margin: .5rem 1.25rem 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  font-size: .74rem;
}

.admin-table th {
  background: var(--bg-warm);
  padding: .55rem .65rem;
  text-align: left;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table td {
  padding: .58rem .65rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--black);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: var(--bg);
}

.role-chip {
  display: inline-block;
  padding: .09rem .36rem;
  border-radius: var(--r-full);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.role-chip.se {
  background: var(--blue-bg);
  color: var(--blue);
}

.role-chip.tl {
  background: var(--gold-bg);
  color: var(--gold);
}

.role-chip.mgmt {
  background: var(--red-lt);
  color: var(--red);
}


/* ═══════════════════════════════════════════════
   MODAL (Bottom Sheet)
   ═══════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, .55);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-overlay.open {
  display: flex;
}

.modal-sheet {
  background: var(--white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: .72rem 1.5rem calc(1.75rem + env(safe-area-inset-bottom));
  width: 100%;
  max-width: 520px;
  text-align: center;
  animation: slideUp .3s var(--spring);
  box-shadow: var(--s4);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

.modal-handle {
  width: 36px;
  height: 4px;
  background: var(--gray-pale);
  border-radius: var(--r-full);
  margin: 0 auto 1.2rem;
}

.modal-icon {
  font-size: 2.2rem;
  margin-bottom: .65rem;
}

.modal-sheet h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .42rem;
}

.modal-sheet p {
  font-size: .8rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.modal-btns {
  display: flex;
  flex-direction: column;
  gap: .44rem;
}


/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */
#toastWrap {
  position: fixed;
  top: calc(var(--bar-h) + .65rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  pointer-events: none;
  width: calc(100% - 2.5rem);
  max-width: 360px;
}

.toast {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--r-md);
  padding: .7rem 1rem;
  font-size: .79rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: .55rem;
  box-shadow: var(--s3);
  animation: tIn .28s var(--spring);
}

.toast.ok {
  background: #14532D;
}

.toast.err {
  background: #7F1D1D;
}

@keyframes tIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.96)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.toast.out {
  animation: tOut .24s var(--ease) forwards;
}

@keyframes tOut {
  to {
    opacity: 0;
    transform: translateY(-8px)
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (min-width:540px) {
  .meal-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .slot-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fp-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width:768px) {
  :root {
    --bar-h: 60px;
  }

  /* Login: side by side */
  #loginPage {
    flex-direction: row !important;
  }

  .lp-poster {
    flex: 0 0 48%;
    min-height: 100vh;
    min-height: 100dvh;
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .lp-form {
    padding: 3rem 2.5rem;
    align-items: center;
  }

  .lph-line {
    font-size: 5rem;
  }

  /* App: hide tab bar */
  .tab-bar {
    display: none;
  }

  .app-body {
    padding-bottom: 2rem;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (min-width:1024px) {
  .app-body {
    max-width: 860px;
  }

  .glam-hero,
  .gala-hero {
    height: 280px;
  }
}

/* ═══════════════════════════════════════════════
   EXTRA POLISH & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════ */

/* Smooth hover lift for cards */
.vs-card:hover,
.stat-card:hover {
  box-shadow: var(--s1);
  transform: translateY(-1px);
  transition: all .22s var(--ease);
}

/* Meal card hover */
.meal-card:hover:not(.picked) {
  border-color: var(--gray-light);
  box-shadow: var(--s1);
}

/* Tour card hover */
.tour-card:hover:not(.picked) {
  border-color: var(--gray-light);
  box-shadow: var(--s1);
}

/* Slot button hover */
.slot-btn:hover:not(.taken):not(.picked) {
  border-color: var(--gray-light);
  box-shadow: var(--s0);
  background: var(--bg);
}

/* Member row hover */
.member-row:hover:not(.me) {
  border-color: var(--gray-light);
  box-shadow: var(--s0);
}

/* Tab item hover */
.tab-item:hover:not(.on) {
  color: var(--gray-dark);
}

.tab-item.cl-disabled {
  display: none;
}

/* Checklist card hover */
.cl-card:hover:not(.done):not(.cl-disabled) {
  border-color: var(--gray-light);
  box-shadow: var(--s1);
}

/* Disabled state — applies to checklist cards and nav tab items */
.cl-disabled {
  opacity: .45;
  filter: grayscale(1);
  pointer-events: none;
}

.cl-card.cl-disabled {
  cursor: not-allowed;
}

.cl-card.cl-disabled:active {
  transform: none;
}

/* Login poster — subtle ken burns on bg */
.lp-bg-img {
  animation: kbPan 20s ease-in-out infinite alternate;
}

@keyframes kbPan {
  from {
    transform: scale(1.0) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-2%);
  }
}

/* Splash content fade-in */
.splash-inner>* {
  animation: fadeUp .6s var(--ease) both;
}

.splash-inner>*:nth-child(1) {
  animation-delay: .1s;
}

.splash-inner>*:nth-child(2) {
  animation-delay: .22s;
}

.splash-inner>*:nth-child(3) {
  animation-delay: .32s;
}

.splash-inner>*:nth-child(4) {
  animation-delay: .44s;
}

.splash-inner>*:nth-child(5) {
  animation-delay: .54s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Identity hero shimmer */
.id-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
  animation: heroShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroShimmer {
  0% {
    left: -100%;
  }

  50% {
    left: 160%;
  }

  100% {
    left: 160%;
  }
}

/* Countdown pulse */
.cd-unit b {
  animation: cdPulse 1s ease-in-out;
}

@keyframes cdPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
    color: var(--red-dk);
  }

  100% {
    transform: scale(1);
  }
}

/* App bar — subtle bottom shadow on scroll */
.app-bar {
  transition: box-shadow .2s;
}

.app-bar.scrolled {
  box-shadow: var(--s1);
}


/* ═══════════════════════════════════════════════
   PHOTO GALLERY PAGE
   ═══════════════════════════════════════════════ */

/* ── Hero banner ── */
.gal-hero {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(232, 25, 44, .28) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(180, 12, 20, .18) 0%, transparent 60%),
    linear-gradient(160deg, #1A1614 0%, #2B1A1C 50%, #1A1614 100%);
}

/* Decorative floating photo frames */
.gal-frame {
  position: absolute;
  border: 1.5px solid rgba(232, 25, 44, .25);
  border-radius: var(--r-sm);
  opacity: .5;
  animation: galFloat 6s ease-in-out infinite alternate;
}

.gal-frame-1 {
  width: 56px;
  height: 44px;
  top: 18%;
  left: 8%;
  animation-delay: 0s;
  transform: rotate(-8deg);
}

.gal-frame-2 {
  width: 44px;
  height: 56px;
  top: 30%;
  right: 10%;
  animation-delay: 1.5s;
  transform: rotate(6deg);
}

.gal-frame-3 {
  width: 36px;
  height: 36px;
  bottom: 18%;
  left: 20%;
  animation-delay: 3s;
  transform: rotate(12deg);
}

@keyframes galFloat {
  from {
    transform: translateY(0) rotate(var(--r, -8deg));
    opacity: .4;
  }

  to {
    transform: translateY(-6px) rotate(var(--r, -8deg));
    opacity: .7;
  }
}

.gal-hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.gal-hero-eyebrow {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .45rem;
}

.gal-hero-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .4rem;
}

.gal-hero-sub {
  font-family: var(--script);
  font-size: .95rem;
  font-style: italic;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .5rem;
}

.gal-hero-dates {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(232, 25, 44, .35);
  border-radius: var(--r-full);
  padding: .25rem .75rem;
}

/* ── Full Gallery CTA ── */
.gal-cta-wrap {
  padding: 1rem 1.25rem .3rem;
}

.gal-cta-btn {
  width: 100%;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  box-shadow: 0 4px 20px rgba(232, 25, 44, .3);
  padding: .1rem;
  transition: transform .2s var(--spring), box-shadow .2s;
}

.gal-cta-btn:active {
  transform: scale(.98);
  box-shadow: 0 2px 10px rgba(232, 25, 44, .2);
}

.gcb-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.1rem;
}

.gcb-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--r-md);
  color: var(--white);
}

.gcb-text {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.gcb-label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.gcb-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .02em;
}

.gcb-ext {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  flex-shrink: 0;
}

.gal-cta-note {
  text-align: center;
  font-size: .64rem;
  color: var(--gray-mid);
  margin-top: .55rem;
  line-height: 1.45;
}

/* ── Browse by Day ── */
.gal-browse-sub {
  font-size: .72rem;
  color: var(--gray-mid);
  padding: .1rem 1.25rem .7rem;
  line-height: 1.45;
}

.gal-day-grid {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 0 1.25rem;
}

.gdc-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  font-size: 1rem;
}

.gal-day-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .85rem .9rem;
  box-shadow: var(--s0);
  cursor: pointer;
  transition: box-shadow .2s var(--ease), border-color .2s, transform .2s var(--spring);
  animation: fadeUp .4s var(--ease) both;
}

.gal-day-card:hover {
  box-shadow: var(--s2);
  border-color: rgba(232, 25, 44, .2);
}

.gal-day-card:active {
  transform: scale(.98);
}

.gdc-body {
  flex: 1;
  min-width: 0;
}

.gdc-day {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .18rem;
}

.gdc-label {
  font-size: .86rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .18rem;
  line-height: 1.25;
}

.gdc-desc {
  font-size: .68rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

.gdc-arrow {
  font-size: .65rem;
  color: var(--gray-light);
  flex-shrink: 0;
  transition: transform .2s var(--ease), color .18s;
}

.gal-day-card:hover .gdc-arrow {
  transform: translateX(3px);
  color: var(--red);
}

/* ── Coming Soon notice ── */
.gal-notice {
  margin: .4rem 1.25rem .8rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: var(--bg);
}

.gal-notice-inner {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .9rem 1rem;
}

.gal-notice-icon {
  flex-shrink: 0;
  margin-top: .1rem;
}

.gal-notice-body {
  flex: 1;
  min-width: 0;
}

.gal-notice-title {
  font-size: .76rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .28rem;
}

.gal-notice-text {
  font-size: .72rem;
  color: var(--gray-dark);
  line-height: 1.55;
}

/* ── What's in the Gallery grid ── */
.gal-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: 0 1.25rem;
}

.gal-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .8rem .85rem;
  box-shadow: var(--s0);
}

.gff-icon {
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: .4rem;
}

.gff-label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .18rem;
  line-height: 1.2;
}

.gff-desc {
  font-size: .64rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

/* Page entry animation */
@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Gala hero overlay gradient improvement */
.gala-hero-overlay {
  background: linear-gradient(150deg,
      rgba(26, 22, 20, .95) 0%,
      rgba(26, 22, 20, .7) 45%,
      rgba(26, 22, 20, .1) 100%);
}

/* Tour card number accent */
.tour-card .tc-num {
  transition: color .2s, transform .2s;
}

.tour-card:hover .tc-num {
  transform: scale(1.05);
}

/* Badge glow on identity hero */
.role-badge {
  transition: box-shadow .2s;
}

.rb-se {
  box-shadow: 0 0 0 0 transparent;
}

.rb-tl {
  box-shadow: 0 0 0 0 transparent;
}

.rb-mgmt {
  box-shadow: 0 0 12px rgba(232, 25, 44, .2);
}

/* Red accent bar under page headers */
.pg-head {
  border-top: 3px solid var(--red);
}

/* Scrollable table focus ring */
.seat-scroll:focus-within,
.admin-scroll:focus-within {
  outline: 2px solid rgba(232, 25, 44, .2);
  border-radius: var(--r-md);
}

/* Demo pills hover */
.demo-pill:hover {
  border-color: var(--gray-light);
  color: var(--black);
}

/* Confirmed box icon bounce */
.confirmed-box .cb-icon {
  animation: iconBounce .5s var(--spring);
}

@keyframes iconBounce {
  0% {
    transform: scale(0.5) rotate(-10deg);
  }

  70% {
    transform: scale(1.15) rotate(3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

/* SK-II Red divider accent on section heads */
.section-head::before {
  content: '';
  width: 3px;
  height: 12px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Slot grid — 4-col on larger phones */
@media (min-width:400px) {
  .slot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Better group panel padding on tablet */
@media (min-width:640px) {
  .grp-panel.on {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .grp-panel.on>div {
    display: contents;
  }

  .member-row {
    margin-bottom: 0;
  }
}

/* Sticky day headers on schedule */
@media (max-width:767px) {
  .day-header {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}

/* Bottom sheet modal — nicer on desktop */
@media (min-width:768px) {
  .modal-overlay {
    align-items: center;
  }

  .modal-sheet {
    border-radius: var(--r-xl);
    padding: 2rem;
    max-width: 440px;
    margin: 1.5rem;
  }
}

/* Focus visible for accessibility */
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Print styles */
@media print {

  .tab-bar,
  .app-bar,
  .splash,
  #loginPage {
    display: none !important;
  }

  .page {
    display: block !important;
  }
}


/* ═══════════════════════════════════════════════
   BOOKLET PAGES — SHARED COMPONENTS
   ═══════════════════════════════════════════════ */

/* ── Info Hero Banner ── */
.info-hero {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.info-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease);
}

.info-hero:hover .info-hero-img {
  transform: scale(1.03);
}

.info-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
      rgba(26, 22, 20, .92) 0%,
      rgba(26, 22, 20, .72) 45%,
      rgba(26, 22, 20, .18) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.5rem;
}

.iho-eyebrow {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .28rem;
}

.iho-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .22rem;
}

.iho-sub {
  font-size: .72rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.5;
}

/* ── Booklet Section Wrapper ── */
.bk-section {
  padding: .9rem 1.25rem 0;
}

.bk-section-head {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: .45rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .82rem;
}

.bk-section-head i {
  color: var(--red);
  font-size: .7rem;
}

.bk-section-head.bk-head-red {
  color: var(--red);
}

/* ── Requirement Cards ── */
.bk-cards {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.bk-req-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  box-shadow: var(--s0);
  transition: all .2s var(--ease);
}

.bk-req-card:hover {
  box-shadow: var(--s1);
  transform: translateY(-1px);
}

.bk-req-card.bk-req-highlight {
  border-color: var(--red);
  background: var(--red-lt);
}

.bk-req-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}

.bk-req-highlight .bk-req-num {
  color: var(--red-mid);
}

.bk-req-body {
  flex: 1;
  min-width: 0;
}

.bk-req-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .25rem;
}

.bk-req-highlight .bk-req-title {
  color: var(--red);
}

.bk-req-desc {
  font-size: .74rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.bk-req-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--gray-mid);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.bk-req-highlight .bk-req-icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ── Notice Cards ── */
.bk-notice-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.bk-notice {
  display: flex;
  align-items: flex-start;
  gap: .72rem;
  padding: .85rem .95rem;
  border-radius: var(--r-md);
  border-left: 3px solid var(--border);
}

.bk-notice-warn {
  background: var(--gold-bg);
  border-color: var(--gold);
}

.bk-notice-info {
  background: var(--blue-bg);
  border-color: var(--blue);
}

.bk-notice-ok {
  background: var(--green-bg);
  border-color: var(--green);
}

.bkn-icon {
  font-size: .9rem;
  margin-top: .1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.bk-notice-warn .bkn-icon {
  color: var(--gold);
}

.bk-notice-info .bkn-icon {
  color: var(--blue);
}

.bk-notice-ok .bkn-icon {
  color: var(--green);
}

.bkn-body {
  flex: 1;
  min-width: 0;
}

.bkn-body strong {
  font-size: .8rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: .2rem;
}

.bkn-body p {
  font-size: .73rem;
  color: var(--gray-dark);
  line-height: 1.58;
  margin: 0;
}

/* ── Pre-Departure Checklist Grid ── */
.bk-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.bk-chk-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .62rem .75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: .74rem;
  color: var(--ink);
  transition: all .18s var(--ease);
  -webkit-tap-highlight-color: transparent;
  font-family: var(--sans);
}

.bk-chk-item:hover {
  border-color: var(--red);
}

.bk-chk-item:has(.bk-chk:checked) {
  border-color: var(--green);
  background: var(--green-bg);
  color: var(--green);
}

.bk-chk {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer;
}

/* ── Tip Banner ── */
.bk-tip-banner {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  background: rgba(180, 83, 9, .07);
  border: 1.5px solid var(--gold-bd);
  border-radius: var(--r-md);
  padding: .85rem .95rem;
  margin-top: .75rem;
}

.bk-tip-banner i {
  color: var(--gold);
  font-size: .9rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.bk-tip-banner p {
  font-size: .73rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* ── Two-Column Info Tiles ── */
.bk-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}

.bk-info-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .85rem .8rem;
  text-align: center;
  box-shadow: var(--s0);
  transition: all .2s var(--ease);
}

.bk-info-tile:hover {
  box-shadow: var(--s1);
  transform: translateY(-1px);
}

.bk-tile-green {
  border-color: var(--green-bd);
  background: var(--green-bg);
}

.bk-tile-red {
  border-color: var(--red-mid);
  background: var(--red-lt);
}

.bit-icon {
  font-size: 1.1rem;
  margin-bottom: .3rem;
}

.bk-tile-green .bit-icon {
  color: var(--green);
}

.bk-tile-red .bit-icon {
  color: var(--red);
}

.bit-label {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .18rem;
}

.bit-val {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .12rem;
}

.bk-tile-green .bit-val {
  color: var(--green);
}

.bk-tile-red .bit-val {
  color: var(--red);
}

.bit-sub {
  font-size: .63rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

/* ── Info Card with Steps ── */
.bk-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s1);
}

.bic-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.bic-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  color: #fff;
}

.bic-green {
  background: var(--green);
}

.bic-red {
  background: var(--red);
}

.bic-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
}

.bic-sub {
  font-size: .65rem;
  color: var(--gray-mid);
  margin-top: .08rem;
}

.bic-steps {
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.bic-step {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.bic-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .06rem;
}

.bic-step-text {
  font-size: .75rem;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}

.bic-step-text strong {
  color: var(--black);
  font-weight: 700;
}

/* ── Group Arrival Cards ── */
.bk-group-arrival {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

.bga-card {
  border-radius: var(--r-lg);
  padding: 1rem .9rem;
  box-shadow: var(--s1);
}

.bga-g1 {
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
}

.bga-g2 {
  background: linear-gradient(135deg, var(--red), #C0121F);
}

.bga-label {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .3rem;
}

.bga-date {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .2rem;
  line-height: 1.2;
}

.bga-detail {
  font-size: .66rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .4rem;
}

.bga-depart {
  font-size: .63rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  padding-top: .35rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

/* ── Hotel Hero Card ── */
.hotel-hero-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  box-shadow: var(--s1);
  overflow: hidden;
}

.hhc-logo {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.hhc-brand {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .1rem;
}

.hhc-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .25rem;
}

.hhc-address {
  font-size: .67rem;
  color: var(--gray-dark);
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  line-height: 1.45;
  margin-bottom: .45rem;
}

.hhc-address i {
  color: var(--red);
  margin-top: .12rem;
  flex-shrink: 0;
}

.hhc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.hhc-chip {
  background: var(--bg);
  color: var(--ink);
  font-size: .6rem;
  font-weight: 600;
  padding: .22rem .55rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .25rem;
}

.hhc-chip i {
  color: var(--red);
  font-size: .58rem;
}

/* ── Facility Grid ── */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}

.fac-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .75rem .5rem;
  text-align: center;
  box-shadow: var(--s0);
  transition: all .2s var(--ease);
}

.fac-card:hover {
  border-color: var(--red);
  box-shadow: var(--s1);
  transform: translateY(-1px);
}

.fac-icon {
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: .25rem;
}

.fac-label {
  font-size: .6rem;
  font-weight: 600;
  color: var(--gray-dark);
  line-height: 1.3;
}

/* ── Venue Guide ── */
.venue-guide {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.vg-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .82rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--s0);
  transition: all .2s;
}

.vg-item:hover {
  box-shadow: var(--s1);
}

.vg-item.vg-main {
  border-color: var(--red);
  background: var(--red-lt);
}

.vg-level {
  background: var(--charcoal);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: .28rem .6rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.vg-item.vg-main .vg-level {
  background: var(--red);
}

.vg-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  flex: 1;
  min-width: 0;
}

.vg-item.vg-main .vg-name {
  color: var(--red);
}

.vg-events {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-top: .28rem;
}

.vg-tag {
  font-size: .6rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.vg-red {
  background: var(--red-lt);
  color: var(--red);
}

.vg-gold {
  background: var(--gold-bg);
  color: var(--gold);
}

.vg-pink {
  background: var(--pink-bg);
  color: var(--pink);
}

.vg-gray {
  background: var(--bg);
  color: var(--gray-dark);
}

.vg-item {
  flex-direction: column;
  align-items: flex-start;
}

/* ── Dress Code Cards ── */
.dresscode-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.dc-ev-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  box-shadow: var(--s0);
  transition: all .2s var(--ease);
}

.dc-ev-card:hover {
  box-shadow: var(--s1);
  transform: translateY(-1px);
}

.dc-ev-card.dc-ev-highlight {
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.dc-ev-card.dc-ev-highlight .dc-ev-day,
.dc-ev-card.dc-ev-highlight .dc-ev-desc {
  color: rgba(255, 255, 255, .55);
}

.dc-ev-card.dc-ev-highlight .dc-ev-name {
  color: #fff;
}

.dc-ev-card.dc-ev-highlight .dc-ev-code {
  color: rgba(255, 255, 255, .7);
}

.dc-ev-gala {
  background: linear-gradient(135deg, var(--charcoal), #3a1c20);
  border-color: var(--gold-bd);
  position: relative;
  overflow: hidden;
}

.dc-ev-gala-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
}

.dc-ev-gala .dc-ev-day,
.dc-ev-gala .dc-ev-desc {
  color: rgba(255, 255, 255, .55);
}

.dc-ev-gala .dc-ev-name {
  color: var(--gold-bd);
}

.dc-ev-gala .dc-ev-code {
  color: rgba(255, 255, 255, .8);
}

.dc-ev-gala .dc-ev-desc strong {
  color: var(--gold-bd);
}

.dc-ev-day {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .12rem;
}

.dc-ev-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .2rem;
}

.dc-ev-code {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .35rem;
}

.dc-ev-code i {
  color: var(--red);
}

.dc-ev-desc {
  font-size: .73rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin: 0;
}

/* ── Pack List ── */
.pack-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.pk-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .77rem;
  color: var(--ink);
}

.pk-done {
  color: var(--green);
}

.pk-open {
  color: var(--gray-light);
}

/* ── Tip List ── */
.bk-tip-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.bk-tip-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .8rem .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.bti-num {
  font-size: 1.05rem;
  flex-shrink: 0;
}

.bk-tip-item p {
  font-size: .74rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin: 0;
}

.bk-tip-item p strong {
  color: var(--black);
}

/* ── Reminder Item — Updated ── */
.reminder-item.ri-clickable {
  cursor: pointer;
}

.reminder-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  /* border-left: 3px solid var(--red); */
  border-radius: var(--r-md);
  padding: .82rem .9rem;
  margin-bottom: .45rem;
  transition: all .18s var(--ease);
}

.reminder-item:hover {
  box-shadow: var(--s1);
  transform: translateX(2px);
}

.ri-body {
  flex: 1;
  min-width: 0;
}

.ri-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .2rem;
}

.ri-desc {
  font-size: .72rem;
  color: var(--gray-dark);
  line-height: 1.55;
}

.ri-arrow {
  color: var(--gray-light);
  font-size: .7rem;
  flex-shrink: 0;
}

.ri-clickable:hover .ri-arrow {
  color: var(--red);
}

/* ── Contact Cards ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.1rem .9rem;
  box-shadow: var(--s1);
}

.contact-card.cc-primary {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--charcoal), var(--black));
}

.cc-role {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .18rem;
}

.cc-primary .cc-role {
  color: rgba(255, 255, 255, .4);
}

.cc-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .3rem;
}

.cc-primary .cc-name {
  color: #fff;
}

.cc-desc {
  font-size: .72rem;
  color: var(--gray-dark);
  line-height: 1.55;
  margin-bottom: .65rem;
}

.cc-primary .cc-desc {
  color: rgba(255, 255, 255, .55);
}

.cc-actions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .85rem;
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s var(--ease);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cc-call {
  background: var(--green);
  color: #fff;
}

.cc-whatsapp {
  background: #25D366;
  color: #fff;
}

.cc-email {
  background: var(--blue);
  color: #fff;
}

.cc-btn:hover {
  opacity: .88;
  transform: scale(1.03);
}

/* ── Emergency Grid ── */
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
}

.emg-card {
  background: var(--red-lt);
  border: 2px solid var(--red-mid);
  border-radius: var(--r-md);
  padding: .9rem .5rem;
  text-align: center;
  transition: all .2s;
}

.emg-card:hover {
  background: var(--red);
  border-color: var(--red);
}

.emg-card:hover .emg-num,
.emg-card:hover .emg-label {
  color: #fff;
}

.emg-num {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: .2rem;
}

.emg-label {
  font-size: .62rem;
  font-weight: 600;
  color: var(--gray-dark);
}

/* ── Accordion ── */
.accord-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.accord-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--s0);
}

.accord-item.open {
  border-color: var(--red);
}

.accord-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .82rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  color: var(--black);
  -webkit-tap-highlight-color: transparent;
  transition: background .15s;
}

.accord-btn:hover {
  background: var(--bg);
}

.accord-btn span {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex: 1;
}

.accord-btn span i {
  color: var(--red);
  font-size: .75rem;
  flex-shrink: 0;
}

.accord-arrow {
  color: var(--gray-mid);
  font-size: .65rem;
  flex-shrink: 0;
  transition: transform .28s var(--ease);
}

.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
  padding: 0 1rem;
}

.accord-item.open .accord-body {
  padding-bottom: .9rem;
}

.accord-body p {
  font-size: .75rem;
  color: var(--gray-dark);
  line-height: 1.68;
  margin: 0;
}

.accord-body strong {
  color: var(--black);
  font-weight: 700;
}

/* ── Apps Grid ── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}

.app-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .8rem .6rem;
  text-align: center;
  box-shadow: var(--s0);
  transition: all .2s var(--ease);
}

.app-card:hover {
  border-color: var(--red);
  box-shadow: var(--s1);
  transform: translateY(-2px);
}

.app-icon {
  font-size: 1.6rem;
  margin-bottom: .3rem;
  display: block;
}

.app-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .12rem;
}

.app-desc {
  font-size: .6rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

/* ── Responsive for booklet pages ── */
@media (min-width:540px) {
  .bk-checklist-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .facility-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .emergency-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .apps-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width:768px) {
  .info-hero {
    height: 300px;
  }

  .bk-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .bk-notice-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dresscode-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pack-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.disply_only_desktop {
  display: none;
}

.display_only_mobile {
  display: block;
}

.qr-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: .55rem;
}

.mobile_qr {
  width: 250px;  
  border-radius: 8px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;

}

@media (min-width: 768px) {
  .disply_only_desktop {
    display: block;
  }

  .display_only_mobile {
    display: none;
  }
}