/* Threshold: options */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0C0B09;
  --bg-elev: #14120E;
  --bg-card-1: #171411;
  --bg-card-2: #0E0C0A;
  --cream: #ECE6DA;
  --cream-soft: #C9C0AF;
  --cream-mute: #908778;
  --cream-faint: #5D5648;
  --gold: #C8A876;
  --gold-deep: #A88A5C;
  --gold-light: #DCC08A;
  --gold-soft: rgba(200, 168, 118, 0.14);
  --gold-line: rgba(200, 168, 118, 0.22);
  --coral: #D27866;
  --serif: 'Fraunces', 'Iowan Old Style', 'Hoefler Text', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
  background:
    radial-gradient(900px 700px at 18% -8%, rgba(220, 192, 138, 0.07), transparent 60%),
    radial-gradient(900px 700px at 110% 110%, rgba(120, 90, 60, 0.06), transparent 65%),
    var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.018) 0.5px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
  opacity: 0.45;
  z-index: 0;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(12,11,9,0.85), rgba(12,11,9,0.55));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(232,225,212,0.06);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
}

.topbar__mark { width: 18px; height: 22px; display: block; }

.topbar__word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 60;
  line-height: 1;
}

.topbar__nav {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 2px;
  transition: color 200ms ease, background 200ms ease;
}

.topbar__nav:hover { color: var(--gold-light); }
.topbar__nav--active { color: var(--gold-light); }

.topbar__links { display: flex; gap: 4px; }

/* ---------- Layout ---------- */
.opt {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 48px 96px;
  position: relative;
  z-index: 1;
}

/* ---------- Head ---------- */
.opt__head {
  margin-bottom: 72px;
}

.opt__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.opt__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
  margin-bottom: 22px;
}

.opt__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  font-variation-settings: "opsz" 96;
}

.opt__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream-soft);
  max-width: 54ch;
  font-variation-settings: "opsz" 36;
}

.opt__rule {
  margin-top: 36px;
  width: 220px;
}

.opt__rule svg { display: block; width: 100%; height: 14px; }

/* ---------- Section ---------- */
.opt__section {
  margin-bottom: 80px;
  /* Offset for the sticky topbar when jumped to via #anchor (e.g. #sites). */
  scroll-margin-top: 88px;
}
/* Brief champagne flash when arrived at via #sites, so the eye lands. */
.opt__section:target .opt__section-label {
  animation: opt-target-flash 1800ms ease-out;
}
@keyframes opt-target-flash {
  0%, 18% { color: var(--gold-light); }
  100%    { color: var(--cream-mute); }
}

.opt__section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(232,225,212,0.07);
}

.opt__section-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-variation-settings: "opsz" 36;
}

.opt__section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ---------- Grid for two fields side by side ---------- */
.opt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 640px) {
  .opt__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Field ---------- */
.opt__field { margin-bottom: 4px; }

.opt__field label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 14px;
}

.opt__input-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 168, 118, 0.22);
  transition: border-color 250ms ease;
}

.opt__input-row:focus-within { border-bottom-color: var(--gold); }

.opt__field input[type="number"],
.opt__field input[type="text"] {
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96;
  padding: 0;
  width: 110px;
}

.opt__unit {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  color: var(--cream-mute);
  font-variation-settings: "opsz" 24;
}

.opt__unit em {
  font-style: italic;
  color: var(--cream-mute);
}

.opt__help {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream-mute);
  max-width: 50ch;
  font-variation-settings: "opsz" 24;
}

/* In italic body copy, em flips to upright + brighter for emphasis */
.opt__help em {
  font-style: normal;
  color: var(--cream-soft);
}

/* ---------- Site list ---------- */
.opt__site-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.opt__site {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(232,225,212,0.05);
  transition: background 200ms ease;
}

.opt__site:hover { background: rgba(200, 168, 118, 0.02); }

.opt__site-domain {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--cream);
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.opt__site-domain::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  align-self: center;
  transform: translateY(-1px);
}

.opt__site-budget {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--cream-mute);
  font-style: italic;
}

.opt__site-budget input {
  width: 60px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232,225,212,0.1);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  text-align: right;
  padding: 2px 4px 6px 0;
  outline: none;
  font-style: normal;
  font-variation-settings: "opsz" 36;
}

.opt__site-budget input:focus { border-bottom-color: var(--gold); }

.opt__remove {
  background: transparent;
  border: none;
  color: var(--cream-faint);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 200ms ease, background 200ms ease;
}

.opt__remove:hover { color: var(--coral); background: rgba(210, 120, 102, 0.06); }

/* ---------- Add row ---------- */
.opt__add {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: flex-end;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid rgba(232,225,212,0.05);
}

.opt__add-field { display: flex; flex-direction: column; }

.opt__add-field label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 8px;
}

.opt__add-field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232,225,212,0.12);
  outline: none;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  padding: 6px 0 10px;
  transition: border-color 250ms ease;
  font-variation-settings: "opsz" 36;
}

.opt__add-field input::placeholder {
  color: var(--cream-faint);
  font-style: italic;
}

.opt__add-field input:focus { border-bottom-color: var(--gold); }

.opt__add-field--narrow input { width: 90px; }

/* ---------- Buttons ---------- */
.opt__btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #18130B;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: filter 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 0 0 0 rgba(200, 168, 118, 0);
}

.opt__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -12px rgba(200, 168, 118, 0.4);
}

.opt__btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(232,225,212,0.18);
  padding: 12px 22px;
}

.opt__btn--ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  filter: none;
  box-shadow: none;
}

/* ---------- Gating switch ---------- */
.opt__gating[hidden] { display: none; }
.opt__gating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 40px;
  padding: 22px 26px;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(200,168,118,0.10), rgba(200,168,118,0.03));
  transition: border-color 240ms ease, background 240ms ease;
}
.opt__gating.is-on {
  border-color: rgba(232,225,212,0.10);
  background: linear-gradient(180deg, rgba(200,168,118,0.04), rgba(200,168,118,0.015));
}
.opt__gating-text { flex: 1 1 320px; }
.opt__gating-label {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream);
  font-variation-settings: "opsz" 40;
  margin-bottom: 7px;
}
.opt__gating-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cream-soft);
  font-variation-settings: "opsz" 20;
  max-width: 56ch;
}
.opt__gating-btn { flex: 0 0 auto; }
/* When gating is on, the toggle becomes "Turn off": a quiet ghost so the
   master switch never shouts louder than the per-site choices below. */
.opt__gating-btn--off {
  background: transparent;
  color: var(--cream-mute);
  border-color: rgba(232,225,212,0.18);
  box-shadow: none;
}
.opt__gating-btn--off:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  filter: none;
  box-shadow: none;
}

/* ---------- Whispers ---------- */
/* Inline save confirmations and corrections. Each sits beside the control it
   speaks for, so the eye never has to travel; the hidden #srLive region
   repeats the words for screen readers, which is why these stay aria-hidden.
   Once shown they keep their text (only opacity changes), so nothing around
   them jumps when a note fades. */
.opt__whisper {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-light);
  font-variation-settings: "opsz" 24;
  opacity: 0;
  transition: opacity 350ms ease;
}

.opt__whisper.show { opacity: 1; }
.opt__whisper--err { color: var(--coral); }

/* Block whispers reserve their line so appearing never shoves the layout. */
.opt__whisper--block {
  display: block;
  margin-top: 10px;
  min-height: 18px;
}

/* In the list head the whisper hugs the count on the right. */
.opt__list-head .opt__whisper { flex: 1; text-align: right; }

/* Screen-reader-only live region: every whisper is announced here once. */
.opt__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Footer ---------- */
/* No Save button lives here anymore; edits commit as they happen. The footer
   states that plainly and offers a way back to Scores. */
.opt__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(232,225,212,0.07);
}

.opt__foot-note {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  color: var(--cream-mute);
  font-variation-settings: "opsz" 24;
}

.opt__foot-note em { font-style: italic; }

.opt__foot-done {
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

/* ---------- Signoff ---------- */
.opt__signoff {
  margin-top: 96px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,225,212,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--cream-faint);
  font-variation-settings: "opsz" 24;
  letter-spacing: 0.04em;
}

.opt__signoff em {
  font-style: italic;
  font-weight: 300;
}

.opt__signoff-dot { opacity: 0.5; }

/* ---------- Allowlist (Section III) ---------- */
.opt__section-note {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-mute);
  max-width: 62ch;
  margin: -8px 0 22px;
  font-variation-settings: "opsz" 24;
}

.opt__section-note em {
  font-style: italic;
  color: var(--cream-soft);
}

/* ---------- Privacy page prose lists ---------- */
.priv__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 64ch;
}
.priv__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-soft);
  font-variation-settings: "opsz" 24;
}
.priv__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.priv__list strong {
  font-weight: 400;
  color: var(--cream);
}
.priv__list em {
  font-style: italic;
  color: var(--gold-light);
}

.opt__site-list--allow .opt__site {
  grid-template-columns: 1fr auto auto;
}

.opt__site--allow .opt__site-domain::before {
  background: transparent;
  border: 1px solid var(--gold);
  width: 7px;
  height: 7px;
}

.opt__site--empty {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--cream-faint);
  padding: 16px 0;
  border-bottom: none;
  display: block;
}

.opt__site-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  background: var(--gold-soft);
  white-space: nowrap;
}

#allowList + .opt__add {
  grid-template-columns: 1fr auto;
}

.opt__suggest {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opt__suggest-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.opt__suggest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opt__suggest-chip {
  background: transparent;
  border: 1px solid rgba(200, 168, 118, 0.22);
  color: var(--cream-soft);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.005em;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.opt__suggest-chip::before {
  content: "+ ";
  color: var(--gold);
  font-style: normal;
  margin-right: 2px;
}

.opt__suggest-chip:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-1px);
}

.opt__suggest-empty {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--cream-faint);
}

/* ---------- Your data ---------- */
/* Three actions side by side. Export sits left because it's the safe one;
   the purge buttons take a coral tinge on hover and read brighter when armed. */
.opt__data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.opt__data-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opt__data-action .opt__help {
  margin-top: 0;
}

.opt__btn--caution {
  border-color: rgba(210, 120, 102, 0.32);
  color: #E0B0A2;
}
.opt__btn--caution:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(210, 120, 102, 0.05);
}

.opt__btn--armed {
  background: rgba(210, 120, 102, 0.10);
  border-color: var(--coral);
  color: var(--coral);
  letter-spacing: 0.12em;
  animation: opt-armed-pulse 1.6s ease-in-out infinite;
}

@keyframes opt-armed-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210,120,102,0); }
  50%      { box-shadow: 0 0 0 4px rgba(210,120,102,0.10); }
}

/* ============== CATALOG (visual picker) ============== */
.opt__catalog {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}

.opt__cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232,225,212,0.06);
}
.opt__cat-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.opt__cat-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.012em;
  color: var(--cream);
  font-variation-settings: "opsz" 60;
}
.opt__cat-count {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
  font-variant-numeric: tabular-nums;
}
.opt__bundle {
  background: transparent;
  border: 1px solid rgba(232,225,212,0.12);
  color: var(--cream-mute);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 220ms ease;
  white-space: nowrap;
}
.opt__bundle:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(200,168,118,0.05);
}
.opt__bundle--remove {
  border-color: rgba(210, 120, 102, 0.32);
  color: var(--coral);
}
.opt__bundle--remove:hover {
  border-color: var(--coral);
  background: rgba(210,120,102,0.06);
  color: var(--coral);
}

.opt__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}
.opt__tile {
  position: relative;
  text-align: left;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(23,20,17,0.6), rgba(14,12,10,0.6));
  border: 1px solid rgba(232,225,212,0.06);
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 220ms ease;
  overflow: hidden;
}
.opt__tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,118,0.16), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}
.opt__tile:hover {
  border-color: rgba(200,168,118,0.28);
  background: linear-gradient(180deg, rgba(28,24,20,0.7), rgba(18,15,12,0.7));
  transform: translateY(-1px);
}
.opt__tile:hover::before { opacity: 1; }
.opt__tile-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(232,225,212,0.18);
  border-radius: 2px;
  transition: all 220ms ease;
}
.opt__tile-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--cream);
  font-variation-settings: "opsz" 36;
  padding-right: 24px;
}
.opt__tile-domain {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream-faint);
  font-variant-numeric: tabular-nums;
}

.opt__tile.is-added {
  background: linear-gradient(180deg, rgba(200,168,118,0.10), rgba(200,168,118,0.04));
  border-color: rgba(200,168,118,0.32);
}
.opt__tile.is-added .opt__tile-name { color: var(--cream); }
.opt__tile.is-added .opt__tile-domain { color: var(--gold); }
.opt__tile.is-added .opt__tile-mark {
  background: var(--gold);
  border-color: var(--gold);
  position: absolute;
}
.opt__tile.is-added .opt__tile-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 4px;
  border-left: 1.4px solid #16110A;
  border-bottom: 1.4px solid #16110A;
  transform: translate(-50%, -65%) rotate(-45deg);
}

/* ============== LIST HEAD ============== */
.opt__list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 14px;
}
.opt__list-head-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.opt__list-head-count {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--cream-mute);
  font-variant-numeric: tabular-nums;
}

/* ============== ADVANCED (collapsed: add a specific domain) ============== */
.opt__advanced {
  margin-top: 20px;
  border-top: 1px solid rgba(232,225,212,0.05);
  padding-top: 18px;
}
.opt__advanced > summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-mute);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: color 200ms ease;
}
.opt__advanced > summary::-webkit-details-marker { display: none; }
.opt__advanced > summary::before {
  content: "+";
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 0;
  transition: transform 200ms ease;
}
.opt__advanced[open] > summary::before { content: "−"; }
.opt__advanced > summary:hover { color: var(--cream); }
.opt__advanced > .opt__add { margin-top: 16px; }

/* ============== SUGGESTIONS (history-driven) ============== */
.opt__suggest-panel {
  margin-top: 36px;
  padding: 28px 28px 22px;
  background: linear-gradient(180deg, rgba(23,20,17,0.45), rgba(14,12,10,0.45));
  border: 1px solid rgba(232,225,212,0.05);
  border-radius: 4px;
  position: relative;
}
.opt__suggest-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,118,0.18), transparent);
}
.opt__suggest-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.opt__suggest-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.opt__suggest-cta {
  background: transparent;
  border: 1px solid rgba(200,168,118,0.32);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 220ms ease;
}
.opt__suggest-cta:hover {
  background: var(--gold);
  color: #16110A;
  border-color: var(--gold);
}
.opt__suggest-note {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-mute);
  font-variation-settings: "opsz" 24;
  max-width: 64ch;
}
.opt__suggest-note em { color: var(--cream-soft); font-style: italic; }
.opt__suggest-note--soft { font-size: 13px; color: var(--cream-faint); }

.opt__suggest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.opt__suggest-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,225,212,0.04);
}
.opt__suggest-row-item:last-child { border-bottom: none; }
.opt__suggest-host { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.opt__suggest-host-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--cream);
  font-variation-settings: "opsz" 36;
}
.opt__suggest-host-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  font-variant-numeric: tabular-nums;
}
.opt__suggest-actions { display: flex; gap: 6px; flex-shrink: 0; }
.opt__suggest-btn {
  background: transparent;
  border: 1px solid rgba(232,225,212,0.10);
  color: var(--cream-mute);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms ease;
}
.opt__suggest-btn:hover {
  border-color: rgba(200,168,118,0.4);
  color: var(--cream);
}
.opt__suggest-btn--primary {
  border-color: rgba(200,168,118,0.36);
  color: var(--gold-light);
}
.opt__suggest-btn--primary:hover {
  background: var(--gold);
  color: #16110A;
  border-color: var(--gold);
}

/* ---------- Reduced motion ----------
   Stops the armed-pulse loop and the #sites target flash, and removes easing.
   No opacity pinning: the inline whispers and tile-hover sheen set opacity
   directly, so they still reveal, just instantly. */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Keyboard focus: a consistent champagne ring; mouse focus stays clean. */
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
input:focus-visible, textarea:focus-visible { outline: none; }
