/* =========================================================================
   Castle Records — site styles
   Cosmic medallion brand: nebula-purple background, metallic-gold Cinzel
   headings, glowing purple-ring accents.
   ========================================================================= */

:root {
  /* Metallic gold (from the medallion lettering) */
  --gold-hi:   #FAECB4;
  --gold:      #E7C66B;
  --gold-mid:  #C8923A;
  --gold-deep: #8a5e1f;
  --gold-shadow:#603C10;

  /* Cosmic purples */
  --purple-glow: #b07bff;
  --purple:      #7a3ff2;
  --purple-deep: #2a0f5c;
  --violet-ink:  #170a33;

  /* Surfaces */
  --bg-0: #07040f;
  --bg-1: #0d0720;
  --bg-2: #140a2c;
  --card: rgba(25, 14, 52, 0.72);
  --card-border: rgba(176, 123, 255, 0.28);
  --line: rgba(176, 123, 255, 0.16);

  --text:   #efe9ff;
  --muted:  #b6abd6;
  --faint:  #8a7fb0;

  --ok:    #4ade80;
  --warn:  #fbbf24;
  --err:   #fb7185;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --maxw: 1120px;

  --serif: "Cinzel", Georgia, "Times New Roman", serif;
  --body:  "EB Garamond", Georgia, serif;
  --ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ui);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(122,63,242,0.22), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(176,123,255,0.12), transparent 55%),
    radial-gradient(700px 500px at 10% 30%, rgba(200,146,58,0.07), transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 60%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* faint starfield overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(230,210,255,0.5), transparent),
    radial-gradient(1px 1px at 12% 80%, rgba(255,255,255,0.4), transparent);
  opacity: 0.5;
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }
.narrow { max-width: 860px; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }

h1,h2,h3 { font-family: var(--serif); font-weight: 700; letter-spacing: 0.5px; line-height: 1.15; }

.gold {
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 38%, var(--gold-mid) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(10,6,22,0.92), rgba(10,6,22,0.62));
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 18px rgba(176,123,255,0.55); }
.brand .name { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 1px; }
.nav { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.nav a { color: var(--muted); padding: 8px 14px; border-radius: 8px; font-size: 0.94rem; font-family: var(--ui); }
.nav a:hover { color: var(--text); background: rgba(176,123,255,0.10); }
.nav a.cta { color: #1a0e02; background: linear-gradient(180deg, var(--gold-hi), var(--gold-mid)); font-weight: 700; box-shadow: 0 6px 18px rgba(200,146,58,0.35); }
.nav a.cta:hover { filter: brightness(1.08); color:#1a0e02; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--ui); font-weight: 600; font-size: 0.98rem;
  padding: 12px 22px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .08s ease, filter .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { color: #1a0e02; background: linear-gradient(180deg, var(--gold-hi), var(--gold-mid)); box-shadow: 0 8px 22px rgba(200,146,58,0.38); }
.btn-gold:hover { filter: brightness(1.07); color:#1a0e02; }
.btn-ghost { color: var(--text); background: rgba(176,123,255,0.08); border-color: var(--card-border); }
.btn-ghost:hover { background: rgba(176,123,255,0.16); }
.btn-danger { color: #fff; background: rgba(251,113,133,0.15); border-color: rgba(251,113,133,0.5); }
.btn-danger:hover { background: rgba(251,113,133,0.28); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { padding: 86px 0 64px; text-align: center; position: relative; }
.hero .medallion {
  width: 230px; height: 230px; border-radius: 50%; margin: 0 auto 30px;
  box-shadow: 0 0 60px rgba(176,123,255,0.55), 0 0 120px rgba(122,63,242,0.35);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin: 0 0 10px; }
.hero .sub { font-family: var(--body); font-size: clamp(1.05rem, 2.5vw, 1.4rem); color: var(--muted); max-width: 620px; margin: 0 auto 16px; }
.hero .loc { color: var(--faint); letter-spacing: 3px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section.block { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0 0 10px; }
.section-head p { color: var(--muted); font-family: var(--body); font-size: 1.12rem; max-width: 640px; margin: 0 auto; }
.eyebrow { color: var(--purple-glow); letter-spacing: 4px; text-transform: uppercase; font-size: 0.74rem; font-weight: 700; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; inset:0; border-radius: var(--radius); padding:1px;
  background: linear-gradient(140deg, rgba(176,123,255,0.5), transparent 40%, rgba(200,146,58,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; opacity:.5; }

.form-card { display: flex; flex-direction: column; height: 100%; text-decoration: none; transition: transform .12s ease, box-shadow .15s ease; }
a.form-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(122,63,242,0.30); }
.form-card .icon { font-size: 2rem; margin-bottom: 12px; }
.form-card .tag { align-self: flex-start; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-glow); border: 1px solid var(--card-border); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
.form-card h3 { font-size: 1.25rem; margin: 0 0 8px; color: var(--gold-hi); }
.form-card p { color: var(--muted); font-family: var(--body); font-size: 1.02rem; margin: 0 0 18px; flex: 1; }
.form-card .go { color: var(--gold); font-weight: 600; font-family: var(--ui); font-size: .92rem; }

.feature { text-align: center; }
.feature .fi { font-size: 1.8rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--gold-hi); }
.feature p { color: var(--muted); font-family: var(--body); margin: 0; }

/* ---------- Forms ---------- */
.form-page { padding: 40px 0 80px; }
.form-head { margin-bottom: 26px; }
.form-head .tag { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-glow); }
.form-head h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 6px 0 12px; }
.form-head .intro { color: var(--muted); font-family: var(--body); font-size: 1.12rem; }
.disclaimer { margin-top: 16px; padding: 12px 16px; border-left: 3px solid var(--gold-mid); background: rgba(200,146,58,0.08); border-radius: 6px; color: var(--muted); font-size: .92rem; }

form.castle-form { margin-top: 10px; }
fieldset.section { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px 8px; margin: 0 0 24px; background: rgba(13,7,32,0.4); }
fieldset.section > legend { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-hi); padding: 0 10px; }

.field-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px 18px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; grid-column: span 6; }
.field.half  { grid-column: span 3; }
.field.third { grid-column: span 2; }
@media (max-width: 760px) { .field.half, .field.third { grid-column: span 6; } }

.field label.lbl { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.field .req { color: var(--gold); margin-left: 3px; }
.field .help { font-size: 0.82rem; color: var(--faint); }

input[type=text], input[type=email], input[type=tel], input[type=date],
input[type=time], input[type=number], select, textarea {
  width: 100%; font-family: var(--ui); font-size: 1rem; color: var(--text);
  background: rgba(7,4,15,0.6); border: 1px solid var(--card-border); border-radius: var(--radius-sm);
  padding: 11px 13px; transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 64px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold-mid); box-shadow: 0 0 0 3px rgba(200,146,58,0.18); }
input::placeholder, textarea::placeholder { color: var(--faint); }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 1.15em, calc(100% - 13px) 1.15em; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

.static-legal { grid-column: span 6; font-family: var(--body); color: var(--muted); font-size: 1.0rem; background: rgba(7,4,15,0.4); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; line-height: 1.6; }

.check { grid-column: span 6; display: flex; gap: 11px; align-items: flex-start; cursor: pointer; padding: 4px 0; }
.check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--gold-mid); flex: none; }
.check span { font-size: 0.96rem; color: var(--text); }
.check-group { grid-column: span 6; display: flex; flex-direction: column; gap: 9px; }
.radio-row { grid-column: span 6; display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row.half { grid-column: span 3; }
@media (max-width: 760px) { .radio-row.half { grid-column: span 6; } }
.radio-pill { display: flex; align-items: center; gap: 8px; border: 1px solid var(--card-border); border-radius: 999px; padding: 8px 15px; cursor: pointer; font-size: .92rem; }
.radio-pill input { accent-color: var(--gold-mid); }
.radio-pill:has(input:checked) { border-color: var(--gold-mid); background: rgba(200,146,58,0.12); }

/* ---------- Signature ---------- */
.sig-block { border: 1px solid var(--card-border); border-radius: var(--radius); padding: 20px; background: rgba(13,7,32,0.5); margin-bottom: 22px; }
.sig-block h3 { font-size: 1.1rem; color: var(--gold-hi); margin: 0 0 4px; }
.sig-block .sig-note { color: var(--faint); font-size: .85rem; margin-bottom: 14px; }
.sig-pad-wrap { position: relative; }
canvas.sig-pad { width: 100%; height: 160px; background: #fbf7ec; border-radius: var(--radius-sm); border: 1px solid var(--card-border); touch-action: none; cursor: crosshair; display: block; }
.sig-clear { position: absolute; top: 8px; right: 8px; font-size: .78rem; padding: 5px 10px; background: rgba(0,0,0,0.5); color:#fff; border:none; border-radius:6px; cursor:pointer; }
.sig-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 14px; }
@media (max-width: 760px) { .sig-meta { grid-template-columns: 1fr; } }
.sig-date { color: var(--muted); font-size: .9rem; }

.form-actions { display: flex; gap: 14px; align-items: center; margin-top: 8px; }
.form-error { color: var(--err); font-size: .92rem; min-height: 1.2em; }

/* ---------- Confirmation ---------- */
.confirm { text-align: center; padding: 70px 0; }
.confirm .seal { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 22px; box-shadow: 0 0 50px rgba(176,123,255,0.5); }
.confirm h1 { font-size: 2.4rem; }
.confirm .ref { display: inline-block; font-family: var(--ui); letter-spacing: 1px; background: rgba(200,146,58,0.12); border: 1px solid var(--card-border); border-radius: 8px; padding: 8px 16px; margin: 14px 0; color: var(--gold-hi); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 60px; padding: 40px 0; color: var(--muted); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.site-footer .legal { font-size: .82rem; color: var(--faint); max-width: 560px; font-family: var(--body); }

/* ---------- Admin ---------- */
.admin-bar { background: linear-gradient(180deg, rgba(20,10,44,0.9), rgba(13,7,32,0.7)); border-bottom: 1px solid var(--line); }
.admin-bar .wrap { display: flex; align-items: center; gap: 14px; height: 60px; }
.admin-bar .name { font-family: var(--serif); color: var(--gold-hi); }
.admin-bar .spacer { margin-left: auto; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 26px 0; }
@media (max-width: 760px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 18px 20px; }
.stat .n { font-family: var(--serif); font-size: 2rem; color: var(--gold-hi); }
.stat .l { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }

table.subs { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; }
table.subs th, table.subs td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table.subs th { color: var(--purple-glow); text-transform: uppercase; letter-spacing: 1px; font-size: .74rem; background: rgba(122,63,242,0.10); }
table.subs tr:hover td { background: rgba(176,123,255,0.06); }
table.subs td a { color: var(--gold); }

.pill { display: inline-block; font-size: .72rem; padding: 3px 10px; border-radius: 999px; letter-spacing: .5px; text-transform: uppercase; }
.pill.new { background: rgba(74,222,128,0.16); color: var(--ok); border: 1px solid rgba(74,222,128,0.4); }
.pill.reviewed { background: rgba(251,191,36,0.14); color: var(--warn); border: 1px solid rgba(251,191,36,0.4); }
.pill.signed { background: rgba(176,123,255,0.16); color: var(--purple-glow); border: 1px solid var(--card-border); }
.pill.archived { background: rgba(138,127,176,0.14); color: var(--faint); border: 1px solid var(--line); }
.pill.cat { background: rgba(200,146,58,0.12); color: var(--gold); border: 1px solid var(--card-border); }

.detail-grid { display: grid; grid-template-columns: 200px 1fr; gap: 10px 20px; margin: 8px 0 26px; }
.detail-grid dt { color: var(--faint); font-size: .9rem; }
.detail-grid dd { margin: 0; color: var(--text); }
.detail-section { margin-bottom: 28px; }
.detail-section h3 { color: var(--gold-hi); border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.sig-view { background:#fbf7ec; border-radius: 8px; padding: 10px; display: inline-block; max-width: 420px; }
.sig-view img { max-width: 100%; display:block; }

/* ---------- Login ---------- */
.login-wrap { max-width: 380px; margin: 90px auto; text-align: center; }
.login-wrap .medallion { width: 96px; height: 96px; border-radius: 50%; margin-bottom: 20px; box-shadow: 0 0 40px rgba(176,123,255,0.5); }
.login-wrap form { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; text-align: left; }

.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 18px 0; }
.toolbar select { width: auto; }
.muted { color: var(--muted); }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.flash { padding: 12px 16px; border-radius: 8px; margin: 16px 0; }
.flash.err { background: rgba(251,113,133,0.14); border: 1px solid rgba(251,113,133,0.4); color: #ffd5dc; }

/* ---------- Studio booking (/book) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 700px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
  border: 1px solid var(--card-border); border-radius: var(--radius-sm);
  padding: 16px 18px; background: rgba(7,4,15,0.45); position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.svc-card:hover { background: rgba(122,63,242,0.10); }
.svc-card input { position: absolute; opacity: 0; pointer-events: none; }
.svc-card:has(input:checked) { border-color: var(--gold-mid); background: rgba(200,146,58,0.10); box-shadow: 0 0 0 1px var(--gold-mid); }
.svc-card .icon { font-size: 1.5rem; }
.svc-card .svc-title { font-family: var(--serif); font-size: 1.08rem; color: var(--gold-hi); }
.svc-card .svc-blurb { color: var(--muted); font-family: var(--body); font-size: .98rem; flex: 1; }
.svc-card .svc-rate { color: var(--gold); font-weight: 600; font-size: .9rem; margin-top: 6px; }

.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; min-height: 46px; }
.slot-hint { color: var(--faint); font-size: .95rem; padding: 10px 2px; }
button.slot {
  font-family: var(--ui); font-size: .95rem; color: var(--text); cursor: pointer;
  background: rgba(7,4,15,0.6); border: 1px solid var(--card-border); border-radius: 999px;
  padding: 9px 18px; transition: border-color .12s ease, background .12s ease;
}
button.slot:hover { border-color: var(--purple-glow); background: rgba(122,63,242,0.15); }
button.slot.sel { border-color: var(--gold-mid); background: rgba(200,146,58,0.18); color: var(--gold-hi); font-weight: 700; }

.book-summary { border: 1px solid var(--gold-deep); border-radius: var(--radius-sm); background: rgba(200,146,58,0.08); padding: 14px 18px; }
.book-summary .bs-line { color: var(--gold-hi); font-weight: 600; }
.book-summary .bs-est { color: var(--text); margin-top: 4px; }
.book-summary .bs-note { color: var(--faint); font-size: .82rem; margin-top: 4px; }

/* ---------- Admin schedule calendar ---------- */
.cal { display: grid; grid-template-columns: 74px repeat(7, 1fr); gap: 0; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow-x: auto; }
.cal-gutter .cal-hour { font-size: .7rem; color: var(--faint); text-align: right; padding-right: 8px; border-top: 1px solid var(--line); }
.cal-day { height: 40px; display: flex; align-items: center; justify-content: center; font-size: .8rem; letter-spacing: .5px; color: var(--purple-glow); text-transform: uppercase; border-bottom: 1px solid var(--card-border); }
.cal-col { border-left: 1px solid var(--line); min-width: 110px; }
.cal-col.today .cal-day { color: var(--gold-hi); background: rgba(200,146,58,0.10); }
.cal-body { position: relative;
  background-image: repeating-linear-gradient(to bottom, transparent 0 43px, var(--line) 43px 44px); }
.cal-ev {
  position: absolute; left: 3px; right: 3px; border-radius: 7px; overflow: hidden;
  font-size: .72rem; line-height: 1.25; padding: 4px 7px; display: flex; flex-direction: column;
}
.cal-ev.confirmed { background: rgba(122,63,242,0.42); border: 1px solid var(--purple-glow); color: var(--text); }
.cal-ev.pending { background: rgba(200,146,58,0.20); border: 1px dashed var(--gold-mid); color: var(--gold-hi); }
.cal-ev.blackout { background: repeating-linear-gradient(45deg, rgba(138,127,176,0.18) 0 8px, rgba(138,127,176,0.08) 8px 16px); border: 1px solid var(--line); color: var(--faint); flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 4px; }
.cal-ev .ev-t { font-weight: 700; }
.cal-ev .ev-n { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-ev .ev-s { opacity: .8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-ev .ev-x { background: none; border: none; color: var(--faint); cursor: pointer; font-size: .9rem; padding: 0 2px; }
.cal-ev .ev-x:hover { color: var(--err); }
.cal-legend { display: flex; gap: 20px; margin: 12px 4px; color: var(--muted); font-size: .84rem; }
.cal-legend .lg { display: inline-block; width: 14px; height: 14px; border-radius: 4px; vertical-align: -2px; margin-right: 6px; }
.cal-legend .lg.confirmed { background: rgba(122,63,242,0.42); border: 1px solid var(--purple-glow); }
.cal-legend .lg.pending { background: rgba(200,146,58,0.20); border: 1px dashed var(--gold-mid); }
.cal-legend .lg.blackout { background: repeating-linear-gradient(45deg, rgba(138,127,176,0.3) 0 4px, rgba(138,127,176,0.1) 4px 8px); border: 1px solid var(--line); }
.pill.pending { background: rgba(251,191,36,0.14); color: var(--warn); border: 1px solid rgba(251,191,36,0.4); }
.pill.confirmed { background: rgba(176,123,255,0.16); color: var(--purple-glow); border: 1px solid var(--card-border); }
.pill.completed { background: rgba(74,222,128,0.16); color: var(--ok); border: 1px solid rgba(74,222,128,0.4); }
.pill.declined, .pill.cancelled { background: rgba(251,113,133,0.14); color: var(--err); border: 1px solid rgba(251,113,133,0.4); }
