/* ============================================================
   AURAMEET — design system
   bg #0B1026 · aurora teal/violet/pink · glass · 24px radii
   type: Jost 200–400 (+ JetBrains Mono accents)
   ============================================================ */

:root {
  --bg: #0B1026;
  --teal: #2DD4BF;
  --blue: #38BDF8;
  --violet: #8B5CF6;
  --pink: #F472B6;
  --text: #F4F6FF;
  --text-2: rgba(235, 240, 255, .66);
  --text-3: rgba(235, 240, 255, .40);
  --line: rgba(255, 255, 255, .14);
  --line-soft: rgba(255, 255, 255, .09);
  --glass: rgba(255, 255, 255, .055);
  --glass-2: rgba(255, 255, 255, .08);
  --grad: linear-gradient(100deg, #2DD4BF 0%, #38BDF8 30%, #8B5CF6 68%, #E879F9 100%);
  --grad-2: linear-gradient(100deg, #2DD4BF, #8B5CF6);
  --r-card: 28px;
  --font-sans: 'Jost', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --ease: cubic-bezier(.22, .8, .32, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 300 16px/1.55 var(--font-sans);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
.i { width: 18px; height: 18px; flex: none; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(45, 212, 191, .35); }

:focus-visible { outline: 1.5px solid rgba(45, 212, 191, .65); outline-offset: 3px; border-radius: 6px; }

/* ================= aurora background ================= */
.aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  filter: hue-rotate(0deg);
  animation: auroraHue 26s ease-in-out infinite alternate;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
  mix-blend-mode: screen;
}
.b1 { width: 62vmax; height: 62vmax; top: -28vmax; left: -16vmax;
  background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, .42), rgba(45, 212, 191, 0) 62%);
  animation: drift1 47s ease-in-out infinite alternate; }
.b2 { width: 70vmax; height: 70vmax; top: -30vmax; right: -24vmax;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, .40), rgba(139, 92, 246, 0) 62%);
  animation: drift2 59s ease-in-out infinite alternate; }
.b3 { width: 58vmax; height: 58vmax; bottom: -26vmax; left: -14vmax;
  background: radial-gradient(circle at 50% 50%, rgba(244, 114, 182, .34), rgba(244, 114, 182, 0) 62%);
  animation: drift3 53s ease-in-out infinite alternate; }
.b4 { width: 52vmax; height: 52vmax; bottom: -22vmax; right: -14vmax;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, .30), rgba(56, 189, 248, 0) 62%);
  animation: drift4 67s ease-in-out infinite alternate; }
.b5 { width: 34vmax; height: 34vmax; top: 34%; left: 38%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, .16), rgba(99, 102, 241, 0) 60%);
  animation: drift5 41s ease-in-out infinite alternate; }
.veil { position: absolute; inset: 0;
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(11, 16, 38, 0) 40%, rgba(11, 16, 38, .5) 100%),
    rgba(11, 16, 38, .18);
}

@keyframes drift1 { 0% { transform: translate3d(0,0,0) scale(1) } 50% { transform: translate3d(9vw,7vh,0) scale(1.14) } 100% { transform: translate3d(-4vw,-3vh,0) scale(.94) } }
@keyframes drift2 { 0% { transform: translate3d(0,0,0) scale(1.05) } 50% { transform: translate3d(-10vw,6vh,0) scale(.92) } 100% { transform: translate3d(4vw,9vh,0) scale(1.16) } }
@keyframes drift3 { 0% { transform: translate3d(0,0,0) scale(.96) } 50% { transform: translate3d(8vw,-8vh,0) scale(1.12) } 100% { transform: translate3d(-5vw,4vh,0) scale(1) } }
@keyframes drift4 { 0% { transform: translate3d(0,0,0) scale(1) } 50% { transform: translate3d(-7vw,-9vh,0) scale(1.18) } 100% { transform: translate3d(5vw,3vh,0) scale(.9) } }
@keyframes drift5 { 0% { transform: translate3d(0,0,0) scale(1) } 100% { transform: translate3d(-12vw,8vh,0) scale(1.25) } }
@keyframes auroraHue { 0% { filter: hue-rotate(-10deg) } 100% { filter: hue-rotate(14deg) } }

/* body[data-page] slight variations */
body[data-page="done"] .b1 { opacity: 1.15; }
body[data-page="done"] .b3 { width: 66vmax; height: 66vmax; }

/* ================= layout primitives ================= */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-inline: clamp(18px, 4vw, 48px); }
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}
.card { padding: clamp(22px, 3.4vw, 40px); box-shadow: 0 30px 80px -40px rgba(3, 6, 22, .9); position: relative; }

/* ================= nav ================= */
.nav {
  position: relative; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 1560px; margin: 0 auto;
  padding: clamp(18px, 2.6vw, 30px) clamp(20px, 4vw, 56px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand .spark {
  font-size: 19px; line-height: 1; color: #EAF6FF;
  filter: drop-shadow(0 0 9px rgba(45, 212, 191, .9)) drop-shadow(0 0 22px rgba(45, 212, 191, .45));
  animation: twinkle 3.6s ease-in-out infinite;
}
.brand .wordmark { font-weight: 300; font-size: 16.5px; letter-spacing: .30em; text-transform: none; }
.brand .brand-sub { font-weight: 300; font-size: 14px; letter-spacing: .08em; color: var(--text-2); margin-left: 2px; }
@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1) rotate(0deg) } 50% { opacity: .72; transform: scale(.86) rotate(18deg) } }

.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 22px); }
.nav-link {
  color: var(--text-2); text-decoration: none; font-size: 15.5px; font-weight: 300; letter-spacing: .04em;
  padding: 8px 2px; position: relative; transition: color .3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  transition: right .4s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--text); }
.nav-dot { color: var(--text-3); }

.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 44px; padding: 0 24px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .03);
  color: var(--text); text-decoration: none; font-size: 14.5px; font-weight: 300; letter-spacing: .05em;
  transition: border-color .3s, background .3s, transform .25s var(--ease), box-shadow .3s;
}
.pill-btn:hover { border-color: rgba(45, 212, 191, .55); background: rgba(45, 212, 191, .06); box-shadow: 0 0 24px -8px rgba(45, 212, 191, .5); transform: translateY(-1px); }
.pill-violet { border-color: rgba(139, 92, 246, .45); background: rgba(139, 92, 246, .08); }
.pill-violet:hover { border-color: rgba(139, 92, 246, .8); background: rgba(139, 92, 246, .14); box-shadow: 0 0 24px -8px rgba(139, 92, 246, .6); }
.back-pill { letter-spacing: .14em; font-family: var(--font-mono); font-size: 13px; }
.back-plain { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); text-decoration: none; font-size: 15px; letter-spacing: .1em; transition: color .3s, gap .3s; }
.back-plain:hover { color: var(--text); gap: 12px; }

/* burger + mobile menu */
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.6px; border-radius: 2px;
  background: rgba(255, 255, 255, .85); transition: transform .35s var(--ease), top .35s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 26px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.m-menu {
  position: absolute; top: calc(100% - 6px); right: clamp(20px, 4vw, 56px);
  min-width: 220px; display: flex; flex-direction: column; gap: 4px;
  padding: 14px; border-radius: 22px;
  background: rgba(17, 24, 54, .82); border: 1px solid var(--line);
  backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  box-shadow: 0 30px 70px -30px rgba(3, 6, 22, .95);
  opacity: 0; transform: translateY(-10px) scale(.98); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.m-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.m-menu a { text-decoration: none; color: var(--text-2); font-size: 16px; font-weight: 300; padding: 12px 14px; border-radius: 14px; transition: background .25s, color .25s; }
.m-menu a:hover { background: rgba(255, 255, 255, .06); color: var(--text); }
.m-cta { text-align: center; margin-top: 4px; border: 1px solid rgba(45, 212, 191, .4); border-radius: 999px !important; color: var(--text) !important; background: linear-gradient(100deg, rgba(45,212,191,.14), rgba(139,92,246,.14)); }

/* ================= typography ================= */
.eyebrow {
  text-align: center; text-transform: uppercase;
  font-size: 12.5px; font-weight: 400; letter-spacing: .52em; text-indent: .52em;
  color: var(--teal);
}
.teal-center { color: var(--teal); }
.violet-center { color: #A78BFA; }
.display {
  text-align: center; font-weight: 200; letter-spacing: .005em;
  font-size: clamp(42px, 5.4vw, 74px); line-height: 1.08; margin-top: 14px;
}
.grad-text {
  background: linear-gradient(95deg, #2DD4BF 5%, #38BDF8 32%, #8B5CF6 62%, #E879F9 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.display-admin { font-size: clamp(32px, 3.6vw, 52px); margin-top: 12px; }
.display-login { font-size: clamp(30px, 3.4vw, 44px); margin: 10px 0 26px; }
.display-done { font-size: clamp(36px, 4.2vw, 58px); }
.sub { text-align: center; color: var(--text-2); font-size: 16.5px; margin-top: 12px; }
.caption { text-align: center; color: var(--text-3); font-size: 12.5px; letter-spacing: .12em; margin-top: 14px; }
.caption.mono { font-family: var(--font-mono); }
.mono { font-family: var(--font-mono); }
.tz-hint {
  margin: 12px 0 2px; text-align: center;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em;
  color: var(--text-3); line-height: 1.6;
}
.tz-hint.highlight { color: var(--text-2); }

/* ================= buttons ================= */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 34px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 14px; font-weight: 400; letter-spacing: .2em;
  color: #fff; text-decoration: none; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .35s, filter .3s;
}
.btn-label { letter-spacing: inherit; }
.btn-grad {
  background: var(--grad); border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 34px -10px rgba(139, 92, 246, .55), 0 6px 22px -8px rgba(45, 212, 191, .45);
}
.btn-grad::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .22) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn-grad:hover { transform: translateY(-2px); filter: brightness(1.06);
  box-shadow: 0 16px 44px -12px rgba(139, 92, 246, .65), 0 10px 30px -10px rgba(45, 212, 191, .55); }
.btn-grad:hover::after { transform: translateX(120%); }
.btn-grad:active { transform: translateY(0) scale(.98); }
.btn-ghost {
  background: rgba(255, 255, 255, .02); border: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--font-sans); font-weight: 300; font-size: 15px; letter-spacing: .08em;
  transition: border-color .3s, background .3s, transform .28s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .05); transform: translateY(-1px); }
.btn-ghost:active { transform: scale(.98); }
.btn-block { width: 100%; }
.btn[aria-disabled="true"], .btn:disabled {
  filter: saturate(.25) brightness(.65); pointer-events: none; box-shadow: none;
}
.btn-flow { border-radius: 22px; min-height: 56px; margin-top: 26px; }
.btn-save { margin-top: 30px; text-transform: uppercase; letter-spacing: .3em; font-size: 13px; }

/* ================= entrance / motion ================= */
.page-enter { animation: pageIn .8s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: none } }
.rise { animation: riseIn .9s var(--ease) both; }
.r1 { animation-delay: .05s } .r2 { animation-delay: .14s } .r3 { animation-delay: .24s } .r4 { animation-delay: .34s }
.d1 { animation-delay: .18s }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
body.page-exit { opacity: 0; transform: translateY(-12px); transition: opacity .18s ease, transform .18s ease; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
}

/* ================= steps ================= */
.steps {
  list-style: none; display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: clamp(6px, 1.4vh, 16px) 0 clamp(20px, 3.4vh, 34px);
}
.steps li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .26em; text-transform: uppercase; color: var(--text-3); transition: color .5s, text-shadow .5s; }
.steps li.sep { width: clamp(22px, 5vw, 64px); height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent); padding: 0; }
.steps li.active { color: var(--teal); text-shadow: 0 0 16px rgba(45, 212, 191, .8), 0 0 40px rgba(45, 212, 191, .35); }
.steps li.done { color: var(--teal); }
.steps li .check { color: var(--teal); letter-spacing: 0; }
.steps[data-step="2"] li.active { color: #A78BFA; text-shadow: 0 0 16px rgba(139, 92, 246, .9), 0 0 44px rgba(139, 92, 246, .4); }
.steps[data-step="3"] li.active { color: #5EEAD4; text-shadow: 0 0 16px rgba(45, 212, 191, .95), 0 0 46px rgba(45, 212, 191, .4); }

/* ================= calendars ================= */
.cal { width: 100%; }
.cal-head { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 8px; margin-bottom: 14px; }
.cal-title { text-align: center; font-weight: 300; font-size: clamp(19px, 1.6vw, 23px); letter-spacing: .06em; }
body[data-page="flow"] .cal-title, .mini-cal .cal-title { font-family: var(--font-mono); letter-spacing: .12em; font-size: clamp(17px, 1.5vw, 22px); }
.cal-nav {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; color: var(--text-2);
  transition: color .3s, border-color .3s, background .3s, box-shadow .3s;
}
.cal-nav:hover { color: var(--text); border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .04); box-shadow: 0 0 18px -6px rgba(45, 212, 191, .5); }
.cal-nav[disabled] { opacity: .25; pointer-events: none; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); font-weight: 400; padding: 6px 0; }
body[data-page="flow"] .cal-weekdays span, .mini-cal .cal-weekdays span { font-family: var(--font-mono); font-size: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day {
  position: relative; aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 300; color: var(--text);
  transition: background .3s, box-shadow .35s, transform .25s var(--ease), color .3s;
}
body[data-page="flow"] .cal-day, .mini-cal .cal-day { font-family: var(--font-mono); font-size: 14.5px; }
.cal-day .day-dot {
  position: absolute; bottom: 15%; left: 50%; transform: translateX(-50%) scale(0);
  width: 4.5px; height: 4.5px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  transition: transform .35s var(--ease), background .3s, box-shadow .3s;
}
.cal-day.is-available .day-dot, .cal-day.has-bookings .day-dot { transform: translateX(-50%) scale(1); }
.cal-day.has-bookings .day-dot { background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.cal-day:hover { background: rgba(255, 255, 255, .07); }
.cal-day.is-available:hover { box-shadow: 0 0 20px -6px rgba(45, 212, 191, .55); }
.cal-day.is-selected {
  background: radial-gradient(circle at 50% 42%, #5EEAD4, #2DD4BF 70%);
  color: #06251F; font-weight: 500;
  box-shadow: 0 0 26px -2px rgba(45, 212, 191, .75), 0 0 60px -12px rgba(45, 212, 191, .5);
  animation: pop .4s var(--ease);
}
.cal-day.is-selected .day-dot { opacity: 0; }
@keyframes pop { 0% { transform: scale(.8) } 60% { transform: scale(1.08) } 100% { transform: scale(1) } }
.cal-day.is-past { color: var(--text-3); opacity: .45; pointer-events: none; }
.cal-day.is-blocked { color: var(--text-3); opacity: .5; text-decoration: line-through; text-decoration-color: rgba(255, 255, 255, .4); pointer-events: auto; }
.cal-day.is-blocked .day-dot { display: none; }
.cal-day.is-marked { box-shadow: inset 0 0 0 1.5px rgba(45, 212, 191, .55); }
.cal-day.is-empty { pointer-events: none; }
.cal-loading { opacity: .45; pointer-events: none; transition: opacity .3s; }

/* ================= home booking card ================= */
.book-section { margin-top: clamp(26px, 4.4vh, 52px); }
.book-card { max-width: 1080px; margin: 0 auto; }
.book-grid { display: grid; grid-template-columns: 1fr 1px minmax(300px, .92fr); gap: clamp(22px, 3vw, 42px); align-items: stretch; }
.v-divider { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .16) 30%, rgba(255, 255, 255, .16) 70%, transparent); }

.side-label { font-size: 15.5px; font-weight: 300; letter-spacing: .04em; color: var(--text); margin-bottom: 14px; }
.mono-label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--text-2); margin-bottom: 18px; line-height: 1.6; }

.time-list { display: flex; flex-direction: column; gap: 10px; max-height: 176px; overflow-y: auto; padding-right: 6px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.18) transparent; }
.book-right .time-list { max-height: 152px; }
.time-list::-webkit-scrollbar { width: 4px; }
.time-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .16); border-radius: 4px; }

.t-pill {
  position: relative; height: 44px; flex: none; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .2em;
  color: var(--text-2); background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: color .3s, border-color .3s, background .3s, box-shadow .35s, transform .22s var(--ease);
}
.t-pill:hover { border-color: rgba(45, 212, 191, .5); color: var(--text); transform: translateY(-1px); }
.t-pill.selected {
  background: linear-gradient(95deg, #2DD4BF, #38BDF8 55%, #6366F1);
  border-color: rgba(255, 255, 255, .25); color: #fff;
  box-shadow: 0 0 28px -4px rgba(45, 212, 191, .65), 0 0 60px -14px rgba(56, 189, 248, .5);
  animation: pop .35s var(--ease);
}

.no-slots { color: var(--text-3); font-size: 14px; letter-spacing: .06em; padding: 14px 2px; text-align: center; }
.skel { height: 44px; border-radius: 999px; background: linear-gradient(100deg, rgba(255,255,255,.04) 30%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.04) 70%); background-size: 220% 100%; animation: shimmer 1.6s linear infinite; }
@keyframes shimmer { from { background-position: 120% 0 } to { background-position: -120% 0 } }

/* quick form fields (home) */
.quick-form { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.field {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .10);
  border-bottom-color: rgba(255, 255, 255, .18);
  border-radius: 15px; padding: 0 16px; min-height: 50px;
  color: var(--text-3);
  transition: border-color .35s, box-shadow .35s, background .3s;
}
.field:focus-within {
  border-color: rgba(45, 212, 191, .5);
  background: rgba(45, 212, 191, .04);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, .22), 0 12px 34px -16px rgba(45, 212, 191, .55);
}
.field:focus-within .i { color: var(--teal); filter: drop-shadow(0 0 6px rgba(45, 212, 191, .7)); }
.field .i { width: 17px; height: 17px; transition: color .3s; }
.field input, .field textarea {
  flex: 1; background: none; border: 0; outline: 0; resize: none;
  color: var(--text); font: 300 15.5px/1.4 var(--font-sans); letter-spacing: .02em; padding: 13px 0;
}
.field ::placeholder { color: var(--text-3); }
.field-area { align-items: flex-start; padding-top: 6px; }
.field-area textarea { min-height: 74px; }
.form-error { color: var(--pink); font-size: 13.5px; letter-spacing: .03em; text-align: center; text-shadow: 0 0 14px rgba(244, 114, 182, .4); }
.form-error[hidden] { display: none; }

/* ================= features + faq ================= */
.features { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(14px, 2vw, 24px); margin-top: clamp(30px, 4.6vh, 52px); }
.feature {
  display: inline-flex; align-items: center; gap: 12px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .13);
  font-size: 14.5px; font-weight: 300; letter-spacing: .04em; color: var(--text-2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.feature:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .25); box-shadow: 0 18px 40px -22px rgba(3, 6, 22, .9); }
.f-ico { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.f-ico .i { width: 14px; height: 14px; }
.f-ico.teal { background: rgba(45, 212, 191, .16); color: #5EEAD4; box-shadow: 0 0 16px -4px rgba(45, 212, 191, .55); }
.f-ico.violet { background: rgba(139, 92, 246, .18); color: #C4B5FD; box-shadow: 0 0 16px -4px rgba(139, 92, 246, .55); }
.f-ico.pink { background: rgba(244, 114, 182, .16); color: #F9A8D4; box-shadow: 0 0 16px -4px rgba(244, 114, 182, .5); }

.faq { max-width: 1080px; margin: clamp(48px, 8vh, 90px) auto 0; }
.faq-title { text-align: center; font-weight: 200; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: .01em; margin-bottom: 26px; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.faq-card { padding: 26px 26px 28px; border-radius: 22px; transition: transform .3s var(--ease), border-color .3s; }
.faq-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, .22); }
.faq-card h3 { font-weight: 400; font-size: 17px; letter-spacing: .03em; margin-bottom: 10px; color: var(--text); }
.faq-card p { color: var(--text-2); font-size: 14.5px; font-weight: 300; }

.foot { text-align: center; color: var(--text-3); font-size: 13px; letter-spacing: .22em; padding: 60px 20px 40px; }
.foot span { color: var(--teal); }

/* ================= flow page (step 1) ================= */
.flow-card { max-width: 1180px; margin: 0 auto; }
.flow-grid { display: grid; grid-template-columns: 1.15fr 1px .95fr; gap: clamp(24px, 3.4vw, 52px); align-items: stretch; }
.slot-list { display: flex; flex-direction: column; gap: 12px; max-height: 380px; overflow-y: auto; padding-right: 8px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.18) transparent; }
.slot-list::-webkit-scrollbar { width: 4px; }
.slot-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .16); border-radius: 4px; }
.slot-list .t-pill { height: 48px; font-size: 14.5px; }
.t-pill.selected-violet { background: linear-gradient(95deg, #8B5CF6, #6366F1); }

/* horizontal chip scroller (mobile, per 07) */
.chip-scroller { display: none; }

/* ================= details (step 2) ================= */
.details-card { max-width: 720px; margin: 0 auto; padding-bottom: clamp(26px, 3vw, 40px); }
.when-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.when-pill {
  display: inline-flex; align-items: center; gap: 12px;
  height: 46px; padding: 0 24px; border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, .38); background: rgba(45, 212, 191, .05);
  font-size: 15px; font-weight: 300; letter-spacing: .05em;
  box-shadow: 0 0 26px -10px rgba(45, 212, 191, .5);
}
.wdot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); animation: breathe 2.8s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { opacity: 1; transform: scale(1) } 50% { opacity: .6; transform: scale(.82) } }
.change-link { color: var(--text-3); font-size: 13px; letter-spacing: .1em; text-decoration: underline; text-underline-offset: 4px; transition: color .3s; }
.change-link:hover { color: var(--teal); }

.details-form { display: flex; flex-direction: column; gap: 26px; }
.uline { position: relative; }
.uline label {
  display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase; color: rgba(240, 244, 255, .72);
  margin-bottom: 2px;
}
.uline input, .uline textarea {
  width: 100%; background: none; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0; outline: 0; resize: none;
  padding: 10px 2px 13px; color: var(--text);
  font: 300 17px/1.45 var(--font-sans); letter-spacing: .02em;
  transition: border-color .35s;
}
.uline ::placeholder { color: var(--text-3); }
.uline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  box-shadow: 0 6px 20px -4px rgba(45, 212, 191, .8);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.uline:focus-within::after { transform: scaleX(1); }
.uline:focus-within label { color: var(--teal); }
.uline textarea { min-height: 84px; }
.details-form .btn { margin-top: 8px; }

/* ================= done (step 3) ================= */
.done-card { max-width: 920px; margin: 0 auto; text-align: center; padding-top: clamp(34px, 4vw, 52px); overflow: hidden; }
.done-card::before, .done-card::after {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: -1;
}
.done-card::before { top: -120px; left: -80px; background: rgba(45, 212, 191, .16); animation: drift5 23s ease-in-out infinite alternate; }
.done-card::after { bottom: -140px; right: -60px; background: rgba(139, 92, 246, .17); animation: drift3 29s ease-in-out infinite alternate; }

.emblem { position: relative; width: 108px; height: 108px; margin: 0 auto 30px; }
.emblem svg { width: 100%; height: 100%; }
.e-ring { fill: none; stroke: var(--teal); stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, .8));
  stroke-dasharray: 164; stroke-dashoffset: 164; animation: draw 1s .25s var(--ease) forwards; }
.e-check { fill: none; stroke: var(--teal); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(45, 212, 191, .8));
  stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .55s .95s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0 } }
.emblem::before, .emblem::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, .3); animation: ripple 3s ease-out infinite;
}
.emblem::after { animation-delay: 1.5s; }
@keyframes ripple { 0% { transform: scale(1); opacity: .9 } 100% { transform: scale(1.65); opacity: 0 } }
.emblem.small { width: 84px; height: 84px; }

.teal-center { margin-bottom: 8px; }
.summary {
  max-width: 660px; margin: 34px auto 0; text-align: left;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px; padding: 8px 28px;
}
.s-row { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.s-row:last-child { border-bottom: 0; }
.s-label { font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-3); }
.s-val { font-size: 17.5px; font-weight: 300; letter-spacing: .02em; }
.s-val small { font-size: 13px; color: var(--text-3); }
.s-muted { color: var(--text-3); font-size: 14.5px; }
.meet-link { color: #99F6E4; text-decoration: none; border-bottom: 1px solid rgba(45, 212, 191, .35); transition: color .3s, border-color .3s, text-shadow .3s; }
.meet-link:hover { color: #5EEAD4; border-color: rgba(45, 212, 191, .8); text-shadow: 0 0 16px rgba(45, 212, 191, .6); }
.s-note { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-2); font-weight: 300; }
.s-note strong { color: var(--text); font-weight: 400; }
.s-note .i { color: var(--teal); width: 16px; height: 16px; }
.done-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.done-actions .btn { min-width: 240px; }
.caption.dim { margin-top: 26px; margin-bottom: 6px; }

/* ================= admin ================= */
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 32px); max-width: 1220px; margin: clamp(26px, 4vh, 44px) auto 0; }
.admin-card { padding: clamp(22px, 2.6vw, 36px); }
.card-title { font-weight: 300; font-size: 23px; letter-spacing: .02em; margin-bottom: 10px; }

.hours-row {
  display: grid; grid-template-columns: 52px 46px 1fr; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.day-name { font-size: 16px; font-weight: 300; color: var(--text); letter-spacing: .04em; }
.hours-row .day-times { display: flex; align-items: center; gap: 14px; justify-content: flex-end; opacity: 1; transition: opacity .35s; }
.hours-row.is-off .day-times { opacity: .18; pointer-events: none; }
.t-input {
  width: 96px; background: none; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .25);
  border-radius: 0; outline: 0; color: var(--text);
  font: 300 15px var(--font-mono); letter-spacing: .06em; padding: 5px 2px;
  color-scheme: dark; transition: border-color .3s, box-shadow .3s;
}
.t-input::-webkit-calendar-picker-indicator { opacity: .25; filter: invert(1); cursor: pointer; transition: opacity .3s; }
.t-input:hover::-webkit-calendar-picker-indicator, .t-input:focus::-webkit-calendar-picker-indicator { opacity: .7; }
.t-input:focus { border-bottom-color: var(--teal); box-shadow: 0 8px 20px -10px rgba(45, 212, 191, .7); }
.dash { color: var(--text-3); }

.toggle {
  position: relative; width: 46px; height: 26px; border-radius: 999px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .16);
  transition: background .35s, box-shadow .35s, border-color .35s;
}
.toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 255, 255, .85); box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
  transition: left .32s cubic-bezier(.34, 1.56, .64, 1), background .3s;
}
.toggle.on { background: linear-gradient(95deg, #2DD4BF, #14B8A6); border-color: rgba(45, 212, 191, .4); box-shadow: 0 0 20px -4px rgba(45, 212, 191, .65); }
.toggle.on::after { left: 22px; background: #fff; }

.add-break { margin-top: 16px; color: #5EEAD4; font-size: 14.5px; font-weight: 300; letter-spacing: .05em; transition: text-shadow .3s, transform .25s var(--ease); }
.add-break:hover { text-shadow: 0 0 14px rgba(45, 212, 191, .7); transform: translateX(2px); }
.breaks-all { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.break-row {
  display: grid; grid-template-columns: 92px 1fr auto 1fr 40px; gap: 10px; align-items: center;
  padding: 10px 14px; border: 1px solid var(--line-soft); border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  animation: riseIn .4s var(--ease);
}
.break-row .t-input { width: 100%; }
.break-row .del-break { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--text-3); border: 1px solid transparent; transition: color .3s, border-color .3s; }
.break-row .del-break:hover { color: var(--pink); border-color: rgba(244, 114, 182, .4); }
.break-row .del-break .i { width: 13px; height: 13px; }

.rule { margin-top: 22px; }
.rule-label {
  display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 4px;
}
.select-wrap { position: relative; display: block; }
.select-wrap select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: none; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .22);
  outline: 0; color: var(--text); font: 300 17px var(--font-sans); letter-spacing: .03em;
  padding: 10px 34px 12px 2px; cursor: pointer; border-radius: 0;
  transition: border-color .3s;
}
.select-wrap select:focus { border-bottom-color: var(--teal); }
.select-wrap select option { background: #131A38; color: var(--text); font-weight: 300; }
.select-wrap .i { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; transition: transform .3s, color .3s; }
.select-wrap:focus-within .i { color: var(--teal); transform: translateY(-50%) rotate(180deg); }

.mini-cal { margin-top: 12px; border: 1px solid var(--line-soft); border-radius: 18px; padding: 16px; background: rgba(255, 255, 255, .025); }
.mini-cal .cal-grid { row-gap: 4px; }
.mini-cal .cal-day { font-size: 13px; }
.mini-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.mini-hint { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-3); letter-spacing: .04em; }
.lg-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); display: inline-block; }
.mini-actions .pill-btn { height: 40px; padding: 0 20px; font-size: 13.5px; }

/* ================= admin bookings ================= */
.bookings-card { max-width: 1220px; margin: clamp(26px, 4vh, 44px) auto 0; padding: clamp(8px, 1.4vw, 18px) clamp(14px, 2vw, 30px); }
.booking-list { display: flex; flex-direction: column; }
.booking-row {
  display: grid; grid-template-columns: 92px 1fr auto; gap: clamp(14px, 2vw, 30px); align-items: center;
  padding: 20px 6px; border-bottom: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.booking-row:last-child { border-bottom: 0; }
.booking-row.is-removing { opacity: 0; transform: translateX(30px); }

.tile {
  position: relative; width: 88px; height: 88px; border-radius: 18px;
  border: 1px solid rgba(45, 212, 191, .5);
  background: linear-gradient(160deg, rgba(45, 212, 191, .10), rgba(56, 189, 248, .04));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  box-shadow: 0 0 26px -10px rgba(45, 212, 191, .55);
}
.tile .dot { position: absolute; top: 11px; left: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 9px var(--teal); }
.tile .d1 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; color: var(--text-2); }
.tile .d2 { font-family: var(--font-mono); font-size: 17px; letter-spacing: .08em; color: var(--text); }
.tile.cancelled { border-color: rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .035); box-shadow: none; }
.tile.cancelled .dot { background: var(--text-3); box-shadow: none; }
.tile.cancelled .d1, .tile.cancelled .d2 { color: var(--text-3); }

.b-name { font-size: 20px; font-weight: 300; letter-spacing: .02em; }
.b-purpose { color: var(--text-2); font-size: 14px; font-weight: 300; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 560px; }
.b-mail { color: var(--text-3); font-size: 13px; margin-top: 2px; letter-spacing: .04em; }
.booking-actions { display: flex; align-items: center; gap: 16px; }

.status {
  display: inline-flex; align-items: center; gap: 9px;
  height: 38px; padding: 0 20px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em;
  transition: box-shadow .3s;
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.status.ok { color: #5EEAD4; border: 1px solid rgba(45, 212, 191, .45); background: rgba(45, 212, 191, .07); box-shadow: 0 0 22px -10px rgba(45, 212, 191, .6); }
.status.bad { color: #F9A8D4; border: 1px solid rgba(244, 114, 182, .45); background: rgba(244, 114, 182, .07); box-shadow: 0 0 22px -10px rgba(244, 114, 182, .6); }

.cancel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18); color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .3s, border-color .3s, transform .25s var(--ease), box-shadow .3s, background .3s;
}
.cancel-btn:hover { color: var(--pink); border-color: rgba(244, 114, 182, .55); box-shadow: 0 0 20px -8px rgba(244, 114, 182, .7); transform: rotate(90deg); }
.cancel-btn.confirming { color: #fff; background: rgba(244, 114, 182, .2); border-color: rgba(244, 114, 182, .8); box-shadow: 0 0 24px -6px rgba(244, 114, 182, .8); }
.cancel-btn .i { width: 15px; height: 15px; }

.bookings-foot {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 18px 6px 10px; color: var(--text-3); font-size: 12px; letter-spacing: .14em;
}
.bookings-foot span:first-child .spark { color: var(--teal); }

.empty { text-align: center; color: var(--text-3); padding: 44px 0 36px; font-size: 15.5px; letter-spacing: .04em; }

/* ================= login ================= */
.login-wrap { min-height: 78vh; display: flex; align-items: center; justify-content: center; }
.login-card { width: min(460px, 100%); text-align: center; padding: clamp(30px, 4vw, 46px); }
.login-form { display: flex; flex-direction: column; gap: 28px; text-align: left; }

/* ================= toast ================= */
.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 60;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: rgba(17, 24, 54, .9); border: 1px solid rgba(45, 212, 191, .35);
  color: var(--text); font-size: 14.5px; font-weight: 300; letter-spacing: .05em;
  padding: 13px 26px; border-radius: 999px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px -10px rgba(45, 212, 191, .5), 0 20px 50px -20px rgba(3, 6, 22, .9);
  transition: transform .45s var(--ease), opacity .45s;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.bad { border-color: rgba(244, 114, 182, .45); box-shadow: 0 0 40px -10px rgba(244, 114, 182, .5), 0 20px 50px -20px rgba(3, 6, 22, .9); }

/* ============================================================
   MOBILE — native 390px layout per 07-home-mobile.png
   ============================================================ */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .admin-grid { grid-template-columns: 1fr; max-width: 640px; }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }

  .nav-links .nav-link, .nav-links .nav-dot, .nav-links .pill-btn { display: none; }
  .burger { display: block; }

  .eyebrow { font-size: 11.5px; letter-spacing: .44em; }
  .display { font-size: clamp(34px, 10vw, 44px); }
  .display-admin { font-size: clamp(28px, 8vw, 34px); }

  /* home / flow cards stack (07 pattern) */
  .book-grid, .flow-grid { grid-template-columns: 1fr; gap: 20px; }
  .book-grid > *, .flow-grid > *, .book-right, .book-left, .flow-cal, .flow-times { min-width: 0; }
  .v-divider { height: 1px; width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16) 30%, rgba(255, 255, 255, .16) 70%, transparent); }
  .card { padding: 20px 18px; border-radius: 24px; }
  .book-card, .flow-card { max-width: 560px; }

  .cal-title { font-size: 17px; }
  .cal-day { font-size: 14px; }
  .cal-head { grid-template-columns: 40px 1fr 40px; margin-bottom: 10px; }

  /* horizontally scrollable time chips (07) */
  .time-list, .slot-list { display: none; }
  .chip-scroller {
    position: relative; display: flex; align-items: center; gap: 8px; margin: 4px -6px 6px;
  }
  .chip-row {
    display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
    flex: 1 1 0; min-width: 0;
    padding: 4px 6px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14px, #000 calc(100% - 14px), transparent);
  }
  .chip-row::-webkit-scrollbar { display: none; }
  .chip-row .t-pill { min-width: 92px; scroll-snap-align: center; }
  .chip-arrow { width: 36px; height: 36px; flex: none; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14);
    color: var(--text-2); display: inline-flex; align-items: center; justify-content: center; }
  .chip-arrow .i { width: 14px; height: 14px; }
  .chip-arrow:active { background: rgba(255, 255, 255, .08); }

  .quick-form { margin-top: 8px; gap: 10px; }
  .field { min-height: 50px; border-radius: 14px; }
  .field-area textarea { min-height: 84px; }

  .btn { min-height: 52px; }
  .btn-flow { margin-top: 20px; }
  .features { flex-direction: column; align-items: stretch; max-width: 460px; margin-inline: auto; }
  .feature { width: 100%; }

  .steps { gap: 10px; padding-bottom: 20px; }
  .steps li { font-size: 10.5px; letter-spacing: .18em; gap: 5px; }
  .steps li.sep { width: clamp(10px, 6vw, 30px); }

  .summary { padding: 4px 20px; }
  .s-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .done-actions { flex-direction: column; align-items: stretch; max-width: 420px; margin-inline: auto; width: 100%; }
  .done-actions .btn { min-width: 0; width: 100%; }

  .hours-row { grid-template-columns: 44px 46px 1fr; gap: 8px; padding: 11px 0; }
  .day-name { font-size: 14.5px; }
  .hours-row .day-times { gap: 8px; justify-content: flex-start; }
  .t-input { width: 78px; font-size: 13.5px; }

  .booking-row { grid-template-columns: 72px 1fr; grid-template-areas: "tile info" "actions actions"; gap: 12px; padding: 18px 0; }
  .booking-row .tile { grid-area: tile; width: 72px; height: 72px; border-radius: 15px; }
  .booking-info { grid-area: info; min-width: 0; }
  .b-purpose { white-space: normal; }
  .b-name { font-size: 17.5px; }
  .booking-actions { grid-area: actions; justify-content: space-between; }
  .mini-cal { padding: 12px; }
  .break-row { grid-template-columns: 74px 1fr auto 1fr 36px; }
}

@media (max-width: 380px) {
  .t-input { width: 68px; }
  .display { font-size: 32px; }
}
