/* ============================================================
   The HeartSpace — website design system
   Warm, quietly luxurious, rooted, expansive.
   ============================================================ */
:root {
  --primary: #6E332F; --primary-deep: #521D1B; --tertiary: #561A0D;
  --sage: #4F5D4A; --sage-soft: #7C8A72; --rose: #C28E84; --teal: #2F5D5A; --sand: #E8D9B5;
  --secondary: #695D41; --secondary-container: #F2E1BD;
  --surface: #FEFAE6; --surface-low: #F7E6C2; --surface-lower: #F4F0DD; --surface-dim: #DEDAC8;
  --on-surface: #2A2620; --on-surface-variant: #534341; --outline: #9C8E84;
  --ivory: #FEFAE6; --error: #BA1A1A; --success: #4F7A4A;
  --ease: cubic-bezier(0.22, 1, 0.36, 1); --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 76px;
}
* { -webkit-tap-highlight-color: transparent; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface); color: var(--on-surface); min-height: 100vh; }
.font-serif { font-family: "Playfair Display", Georgia, serif; }
.script { font-family: "Great Vibes", cursive; }
img { max-width: 100%; }

/* a11y */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 200; background: var(--primary); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 12px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 6px; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.ms { font-family: "Material Symbols Rounded"; font-weight: normal; font-style: normal; line-height: 1; display: inline-block; white-space: nowrap; direction: ltr; font-feature-settings: "liga"; -webkit-font-smoothing: antialiased; user-select: none; font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; vertical-align: middle; }
.ms.fill { font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
@media (max-width: 768px) { .section { padding: 48px 0; } }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700; color: var(--sage-soft); }

/* ============================================================ Navbar */
.navbar { position: sticky; top: 0; z-index: 60; background: rgba(254,250,230,.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(156,142,132,.18); }
.navbar-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }
/* Auth pages: show the full logo (never cropped), centered */
.brand.auth-brand { justify-content: center; margin-left: auto; margin-right: auto; }
.auth-logo { display: block; width: 96px; height: 96px; border-radius: 16px; background: url('../assets/logo.jpeg') no-repeat center / contain; }
.brand-name { font-family: "Playfair Display", serif; font-weight: 600; color: var(--primary); font-size: 19px; line-height: 1; }
.brand-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-soft); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { position: relative; padding: 8px 14px; font-weight: 500; font-size: 15px; color: var(--on-surface-variant); border-radius: 9999px; transition: color .2s; }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--sage); border-radius: 2px; }
.nav-cluster { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 42px; height: 42px; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; color: var(--on-surface-variant); background: transparent; border: none; transition: background .2s, color .2s; position: relative; }
.icon-btn:hover { background: var(--surface-low); color: var(--primary); }
.cart-count { position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9999px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.currency-select { border: 1px solid var(--surface-dim); background: var(--surface); border-radius: 9999px; padding: 7px 12px; font-size: 13px; font-weight: 600; color: var(--on-surface); cursor: pointer; }
.hamburger { display: none; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .brand-text-wrap { display: none; }
}
/* mobile overlay menu */
.mobile-menu { position: fixed; inset: 0; z-index: 80; background: var(--surface); display: flex; flex-direction: column; padding: 24px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .3s var(--ease-std), transform .3s var(--ease-std); }
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a.m-link { padding: 16px 4px; font-family: "Playfair Display", serif; font-size: 24px; color: var(--primary); border-bottom: 1px solid var(--surface-dim); animation: m-rise .4s var(--ease) both; }
@keyframes m-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================ Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 9999px; font-weight: 600; font-size: 15px; border: none; transition: transform .2s var(--ease), filter .2s, background .2s, box-shadow .25s; }
.btn:active { transform: scale(.97); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-deep)); box-shadow: 0 8px 20px -10px rgba(82,29,27,.55); }
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 12px 26px -10px rgba(82,29,27,.6); }
.btn-sage { color: var(--ivory); background: var(--sage); }
.btn-sage:hover { filter: brightness(1.08); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--outline); }
.btn-outline:hover { border-color: var(--primary); background: rgba(110,51,47,.05); }
.btn-ghost { background: var(--surface-low); color: var(--primary); }
.btn-ghost:hover { background: var(--secondary-container); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-white { background: rgba(254,250,230,.92); color: var(--primary); backdrop-filter: blur(8px); }
.btn-white:hover { background: #fff; }

/* ============================================================ Cards & components */
.card { background: var(--surface); border-radius: 18px; overflow: hidden; box-shadow: 0 1px 2px rgba(82,29,27,.05), 0 10px 30px -14px rgba(82,29,27,.2); transition: transform .35s var(--ease), box-shadow .35s var(--ease); border: 1px solid rgba(222,218,200,.6); }
.card.lift:hover { transform: translateY(-6px); box-shadow: 0 2px 4px rgba(82,29,27,.06), 0 28px 50px -18px rgba(82,29,27,.28); }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 5px 12px; border-radius: 9999px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-primary { background: var(--primary); color: #fff; }
.badge-soft { background: var(--secondary-container); color: var(--tertiary); }
.badge-glass { background: rgba(254,250,230,.88); color: var(--primary); backdrop-filter: blur(8px); }
.badge-sage { background: rgba(79,93,74,.14); color: var(--sage); }
.badge-rose { background: rgba(194,142,132,.2); color: #8c5a4f; }
.badge-amber { background: rgba(189,138,26,.18); color: #8a6310; }
.badge-green { background: rgba(79,122,74,.16); color: #3a5e36; }
.badge-type { color: #fff; }
.chip { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; padding: 9px 18px; border-radius: 9999px; font-weight: 600; font-size: 14px; background: var(--surface-low); color: var(--on-surface-variant); border: 1px solid transparent; transition: all .2s; }
.chip:hover { border-color: var(--outline); }
.chip.active { background: var(--primary); color: #fff; }
.glass { background: rgba(254,250,230,.8); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.4); }
.rating-star { color: #C99A2E; }
.field { width: 100%; padding: 13px 16px; border-radius: 12px; background: var(--surface); border: 1.5px solid var(--surface-dim); font-size: 15px; color: var(--on-surface); transition: border-color .2s, box-shadow .2s; font-family: inherit; }
.field::placeholder { color: var(--outline); }
.field:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(110,51,47,.12); }
textarea.field { resize: vertical; min-height: 120px; }
select.field { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239C8E84' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.divider-or { display: flex; align-items: center; gap: 14px; color: var(--outline); font-size: 13px; }
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--surface-dim); }
.img-fallback { background: linear-gradient(135deg, var(--surface-low), var(--secondary-container)); min-height: 120px; }
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.prose p { margin: 0 0 1em; line-height: 1.8; color: var(--on-surface-variant); }
.prose h2 { font-family: "Playfair Display", serif; color: var(--primary); font-size: 26px; margin: 1.4em 0 .5em; }
.prose h3 { font-family: "Playfair Display", serif; color: var(--primary); font-size: 20px; margin: 1.2em 0 .4em; }
.prose ul { margin: 0 0 1em; padding-left: 0; list-style: none; }
.prose ul li { padding-left: 28px; position: relative; margin-bottom: .5em; color: var(--on-surface-variant); line-height: 1.7; }
.prose ul li::before { content: "✦"; position: absolute; left: 4px; color: var(--sage-soft); }

/* type badge colors */
.tb-session { background: #6E332F; } .tb-workshop { background: #2F5D5A; } .tb-retreat { background: #4F5D4A; } .tb-online { background: #8A5A2B; } .tb-event { background: #C28E84; }

/* horizontal scroll */
.h-scroll { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.h-scroll > * { scroll-snap-align: start; flex: 0 0 auto; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* ============================================================ Hero */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(82,29,27,.72), rgba(82,29,27,.32) 55%, rgba(47,93,90,.35)); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(254,250,230,.85); animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ============================================================ Tabs */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab { padding: 11px 22px; border-radius: 9999px; font-weight: 600; font-size: 15px; color: var(--on-surface-variant); background: var(--surface-low); transition: all .2s; }
.tab:hover { color: var(--primary); }
.tab.active { background: var(--primary); color: #fff; }

/* ============================================================ Accordion (FAQ) */
.accordion { border: 1px solid var(--surface-dim); border-radius: 14px; overflow: hidden; background: var(--surface); }
.acc-item + .acc-item { border-top: 1px solid var(--surface-dim); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; text-align: left; font-weight: 600; color: var(--on-surface); background: transparent; }
.acc-head .ms { transition: transform .3s var(--ease); color: var(--primary); }
.acc-item.open .acc-head .ms { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body-inner { padding: 0 22px 20px; color: var(--on-surface-variant); line-height: 1.7; }

/* ============================================================ Footer */
.footer { background: var(--sage); color: var(--ivory); }
.footer a { color: rgba(254,250,230,.82); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px; padding: 64px 24px 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
.footer h4 { font-family: "Playfair Display", serif; font-size: 17px; margin: 0 0 16px; color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9999px; background: rgba(254,250,230,.1); }
.footer-social a:hover { background: rgba(254,250,230,.2); }
.footer-bottom { border-top: 1px solid rgba(254,250,230,.16); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 13px; color: rgba(254,250,230,.7); }

/* ---- Mobile footer: brand + newsletter full-width & centered, link columns side-by-side ---- */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding: 48px 24px 32px; }
  .footer-col-brand, .footer-col-news { grid-column: 1 / -1; text-align: center; }
  .footer-col-brand .brand { justify-content: center; }
  .footer-col-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col-news form { max-width: 360px; margin: 0 auto; text-align: left; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}
.footer .field { background: rgba(254,250,230,.1); border-color: rgba(254,250,230,.25); color: #fff; }
.footer .field::placeholder { color: rgba(254,250,230,.6); }

/* ============================================================ Dashboard */
.dash { display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: start; }
@media (max-width: 880px) { .dash { grid-template-columns: 1fr; } }
.dash-side { position: sticky; top: calc(var(--nav-h) + 20px); background: var(--surface); border: 1px solid var(--surface-dim); border-radius: 18px; padding: 14px; }
@media (max-width: 880px) { .dash-side { position: static; display: flex; gap: 6px; overflow-x: auto; } }
.dash-link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; font-weight: 600; color: var(--on-surface-variant); white-space: nowrap; transition: background .2s, color .2s; }
.dash-link:hover { background: var(--surface-low); color: var(--primary); }
.dash-link.active { background: var(--primary); color: #fff; }
.stat-card { background: var(--surface); border: 1px solid var(--surface-dim); border-radius: 16px; padding: 20px; }
.stat-num { font-family: "Playfair Display", serif; font-size: 32px; color: var(--primary); font-weight: 700; }
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--secondary); padding: 12px 14px; border-bottom: 1px solid var(--surface-dim); }
.table td { padding: 14px; border-bottom: 1px solid var(--surface-dim); font-size: 14.5px; }
.toggle { width: 46px; height: 26px; border-radius: 9999px; background: var(--surface-dim); position: relative; transition: background .25s; flex-shrink: 0; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 9999px; background: #fff; transition: transform .25s var(--ease); box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.toggle.on { background: var(--success); }
.toggle.on::after { transform: translateX(20px); }

/* ============================================================ Admin panel */
.modal-overlay { position: fixed; inset: 0; background: rgba(42,38,32,.5); backdrop-filter: blur(3px); display: flex; align-items: flex-start; justify-content: center; padding: 5vh 16px; z-index: 140; opacity: 0; pointer-events: none; transition: opacity .2s; overflow-y: auto; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--surface); border: 1px solid var(--surface-dim); border-radius: 20px; width: 100%; max-width: 720px; box-shadow: 0 28px 60px -18px rgba(82,29,27,.4); transform: translateY(12px); transition: transform .2s; margin: auto; }
.modal.modal-sm { max-width: 460px; }
.modal-overlay.open .modal { transform: none; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--surface-dim); position: sticky; top: 0; background: var(--surface); border-radius: 20px 20px 0 0; z-index: 1; }
.modal-body { padding: 20px 22px; }
.modal-foot { display: flex; gap: 10px; justify-content: flex-end; padding: 14px 22px; border-top: 1px solid var(--surface-dim); position: sticky; bottom: 0; background: var(--surface); border-radius: 0 0 20px 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.flabel { display: block; font-size: 12.5px; font-weight: 600; color: var(--on-surface-variant); margin-bottom: 5px; }
.flabel .req { color: var(--error); }
.field-sm { padding: 9px 12px; font-size: 14px; }
.fhint { font-size: 11.5px; color: var(--outline); margin-top: 4px; }
.check-row { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1.5px solid var(--surface-dim); border-radius: 12px; background: var(--surface); cursor: pointer; }
.check-row input { width: 18px; height: 18px; accent-color: var(--primary); }
.admin-thumb { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; background: var(--surface-low); flex-shrink: 0; }
.btn-danger { background: var(--error); color: #fff; }
.btn-danger:hover { filter: brightness(1.06); }
.row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.icon-action { width: 32px; height: 32px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: var(--surface-low); color: var(--on-surface-variant); transition: all .15s; cursor: pointer; border: none; }
.icon-action:hover { background: var(--primary); color: #fff; }
.icon-action.danger:hover { background: var(--error); }
.admin-empty { text-align: center; padding: 48px 20px; color: var(--secondary); }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.admin-toolbar .grow { flex: 1; min-width: 180px; }
.img-chip { position: relative; width: 60px; height: 60px; border-radius: 10px; overflow: hidden; background: var(--surface-low); }
.img-chip img { width: 100%; height: 100%; object-fit: cover; }
.img-chip button { position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; border-radius: 6px; background: rgba(0,0,0,.55); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; line-height: 1; border: none; }
.gate { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--surface-lower); }
.gate .card { width: 100%; max-width: 410px; }

/* admin app shell (standalone — no public site chrome) */
.admin-app { min-height: 100vh; background: var(--surface-lower); }
.admin-topbar { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--surface-dim); box-shadow: 0 1px 2px rgba(82,29,27,.04); }
.admin-topbar-inner { height: 64px; display: flex; align-items: center; gap: 14px; padding: 0 20px; max-width: 1440px; margin: 0 auto; }
.admin-brand { display: flex; align-items: center; gap: 10px; }
.admin-brand img { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.admin-tag { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 3px 8px; border-radius: 6px; }
.admin-topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.admin-body { display: grid; grid-template-columns: 248px 1fr; max-width: 1440px; margin: 0 auto; align-items: start; }
.admin-sidebar { position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; padding: 18px 14px; border-right: 1px solid var(--surface-dim); background: var(--surface); display: flex; flex-direction: column; gap: 4px; }
.admin-content { padding: 28px 30px 64px; min-width: 0; }
.admin-foot { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--surface-dim); font-size: 12.5px; color: var(--secondary); }
.admin-burger { display: none; }
.admin-backdrop { display: none; }
@media (max-width: 900px) {
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; left: 0; top: 64px; bottom: 0; width: 264px; z-index: 46; transform: translateX(-100%); transition: transform .25s var(--ease); }
  .admin-app.nav-open .admin-sidebar { transform: none; box-shadow: 0 24px 60px -10px rgba(82,29,27,.3); }
  .admin-app.nav-open .admin-backdrop { display: block; position: fixed; inset: 64px 0 0 0; background: rgba(42,38,32,.4); z-index: 45; }
  .admin-burger { display: inline-flex; }
  .admin-content { padding: 20px 16px 48px; }
}
@media (max-width: 560px) { .hide-sm { display: none; } }

/* ============================================================ Cart drawer */
.drawer-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(42,38,32,.45); opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 91; width: min(92vw, 420px); background: var(--surface); box-shadow: -10px 0 50px rgba(82,29,27,.25); transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }

/* ============================================================ Toast */
.toast-root { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast { pointer-events: auto; background: var(--on-surface); color: var(--surface); padding: 13px 20px; border-radius: 9999px; font-weight: 600; font-size: 14px; box-shadow: 0 12px 30px -8px rgba(0,0,0,.4); display: flex; align-items: center; gap: 10px; animation: toast-in .35s var(--ease) both; }
.toast .ms { color: var(--surface-low); }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================================================ Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(18px); animation: rise .6s var(--ease) forwards; }
.stagger > *:nth-child(1){animation-delay:.05s}.stagger > *:nth-child(2){animation-delay:.12s}.stagger > *:nth-child(3){animation-delay:.19s}.stagger > *:nth-child(4){animation-delay:.26s}.stagger > *:nth-child(5){animation-delay:.33s}.stagger > *:nth-child(6){animation-delay:.4s}.stagger > *:nth-child(7){animation-delay:.47s}.stagger > *:nth-child(8){animation-delay:.54s}
@keyframes rise { to { opacity: 1; transform: none; } }
.fade-cycle { animation: fade-cycle .8s var(--ease); }
@keyframes fade-cycle { from { opacity: 0; } to { opacity: 1; } }
.blob { position: absolute; border-radius: 9999px; filter: blur(60px); opacity: .5; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}
