/* Panou administrare – Olimpia Tănăsescu Beauty */
:root {
  --bg: #080a14; --bg-2: #0e1120; --bg-3: #151933; --surface: rgba(255,255,255,.04); --surface-2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.09); --line-2: rgba(255,255,255,.18); --text: #eef0f8; --muted: #9aa0b8; --muted-2: #6e7493;
  --accent: #ff4fb0; --accent-2: #7c5cff; --accent-3: #37e6ff; --ok: #3ddc97; --warn: #ffb547; --danger: #ff5c7a;
  --grad: linear-gradient(135deg, #ff4fb0 0%, #7c5cff 55%, #37e6ff 100%);
  --font-display: 'Syne', system-ui, sans-serif; --font-body: 'Manrope', system-ui, sans-serif;
  --shadow: 0 20px 60px rgba(0,0,0,.45); --side: 250px; color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.5; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
.bg { position: fixed; inset: 0; z-index: -1; background: radial-gradient(60vw 60vw at -10% -10%, rgba(255,79,176,.18), transparent 60%), radial-gradient(50vw 50vw at 110% 20%, rgba(124,92,255,.18), transparent 60%), radial-gradient(40vw 40vw at 50% 120%, rgba(55,230,255,.1), transparent 60%); }

/* ---- Auth ---- */
.auth { min-height: 100svh; display: grid; place-items: center; padding: 1.5rem; }
.auth__card { width: min(440px, 100%); padding: 2.2rem; border-radius: 24px; background: rgba(14,17,32,.8); border: 1px solid var(--line-2); backdrop-filter: blur(20px); box-shadow: var(--shadow), 0 0 100px rgba(124,92,255,.15); }
.auth__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.6rem; font-family: var(--font-display); font-weight: 800; }
.auth__card h1 { font-size: 1.5rem; margin-bottom: .3rem; }
.auth__card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.4rem; }

/* ---- Layout ---- */
.layout { display: grid; grid-template-columns: var(--side) 1fr; min-height: 100svh; }
.side { position: sticky; top: 0; height: 100svh; padding: 1.4rem 1rem; border-right: 1px solid var(--line); background: rgba(10,12,22,.7); backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: 1.4rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 800; font-size: .95rem; padding: 0 .4rem; }
.brand__mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad); color: #fff; font-size: .8rem; box-shadow: 0 6px 18px rgba(255,79,176,.35); flex: none; overflow: hidden; }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.menu { display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.menu a { display: flex; align-items: center; gap: .75rem; padding: .7rem .8rem; border-radius: 12px; color: var(--muted); font-weight: 600; font-size: .92rem; transition: all .2s; position: relative; }
.menu a svg { width: 19px; height: 19px; flex: none; }
.menu a:hover { color: var(--text); background: var(--surface); }
.menu a.is-active { color: var(--text); background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line-2); }
.menu a.is-active::before { content: ''; position: absolute; left: 0; top: 25%; height: 50%; width: 3px; border-radius: 3px; background: var(--grad); }
.menu .count { margin-left: auto; min-width: 22px; height: 22px; padding: 0 .4rem; border-radius: 999px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 800; display: grid; place-items: center; }
.me { display: flex; align-items: center; gap: .7rem; padding: .7rem .6rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.me .avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: var(--bg-3); flex: none; border: 2px solid var(--line-2); }
.me .avatar img { width: 100%; height: 100%; object-fit: cover; }
.me b { display: block; font-size: .9rem; }
.me span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.me button { margin-left: auto; background: none; border: 0; color: var(--muted); padding: .3rem; border-radius: 8px; }
.me button:hover { color: var(--danger); background: var(--surface-2); }
.main { padding: 1.6rem clamp(1rem, 3vw, 2.4rem) 5rem; min-width: 0; }
.top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.top h1 { font-size: 1.6rem; font-weight: 800; }
.top p { color: var(--muted); font-size: .9rem; }
.top__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---- Componente ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .65rem 1.1rem; border-radius: 11px; border: 1px solid transparent; font-weight: 700; font-size: .88rem; line-height: 1; transition: all .2s; white-space: nowrap; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(255,79,176,.25); }
.btn--primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(124,92,255,.4); }
.btn--ghost { background: var(--surface); border-color: var(--line-2); }
.btn--ghost:hover:not(:disabled) { background: var(--surface-2); }
.btn--ok { background: rgba(61,220,151,.15); border-color: rgba(61,220,151,.5); color: var(--ok); }
.btn--ok:hover:not(:disabled) { background: rgba(61,220,151,.28); }
.btn--danger { background: rgba(255,92,122,.12); border-color: rgba(255,92,122,.45); color: #ffb3c1; }
.btn--danger:hover:not(:disabled) { background: rgba(255,92,122,.25); }
.btn--warn { background: rgba(255,181,71,.12); border-color: rgba(255,181,71,.45); color: var(--warn); }
.btn--sm { padding: .45rem .75rem; font-size: .8rem; border-radius: 9px; }
.btn--icon { padding: .45rem; width: 34px; height: 34px; }
.btn svg { width: 16px; height: 16px; }
.btn--block { width: 100%; }

.card { border-radius: 18px; background: rgba(14,17,32,.65); border: 1px solid var(--line); backdrop-filter: blur(12px); }
.card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.card__head h3 { font-size: 1rem; font-weight: 700; }
.card__body { padding: 1.2rem; }
.card__body--flush { padding: 0; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .9rem; margin-bottom: 1.4rem; }
.stat { padding: 1.1rem 1.2rem; border-radius: 16px; background: rgba(14,17,32,.65); border: 1px solid var(--line); position: relative; overflow: hidden; }
.stat::after { content: ''; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%; background: var(--c, var(--accent-2)); opacity: .12; filter: blur(20px); }
.stat span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; margin-top: .3rem; }
.stat small { color: var(--muted); font-size: .8rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.grid-2 > *, .grid-3 > *, .form-grid > *, .stats > * { min-width: 0; }
.card, .table-wrap { max-width: 100%; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }

.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .28rem .65rem; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border: 1px solid; white-space: nowrap; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.b-pending_payment { color: var(--accent-3); border-color: rgba(55,230,255,.4); background: rgba(55,230,255,.08); }
.b-pending { color: var(--warn); border-color: rgba(255,181,71,.4); background: rgba(255,181,71,.08); }
.b-accepted { color: var(--ok); border-color: rgba(61,220,151,.4); background: rgba(61,220,151,.08); }
.b-rejected, .b-cancelled { color: var(--danger); border-color: rgba(255,92,122,.4); background: rgba(255,92,122,.08); }
.b-done { color: var(--muted); border-color: var(--line-2); background: var(--surface); }
.b-paid { color: var(--ok); border-color: rgba(61,220,151,.4); background: rgba(61,220,151,.08); }
.b-unpaid { color: var(--warn); border-color: rgba(255,181,71,.4); }
.b-refunded, .b-expired { color: var(--muted); border-color: var(--line-2); }
.b-admin { color: var(--accent); border-color: rgba(255,79,176,.5); }
.b-staff { color: var(--accent-3); border-color: rgba(55,230,255,.4); }
.b-off { color: var(--muted-2); border-color: var(--line); }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 700; padding: .8rem 1rem; border-bottom: 1px solid var(--line); white-space: nowrap; }
td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255,255,255,.025); }
td .sub { display: block; color: var(--muted); font-size: .8rem; }
.actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .4rem; vertical-align: middle; box-shadow: 0 0 8px currentColor; }
.empty { padding: 2.5rem 1rem; text-align: center; color: var(--muted); }
.empty b { display: block; color: var(--text); font-family: var(--font-display); margin-bottom: .3rem; }

.filters { display: flex; gap: .6rem; flex-wrap: wrap; align-items: flex-end; margin-bottom: 1rem; }
.filters .field { min-width: 150px; }
.filters .field--grow { flex: 1; min-width: 200px; }

.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; padding: .7rem .9rem; border-radius: 11px; border: 1px solid var(--line-2); background: rgba(255,255,255,.04); color: var(--text); outline: none; transition: all .2s; min-height: 42px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,79,176,.18); }
.field select option { background: #161a33; }
.field textarea { min-height: 90px; resize: vertical; }
.field input[type="color"] { padding: .2rem; height: 42px; width: 64px; }
.field input[type="time"], .field input[type="date"] { color-scheme: dark; }
.field .hint { font-size: .75rem; color: var(--muted-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-grid .full { grid-column: 1 / -1; }
.check { display: inline-flex; align-items: center; gap: .55rem; font-size: .9rem; cursor: pointer; font-weight: 600; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); }
.switch { display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; font-weight: 600; font-size: .9rem; }
.switch input { appearance: none; width: 42px; height: 24px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line-2); position: relative; transition: all .2s; margin: 0; }
.switch input::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; }
.switch input:checked { background: var(--accent-2); border-color: var(--accent-2); }
.switch input:checked::after { transform: translateX(18px); }
.checks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .45rem; }
.checks-grid label { padding: .5rem .7rem; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); font-size: .85rem; }
.section-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent-3); font-weight: 700; margin: 1.2rem 0 .7rem; }
.section-title:first-child { margin-top: 0; }

.hours-table td, .hours-table th { padding: .5rem .6rem; }
.hours-table input[type="time"] { min-height: 36px; padding: .4rem .6rem; }
.hours-table tr.is-off td:not(:first-child) { opacity: .4; }

/* Modal */
.modal-bg { position: fixed; inset: 0; z-index: 100; background: rgba(4,5,12,.7); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 1rem; animation: fade .2s; overflow-y: auto; }
.modal { width: min(var(--w, 640px), 100%); max-height: calc(100svh - 2rem); overflow: auto; border-radius: 22px; background: #10132a; border: 1px solid var(--line-2); box-shadow: var(--shadow); animation: up .25s cubic-bezier(.2,.8,.2,1); }
.modal__head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); background: #10132a; }
.modal__head h3 { font-size: 1.1rem; font-weight: 800; }
.modal__close { background: none; border: 0; font-size: 1.5rem; color: var(--muted); width: 34px; height: 34px; border-radius: 8px; }
.modal__close:hover { background: var(--surface-2); color: var(--text); }
.modal__body { padding: 1.4rem; }
.modal__foot { position: sticky; bottom: 0; display: flex; justify-content: flex-end; gap: .6rem; padding: 1rem 1.4rem; border-top: 1px solid var(--line); background: #10132a; flex-wrap: wrap; }
.modal__foot .left { margin-right: auto; }
@keyframes fade { from { opacity: 0; } }
@keyframes up { from { transform: translateY(16px); opacity: 0; } }
.tabs { display: flex; gap: .3rem; border-bottom: 1px solid var(--line); margin-bottom: 1.2rem; overflow-x: auto; }
.tabs button { background: none; border: 0; padding: .7rem .9rem; color: var(--muted); font-weight: 700; font-size: .88rem; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tabs button.is-active { color: var(--text); border-color: var(--accent); }
.tabpane { display: none; }
.tabpane.is-active { display: block; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 1.4rem; transform: translate(-50%, 20px); z-index: 300; padding: .8rem 1.2rem; border-radius: 12px; background: #161a33; border: 1px solid var(--line-2); box-shadow: var(--shadow); opacity: 0; transition: all .3s; pointer-events: none; font-weight: 600; font-size: .9rem; max-width: min(92vw, 480px); text-align: center; }
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }
.toast--error { border-color: var(--danger); }
.toast--ok { border-color: var(--ok); }
.loader { display: grid; place-items: center; padding: 3rem; color: var(--muted); gap: .8rem; }
.spinner { width: 30px; height: 30px; border-radius: 50%; border: 3px solid var(--line-2); border-top-color: var(--accent); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Echipa */
.staff-card { padding: 1.2rem; display: flex; gap: 1rem; align-items: flex-start; }
.staff-card .avatar { width: 64px; height: 64px; border-radius: 16px; overflow: hidden; background: var(--bg-3); flex: none; border: 2px solid var(--line-2); }
.staff-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff-card h4 { font-size: 1.05rem; }
.staff-card .meta { color: var(--muted); font-size: .82rem; margin: .2rem 0 .6rem; }
.staff-card.is-inactive { opacity: .55; }

/* Imagini */
.img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .9rem; }
.img-slot { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.img-slot .prev { aspect-ratio: 4 / 3; background: var(--bg-3); position: relative; }
.img-slot .prev img { width: 100%; height: 100%; object-fit: cover; }
.img-slot .prev.is-empty::after { content: 'fără imagine'; position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted-2); font-size: .8rem; }
.img-slot .info { padding: .7rem .8rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.img-slot .info b { font-size: .85rem; display: block; }
.img-slot .info small { color: var(--muted); font-size: .72rem; }
.img-slot--wide { grid-column: span 2; }
.photo-pick { display: flex; gap: 1rem; align-items: center; }
.photo-pick .avatar { width: 84px; height: 84px; border-radius: 18px; overflow: hidden; background: var(--bg-3); border: 2px solid var(--line-2); flex: none; }
.photo-pick .avatar img { width: 100%; height: 100%; object-fit: cover; }
.uploading { opacity: .5; pointer-events: none; }

/* Calendar zi */
.daybar { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; margin-bottom: 1rem; }
.daybar input[type="date"] { padding: .55rem .8rem; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); color-scheme: dark; }
.daybar .today-label { font-family: var(--font-display); font-weight: 700; text-transform: capitalize; }
.daygrid { display: grid; grid-template-columns: 60px repeat(var(--cols, 1), minmax(160px, 1fr)); overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); background: rgba(14,17,32,.65); }
.daygrid__head { position: sticky; top: 0; z-index: 2; padding: .7rem .6rem; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); background: #0f1224; font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: .5rem; }
.daygrid__head:first-child { border-left: 0; }
.daygrid__col { position: relative; border-left: 1px solid var(--line); height: var(--h); background-image: linear-gradient(var(--line) 1px, transparent 1px); background-size: 100% var(--hour); }
.daygrid__times { position: relative; height: var(--h); }
.daygrid__times span { position: absolute; left: 0; right: 0; text-align: center; font-size: .7rem; color: var(--muted-2); transform: translateY(-50%); }
.daygrid__off { position: absolute; left: 0; right: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 6px, transparent 6px 12px); }
.evt { position: absolute; left: 4px; right: 4px; border-radius: 9px; padding: .35rem .5rem; font-size: .75rem; overflow: hidden; border: 1px solid; cursor: pointer; transition: transform .15s; background: rgba(255,255,255,.06); }
.evt:hover { transform: scale(1.02); z-index: 3; }
.evt b { display: block; font-size: .78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.evt span { color: var(--muted); }
.evt--pending { border-color: var(--warn); border-left-width: 4px; }
.evt--pending_payment { border-color: var(--accent-3); border-left-width: 4px; opacity: .8; }
.evt--accepted { border-color: var(--ok); border-left-width: 4px; }
.evt--done { border-color: var(--muted-2); border-left-width: 4px; opacity: .7; }
.now-line { position: absolute; left: 0; right: 0; height: 2px; background: var(--accent); z-index: 2; box-shadow: 0 0 10px var(--accent); }

/* Lista programari mobil */
.bk-list { display: grid; gap: .7rem; }
.bk { padding: .95rem 1.05rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); display: grid; gap: .45rem; }
.bk__top { display: flex; justify-content: space-between; gap: .6rem; align-items: center; flex-wrap: wrap; }
.bk__when { font-family: var(--font-display); font-weight: 700; }
.bk__client { font-weight: 600; }
.bk__meta { color: var(--muted); font-size: .82rem; }

.notif-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.notif-row:last-child { border-bottom: 0; padding-bottom: 0; }
.notif-row:first-child { padding-top: 0; }
.notif-row .hint { color: var(--muted); font-size: .8rem; margin-top: .15rem; }
.kv { display: grid; gap: .5rem; }
.kv div { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; font-weight: 600; text-align: right; }
.copy-box { display: flex; gap: .5rem; align-items: center; padding: .6rem .8rem; border-radius: 10px; background: var(--surface); border: 1px dashed var(--line-2); font-family: monospace; font-size: .82rem; word-break: break-all; }

/* Mobil */
.mobile-nav { display: none; }
@media (max-width: 960px) {
  .layout { grid-template-columns: 1fr; }
  .side { display: none; }
  .main { padding: 1rem .9rem 6rem; }
  .top h1 { font-size: 1.35rem; }
  .top__actions .btn { padding: .6rem .9rem; font-size: .82rem; }
  .stat strong { font-size: 1.6rem; }
  .card__body { padding: 1rem; }
  th, td { padding: .7rem .7rem; }
  .mobile-top { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0 1rem; }
  .mobile-nav { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(10,12,22,.92); backdrop-filter: blur(16px); border-top: 1px solid var(--line); padding: .4rem .3rem calc(.4rem + env(safe-area-inset-bottom)); }
  .mobile-nav a { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: .4rem .2rem; font-size: .62rem; font-weight: 700; color: var(--muted); border-radius: 10px; position: relative; }
  .mobile-nav a svg { width: 20px; height: 20px; }
  .mobile-nav a span:not(.count) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
  .more-menu { display: grid; gap: .4rem; }
  .more-menu a { display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); font-weight: 600; }
  .more-menu a svg { width: 20px; height: 20px; }
  .more-menu a.is-active { border-color: var(--accent-3); color: var(--accent-3); }
  .mobile-nav a.is-active { color: var(--accent-3); }
  .mobile-nav .count { position: absolute; top: 0; right: 14%; min-width: 16px; height: 16px; border-radius: 999px; background: var(--accent); color: #fff; font-size: .6rem; display: grid; place-items: center; padding: 0 .25rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .img-slot--wide { grid-column: span 1; }
  .modal { max-height: calc(100svh - 1rem); }
}
@media (min-width: 961px) { .mobile-top { display: none; } }
