@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;900&display=swap');

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

:root {
  --pink: #ff0080;
  --magenta: #ff00ff;
  --dark: #26171f;
  --dark2: #1a0f16;
  --dark3: #0e080c;
  --light: #fff0f8;
  --muted: rgba(255,255,255,0.6);
  --card-bg: rgba(38,23,31,0.85);
  --card-bg2: rgba(255,0,128,0.08);
  --radius: 4px;
  --nav-h: 64px;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --prose-max: 740px;
  --layout-max: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--dark3);
  color: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--magenta);
  text-decoration: underline;
}

menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== AURORA BACKGROUND ===== */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.aurora-bg--dim .aurora-layer {
  opacity: 0.35;
}

.aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: auroraDrift 12s ease-in-out infinite alternate;
}

.aurora-layer.a1 {
  width: 80vw;
  height: 60vh;
  top: -20vh;
  left: -20vw;
  background: radial-gradient(ellipse at 40% 50%, #ff0080 0%, #ff00ff 50%, transparent 80%);
  animation-duration: 10s;
}

.aurora-layer.a2 {
  width: 70vw;
  height: 70vh;
  top: 20vh;
  right: -20vw;
  background: radial-gradient(ellipse at 60% 40%, #ff00ff 0%, #ff0080 40%, transparent 75%);
  animation-duration: 14s;
  animation-delay: -4s;
}

.aurora-layer.a3 {
  width: 60vw;
  height: 50vh;
  bottom: -10vh;
  left: 10vw;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,0,128,0.6) 0%, rgba(255,0,255,0.3) 50%, transparent 80%);
  animation-duration: 16s;
  animation-delay: -7s;
}

@keyframes auroraDrift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(4vw, -3vh) scale(1.08) rotate(3deg); }
  66% { transform: translate(-3vw, 4vh) scale(0.95) rotate(-2deg); }
  100% { transform: translate(2vw, 2vh) scale(1.05) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-layer { animation: none; }
  .reveal-section { opacity: 1 !important; transform: none !important; }
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(14,8,12,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,0,128,0.2);
}

.nav-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 12px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left li a,
.nav-right li a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,240,248,0.8);
  white-space: nowrap;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  min-height: 40px;
}

.nav-left li a:hover,
.nav-right li a:hover {
  background: rgba(255,0,128,0.12);
  color: var(--light);
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--magenta)) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 8px 16px !important;
}

.nav-cta:hover {
  filter: brightness(1.15);
  text-decoration: none !important;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand-text {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-details {
  display: none;
}

.nav-details summary {
  list-style: none;
}

.nav-details summary::-webkit-details-marker {
  display: none;
}

/* ===== HERO HOME ===== */
.hero-home {
  position: relative;
  height: 45vh;
  min-height: 320px;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  background: var(--dark2);
}

.hero-slash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    var(--dark3) 0%,
    var(--dark3) 42%,
    rgba(255,0,128,0.55) 42%,
    rgba(255,0,255,0.45) 58%,
    transparent 58%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
}

.hero-img-a {
  position: absolute;
  left: 0;
  top: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: translateX(-4px) scale(1.02);
  z-index: 0;
}

.hero-img-b {
  position: absolute;
  left: 28%;
  top: 8%;
  width: 38%;
  height: 84%;
  object-fit: cover;
  opacity: 0.5;
  transform: translateX(8px);
  z-index: 0;
  border-radius: var(--radius);
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 460px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.hero-h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(255,0,128,0.4);
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  min-height: 44px;
}

.hero-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.section-heading span {
  background: linear-gradient(90deg, var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,0,128,0.4), transparent);
}

/* ===== PROSE ===== */
.prose-section {
  padding: 48px 24px;
}

.prose-wrap {
  max-width: var(--prose-max);
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,240,248,0.88);
}

.prose-wrap h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.03em;
}

.prose-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  margin: 1.5rem 0 0.5rem;
}

.prose-wrap p {
  margin-bottom: 1.1rem;
}

.prose-wrap ul,
.prose-wrap ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.prose-wrap li {
  margin-bottom: 0.4rem;
}

.prose-wrap a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-wrap strong {
  color: #fff;
  font-weight: 700;
}

.prose-wrap blockquote {
  border-left: 3px solid var(--pink);
  padding: 8px 16px;
  margin: 1.5rem 0;
  background: rgba(255,0,128,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}

/* ===== TOPICS GRID ===== */
.topics-section {
  padding: 48px 24px;
  max-width: var(--layout-max);
  margin: 0 auto;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.topic-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(255,0,128,0.1);
}

.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,0,128,0.2);
}

.card-media {
  overflow: hidden;
  height: 160px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.topic-card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 16px 18px 20px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #fff;
}

.card-title span {
  display: block;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  min-height: 32px;
}

.card-link::after {
  content: ' →';
}

.card-link:hover {
  color: var(--magenta);
  text-decoration: none;
}

/* ===== RECENT ARTICLES ===== */
.recent-section {
  padding: 48px 24px;
  max-width: var(--layout-max);
  margin: 0 auto;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.recent-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(255,0,255,0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.recent-card:hover {
  border-color: rgba(255,0,128,0.3);
  transform: translateY(-2px);
}

.recent-card-inner {
  padding: 18px 20px;
}

.recent-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
  background: rgba(255,0,255,0.1);
  padding: 2px 8px;
  border-radius: var(--radius);
}

.recent-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.recent-title span {
  display: block;
}

.recent-title a {
  color: #fff;
  text-decoration: none;
}

.recent-title a:hover {
  color: var(--pink);
}

.recent-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.recent-date {
  font-size: 0.75rem;
  color: rgba(255,240,248,0.4);
  letter-spacing: 0.04em;
}

/* ===== GLOBAL ASIDE ===== */
.global-aside {
  max-width: var(--layout-max);
  margin: 0 auto 0;
  padding: 0 24px 48px;
}

.aside-inner {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid rgba(255,0,128,0.1);
}

.aside-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

.aside-title span {
  display: block;
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aside-links li a {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  font-size: 0.85rem;
  color: rgba(255,240,248,0.75);
  border-radius: var(--radius);
  min-height: 36px;
  transition: background 0.15s, color 0.15s;
}

.aside-links li a:hover {
  background: rgba(255,0,128,0.1);
  color: #fff;
  text-decoration: none;
}

.aside-divider {
  height: 1px;
  background: rgba(255,0,128,0.15);
  margin: 14px 0;
}

.sticky-aside {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

/* ===== TOPIC LAYOUT ===== */
.topic-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px 5%;
  background: var(--dark2);
}

.topic-hero-slash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 0%,
    transparent 38%,
    rgba(255,0,128,0.4) 38%,
    rgba(255,0,255,0.3) 55%,
    var(--dark3) 55%
  );
  z-index: 1;
}

.topic-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.topic-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.topic-hero-copy {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-left: auto;
  max-width: 500px;
}

.topic-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 6px;
}

.topic-h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.topic-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.topic-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 40px 24px;
  align-items: start;
}

.topic-main {
  min-width: 0;
}

.topic-prose {
  padding: 0 0 32px;
}

.topic-children {
  padding: 0;
}

.child-card {
  display: flex;
  gap: 16px;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255,0,128,0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.child-card:hover {
  border-color: rgba(255,0,128,0.25);
  transform: translateX(3px);
}

.child-card-media {
  flex-shrink: 0;
  width: 120px;
}

.child-card-img {
  width: 120px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.child-card-body {
  padding: 14px 16px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.child-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.child-card-title span {
  display: block;
}

.child-card-title a {
  color: #fff;
  text-decoration: none;
}

.child-card-title a:hover {
  color: var(--pink);
}

.child-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.child-date {
  font-size: 0.74rem;
  color: rgba(255,240,248,0.4);
}

.child-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  min-height: 28px;
  margin-top: auto;
}

.child-card-link:hover {
  color: var(--magenta);
  text-decoration: none;
}

.topic-aside {
  min-width: 0;
}

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 40px 24px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-header-section {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,0,128,0.12);
  margin-bottom: 28px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.breadcrumb-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  text-decoration: none;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-link:hover {
  color: var(--pink);
  text-decoration: none;
}

.article-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,0,128,0.12);
  color: var(--pink);
  padding: 2px 8px;
  border-radius: var(--radius);
}

.article-h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.article-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 640px;
}

.article-dateline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.article-date,
.article-mod-date {
  font-size: 0.78rem;
  color: rgba(255,240,248,0.45);
  letter-spacing: 0.04em;
}

.article-hero-wrap {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 380px;
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-body-section {
  padding: 0;
}

.article-prose {
  max-width: 100%;
}

.article-related {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,0,128,0.12);
}

.siblings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.sibling-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(255,0,128,0.08);
  transition: border-color 0.2s;
}

.sibling-card:hover {
  border-color: rgba(255,0,128,0.25);
}

.sibling-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.sibling-title span {
  display: block;
}

.sibling-title a {
  color: #fff;
  text-decoration: none;
}

.sibling-title a:hover {
  color: var(--pink);
}

.sibling-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.article-aside {
  min-width: 0;
}

/* ===== TAG LAYOUT ===== */
.tag-hero {
  position: relative;
  padding: 60px 5% 40px;
  background: linear-gradient(135deg, var(--dark3) 0%, rgba(255,0,128,0.08) 100%);
  border-bottom: 1px solid rgba(255,0,128,0.15);
}

.tag-hero-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  text-align: center;
}

.tag-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.tag-h1 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.tag-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.tag-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 40px 24px;
  align-items: start;
}

.tag-main {
  min-width: 0;
}

.tag-prose {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,0,128,0.1);
  margin-bottom: 28px;
}

.tag-items {
  padding: 0;
}

.tag-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid rgba(255,0,128,0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.tag-card:hover {
  border-color: rgba(255,0,128,0.25);
  transform: translateX(3px);
}

.tag-card-inner {
  padding: 16px 18px;
}

.tag-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tag-card-title span {
  display: block;
}

.tag-card-title a {
  color: #fff;
  text-decoration: none;
}

.tag-card-title a:hover {
  color: var(--pink);
}

.tag-card-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.tag-card-date {
  font-size: 0.74rem;
  color: rgba(255,240,248,0.4);
}

.tag-aside {
  min-width: 0;
}

/* ===== ABOUT LAYOUT ===== */
.about-hero {
  position: relative;
  padding: 64px 5% 48px;
  overflow: hidden;
  background: var(--dark2);
}

.about-hero-slash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    var(--dark3) 0%,
    var(--dark3) 50%,
    rgba(255,0,128,0.18) 50%,
    rgba(255,0,255,0.12) 65%,
    transparent 65%
  );
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--layout-max);
  margin: 0 auto;
  text-align: right;
}

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.about-h1 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 40px 24px;
  align-items: start;
}

.about-main {
  min-width: 0;
}

.about-content-section {
  padding-bottom: 32px;
}

.about-prose {
  max-width: 100%;
}

.about-links-section {
  padding-top: 0;
}

.about-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.about-nav-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid rgba(255,0,128,0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.about-nav-card:hover {
  border-color: rgba(255,0,128,0.25);
  transform: translateY(-2px);
}

.about-nav-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-nav-title span {
  display: block;
}

.about-nav-title a {
  color: #fff;
  text-decoration: none;
}

.about-nav-title a:hover {
  color: var(--pink);
}

.about-nav-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.about-aside {
  min-width: 0;
}

/* ===== PRIVACY LAYOUT ===== */
.privacy-hero {
  padding: 56px 5% 40px;
  background: linear-gradient(135deg, var(--dark3), rgba(38,23,31,0.8));
  border-bottom: 1px solid rgba(255,0,128,0.12);
}

.privacy-hero-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
}

.privacy-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.privacy-h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.privacy-date {
  font-size: 0.78rem;
  color: rgba(255,240,248,0.45);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 40px 24px;
  align-items: start;
}

.privacy-main {
  min-width: 0;
}

.privacy-content-section {
  padding-bottom: 28px;
}

.privacy-prose {
  max-width: 100%;
}

.privacy-nav-section {
  border-top: 1px solid rgba(255,0,128,0.12);
  padding-top: 28px;
}

.privacy-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.priv-link-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid rgba(255,0,128,0.08);
  min-width: 140px;
  transition: border-color 0.2s;
}

.priv-link-card:hover {
  border-color: rgba(255,0,128,0.25);
}

.priv-link-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
}

.priv-link-card h3 span {
  display: block;
}

.priv-link-card h3 a {
  color: var(--light);
  text-decoration: none;
}

.priv-link-card h3 a:hover {
  color: var(--pink);
}

.privacy-aside {
  min-width: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 60px;
  background: var(--dark3);
  border-top: 1px solid rgba(255,0,128,0.15);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--magenta), transparent);
}

.footer-brand-section {
  padding: 32px 24px 16px;
  text-align: center;
}

.footer-brand-mega {
  font-size: clamp(1.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  user-select: none;
}

.footer-bottom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 20px;
  max-width: var(--layout-max);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,240,248,0.4);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,240,248,0.5);
  text-decoration: none;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
  text-decoration: none;
}

/* ===== REVEAL ANIMATION ===== */
.reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-details {
    display: block;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    min-height: 44px;
    color: var(--light);
    font-size: 1.2rem;
  }

  .nav-hamburger {
    display: block;
  }

  .nav-menu-mobile {
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    background: rgba(14,8,12,0.97);
    border: 1px solid rgba(255,0,128,0.2);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 240px;
    z-index: 200;
    backdrop-filter: blur(16px);
  }

  .nav-menu-mobile li a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,240,248,0.85);
    min-height: 44px;
    transition: background 0.15s;
  }

  .nav-menu-mobile li a:hover {
    background: rgba(255,0,128,0.1);
    color: #fff;
    text-decoration: none;
  }

  .nav-inner {
    justify-content: center;
    padding: 0 60px;
  }

  .nav-brand-text {
    font-size: 0.9rem;
  }
}

/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 900px) {
  .topic-layout,
  .article-layout,
  .tag-layout,
  .about-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .topic-aside,
  .article-aside,
  .tag-aside,
  .about-aside,
  .privacy-aside {
    order: -1;
  }

  .sticky-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 56px;
  }

  .hero-home {
    height: auto;
    min-height: 45vh;
    padding: 40px 5% 32px;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-copy {
    text-align: left;
    max-width: 100%;
  }

  .hero-btn {
    min-height: 44px;
  }

  .topic-hero-copy {
    text-align: left;
    margin-left: 0;
  }

  .topics-grid,
  .recent-grid {
    grid-template-columns: 1fr;
  }

  .child-card {
    flex-direction: column;
  }

  .child-card-media {
    width: 100%;
    height: 160px;
  }

  .child-card-img {
    width: 100%;
    height: 160px;
  }

  .child-card-body {
    padding: 14px 14px;
  }

  .about-hero-copy {
    text-align: left;
  }

  .about-sub {
    margin-left: 0;
  }

  .siblings-grid {
    grid-template-columns: 1fr;
  }

  .prose-section {
    padding: 28px 16px;
  }

  .topics-section,
  .recent-section {
    padding: 28px 16px;
  }

  .topic-layout,
  .article-layout,
  .tag-layout,
  .about-layout,
  .privacy-layout {
    padding: 24px 16px;
    gap: 20px;
  }

  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-brand-mega {
    opacity: 0.12;
  }

  .nav-cta {
    padding: 8px 12px !important;
  }
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
