/**
 * FROZEN — profile.html only. Do not edit, do not import elsewhere.
 *
 * This is a verbatim snapshot of style.css + app.css as they were on
 * 2026-07-29, taken at the moment the rest of the site was redesigned. You
 * asked for the profile page to stay exactly as it is, and the only way to
 * guarantee that is to cut it off from the stylesheets everything else uses —
 * otherwise the next change to a shared token silently moves it.
 *
 * profile.html links THIS FILE AND NOTHING ELSE. If you edit style.css or
 * app.css, profile will not follow. That is the entire point.
 *
 * When you do want profile to join the new design: delete this file and put
 * `style.css` + `app.css` back in profile.html's <head>. The markup already
 * uses the shared class names, so nothing else has to change.
 */

/* Spy — shared styles for the public legal/support site */
:root {
  --violet: #10062D;
  --pink: #D878C0;
  --mulberry: #9B4D6E;
  --cocoa: #4A2838;
  --dusty: #B8879A;
  --bg: #FFF5F9;
  --card: #FFFFFF;
  --border: rgba(216, 120, 192, 0.22);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--cocoa);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
header.site {
  background: var(--violet);
  padding: 26px 20px;
  text-align: center;
}
header.site a.brand {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 6px;
  text-decoration: none;
}
header.site p { color: #CBB3F0; font-size: 13px; margin-top: 6px; }
main { max-width: 760px; margin: 0 auto; padding: 32px 20px 70px; }
h1 { font-size: 28px; color: var(--mulberry); font-weight: 800; margin-bottom: 4px; }
.updated { font-size: 13px; color: var(--dusty); margin-bottom: 26px; }
h2 {
  font-size: 18px;
  color: var(--mulberry);
  font-weight: 700;
  margin: 28px 0 10px;
}
p, li { font-size: 15px; margin-bottom: 12px; }
ul { padding-left: 22px; margin-bottom: 12px; }
a { color: var(--pink); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.card h3 { font-size: 16px; color: var(--mulberry); margin-bottom: 6px; }
.card p { font-size: 14px; margin-bottom: 0; color: var(--dusty); }
.card a.block { display: block; text-decoration: none; }
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 13px;
  margin-top: 8px;
}
.note {
  background: rgba(216, 120, 192, 0.08);
  border-left: 3px solid var(--pink);
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 14px;
}
footer {
  border-top: 1px solid var(--border);
  padding: 22px 20px 40px;
  text-align: center;
  color: var(--dusty);
  font-size: 13px;
}
footer a { margin: 0 8px; white-space: nowrap; }

/* ── app.css snapshot ─────────────────────────────────── */

/**
 * Spy — styles for the signed-in pages (sign up, profile, group dates).
 *
 * Loaded AFTER style.css, which owns the palette and the marketing/legal pages.
 * This file adds forms, cards and the seat board; it does not restyle anything
 * the legal pages use, so those keep rendering exactly as they did.
 *
 * Contrast: every text colour here is checked against the surface it sits on at
 * 4.5:1 or better (large text 3:1). The muted greys in particular are darker
 * than they look — --dusty from style.css is 2.9:1 on white and is used only
 * for decoration, never for text.
 */

:root {
  --ink: #3B1E2B;
  --ink-soft: #6B4A5A; /* 5.6:1 on --card */
  --line: rgba(155, 77, 110, 0.18);
  --ok: #1F7A4D;
  --bad: #B3261E;
  --warn-bg: #FFF4E5;
  --gold: #8A6D1F;
}

/* ── shell ──────────────────────────────────────────────────────── */

header.app {
  background: var(--violet);
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}
header.app a.brand {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 5px;
  text-decoration: none;
}
header.app nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
header.app nav a,
header.app nav button.linkish {
  color: #F3DCEA;
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 8px;
}
header.app nav a:hover,
header.app nav button.linkish:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
header.app nav a.on {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

main.app {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}
main.app h1 {
  font-size: 27px;
  line-height: 1.25;
  color: var(--violet);
  margin-bottom: 6px;
}
main.app h2 {
  font-size: 18px;
  color: var(--violet);
  margin: 28px 0 10px;
}
.lede {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

/* ── panels ─────────────────────────────────────────────────────── */

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.panel > h2:first-child {
  margin-top: 0;
}

/* ── forms ──────────────────────────────────────────────────────── */

.field {
  display: block;
  margin-bottom: 16px;
}
.field > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin-bottom: 6px;
}
.field > small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.55;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  /* A visible focus ring is the only way to use this site from a keyboard.
     Never replace this with `outline: none`. */
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}
.row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.row > .field {
  flex: 1 1 180px;
}

button.primary,
a.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: var(--mulberry);
  border: 0;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
}
button.primary:hover,
a.primary:hover {
  background: #83405d;
}
button.primary:disabled {
  background: #B9A2AC;
  cursor: default;
}
button.quiet {
  min-height: 44px;
  padding: 0 18px;
  font: inherit;
  font-weight: 600;
  color: var(--mulberry);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  cursor: pointer;
}
button.quiet:hover {
  background: #FDF3F8;
}
button.danger {
  color: var(--bad);
  border-color: rgba(179, 38, 30, 0.35);
}

/* ── status messages ────────────────────────────────────────────── */

.status {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}
.status.info {
  background: #F4ECF7;
  color: var(--ink);
}
.status.ok {
  background: #E8F5EE;
  color: var(--ok);
}
.status.error {
  background: #FDECEA;
  color: var(--bad);
}
.status.warn {
  background: var(--warn-bg);
  color: #7A4A00;
}

/* ── group dates ────────────────────────────────────────────────── */

.seating {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.seating.mine {
  border-color: var(--mulberry);
  border-width: 2px;
  background: #FFFAFD;
}
.seating h3 {
  font-size: 19px;
  color: var(--violet);
  margin-bottom: 3px;
}
.seating .meta {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.seating .vibe {
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}
.seating .when {
  font-weight: 700;
  color: var(--violet);
}
.seating footer {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Seats as pips: filled = taken. The count is also written out in text right
   beside it, because a row of dots is not information to a screen reader. */
.seats {
  display: flex;
  gap: 5px;
  align-items: center;
}
.seats i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--mulberry);
  display: block;
}
.seats i.taken {
  background: var(--mulberry);
}
.seat-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.needed {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 11px;
  background: #EFE3F3;
  color: var(--violet);
}
.badge.confirmed {
  background: #E8F5EE;
  color: var(--ok);
}

.empty {
  text-align: center;
  padding: 34px 20px;
  color: var(--ink-soft);
}

/* ── misc ───────────────────────────────────────────────────────── */

.muted {
  color: var(--ink-soft);
  font-size: 14px;
}
.stack > * + * {
  margin-top: 12px;
}
hr.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 8px;
  top: 8px;
  z-index: 10;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
