/* ============================================================
   FIND YOUR NEXT MODEL — Design tokens
   Independent fashion-magazine / casting-book / editorial system.
   Palette: honed limestone, pale stone, concrete grey, charcoal —
   luxury monochrome, no warm/cream/pink tones, no colour accent.
   ============================================================ */
:root {
  --bg: #F3F2EF;
  --bg-alt: #DEDDD8;
  --paper: #FAFAF8;
  --ink: #151515;
  --ink-soft: #999791;
  --rule: #C8C6C0;
  --solid: #292927;
  --solid-ink: #FAFAF8;
  --good: #56544E;

  /* High-contrast didone first, then fonts that actually ship on Windows/Office.
     Georgia is deliberately last — it reads "blog", not "magazine". */
  --serif: "Didot", Didot, "Bodoni 72", "Bodoni MT", "Iowan Old Style", "Baskerville", "Baskerville Old Face", "Hoefler Text", "Times New Roman", Times, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Never fall through to generic `cursive` — on Windows that resolves to Comic Sans.
     An italic serif is a far better last resort than a marker font. */
  --script: "Snell Roundhand", "Edwardian Script ITC", "Apple Chancery", "Lucida Calligraphy", "Gabriola", "Palatino Linotype", Palatino, "Hoefler Text", serif;

  --grain-opacity: 0.045;
  --stone-texture:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(21,21,21,0.045), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(21,21,21,0.04), transparent 65%),
    radial-gradient(ellipse 70% 40% at 50% 95%, rgba(255,255,255,0.55), transparent 70%);
}

:root[data-theme="dark"] {
  --bg: #151515; --bg-alt: #1E1E1C; --paper: #232321;
  --ink: #F3F2EF; --ink-soft: #A6A49D; --rule: #3A3A37;
  --solid: #DEDDD8; --solid-ink: #151515; --good: #B9B7B0;
  --grain-opacity: 0.06;
  --stone-texture:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(0,0,0,0.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(0,0,0,0.2), transparent 65%),
    radial-gradient(ellipse 70% 40% at 50% 95%, rgba(255,255,255,0.06), transparent 70%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #151515; --bg-alt: #1E1E1C; --paper: #232321;
    --ink: #F3F2EF; --ink-soft: #A6A49D; --rule: #3A3A37;
    --solid: #DEDDD8; --solid-ink: #151515; --good: #B9B7B0;
    --grain-opacity: 0.06;
    --stone-texture:
      radial-gradient(ellipse 60% 40% at 15% 20%, rgba(0,0,0,0.22), transparent 60%),
      radial-gradient(ellipse 50% 50% at 85% 75%, rgba(0,0,0,0.2), transparent 65%),
      radial-gradient(ellipse 70% 40% at 50% 95%, rgba(255,255,255,0.06), transparent 70%);
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* subtle paper/stone grain — extremely low opacity, never a design centrepiece */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
:root[data-theme="dark"] body::before, :root:not([data-theme="light"]) body::before { mix-blend-mode: overlay; }

a { color: inherit; }
img { max-width: 100%; display: block; }
main { flex: 1; }

/* ---------- Structural helpers ---------- */
/* Launch strip. Sits above the sticky nav so it scrolls away rather than
   eating vertical space on every screen. */
.launch-banner {
  display: block;
  background: var(--solid);
  color: var(--solid-ink);
  text-align: center;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-decoration: none;
}
.launch-banner:hover { color: #fff; }
.launch-banner .sep { opacity: 0.45; margin: 0 0.7em; }
.launch-banner .arrow { margin-left: 0.5em; }
@media (max-width: 620px) {
  .launch-banner { font-size: 0.56rem; letter-spacing: 0.16em; padding: 0.65rem 0.9rem; }
  .launch-banner .venue { display: none; }
}
/* Below this the strip wraps to two or three lines, which looks careless.
   Drop the call to action and keep the date — the nav already carries the CTAs. */
@media (max-width: 540px) {
  .launch-banner .cta { display: none; }
  .launch-banner .sep { display: none; }
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 640px; margin: 0 auto; padding: 0 2rem; }
.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ---------- Nav / masthead ---------- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 20;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.brand em {
  font-style: italic;
  font-family: var(--script);
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-left: 0.15em;
  vertical-align: -2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}
.nav-links a:hover { color: var(--ink); border-color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 1.3rem; }

/* ---------- Editorial text links (primary CTA style) ---------- */
.editorial-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  background: none;
  border-top: none; border-left: none; border-right: none;
  cursor: pointer;
  transition: border-bottom-width 0.15s ease;
}
.editorial-link .arrow { display: inline-block; transition: transform 0.18s ease; }
.editorial-link:hover { border-bottom-width: 2px; }
.editorial-link:hover .arrow { transform: translateX(3px); }
.editorial-link.on-dark { color: var(--paper); border-color: var(--paper); }
.editorial-link.on-dark:hover { color: var(--bg-alt); border-color: var(--bg-alt); }

/* ---------- Minimal bordered buttons (form submits, secondary actions) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-primary { background: var(--solid); border-color: var(--solid); color: var(--solid-ink); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.btn-ghost { border-color: var(--rule); color: var(--ink-soft); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); color: var(--bg); background: var(--ink); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.64rem; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}
.eyebrow.accent { color: var(--ink); }
h1, h2 { font-family: var(--serif); font-weight: 400; margin: 0; text-wrap: balance; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 0.96; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.02; }
h3 { font-family: var(--sans); font-size: 0.98rem; font-weight: 700; margin: 0; }
p { margin: 0 0 1rem; }
.lead { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink-soft); max-width: 52ch; line-height: 1.5; }
.script-note {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-soft);
  line-height: 1.3;
  display: inline-block;
}
.caption {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Homepage hero: asymmetric magazine spread ---------- */
.hero {
  padding: 3rem 0 4.5rem;
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero-copy { padding-bottom: 1rem; }
.hero-copy h1 { margin: 0.6rem 0 1.4rem; }
.hero-copy h1 em { font-style: italic; color: var(--ink); }
.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--stone-texture), var(--bg-alt);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.hero-frame .frame-caption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 0.25rem 0.5rem;
}
.hero-frame .frame-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(21,21,21,0.13);
}
.hero-annotation {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-actions { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Two-up editorial split (for-talent / for-business) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
}
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }
.split-card { padding: 3rem 2.5rem; border-top: 1px solid var(--rule); }
.split-card:first-child { border-right: 1px solid var(--rule); }
@media (max-width: 780px) { .split-card:first-child { border-right: none; } }
.split-card h3.split-title { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin: 0.5rem 0 1rem; text-transform: none; letter-spacing: 0; }
.split-card p { color: var(--ink-soft); }
.split-card ul { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.split-card li { font-size: 0.9rem; color: var(--ink-soft); padding: 0.55rem 0; border-top: 1px solid var(--rule); }
.split-card li:first-child { border-top: none; }

/* ---------- Numbered steps (editorial, not boxed) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin: 0; padding: 4rem 0; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; gap: 2.5rem; } }
.step-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; text-transform: none; margin-bottom: 0.6rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Section rhythm ---------- */
section.section { border-top: 1px solid var(--rule); padding: 0; }
section.section:first-of-type { border-top: none; }
.section-pad { padding: 4.5rem 0; }
.section-head { max-width: 62ch; margin: 0 0 2.8rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Closing banner (event tie-in) ---------- */
.banner {
  background: var(--stone-texture), var(--bg-alt);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.banner h2 { margin-bottom: 1rem; }
.banner p.lead { margin: 0 auto 1.8rem; }

/* ---------- Forms ---------- */
.form-card { padding: 0; margin: 2.5rem 0; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.field .hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.4rem; font-style: italic; font-family: var(--serif); }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 0.75rem 0.1rem;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); }
textarea { resize: vertical; min-height: 90px; border: 1px solid var(--rule); padding: 0.75rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-row input { margin-top: 0.25rem; }
.checkbox-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-check { display: inline-flex; position: relative; }
.chip-check input { position: absolute; opacity: 0; }
.chip-check span {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--rule);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-soft);
}
.chip-check input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.form-error { color: var(--ink); font-size: 0.82rem; margin-top: 0.5rem; display: none; font-weight: 700; }

/* ---------- Casting-book talent directory ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}
.filter-bar input[type="text"] {
  max-width: 240px;
  border: none;
  border-bottom: 1px solid var(--rule);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 1.6rem;
}
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }
.talent-card { text-decoration: none; color: var(--ink); display: block; }
.talent-avatar {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--stone-texture), var(--bg-alt);
  overflow: hidden;
  margin-bottom: 0.9rem;
  transition: transform 0.35s ease;
}
.talent-card:hover .talent-avatar { transform: scale(1.02); }
.talent-avatar .init {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2.1rem; color: rgba(21,21,21,0.15);
}
.talent-avatar .frame-caption {
  position: absolute; left: 0.6rem; bottom: 0.6rem;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--bg); padding: 0.2rem 0.45rem;
}
.talent-body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; text-transform: none; letter-spacing: 0; margin-bottom: 0.2rem; }
.talent-meta { font-size: 0.66rem; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 0.6rem; text-transform: uppercase; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.tag:not(:last-child)::after { content: "/"; margin-left: 0.5rem; color: var(--rule); }

/* ---------- Profile: editorial portfolio spread ---------- */
.profile-head { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; margin: 2.5rem 0 3rem; align-items: start; }
@media (max-width: 780px) { .profile-head { grid-template-columns: 1fr; } }
.profile-avatar-lg {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--stone-texture), var(--bg-alt);
  border: 1px solid var(--rule);
}
.profile-avatar-lg .init { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 3.4rem; color: rgba(21,21,21,0.15); }
.profile-avatar-lg .frame-caption { position: absolute; left: 0.8rem; bottom: 0.8rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); background: var(--bg); padding: 0.25rem 0.5rem; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--good); border-bottom: 1px solid var(--good); padding-bottom: 2px;
}
.profile-section { border-top: 1px solid var(--rule); padding: 2.2rem 0; }
.profile-section h2.mini { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.2rem; }
.feedback-item { padding: 1rem 0; border-top: 1px solid var(--rule); }
.feedback-item:first-child { border-top: none; }
.feedback-item .fb-meta { font-size: 0.68rem; color: var(--ink-soft); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.feedback-item p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink); }
.private-note { font-size: 0.64rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ---------- Pricing: rate-card treatment ---------- */
.tier-toggle { display: flex; gap: 2rem; margin: 2rem 0 3.2rem; border-bottom: 1px solid var(--rule); }
.tier-toggle button {
  padding: 0 0 0.9rem;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tier-toggle button.active { color: var(--ink); border-color: var(--ink); }
.tier-wrap { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.tier-set { display: none; }
.tier-set.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.tier-set:not(.trio).active { max-width: 700px; }
.tier-set.trio.active { grid-template-columns: repeat(3, 1fr); }
.tier-card { padding: 0 2.2rem 0 0; }
.tier-card + .tier-card { padding-left: 2.2rem; border-left: 1px solid var(--rule); }
.tier-card:last-child { padding-right: 0; }
@media (max-width: 900px) {
  .tier-set.trio.active { grid-template-columns: 1fr; }
  .tier-set.trio .tier-card { padding-right: 0; }
  .tier-set.trio .tier-card + .tier-card { border-left: none; border-top: 1px solid var(--rule); padding: 2rem 0 0; margin-top: 2rem; }
}
@media (max-width: 680px) {
  .tier-set.active { grid-template-columns: 1fr; }
  .tier-card { padding-right: 0; }
  .tier-card + .tier-card { border-left: none; border-top: 1px solid var(--rule); padding: 2rem 0 0; margin-top: 2rem; }
}
.tier-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; text-transform: none; }
.tier-card.featured .eyebrow { color: var(--ink); }
.tier-price { font-family: var(--serif); font-size: 2.7rem; margin: 0.8rem 0 0.3rem; line-height: 1.05; }
.tier-price span { font-size: 0.85rem; font-family: var(--sans); color: var(--ink-soft); }
.tier-note { font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.02em; margin: 0 0 1.4rem; font-style: italic; }
.tier-card ul { list-style: none; padding: 0; margin: 1.3rem 0; }
.tier-card li { font-size: 0.9rem; color: var(--ink-soft); padding: 0.6rem 0; border-top: 1px solid var(--rule); }
.tier-card li:first-child { border-top: none; }

/* ---------- Dashboard (kept functional, editorial skin) ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 2.2rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
@media (max-width: 680px) { .stat-row { grid-template-columns: 1fr; } }
.stat-card { padding: 1.6rem 1.8rem 1.6rem 0; }
.stat-card:not(:last-child) { border-right: 1px solid var(--rule); }
@media (max-width: 680px) { .stat-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--rule); } }
.stat-num { font-family: var(--serif); font-size: 2.4rem; display: block; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.66rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-section { margin: 2.8rem 0; }
.dash-section > h3 { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1rem; }
.list-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.9rem 0; border-top: 1px solid var(--rule); font-size: 0.92rem; }
.list-row:last-child { border-bottom: 1px solid var(--rule); }
.empty-state { padding: 2.5rem 0; color: var(--ink-soft); font-family: var(--serif); font-style: italic; border-top: 1px dashed var(--rule); border-bottom: 1px dashed var(--rule); text-align: center; }

/* ---------- Event page: date mark + magazine info block ---------- */
.date-mark { font-family: var(--serif); font-size: clamp(2.2rem, 7vw, 4.4rem); letter-spacing: 0.02em; margin: 0.3rem 0 1.2rem; white-space: nowrap; }
.info-list { border-top: 1px solid var(--rule); }
.info-row { display: grid; grid-template-columns: 10rem 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
@media (max-width: 560px) { .info-row { grid-template-columns: 1fr; gap: 0.3rem; } }
.info-row .k { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.info-row .v { font-family: var(--serif); font-size: 1.15rem; }
.timeline { border-top: 1px solid var(--rule); margin-top: 2.2rem; }
.tl-item { padding: 1.6rem 0; border-bottom: 1px solid var(--rule); }
.tl-time { font-size: 0.66rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.1em; }
.tl-item h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; text-transform: none; margin: 0.4rem 0 0.5rem; }

/* ---------- Callouts ---------- */
.callout { border-left: 2px solid var(--ink); padding: 0.2rem 0 0.2rem 1.3rem; margin: 1.6rem 0; }
.callout .callout-label { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); display: block; margin-bottom: 0.5rem; }
.callout p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--rule); padding: 3rem 2rem; text-align: center; font-size: 0.72rem; color: var(--ink-soft); }
.site-footer .foot-links { display: flex; gap: 1.6rem; justify-content: center; margin-bottom: 1.2rem; flex-wrap: wrap; }
.site-footer a { text-decoration: none; color: var(--ink-soft); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.66rem; }
.site-footer a:hover { color: var(--ink); }

/* ---------- Waitlist quick page ---------- */
.role-toggle { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.role-toggle label { flex: 1; position: relative; }
.role-toggle input { position: absolute; opacity: 0; }
.role-toggle span { display: block; text-align: center; padding: 0.8rem 0.5rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.role-toggle input:checked + span { color: var(--ink); border-color: var(--ink); }
.quick-success { display: none; text-align: center; padding: 2rem 1rem; }

/* ---------- Admin table (utility page, lighter touch) ---------- */
.tbl-wrap { overflow-x: auto; border-top: 1px solid var(--rule); }
.tbl-wrap table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.tbl-wrap th { text-align: left; padding: 0.8rem 0.6rem; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--rule); }
.tbl-wrap td { padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--rule); }
