/* ============================================================
   LMNTRIX COLLECTIVE — Design tokens
   ============================================================ */
:root {
  /* Core */
  --ink-black: #050108;
  --ink-deep: #0a0414;
  --ink-card: #110723;
  --ink-card-2: #160930;
  --ink-line: rgba(168, 85, 247, 0.22);
  --ink-line-bright: rgba(94, 234, 212, 0.42);

  /* Brand */
  --teal: #4fe0d0;
  --teal-bright: #7ff5e8;
  --teal-deep: #1f8579;
  --violet: #a855f7;
  --violet-bright: #c084fc;
  --violet-deep: #6d28d9;
  --magenta: #e879f9;
  --hot: #f472b6;

  /* Text */
  --text: #ecdcff;
  --text-dim: #a89cc4;
  --text-muted: #6f6488;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #4fe0d0 0%, #a855f7 55%, #e879f9 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(79,224,208,.12), rgba(168,85,247,.12) 55%, rgba(232,121,249,.12));
  --grad-night: radial-gradient(ellipse at 50% 0%, #1a0a3a 0%, #0a0414 45%, #050108 100%);

  /* Type */
  --f-display: "Cinzel", "Cormorant Garamond", serif;
  --f-body: "Outfit", system-ui, sans-serif;
  --f-script: "Tangerine", "Great Vibes", cursive;

  /* Layout */
  --max: 1280px;
  --rad-sm: 6px;
  --rad: 12px;
  --rad-lg: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink-black);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background ambient — fixed grain + glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 80% -10%, rgba(168,85,247,.18), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 10% 30%, rgba(79,224,208,.10), transparent 60%),
    radial-gradient(ellipse 800px 600px at 70% 110%, rgba(232,121,249,.10), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.4  0 0 0 0 0.85  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}

#root { position: relative; z-index: 1; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
.eyebrow .dot { color: var(--violet); margin: 0 .6em; }

.display {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.headline {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.script {
  font-family: var(--f-script);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(168,85,247,.35));
}

.teal-text { color: var(--teal); }
.violet-text { color: var(--violet-bright); }

/* Big chrome-style stacked title — like the logo */
.chrome-title {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.92;
  background: linear-gradient(180deg,
    #d6fff8 0%,
    #7ff5e8 18%,
    #4fe0d0 42%,
    #2dd4bf 55%,
    #14b8a6 70%,
    #4fe0d0 88%,
    #7ff5e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 22px rgba(79,224,208,.35),
    0 0 40px rgba(168,85,247,.18);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.6));
}
.chrome-title.violet {
  background: linear-gradient(180deg,
    #f5e0ff 0%,
    #e9c5ff 18%,
    #c084fc 42%,
    #a855f7 55%,
    #8b5cf6 70%,
    #a855f7 88%,
    #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(168,85,247,.45);
}

/* ============================================================
   Layout
   ============================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 56px 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0; cursor: pointer;
  transition: all .25s ease;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  color: #050108;
  background: linear-gradient(135deg, #7ff5e8 0%, #4fe0d0 35%, #c084fc 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 8px 24px rgba(168,85,247,.35),
    0 0 40px rgba(79,224,208,.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18) inset,
    0 12px 32px rgba(168,85,247,.55),
    0 0 60px rgba(79,224,208,.35);
}
.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--ink-line-bright);
}
.btn-ghost:hover {
  background: rgba(79,224,208,.08);
  border-color: var(--teal);
  color: var(--teal-bright);
}
.btn-violet {
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset, 0 8px 24px rgba(168,85,247,.4);
}
.btn-violet:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 11px; letter-spacing: .18em; }
.btn-icon { width: 38px; height: 38px; padding: 0; border-radius: 50%; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: linear-gradient(180deg, rgba(22,9,48,.6), rgba(10,4,20,.6));
  border: 1px solid var(--ink-line);
  border-radius: var(--rad-lg);
  position: relative;
  backdrop-filter: blur(8px);
}
.card-glow {
  position: relative;
}
.card-glow::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79,224,208,.45), rgba(168,85,247,.45) 50%, rgba(232,121,249,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Ornate corner frame */
.frame {
  border: 1px solid var(--ink-line);
  border-radius: var(--rad-lg);
  position: relative;
  padding: 28px;
}
.frame .corner {
  position: absolute; width: 22px; height: 22px;
  border: 1px solid var(--teal);
  opacity: .8;
}
.frame .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; border-top-left-radius: var(--rad-lg); }
.frame .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; border-top-right-radius: var(--rad-lg); }
.frame .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; border-bottom-left-radius: var(--rad-lg); }
.frame .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; border-bottom-right-radius: var(--rad-lg); }

/* ============================================================
   Inputs
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .label {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
.input, .select, .textarea {
  width: 100%;
  background: rgba(10,4,20,.7);
  border: 1px solid var(--ink-line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--rad);
  font-family: var(--f-body);
  font-size: 15px;
  outline: none;
  transition: all .2s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(79,224,208,.15);
  background: rgba(10,4,20,.95);
}
.textarea { resize: vertical; min-height: 120px; font-family: var(--f-body); }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%234fe0d0' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.select option { background: #0a0414; color: var(--text); }

/* ============================================================
   Divider with lotus
   ============================================================ */
.divider {
  display: flex; align-items: center; gap: 18px;
  margin: 24px auto;
  max-width: 360px;
  opacity: .9;
}
.divider .line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal) 50%, transparent);
}
.divider .gem {
  width: 8px; height: 8px;
  transform: rotate(45deg);
  background: var(--violet);
  box-shadow: 0 0 12px var(--violet-bright);
}

/* ============================================================
   Pill / tag
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--ink-line-bright);
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(79,224,208,.06);
}
.tag.violet { color: var(--violet-bright); border-color: rgba(168,85,247,.4); background: rgba(168,85,247,.06); }
.tag.hot { color: var(--hot); border-color: rgba(244,114,182,.4); background: rgba(244,114,182,.06); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,1,8,.7);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
  cursor: pointer;
}
.nav-brand img { height: 44px; width: auto; filter: drop-shadow(0 0 12px rgba(168,85,247,.5)); }
.nav-brand .stack { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .stack b {
  font-family: var(--f-display); font-weight: 900;
  font-size: 18px; letter-spacing: 0.16em;
  color: var(--teal-bright);
  text-shadow: 0 0 12px rgba(79,224,208,.4);
}
.nav-brand .stack span {
  font-family: var(--f-display); font-size: 10px;
  letter-spacing: 0.5em; color: var(--violet-bright);
  margin-top: 3px;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  background: none; border: 0; cursor: pointer;
  color: var(--text-dim);
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all .2s ease;
}
.nav-link:hover { color: var(--teal-bright); background: rgba(79,224,208,.06); }
.nav-link.active { color: var(--teal-bright); }
.nav-link.active::after {
  content: ""; display: block; height: 2px; width: 18px;
  background: var(--teal); margin: 4px auto 0; border-radius: 2px;
  box-shadow: 0 0 8px var(--teal);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--ink-line);
  padding: 48px 0 32px;
  margin-top: 80px;
  background: linear-gradient(180deg, transparent, rgba(168,85,247,.04));
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  text-align: center;
  overflow: hidden;
}
.hero-logo {
  width: 280px; max-width: 60vw;
  filter: drop-shadow(0 0 60px rgba(168,85,247,.5)) drop-shadow(0 0 30px rgba(79,224,208,.3));
  margin: 0 auto 24px;
  display: block;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--text-dim);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.hero-stat {
  padding: 24px;
  border-right: 1px solid var(--ink-line);
  text-align: center;
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: var(--f-display); font-weight: 900;
  font-size: 32px; color: var(--teal-bright);
  text-shadow: 0 0 16px rgba(79,224,208,.4);
}
.hero-stat .lbl {
  font-family: var(--f-display); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 4px;
}

/* ============================================================
   Section header
   ============================================================ */
.s-head { text-align: center; margin-bottom: 56px; }
.s-head .eyebrow { margin-bottom: 16px; display: inline-block; }
.s-head h2 { font-size: clamp(32px, 4.5vw, 56px); margin: 0 0 16px; }
.s-head p { color: var(--text-dim); max-width: 580px; margin: 0 auto; font-size: 17px; }

/* ============================================================
   Artist cards
   ============================================================ */
.artist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 880px) { .artist-grid { grid-template-columns: 1fr; } }
.artist-card {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease;
  isolation: isolate;
}
.artist-card:hover { transform: translateY(-4px); }
.artist-card .bg {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #2a0a4a 0%, #0a0414 100%);
  position: relative;
  overflow: hidden;
}
.artist-card .portrait {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 180px;
  letter-spacing: -.05em;
  background: linear-gradient(180deg, rgba(79,224,208,.18), rgba(168,85,247,.18));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(168,85,247,.5));
}
.artist-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,1,8,.95) 100%);
}
.artist-card .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px;
}
.artist-card .meta h3 {
  font-family: var(--f-display); font-weight: 900;
  font-size: 44px; letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #fff;
}
.artist-card .meta .role {
  font-family: var(--f-display); font-size: 11px;
  letter-spacing: 0.3em; color: var(--teal-bright);
  text-transform: uppercase;
}
.artist-card .meta .tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

/* ============================================================
   Portfolio grid (Pinterest-ish masonry via columns)
   ============================================================ */
.tabbar {
  display: inline-flex;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(10,4,20,.5);
  margin: 0 auto 36px;
}
.tabbar button {
  background: none; border: 0; cursor: pointer;
  color: var(--text-dim);
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all .2s ease;
}
.tabbar button.active {
  color: #050108;
  background: linear-gradient(135deg, #4fe0d0, #c084fc);
}

.portfolio-grid {
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 880px) { .portfolio-grid { column-count: 2; } }
@media (max-width: 540px) { .portfolio-grid { column-count: 1; } }
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--rad);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--ink-line);
  cursor: pointer;
  display: block;
  background: var(--ink-card);
}
.portfolio-item img,
.portfolio-item .ph {
  display: block; width: 100%; height: auto;
}
.portfolio-item .ph {
  aspect-ratio: var(--ar, 4/5);
  position: relative;
  overflow: hidden;
}
.portfolio-item .ph::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--phbg, linear-gradient(135deg, #2a0a4a, #0a0414));
}
.portfolio-item .ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--phpat, none);
  background-size: 80px 80px;
  opacity: .6;
  mix-blend-mode: screen;
}
.portfolio-item .info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(5,1,8,.9));
  display: flex; justify-content: space-between; align-items: end;
  gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: all .25s ease;
}
.portfolio-item:hover .info { opacity: 1; transform: translateY(0); }
.portfolio-item .info b {
  font-family: var(--f-display); font-size: 12px;
  letter-spacing: .15em; text-transform: uppercase;
}
.portfolio-item .info .tag-mini {
  font-family: var(--f-display); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-bright);
  border: 1px solid var(--ink-line-bright);
  padding: 3px 7px; border-radius: 999px;
}

/* ============================================================
   Booking - calendar
   ============================================================ */
.booking-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px;
}
@media (max-width: 980px) { .booking-grid { grid-template-columns: 1fr; } }

.cal {
  background: linear-gradient(180deg, rgba(22,9,48,.5), rgba(10,4,20,.5));
  border: 1px solid var(--ink-line);
  border-radius: var(--rad-lg);
  padding: 22px;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cal-head .month {
  font-family: var(--f-display); font-size: 16px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-bright);
}
.cal-head button {
  width: 32px; height: 32px;
  background: rgba(79,224,208,.08);
  border: 1px solid var(--ink-line);
  color: var(--teal-bright);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cal-head button:hover { background: rgba(79,224,208,.18); }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.cal-dow {
  text-align: center;
  font-family: var(--f-display);
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted);
  padding-bottom: 6px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition: all .15s;
}
.cal-cell.muted { color: var(--text-muted); opacity: .35; cursor: default; }
.cal-cell.past { color: var(--text-muted); opacity: .35; cursor: not-allowed; }
.cal-cell:hover:not(.muted):not(.past) {
  border-color: var(--ink-line-bright);
  background: rgba(79,224,208,.04);
}
.cal-cell.selected {
  background: linear-gradient(135deg, #4fe0d0, #a855f7);
  color: #050108; font-weight: 700;
  box-shadow: 0 0 16px rgba(168,85,247,.5);
}
.cal-cell.has-booking::after {
  content: ""; position: absolute; bottom: 5px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 6px var(--violet);
}
.cal-cell.full {
  color: var(--text-muted); text-decoration: line-through;
  cursor: not-allowed;
}

.timeslots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 18px;
}
@media (max-width: 540px) { .timeslots { grid-template-columns: repeat(3, 1fr); } }
.slot {
  padding: 10px 8px;
  background: rgba(10,4,20,.7);
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: .1em;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.slot:hover:not(:disabled) { border-color: var(--teal); color: var(--teal-bright); }
.slot.selected {
  background: linear-gradient(135deg, #4fe0d0, #a855f7);
  color: #050108; font-weight: 700; border-color: transparent;
}
.slot:disabled {
  opacity: .25; cursor: not-allowed;
  text-decoration: line-through;
}

/* ============================================================
   Toast / Notifications
   ============================================================ */
.toasts {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 280px; max-width: 380px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(22,9,48,.95), rgba(10,4,20,.95));
  border: 1px solid var(--ink-line-bright);
  border-radius: var(--rad);
  box-shadow: 0 12px 32px rgba(0,0,0,.6), 0 0 24px rgba(168,85,247,.25);
  display: flex; gap: 12px; align-items: flex-start;
  animation: toastIn .35s ease;
  backdrop-filter: blur(12px);
}
.toast .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #4fe0d0, #a855f7);
  display: inline-flex; align-items: center; justify-content: center;
  color: #050108; flex-shrink: 0;
}
.toast b { font-family: var(--f-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-bright); display: block; margin-bottom: 2px; }
.toast small { font-size: 13px; color: var(--text-dim); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Modal / dialog
   ============================================================ */
.modal-bg {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(2,0,6,.78);
  backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  max-width: 560px; width: 100%;
  max-height: none;
  margin: auto;
  background: linear-gradient(180deg, #160930, #0a0414);
  border: 1px solid var(--ink-line-bright);
  border-radius: var(--rad-lg);
  padding: 32px;
  position: relative;
  animation: popIn .35s ease;
}
@keyframes popIn { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(10,4,20,.8);
  border: 1px solid var(--ink-line);
  color: var(--text-dim);
  border-radius: 50%;
  cursor: pointer;
}
.modal .close:hover { color: var(--teal-bright); }

/* ============================================================
   Dashboard
   ============================================================ */
.dash-shell {
  display: grid; grid-template-columns: 240px 1fr; gap: 0;
  min-height: calc(100vh - 80px);
}
@media (max-width: 880px) { .dash-shell { grid-template-columns: 1fr; } }
.dash-side {
  border-right: 1px solid var(--ink-line);
  padding: 28px 20px;
  background: rgba(10,4,20,.4);
}
.dash-side .who {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px;
  border: 1px solid var(--ink-line);
  border-radius: var(--rad);
  margin-bottom: 24px;
}
.dash-side .who b { font-family: var(--f-display); letter-spacing: .12em; color: var(--teal-bright); }
.dash-side .who small { font-size: 11px; color: var(--text-muted); letter-spacing: .15em; text-transform: uppercase; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-nav button {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: none; border: 0;
  font-family: var(--f-display); font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}
.dash-nav button:hover { background: rgba(79,224,208,.06); color: var(--teal-bright); }
.dash-nav button.active {
  background: linear-gradient(135deg, rgba(79,224,208,.15), rgba(168,85,247,.15));
  color: var(--teal-bright);
}
.dash-main { padding: 36px 36px; }

/* booking list rows */
.book-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--ink-line);
  border-radius: var(--rad);
  margin-bottom: 10px;
  background: rgba(10,4,20,.5);
}
.book-row .date-pill {
  background: linear-gradient(180deg, rgba(168,85,247,.15), rgba(79,224,208,.1));
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.book-row .date-pill b { display:block; font-family: var(--f-display); font-size: 22px; color: var(--teal-bright); line-height: 1;}
.book-row .date-pill small { font-size: 10px; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; }
.book-row h4 { margin: 0 0 4px; font-family: var(--f-display); letter-spacing: .08em; font-size: 16px; }
.book-row p { margin: 0; font-size: 13px; color: var(--text-dim); }

/* ============================================================
   Utility
   ============================================================ */
.row { display: flex; gap: 16px; flex-wrap: wrap; }
.col { display: flex; flex-direction: column; gap: 16px; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.center { text-align: center; }
.muted { color: var(--text-dim); }
.dim { color: var(--text-muted); }
.glow-teal { box-shadow: 0 0 24px rgba(79,224,208,.25); }
.glow-violet { box-shadow: 0 0 24px rgba(168,85,247,.3); }
.hide-sm { }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hide-sm { display: none; }
  .nav-inner { gap: 8px; padding: 12px 18px; }
  .nav-link { padding: 8px 10px; font-size: 11px; letter-spacing: .15em; }
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .dash-main { padding: 24px 18px; }
}

/* Helper: lotus ornament (used via SVG component) */
.lotus { display: inline-block; vertical-align: middle; }
.lotus path { fill: none; stroke: currentColor; stroke-width: 1.2; }
