/* ============================================================
   Ozwin Casino Australia — affiliate review site
   Dark premium + gold accents
   ============================================================ */

:root {
  --bg: #0a0b14;
  --bg-2: #10111d;
  --surface: #161827;
  --surface-2: #1c1f30;
  --surface-3: #232639;
  --border: rgba(212, 169, 66, 0.16);
  --border-strong: rgba(212, 169, 66, 0.35);
  --gold: #d4a942;
  --gold-bright: #f0c963;
  --gold-soft: #e8c172;
  --gold-dim: #8a7333;
  --text: #ecebe5;
  --text-dim: #b6b7c2;
  --text-muted: #80818f;
  --danger: #e0746a;
  --success: #6dc28a;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1140px;
  --content-w: 760px;
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-gold: 0 8px 28px -10px rgba(212, 169, 66, 0.45);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 12px 36px -16px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Page background — subtle texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(212, 169, 66, 0.10), transparent 60%),
    radial-gradient(900px 500px at 100% 8%, rgba(118, 70, 200, 0.06), transparent 55%),
    linear-gradient(180deg, #0d0e1a 0%, var(--bg) 40%);
  z-index: -2;
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-soft); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-bright); }

/* ----------------------------- Top warning bar ----------------------------- */
.topbar {
  background: #07080f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar strong { color: var(--gold-soft); font-weight: 600; letter-spacing: 0.06em; }
.topbar .age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 600;
}

/* ----------------------------- Header / nav ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 20, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold) 55%, #6f5715 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 6px 18px -4px rgba(212,169,66,0.55);
  color: #1a1405;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 24px;
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
  font-size: 14px;
}
.nav-links a {
  color: var(--text-dim);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1405 !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 13.5px;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { filter: brightness(1.08); }

.nav-toggle { display: none; }

/* ----------------------------- Social links ----------------------------- */
.social-links {
  display: flex; align-items: center; gap: 8px;
}
.social-link {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  background: transparent;
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
  flex-shrink: 0;
}
.social-link:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(212, 169, 66, 0.08);
  transform: translateY(-1px);
}
.social-link svg { width: 15px; height: 15px; display: block; }

.footer-social {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.footer-social .social-link {
  width: 38px; height: 38px;
}
.footer-social .social-link svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 12.5px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 34px; height: 34px; }
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  padding: 72px 24px 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 80% 30%, rgba(212, 169, 66, 0.18), transparent 60%),
    radial-gradient(500px 320px at 8% 80%, rgba(118, 70, 200, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(212, 169, 66, 0.05);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 22px 0 18px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--text);
}
h1.hero-title .accent {
  background: linear-gradient(180deg, var(--gold-bright) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px 28px;
  margin: 24px 0 28px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta strong { color: var(--text); font-weight: 600; }
.hero-meta .star { color: var(--gold-bright); }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* The "scorecard" on the right of hero */
.scorecard {
  background: linear-gradient(160deg, rgba(40, 32, 8, 0.55), rgba(22, 24, 39, 0.85) 60%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.scorecard::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 200px at 100% 0%, rgba(240, 201, 99, 0.18), transparent 60%);
  pointer-events: none;
}
.scorecard h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.scorecard .sub {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.score-big {
  display: flex; align-items: baseline; gap: 10px;
  margin: 14px 0 6px;
}
.score-big .num {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.score-big .denom {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 22px;
}
.stars { display: flex; gap: 4px; color: var(--gold-bright); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px;}
.score-rows {
  display: grid; gap: 10px;
  margin: 18px 0 22px;
  padding: 18px 0 4px;
  border-top: 1px dashed var(--border);
}
.score-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
}
.score-row .label { color: var(--text-dim); }
.score-row .bar { flex: 0 0 110px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.score-row .bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-bright), var(--gold)); border-radius: 999px; }
.scorecard .fineprint {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .scorecard { padding: 24px; }
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 60%, #b88c2e 100%);
  color: #1a1405;
  box-shadow: var(--shadow-gold), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(212, 169, 66, 0.08); border-color: var(--gold); color: var(--gold-bright); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----------------------------- Layout: Article ----------------------------- */
.article-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}
.article {
  max-width: var(--content-w);
  min-width: 0;
}
.article > * { max-width: 100%; }

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  margin: 64px 0 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.005em;
  position: relative;
  padding-top: 22px;
}
.article h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}
.article h2:first-of-type { margin-top: 0; }
.article h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 30px 0 12px;
  font-weight: 600;
  color: var(--text);
}
.article p {
  margin: 0 0 18px;
  color: var(--text-dim);
}
.article p strong, .article li strong { color: var(--text); font-weight: 600; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 22px; color: var(--text-dim); }
.article ul li, .article ol li { margin-bottom: 8px; }
.article ul li::marker { color: var(--gold); }
.article ol li::marker { color: var(--gold-bright); font-weight: 700; }
.article hr {
  border: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 56px 0;
}

/* TOC sidebar */
.toc {
  position: sticky;
  top: 88px;
  font-size: 13px;
  border-left: 1px solid var(--border);
  padding-left: 22px;
}
.toc .toc-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.toc a {
  color: var(--text-dim);
  display: block;
  line-height: 1.45;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -12px;
  transition: all .15s ease;
}
.toc a:hover { color: var(--gold-bright); border-left-color: var(--gold); }

@media (max-width: 1000px) {
  .article-wrap { grid-template-columns: 1fr; padding: 40px 22px; gap: 0; }
  .toc { display: none; }
}

/* ----------------------------- Tables ----------------------------- */
.table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}
.article thead th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(212, 169, 66, 0.08), transparent);
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-strong);
  font-weight: 600;
}
.article tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-dim);
  vertical-align: top;
}
.article tbody tr:last-child td { border-bottom: 0; }
.article tbody tr:nth-child(even) td { background: rgba(255,255,255,0.012); }
.article tbody td:first-child { color: var(--text); font-weight: 600; }

/* ----------------------------- Pros & Cons cards ----------------------------- */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 22px 0 28px;
}
.pc-card {
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.pc-card.pros { border-color: rgba(109, 194, 138, 0.28); background: linear-gradient(180deg, rgba(109, 194, 138, 0.06), var(--surface) 80%); }
.pc-card.cons { border-color: rgba(224, 116, 106, 0.28); background: linear-gradient(180deg, rgba(224, 116, 106, 0.06), var(--surface) 80%); }
.pc-card h4 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.pc-card.pros h4 { color: var(--success); }
.pc-card.cons h4 { color: var(--danger); }
.pc-card ul { padding: 0; margin: 0; list-style: none; }
.pc-card li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  color: var(--text-dim);
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.pc-card li:last-child { border-bottom: 0; }
.pc-card li::before {
  position: absolute; left: 0; top: 8px;
  font-size: 15px; line-height: 1.4;
  font-weight: 700;
}
.pc-card.pros li::before { content: "✓"; color: var(--success); }
.pc-card.cons li::before { content: "✕"; color: var(--danger); }

@media (max-width: 700px) {
  .proscons { grid-template-columns: 1fr; }
}

/* ----------------------------- CTA banners ----------------------------- */
.cta-banner {
  position: relative;
  margin: 40px 0;
  padding: 32px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(135deg, rgba(212, 169, 66, 0.18), rgba(118, 70, 200, 0.06) 60%, rgba(22, 24, 39, 0.4)),
    var(--surface);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(240, 201, 99, 0.22), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner .cb-text { z-index: 1; }
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 600;
}
.cta-banner p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
}
.cta-banner .btn { position: relative; z-index: 1; flex-shrink: 0; }

@media (max-width: 700px) {
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .cta-banner h3 { font-size: 19px; }
}

/* ----------------------------- Feature / step cards ----------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0 28px;
}
.feature-card {
  padding: 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
}
.feature-card .ic { color: var(--gold-bright); font-size: 18px; margin-bottom: 8px; display: block; }

/* ----------------------------- FAQ ----------------------------- */
.faq-list { display: grid; gap: 12px; margin: 22px 0 28px; }
details.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
details.faq-item[open] {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(212, 169, 66, 0.04), var(--surface) 30%);
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  letter-spacing: 0.01em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212, 169, 66, 0.12);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--border);
}
details.faq-item summary .chev {
  margin-left: auto;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--gold-bright);
  transition: transform .25s ease;
}
details.faq-item[open] summary .chev { transform: rotate(45deg); }
details.faq-item .faq-a {
  padding: 0 24px 22px 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}
details.faq-item .faq-a p { margin: 0; color: inherit; }

/* ----------------------------- Disclaimer / fineprint ----------------------------- */
.disclaimer {
  margin: 40px 0 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px dashed var(--border-strong);
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
}
.disclaimer p { margin: 0; color: inherit; }

/* ----------------------------- Final verdict box ----------------------------- */
.verdict-card {
  margin: 36px 0 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(160deg, rgba(212, 169, 66, 0.10), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow-card);
}
.verdict-card .vc-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.verdict-card .vc-head h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 22px;
}
.verdict-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 169, 66, 0.12);
  color: var(--gold-bright);
  border: 1px solid var(--border-strong);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ----------------------------- Footer ----------------------------- */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #06070d 100%);
  padding: 64px 24px 28px;
  color: var(--text-dim);
  font-size: 14px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-inner h5 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-inner ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-inner a { color: var(--text-dim); }
.footer-inner a:hover { color: var(--gold-bright); }
.footer-about p { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); margin: 0 0 16px; }
.footer-cta { margin-top: 8px; }
.footer-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}
.badge-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 5px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-weight: 600;
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ----------------------------- Placeholder page ----------------------------- */
.simple-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.simple-page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 46px);
  margin: 0 0 8px;
  font-weight: 600;
}
.simple-page .lede {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 32px;
}
.simple-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 36px 0 12px;
  color: var(--gold-bright);
}
.simple-page p, .simple-page li { color: var(--text-dim); }
.simple-page a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------- Focus / a11y ----------------------------- */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: rgba(240, 201, 99, 0.3); color: #fff; }

/* Print */
@media print {
  body::before { display: none; }
  .site-header, .toc, .cta-banner, .nav-cta, .topbar, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .article * { color: #000 !important; }
}
