/* ================================================================
   Valentina Lauer · Digitales Aufwachsen 360°
   Shared stylesheet for index, ueber-mich, speakerin
   ================================================================ */

:root {
  --orange: #cc4e00;
  --orange-soft: #ff9b66;
  --orange-tint: #fbe9d7;
  --orange-mist: #fdf5ee;
  --purple: #561269;
  --purple-soft: #7d3492;
  --purple-tint: #ece1f0;
  --purple-mist: #f7f1f9;
  --ink: #18121b;
  --ink-soft: #5a4a5e;
  --paper: #fdfaf6;
  --paper-pure: #ffffff;
  --rule: #e9e1ea;

  --font-display: "Futura", "Jost", "Avenir Next", "Trebuchet MS", "Century Gothic", system-ui, sans-serif;
  --font-body: "Futura", "Jost", "Avenir Next", "Trebuchet MS", "Century Gothic", system-ui, sans-serif;

  --max: 1240px;
  --gap: clamp(20px, 4vw, 48px);
  --radius: 18px;

  --shadow-card: 0 1px 2px rgba(24,18,27,.05), 0 18px 40px -22px rgba(86,18,105,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--purple); color: var(--paper); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); position: relative; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gap); position: relative; }

.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: -.01em;
  line-height: 1.08;
  font-weight: 600;
}
h1 {
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
}
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1em; color: var(--ink); }
p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
}
p.body { max-width: 64ch; }
.accent { color: var(--orange); }
.accent-purple { color: var(--purple); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper-pure);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow: 0 6px 18px -8px rgba(204,78,0,.6);
}
.btn:hover { transform: translateY(-2px); background: #b54400; box-shadow: 0 12px 26px -10px rgba(204,78,0,.7); }
.btn:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); box-shadow: none; }

.btn-purple { background: var(--purple); border-color: var(--purple); box-shadow: 0 6px 18px -8px rgba(86,18,105,.6); }
.btn-purple:hover { background: #420e51; box-shadow: 0 12px 26px -10px rgba(86,18,105,.7); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(253,250,246,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(24,18,27,.06);
  padding: 12px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nav-logo svg { display: block; width: 36px; height: 36px; }
.nav-logo img { display: block; height: 120px; width: auto; transition: height .35s ease; }
.nav.scrolled .nav-logo img { height: 88px; }
.nav-logo .brand { font-size: 15px; line-height: 1; display: flex; flex-direction: column; gap: 2px; }
.nav-logo .brand small { font-weight: 500; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  color: var(--ink);
}
.nav-links a:hover { background: var(--orange-mist); color: var(--orange); }
.nav-links a.is-current { color: var(--purple); }
.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 600;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--orange) !important; color: var(--paper) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }

/* ---------- Parallax layers ---------- */
.px-layer {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.px-hero {
  /* asymmetric placement — biased high & far right */
  top: -28%;
  right: -38%;
  width: min(150vw, 1400px);
  aspect-ratio: 1 / 1;
  opacity: .92;
  transform: rotate(-12deg);
}
.px-hero img { width: 100%; height: 100%; object-fit: contain; }

/* Decorative rings — multiple sizes, asymmetric placement */
.ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: var(--orange);
}
.ring-xl  { width: 460px; height: 460px; border-width: 4px; opacity: .10; }
.ring-lg  { width: 320px; height: 320px; border-width: 4px; opacity: .12; }
.ring-md  { width: 220px; height: 220px; border-width: 3px; opacity: .15; }
.ring-sm  { width: 140px; height: 140px; border-width: 2px; opacity: .18; }
.ring-xs  { width: 80px;  height: 80px;  border-width: 2px; opacity: .22; }
.ring-purple { border-color: var(--purple); opacity: .13; }
.ring-dot {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .6;
}
.ring-dot.lg { width: 28px; height: 28px; opacity: .35; }
.ring-dot.purple { background: var(--purple); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 18vh, 200px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 85% 15%, rgba(232, 122, 58, .12), transparent 60%),
    radial-gradient(60% 50% at 5% 90%, rgba(86, 18, 105, .07), transparent 70%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-pure);
  border: 1px solid var(--rule);
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
  box-shadow: 0 4px 12px -8px rgba(24,18,27,.18);
}
.hero-eyebrow .pill {
  background: var(--orange);
  color: var(--paper);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.hero h1 .seg-purple { color: var(--purple); }
.hero h1 .seg-orange { color: var(--orange); }

.hero-tag {
  margin: 30px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--purple);
  letter-spacing: .02em;
}
.hero-tag span { display: inline-flex; align-items: center; gap: 10px; }
.hero-tag span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.hero-aside { position: relative; min-height: 360px; }

/* Subpage hero variant — more compact */
.hero.hero-sub { padding: clamp(120px, 18vh, 180px) 0 clamp(50px, 8vh, 80px); }
.hero-sub h1 { font-size: clamp(36px, 5.2vw, 72px); }
.hero-sub .hero-grid { grid-template-columns: 1fr; }
.hero-sub .hero-aside { display: none; }
.hero-sub.has-photo .hero-grid { grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 70px); }
.hero-sub.has-photo .hero-aside { display: block; min-height: 0; }

/* Portrait & action-photo frame — concentric ring decoration ties to brand */
.portrait-frame {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 440px;
  isolation: isolate;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  box-shadow: 0 30px 60px -28px rgba(86,18,105,.45), 0 1px 2px rgba(24,18,27,.06);
  position: relative;
  z-index: 1;
  display: block;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  top: -42px; right: -42px;
  width: 65%; aspect-ratio: 1/1;
  border: 4px solid var(--orange);
  border-radius: 50%;
  z-index: 0;
  opacity: .55;
  pointer-events: none;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  bottom: -34px; left: -34px;
  width: 38%; aspect-ratio: 1/1;
  border: 3px solid var(--purple);
  border-radius: 50%;
  z-index: 2;
  opacity: .35;
  pointer-events: none;
}
.portrait-frame.action img {
  aspect-ratio: 3 / 4;
  object-position: 38% center;
}
.portrait-frame.dark::before { border-color: var(--orange-soft); opacity: .7; }
.portrait-frame.dark::after  { border-color: rgba(253,250,246,.4); opacity: .4; }

/* Inline photo accent (smaller, used inside text columns) */
.photo-accent {
  position: relative;
  margin: 30px 0 10px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
  box-shadow: 0 24px 50px -28px rgba(86,18,105,.4);
}
.photo-accent img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.photo-accent .caption {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
  display: block;
}
.section-purple .photo-accent .caption { color: rgba(253,250,246,.7); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  transition: color .2s ease, transform .2s ease;
}
.back-link:hover { color: var(--orange); transform: translateX(-2px); }

/* ---------- Credibility strip (text + SiR logo · tagline) ---------- */
.cred {
  position: relative;
  padding: 60px 0;
  background: var(--purple);
  color: var(--paper);
  overflow: hidden;
}
.cred::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 90% at 0% 50%, rgba(232, 122, 58, .25), transparent 60%),
    radial-gradient(30% 80% at 100% 50%, rgba(232, 122, 58, .18), transparent 60%);
  pointer-events: none;
}
.cred * { color: var(--paper); }
.cred .wrap { position: relative; }

.cred-row {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.cred-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(253,250,246,.18);
}

.cred-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
}
.cred-sir-link {
  display: block;
  flex-shrink: 0;
  border-radius: 10px;
  transition: transform .25s ease, filter .25s ease;
}
.cred-sir-link:hover { transform: translateY(-2px); }
.cred-sir-link img {
  width: clamp(110px, 11vw, 150px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.18));
}
.cred-text {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 40ch;
}
.cred-text strong { color: #ffd6b8; font-weight: 700; }

.cred-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--paper);
  letter-spacing: -.005em;
  max-width: 22ch;
}
.cred-tagline em {
  font-style: normal;
  color: var(--orange-soft);
}

/* ---------- Plum banner (Kinderrechte-Quote) ---------- */
.plum-banner {
  background: linear-gradient(135deg, #5e1a52 0%, #4a0e44 100%);
  color: var(--paper);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 56px);
  margin: 30px 0 0;
  position: relative;
  overflow: hidden;
}
.plum-banner.full-bleed {
  border-radius: 0;
  margin: 60px 0;
  width: 100%;
  padding: clamp(50px, 7vw, 80px) clamp(28px, 4vw, 56px);
  text-align: center;
}
.plum-banner.full-bleed p {
  text-align: center;
  margin: 0 auto;
  max-width: 38ch;
}
.plum-banner.full-bleed::before {
  width: 480px; height: 480px;
  top: -45%; right: 4%;
}
.plum-banner.full-bleed::after {
  width: 360px; height: 360px;
  bottom: -55%; left: 6%;
}
.plum-banner p .accent-orange { color: var(--orange-soft); font-weight: 800; }
.plum-banner p .accent-paper-bold { color: var(--paper); font-weight: 800; }

/* About section overrides for white background */
.about-section .about-grid .feature-block {
  margin: 0;
}
.about-section .media-circle-section h5 {
  color: var(--orange);
}
.about-section .media-link-list a {
  color: var(--ink);
  border-color: var(--rule);
}
.about-section .media-link-list a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
/* Logo cards on white section need a bit more lift */
.about-section .cred-logo .badge {
  border: 1px solid var(--rule);
}
.plum-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(255,155,102,.3);
  border-radius: 50%;
  pointer-events: none;
}
.plum-banner::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -6%;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255,155,102,.18);
  border-radius: 50%;
  pointer-events: none;
}
.plum-banner p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  color: var(--paper);
  margin: 0;
  position: relative;
  letter-spacing: -.005em;
  max-width: 30ch;
}
.plum-banner .label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 14px;
  position: relative;
}

/* ---------- Mediale Präsenz on Über mich (orange circle backdrop) ---------- */
.media-circle-section {
  position: relative;
  margin-top: 40px;
  padding: 30px 0 10px;
}
.media-circle-section h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-soft);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.media-circle-section .circle-bg {
  position: absolute;
  top: -40px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,155,102,.18), rgba(255,155,102,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.media-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.media-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
  border-bottom: 1px solid rgba(253,250,246,.25);
  padding: 4px 0;
  width: fit-content;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.media-link-list a::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-soft);
  flex-shrink: 0;
}
.media-link-list a:hover {
  color: var(--orange-soft);
  border-color: var(--orange-soft);
  transform: translateX(3px);
}

/* ---------- Manifesto banner (Kinderrechte sind keine Verhandlungssache) ---------- */
.manifesto-banner {
  margin: 50px 0;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--orange-tint);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.manifesto-banner::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 400px; height: 400px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  opacity: .15;
}
.manifesto-banner::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -8%;
  width: 280px; height: 280px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  opacity: .15;
}
.manifesto-banner p,
.section-purple .manifesto-banner p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--purple);
  margin: 0;
  letter-spacing: -.015em;
  position: relative;
}
.manifesto-banner p .accent,
.section-purple .manifesto-banner p .accent { color: var(--orange); }
.manifesto-banner p .accent-orange,
.section-purple .manifesto-banner p .accent-orange { color: var(--orange); }
.manifesto-banner p .accent-plum,
.section-purple .manifesto-banner p .accent-plum { color: var(--purple); font-weight: 800; }

/* ---------- 4-Logo Grid (Über mich Wirken & Mitgliedschaften) ---------- */
.cred-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}
.cred-logo .badge {
  background: var(--paper-pure);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 100%;
  height: 88px;
  box-sizing: border-box;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cred-logo a.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.4);
}
.cred-logo .badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cred-logo .caption {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.cred-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.cred-logo-grid .cred-logo .placeholder-badge {
  width: 100%;
  height: 110px;
  background: rgba(253,250,246,.08);
  border: 1px dashed rgba(253,250,246,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(253,250,246,.6);
  line-height: 1.3;
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; overflow: hidden; }
.section-head { max-width: 880px; margin-bottom: 60px; position: relative; }
.section-head .kicker { margin-bottom: 22px; }

/* Brand intro (logo + H2 side by side) */
.brand-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.brand-mark {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .brand-intro { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .brand-mark { width: 160px; }
}

/* Three audience cards */
.audience { background: var(--paper-pure); position: relative; }
.audience::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--rule);
}
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.a-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px 34px 32px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.a-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  transition: opacity .35s ease, transform .6s ease;
  z-index: -1;
}
.a-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.a-card:hover::before { opacity: .35; transform: rotate(20deg); }
.a-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.a-card h3 { font-size: 26px; margin-bottom: 14px; color: var(--purple); }
.a-card p { color: var(--ink-soft); font-size: 16px; }
.a-card .more {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
}
.a-card .more svg { transition: transform .25s ease; }
.a-card:hover .more svg { transform: translateX(4px); }

/* Subsection layouts */
.two-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 30px 0 40px;
}
.stat-card {
  background: var(--purple-mist);
  border: 1px solid var(--purple-tint);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--purple);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 8px;
}
.stat-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

.feature-block {
  background: var(--purple);
  color: var(--paper);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  margin: 50px 0;
}
.feature-block::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(232, 122, 58, .35);
}
.feature-block::after {
  content: "";
  position: absolute;
  top: -20%; right: 4%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(232, 122, 58, .25);
}
.feature-block .kicker { color: var(--orange-soft); }
.feature-block .kicker::before { background: var(--orange-soft); }
.feature-block h3 { color: var(--paper); font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.feature-block p { color: rgba(253, 250, 246, .9); }
.feature-block strong { color: var(--paper); }
.feature-block .feature-inner { position: relative; max-width: 720px; }
.feature-block ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  color: rgba(253, 250, 246, .92);
}
.feature-block ul li { padding-left: 26px; position: relative; }
.feature-block ul li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange-soft);
  position: absolute;
  left: 0; top: 8px;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px 0 0;
}
.quote {
  background: var(--paper-pure);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  position: relative;
  box-shadow: 0 1px 2px rgba(24,18,27,.04);
}
.quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  position: absolute;
  top: 12px; left: 22px;
  opacity: .25;
}
.quote p { font-style: italic; color: var(--ink); line-height: 1.55; padding-top: 22px; margin-bottom: 20px; }
.quote .src {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--purple);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Subgroups */
.subgroups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.subgroup {
  background: var(--paper-pure);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.subgroup:hover { border-color: var(--orange-tint); box-shadow: 0 12px 30px -16px rgba(86,18,105,.18); }
.subgroup h4 {
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -.005em;
}
.subgroup p { color: var(--ink); font-size: 16px; }
.subgroup .formats {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--rule);
}
.subgroup .formats h5 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.subgroup .formats p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* WIP banner */
.wip-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  margin: 0 0 26px;
  background: var(--orange-mist);
  border: 1px dashed var(--orange);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.4;
  max-width: 720px;
}
.wip-pill {
  background: var(--orange);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

/* Section variants */
.section-cream { background: var(--paper); }
.section-white { background: var(--paper-pure); }
.section-purple {
  background: linear-gradient(180deg, var(--purple) 0%, #3f0d4d 100%);
  color: var(--paper);
}
.section-purple h2, .section-purple h3, .section-purple h4 { color: var(--paper); }
.section-purple p { color: rgba(253,250,246,.85); }
.section-purple .kicker { color: var(--orange-soft); }
.section-purple .kicker::before { background: var(--orange-soft); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.pillar {
  background: var(--orange-mist);
  border: 1px solid var(--orange-tint);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.pillar h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.pillar p { font-size: 15px; color: var(--ink); margin: 0; }

.media-presence { margin-top: 40px; border-top: 1px solid rgba(253,250,246,.18); padding-top: 30px; }
.media-presence h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-soft);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.media-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: .02em;
}
.media-list span { display: inline-flex; align-items: center; gap: 12px; }
.media-list span:not(:last-child)::after { content: "·"; color: var(--orange-soft); margin-left: 20px; }

/* Speakerin */
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 40px 0 30px; }
.topic-pill {
  border: 1px solid var(--rule);
  background: var(--paper-pure);
  border-radius: 14px;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
  transition: border-color .25s ease, transform .25s ease, color .25s ease;
}
.topic-pill:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* Final CTA */
.final-cta {
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(204,78,0,.14), transparent 70%),
    radial-gradient(50% 70% at 10% 80%, rgba(86,18,105,.10), transparent 70%),
    var(--paper-pure);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.final-cta .wrap { max-width: 760px; }
.final-cta h2 { color: var(--purple); }
.final-cta p { color: var(--ink-soft); margin: 0 auto 30px; max-width: 60ch; }
.final-cta .email-link {
  margin-top: 28px;
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-soft);
}
.final-cta .email-link a {
  color: var(--purple);
  font-weight: 600;
  border-bottom: 1px solid var(--purple-tint);
  transition: border-color .2s ease;
}
.final-cta .email-link a:hover { border-color: var(--purple); }

/* Footer */
footer {
  background: linear-gradient(180deg, #4a0e44 0%, #3d0c39 100%);
  color: rgba(253,250,246,.78);
  padding: 60px 0 36px;
  font-size: 14px;
}
footer .wrap { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; align-items: start; }
footer h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin: 0 0 14px;
}
footer a { color: rgba(253,250,246,.85); transition: color .2s ease; }
footer a:hover { color: var(--orange-soft); }
footer .bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(253,250,246,.12);
  padding-top: 22px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(253,250,246,.55);
}
footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(253, 250, 246, 0.96);
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
footer .footer-logo svg { width: 44px; height: 44px; }
footer .footer-logo img {
  width: 150px;
  height: auto;
  display: block;
  filter: none;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .px-layer { transform: none !important; }
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .hero-sub.has-photo .hero-grid { grid-template-columns: 1fr; }
  .hero-sub.has-photo .hero-aside { display: block; margin-top: 36px; }
  .hero-sub.has-photo .portrait-frame { margin: 0 auto; max-width: 360px; }
  .hero .hero-aside.has-portrait { display: block; margin-top: 32px; }
  .hero .hero-aside.has-portrait .portrait-frame { margin: 0 auto; max-width: 320px; }
  .px-hero { right: -55%; top: -8%; width: 130vw; opacity: .45; }
  .cred-row { grid-template-columns: 1fr; gap: 30px; }
  .cred-divider { display: none; }
  .cred-left { grid-template-columns: 1fr; gap: 20px; }
  .cred-sir-link img { width: 130px; }
  .cred-logo-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 88px; }
  .nav.scrolled .nav-logo img { height: 64px; }
  .audience-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .subgroups { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  footer .wrap { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper-pure);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 14px;
    gap: 6px;
    box-shadow: var(--shadow-card);
  }
  .nav-links.open a { padding: 12px 14px; border-radius: 10px; }
  .nav-cta { text-align: center; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding-top: 110px; }
  .stats-row { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-tag { font-size: 16px; gap: 10px 18px; }
  .feature-block { border-radius: 20px; }
  .nav-logo .brand small { display: none; }
  .cred-stat { flex-direction: column; align-items: flex-start; gap: 8px; }
  .manifesto-banner p { font-size: clamp(22px, 6vw, 28px); }
  .plum-banner p { font-size: clamp(18px, 5vw, 22px); }
}
