/* Nóra Pekker — minimal dark */

:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-raised: #111114;
  --surface: #16161a;
  --surface-strong: #19191f;
  --line: rgb(255 255 255 / 0.09);
  --text: #ececf3;
  --text-muted: rgb(236 236 243 / 0.58);
  --text-inverse: #09090b;
  --accent: #8b93ff;
  --accent-hot: #ff4fd8;
  --accent-lime: #d4ff3f;
  --accent-cyan: #4df4ff;
  --gradient-pop: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 45%, var(--accent-cyan) 100%);
  --strong-highlight: rgb(139 147 255 / 0.32);
  --section-divider: 1px solid rgb(255 255 255 / 0.14);
  --frame-brutal-border: 3px solid var(--accent);
  --frame-brutal-shadow:
    8px 8px 0 rgb(72 78 200 / 0.65),
    0 0 0 2px rgb(139 147 255 / 0.45);
  --frame-brutal-shadow-hover:
    10px 10px 0 rgb(90 98 230 / 0.75),
    0 0 0 2px rgb(165 172 255 / 0.55);
  --accent-shadow:
    8px 8px 0 rgb(255 79 216 / 0.24),
    0 0 0 2px rgb(77 244 255 / 0.2);

  --ink: var(--text);
  --paper: var(--surface);
  --page-blue: var(--bg);
  --border: 1px solid var(--line);
  --shadow: none;
  --shadow-sm: none;
  --shadow-lg: none;
  --max: 72rem;
  --measure: 38rem;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --header-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgb(255 79 216 / 0.08), transparent 22%),
    radial-gradient(circle at 15% 28%, rgb(139 147 255 / 0.11), transparent 24%),
    linear-gradient(180deg, #08080a 0%, #0a0a0d 100%);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgb(139 147 255 / 0.45);
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border: var(--border);
  font-weight: 800;
  font-size: 0.8125rem;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgb(9 9 11 / 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: var(--border);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 1.2rem;
  height: 3px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.2s var(--ease);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  border: 2px solid transparent;
  transition:
    background 0.15s var(--ease),
    border-color 0.15s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgb(255 255 255 / 0.06);
  border-color: var(--line);
}

.site-nav a::after {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: var(--border);
    padding: var(--space-sm);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.35s var(--ease),
      opacity 0.2s var(--ease),
      visibility 0.2s;
  }

  .site-nav.is-open {
    max-height: 28rem;
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.65rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav li:last-child a {
    border-bottom: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }
}

/* Sections */
.section {
  padding: var(--space-2xl) var(--space-md);
  border-bottom: var(--section-divider);
  position: relative;
  overflow: clip;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-copy {
  text-align: left;
  position: relative;
}

.section-head {
  margin-bottom: var(--space-lg);
}

.section-head--narrow {
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .prose {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.section-head--narrow .prose {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#social .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#social .section-head--narrow {
  width: min(100%, var(--measure));
}

#social .section-head--narrow .prose,
#social .section-head--narrow p {
  text-align: center;
  text-wrap: balance;
}

#social .gallery {
  width: 100%;
  max-width: var(--max);
  align-self: stretch;
}

/* Editorial sections — same quiet surface as page */
.section--editorial {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.015), transparent 16%),
    var(--bg);
  color: var(--text);
  border-bottom: var(--section-divider);
}

.section--editorial::before {
  content: none;
}

.section--editorial h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
  line-height: 0.96;
  margin: 0 0 var(--space-md);
  max-width: 9ch;
}

.section--editorial h2::after {
  content: none;
  display: none;
}

.section--editorial .section-head--narrow h2,
.section--editorial .contact-inner h2 {
  text-align: center;
}

.section--editorial .prose {
  color: var(--text-muted);
  opacity: 1;
}

.section--editorial .prose strong {
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(transparent 58%, rgb(255 79 216 / 0.3) 58%, rgb(139 147 255 / 0.3) 88%, transparent 88%);
  padding: 0 0.05em;
}

.section-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-lime);
  transform: rotate(-1.5deg);
}

.section-label::before,
.section-kicker::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.5rem;
  background: var(--gradient-pop);
  box-shadow: 3px 3px 0 rgb(255 255 255 / 0.08);
}

.section-kicker {
  color: var(--accent-cyan);
}

.section-deck {
  max-width: 28rem;
  margin: 0 0 var(--space-lg);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (min-width: 980px) {
  #awards .section-copy::after,
  #speaking .speaking-intro::after,
  #teaching .section-copy::after,
  #social .social-head::after {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgb(255 255 255 / 0.16);
    pointer-events: none;
    opacity: 0.55;
    white-space: nowrap;
    z-index: 0;
  }
}

.section--editorial .gallery-item {
  margin: 0;
  overflow: hidden;
  border: var(--frame-brutal-border);
  border-radius: 0;
  background: var(--bg-raised);
  box-shadow: var(--frame-brutal-shadow);
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}

.section--editorial .gallery-item img {
  border-radius: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .section--editorial .gallery-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--frame-brutal-shadow-hover);
  }
}

#speaking .section-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: stretch;
}

#speaking.section--editorial {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(244 244 248 / 0.96)),
    #ffffff;
  color: #09090b;
}

#speaking.section--editorial::before {
  border-color: rgb(9 9 11 / 0.08);
}

#speaking.section--editorial h2,
#speaking.section--editorial .prose strong,
#speaking.section--editorial .impact-card__text,
#speaking.section--editorial .impact-card p:last-child {
  color: #09090b;
}

#speaking.section--editorial .section-label {
  color: #3057ff;
}

#speaking.section--editorial .prose,
#speaking.section--editorial .section-deck {
  color: rgb(9 9 11 / 0.7);
}

#speaking.section--editorial .prose strong {
  background: linear-gradient(transparent 58%, rgb(77 244 255 / 0.32) 58%, rgb(139 147 255 / 0.22) 88%, transparent 88%);
}

.speaking-intro {
  max-width: 38rem;
  width: 100%;
}

#speaking .speaking-intro .prose {
  max-width: 100%;
}

#speaking #speaking-heading {
  font-size: clamp(2.05rem, 4.3vw, 3.25rem);
  line-height: 1;
  width: min(100%, 12.8ch);
  max-width: 12.8ch;
  text-wrap: pretty;
  display: block;
  text-shadow: 4px 4px 0 rgb(77 244 255 / 0.22);
  margin-top: 0.6rem;
}

#speaking #speaking-heading .heading-nowrap {
  white-space: nowrap;
}

@media (min-width: 980px) {
  #speaking .speaking-intro {
    margin-left: 4rem;
    padding-top: 4rem;
  }

  #speaking .speaking-intro::after {
    content: "GROW";
    right: auto;
    left: 1rem;
    top: 0;
    -webkit-text-stroke-color: rgb(9 9 11 / 0.16);
  }

  .speaking-layout {
    margin-left: 3.5rem;
  }

  .impact-card {
    margin-top: -2rem;
  }
}

#speaking.section--editorial #speaking-heading {
  display: block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.18em 0.06em 0;
  background: linear-gradient(transparent 62%, rgb(255 79 216 / 0.28) 62%, rgb(77 244 255 / 0.24) 92%, transparent 92%);
}

.speaking-layout {
  display: block;
  width: 100%;
}

.speaking-quote {
  margin-top: 4rem;
  max-width: 56rem;
  margin-left: auto;
  padding: 1.4rem 1.5rem;
  border: 3px solid #09090b;
  background: #ffffff;
  box-shadow: 12px 12px 0 rgb(255 79 216 / 0.16);
  transform: rotate(-1deg);
}

.speaking-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.08;
  text-transform: uppercase;
  color: #09090b;
}

.impact-card {
  align-self: start;
  max-width: 18rem;
  padding: 1.1rem 1.15rem;
  border: 2px solid var(--accent-lime);
  background: var(--surface-strong);
  box-shadow: 8px 8px 0 rgb(212 255 63 / 0.14);
  transform: rotate(-2deg);
}

#speaking.section--editorial .impact-card {
  border-color: var(--accent-cyan);
  background: #ffffff;
  box-shadow: 8px 8px 0 rgb(77 244 255 / 0.18);
}

.impact-card__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-lime);
}

#speaking.section--editorial .impact-card__eyebrow {
  color: #3057ff;
}

.impact-card__text,
.impact-card p:last-child {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

@media (min-width: 1024px) {
  .speaking-layout {
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }

  .speaking-quote {
    margin-right: 2rem;
  }
}

.editorial-frame {
  margin: 0;
  overflow: visible;
  background: var(--bg-raised);
  border: var(--frame-brutal-border);
  border-radius: 0;
  box-shadow: var(--frame-brutal-shadow);
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}

.editorial-frame.section-figure {
  border: var(--frame-brutal-border);
  background: var(--bg-raised);
  box-shadow: var(--frame-brutal-shadow);
}

@media (prefers-reduced-motion: no-preference) {
  figure.editorial-frame:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--frame-brutal-shadow-hover);
  }
}

#contact.section--editorial {
  padding-top: calc(var(--space-2xl) + var(--space-sm));
  padding-bottom: calc(var(--space-2xl) + var(--space-md));
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(244 244 248 / 0.96)),
    #ffffff;
  color: #09090b;
}

#contact.section--editorial::before {
  border-color: rgb(9 9 11 / 0.08);
}

.section--editorial .contact-lead {
  color: #09090b;
}

.section--editorial .contact-link {
  color: var(--accent-hot);
  border-bottom-color: rgb(255 79 216 / 0.45);
}

.section--editorial .contact-link:hover {
  opacity: 0.88;
}

.section--editorial .contact-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.section-head h2,
.section-copy h2,
.contact-inner h2 {
  margin: 0;
}

.section--editorial .section-copy h2,
.section--editorial .section-head h2 {
  margin: 0 0 var(--space-md);
}

#teaching #teaching-heading {
  font-size: clamp(1.8rem, 3.1vw, 2.55rem);
  line-height: 1.18;
  width: min(100%, 14.5ch);
  max-width: 14.5ch;
  text-wrap: balance;
  display: block;
  margin-top: 0.5rem;
  padding: 0.12em 0.22em 0.24em 0;
  overflow: visible;
  background: linear-gradient(135deg, #9bdcff 0%, #4df4ff 45%, #7a8fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

section:not(.hero):not(.section--editorial) h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-indent: 0;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}

section:not(.hero):not(.section--editorial) h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin: 0.85rem auto 1.5rem;
  opacity: 0.85;
}

/* Hero — dark, outline + solid title */
.hero.hero--editorial {
  padding-top: calc(var(--space-xl) + var(--header-h) * 0.12);
  padding-bottom: calc(var(--space-2xl) + 2.5rem);
  z-index: 1;
  overflow: visible;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgb(139 147 255 / 0.07) 0%, transparent 55%),
    radial-gradient(circle at 78% 12%, rgb(255 79 216 / 0.08) 0%, transparent 20%),
    var(--bg);
  color: var(--text);
  border-bottom: var(--section-divider);
}

.hero--editorial .tagline.hero-lead {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.45;
}

.hero--editorial .prose,
.hero--editorial .hero-copy .prose {
  color: var(--text-muted);
  opacity: 1;
}

.hero--editorial .prose strong {
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(transparent 58%, rgb(255 79 216 / 0.26) 58%, rgb(139 147 255 / 0.26) 88%, transparent 88%);
  padding: 0 0.05em;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    align-items: start;
  }

  .hero.hero--editorial {
    min-height: min(88vh, 52rem);
    padding-bottom: calc(var(--space-2xl) + 3.5rem);
  }
}

/* Two columns only when there’s room — avoids rotated photo painting over the title */
@media (min-width: 960px) and (max-width: 1099px) {
  .hero--editorial .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero--editorial .hero-visual-wrap {
    justify-self: center;
    margin-top: calc(clamp(5.5rem, 12vw, 9rem) + 200px);
    max-width: min(100%, 26rem);
  }
}

@media (min-width: 1100px) {
  .hero--editorial .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.68fr);
    gap: clamp(3.5rem, 7vw, 7.5rem);
    align-items: start;
  }

  .hero--editorial .hero-visual-wrap {
    justify-self: end;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  overflow: visible;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero--editorial h1 {
  margin: 0 0 var(--space-sm);
  font-size: clamp(4.25rem, 17vw, 11rem);
  max-width: min(100%, 9ch);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow: visible;
}

.hero-title-line {
  display: block;
}

.hero-title-line--outline {
  color: transparent;
  -webkit-text-stroke: clamp(2px, 0.065em, 4px) var(--text);
  paint-order: stroke fill;
  font-size: 0.92em;
  font-weight: 800;
}

.hero-title-line--solid {
  color: var(--text);
  font-size: 1.08em;
  font-weight: 800;
  margin-left: -0.02em;
  text-shadow: 4px 4px 0 rgb(255 79 216 / 0.16);
}

@media (min-width: 540px) {
  .hero--editorial h1 {
    max-width: min(100%, 10.5ch);
  }
}

@media (min-width: 960px) {
  .hero-title-line--solid {
    transform: translateX(0.04em);
  }
}

@media (min-width: 960px) {
  .hero-copy {
    padding-right: clamp(0.5rem, 3vw, 2.5rem);
  }
}

.tagline {
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 var(--space-md);
  line-height: 1.45;
  max-width: 100%;
}

.prose {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text-muted);
  opacity: 1;
  max-width: var(--measure);
}

.prose p {
  margin: 0 0 var(--space-sm);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(transparent 68%, var(--strong-highlight) 68%);
  padding: 0 0.05em;
}

.hero-body {
  margin-bottom: var(--space-lg);
}

.hero-copy .prose {
  max-width: 100%;
}

.hero-visual-wrap {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  margin-top: calc(clamp(5.5rem, 13vw, 9rem) + 220px);
  overflow: visible;
}

.hero--editorial .hero-visual {
  position: relative;
  z-index: 0;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  background: var(--bg-raised);
  border: var(--frame-brutal-border);
  border-radius: 0;
  box-shadow: var(--frame-brutal-shadow), var(--accent-shadow);
  transform-origin: 100% 50%;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .hero--editorial .hero-visual {
    transform: rotate(3.5deg);
  }

  .hero--editorial .hero-visual:hover {
    box-shadow: var(--frame-brutal-shadow-hover);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--editorial .hero-visual {
    transform: none;
  }
}

@media (min-width: 1100px) {
  .hero-visual-wrap {
    margin-inline: 0;
    margin-top: calc(clamp(9.5rem, 26vh, 16rem) + 220px);
    max-width: min(100%, 26rem);
  }
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.12s var(--ease),
    box-shadow 0.12s var(--ease);
}

.btn-minimal {
  color: var(--text);
  border: var(--border);
  background: transparent;
  padding: 0.65rem 1.25rem;
  min-height: auto;
}

.btn-minimal:hover {
  background: rgb(255 255 255 / 0.05);
}

.btn-minimal:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-solid {
  padding: 0.75rem 1.75rem;
  min-height: 3rem;
  background: var(--accent-cyan);
  color: #09090b;
  border: 2px solid #fff;
  box-shadow: 6px 6px 0 rgb(255 255 255 / 0.14);
}

.btn-solid:hover {
  filter: brightness(1.08);
}

.btn-solid:active {
  filter: brightness(0.95);
}

.btn-solid:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero--editorial .btn-solid {
  border-radius: 0;
}

/* Awards */
.section-split {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .section-split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .section-split--reverse .section-copy {
    order: 2;
  }

  .section-split--reverse .teach-visuals,
  .section-split--reverse > .section-figure {
    order: 1;
  }
}

/* Awards — subtle title accent (minimal) */
#awards .awards-heading {
  border-left: 4px solid var(--accent-hot);
  padding-left: 1rem;
  margin-left: 0;
  display: inline-block;
  transform: none;
  transform-origin: left center;
}

@media (min-width: 980px) {
  #awards .section-copy::after {
    content: "DESIGN";
    right: auto;
    left: 0;
    top: -0.35rem;
  }
}

#awards.section--editorial {
  background:
    radial-gradient(circle at 12% 18%, rgb(255 79 216 / 0.26), transparent 24%),
    radial-gradient(circle at 85% 22%, rgb(77 244 255 / 0.2), transparent 22%),
    linear-gradient(135deg, #07070a 0%, #181126 42%, #0d1b27 100%);
}

#awards.section--editorial::before {
  border-color: rgb(255 255 255 / 0.08);
}

#awards .section-label {
  color: #f4ff9c;
}

#awards .section-deck,
#awards .award-list--editorial li {
  color: rgb(236 236 243 / 0.82);
}

#awards .award-list--editorial li::before {
  color: var(--accent-lime);
}

/* Awards — split layout */
#awards .awards-split {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

#awards .section-copy {
  max-width: 36rem;
}

.award-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 58rem;
  margin-inline: auto;
  margin-top: 0;
  overflow: visible;
}

.accent-note {
  position: absolute;
  z-index: 2;
  top: -1.1rem;
  left: -0.6rem;
  width: min(15rem, 72%);
  padding: 0.9rem 1rem;
  border: 3px solid #fff;
  background: var(--gradient-pop);
  color: #050507;
  box-shadow: 8px 8px 0 rgb(9 9 11 / 0.6);
  transform: rotate(-3deg);
}

.accent-note__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.accent-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .award-photo-wrap {
    width: 100%;
    max-width: 62rem;
    margin-top: 2.75rem;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
}

#awards .section-figure--award img {
  width: 100%;
  max-height: min(68vh, 640px);
  object-fit: cover;
  object-position: center 22%;
}

#awards .section-figure--award {
  border-color: var(--accent-cyan);
  box-shadow:
    8px 8px 0 rgb(77 244 255 / 0.28),
    0 0 0 2px rgb(77 244 255 / 0.35);
  transform: rotate(-1.8deg);
}

@media (min-width: 900px) {
  #awards .section-figure--award img {
    max-height: min(88vh, 820px);
  }
}

.award-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: var(--border);
  background: var(--paper);
}

.award-list li {
  padding: var(--space-sm) var(--space-sm);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.award-list li:last-child {
  border-bottom: none;
}

.award-list li::before {
  display: none;
}

#awards .award-list--editorial {
  background: var(--surface);
  border: 2px solid var(--text);
  box-shadow: 10px 10px 0 rgb(255 79 216 / 0.12);
}

#awards .award-list--editorial li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem var(--space-md);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
  color: var(--text-muted);
}

#awards .award-list--editorial li::before {
  display: block;
  content: "·";
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
}

#awards .award-list--editorial li:last-child {
  border-bottom: none;
}

.section-figure {
  margin: 0;
  overflow: visible;
  border: var(--frame-brutal-border);
  background: var(--bg-raised);
  border-radius: 0;
  box-shadow: var(--frame-brutal-shadow);
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}

.section-figure img {
  width: 100%;
  height: auto;
}

.section-figure--award img {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: cover;
  object-position: center 20%;
}

/* Galleries */
.gallery {
  display: grid;
  gap: var(--space-sm);
}

.gallery--three {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery--three .gallery-item:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .gallery--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery--three .gallery-item:first-child {
    grid-column: auto;
  }
}

.gallery--two {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  margin: 0;
  overflow: visible;
  border: var(--frame-brutal-border);
  background: var(--bg-raised);
  border-radius: 0;
  box-shadow: var(--frame-brutal-shadow);
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}

.gallery--speaking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

#speaking.section--editorial .gallery-item {
  position: relative;
  overflow: visible;
  background: #ffffff;
  border: 3px solid #09090b;
  box-shadow:
    10px 10px 0 rgb(48 87 255 / 0.22),
    0 0 0 2px rgb(9 9 11 / 0.08);
}

#speaking.section--editorial .gallery-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -1rem -1rem auto;
  width: 5.5rem;
  height: 5.5rem;
  background:
    linear-gradient(135deg, rgb(255 79 216 / 0.85), rgb(77 244 255 / 0.9));
  clip-path: polygon(0 18%, 100% 0, 82% 100%, 0 78%);
}

#speaking.section--editorial .gallery-item::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -0.8rem auto auto -0.8rem;
  width: 4rem;
  height: 4rem;
  border: 3px solid rgb(48 87 255 / 0.34);
  background: rgb(255 255 255 / 0.72);
}

#speaking.section--editorial .gallery-item img {
  filter: grayscale(1) contrast(1.08);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: auto;
}

#speaking.section--editorial .gallery-item--wide {
  transform: rotate(-1.4deg);
  width: min(100%, 52rem);
  justify-self: start;
}

#speaking.section--editorial .gallery-item--offset {
  transform: translateY(2.5rem) rotate(1.8deg);
  width: min(100%, 30rem);
  justify-self: end;
}

.gallery-item--wide {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .gallery--speaking {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem 2rem;
  }

  .gallery--speaking .gallery-item--wide {
    grid-column: 1 / -1;
  }

  #speaking.section--editorial .gallery-item--wide {
    width: min(100%, 56rem);
  }

  .gallery--speaking .gallery-item--offset {
    transform: translateY(-1.5rem) rotate(1.8deg);
    width: min(100%, 34rem);
    justify-self: end;
  }

  .gallery--speaking .gallery-item--offset:hover {
    transform: translate(-2px, calc(-1.5rem - 2px)) rotate(1.8deg);
  }
}

@media (min-width: 1280px) {
  #speaking.section--editorial .gallery-item--wide {
    width: min(100%, 60rem);
  }

  #speaking.section--editorial .gallery-item--offset {
    width: min(100%, 38rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--frame-brutal-shadow-hover);
  }
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero--editorial .hero-visual,
#awards .section-figure--award,
#teaching .section-figure,
#social .gallery-item {
  position: relative;
}

.hero--editorial .hero-visual::before,
#awards .section-figure--award::before,
#teaching .section-figure::before,
#social .gallery-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -1rem -1rem auto;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, rgb(255 79 216 / 0.9), rgb(77 244 255 / 0.9));
  clip-path: polygon(0 18%, 100% 0, 82% 100%, 0 78%);
}

.hero--editorial .hero-visual::after,
#awards .section-figure--award::after,
#teaching .section-figure::after,
#social .gallery-item::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -0.75rem auto auto -0.75rem;
  width: 3.75rem;
  height: 3.75rem;
  border: 3px solid rgb(77 244 255 / 0.35);
  background: rgb(255 255 255 / 0.06);
}

.hero--editorial .hero-visual {
  box-shadow:
    10px 10px 0 rgb(72 78 200 / 0.65),
    0 0 0 2px rgb(139 147 255 / 0.45);
}

#teaching .section-figure {
  box-shadow:
    10px 10px 0 rgb(255 79 216 / 0.2),
    0 0 0 2px rgb(139 147 255 / 0.25);
}

#social .gallery-item {
  box-shadow:
    10px 10px 0 rgb(77 244 255 / 0.2),
    0 0 0 2px rgb(255 79 216 / 0.18);
}

#teaching .section-figure:first-child {
  transform: rotate(-1.4deg);
}

#teaching .section-figure:last-child {
  transform: rotate(1.5deg);
}

#social .gallery-item:first-child {
  transform: translateY(2rem) rotate(-1.1deg);
}

#social .gallery-item:last-child {
  transform: rotate(1.2deg);
}

.gallery--two .gallery-item img {
  aspect-ratio: 4/3;
}

#social .gallery-item:first-child img {
  transform: scale(1.16);
  transform-origin: 42% center;
}

/* Teaching */
.teach-visuals {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 900px) {
  .teach-visuals {
    padding-top: 2rem;
  }

  .teach-visuals .section-figure:first-child {
    width: 88%;
    margin-left: auto;
  }

  .teach-visuals .section-figure:last-child {
    width: 78%;
    margin-top: -1.5rem;
  }

  #teaching .section-copy {
    padding-top: 4.5rem;
    margin-left: 2.5rem;
  }

  #teaching .section-copy::after {
    content: "TALK";
    right: auto;
    left: 1rem;
    top: 0.4rem;
  }
}

.bullet-list {
  margin: var(--space-sm) 0;
  padding-left: 1.2rem;
  font-weight: 500;
  color: #09090b;
  opacity: 1;
}

.bullet-list li {
  margin-bottom: 0.45rem;
}

.bullet-list li::marker {
  color: var(--accent);
  font-weight: 800;
}

.bullet-list strong {
  color: #09090b;
}

.quote-block {
  max-width: 22rem;
  margin-top: 3.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent-cyan);
  background: rgb(255 255 255 / 0.03);
}

.quote-block p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.social-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: var(--space-lg);
}

#social.section--editorial {
  background:
    radial-gradient(circle at 14% 18%, rgb(255 79 216 / 0.46), transparent 26%),
    radial-gradient(circle at 88% 22%, rgb(77 244 255 / 0.28), transparent 24%),
    linear-gradient(135deg, #2b0c25 0%, #4b1842 42%, #25133e 100%);
}

#social.section--editorial::before {
  border-color: rgb(255 255 255 / 0.08);
}

#social .section-inner {
  display: block;
}

#social .gallery {
  width: 100%;
  max-width: none;
  align-self: auto;
}

.social-head {
  max-width: 40rem;
  position: relative;
}

.social-head .prose {
  max-width: 34rem;
}

#social .section-label {
  color: #ffd1f4;
}

#social .prose,
#social .contact-lead {
  color: rgb(236 236 243 / 0.8);
}

#social .prose strong,
#social #social-heading {
  color: #ffffff;
}

#social .prose strong {
  background: linear-gradient(transparent 58%, rgb(77 244 255 / 0.22) 58%, rgb(255 79 216 / 0.26) 88%, transparent 88%);
}

.impact-card--social {
  justify-self: end;
  transform: rotate(-1deg);
  border: 3px solid #ffffff;
  box-shadow: 12px 12px 0 rgb(255 79 216 / 0.18);
  background: rgb(255 255 255 / 0.94);
  max-width: 24rem;
  padding: 1.5rem 1.55rem;
}

.impact-card--social .impact-card__eyebrow {
  color: #3057ff;
  font-size: 0.82rem;
}

.impact-card--social p:last-child {
  color: #09090b;
  font-size: 1.08rem;
  line-height: 1.24;
  font-family: var(--font-display);
  text-transform: uppercase;
}

@media (min-width: 980px) {
  .social-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  }

  .social-head {
    margin-left: 3rem;
    padding-top: 4rem;
  }

  .social-head::after {
    content: "IMPACT";
    right: auto;
    left: 0;
    top: 0;
  }

  .gallery--social {
    margin-top: 2rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

.gallery--social {
  align-items: start;
}

@media (min-width: 768px) {
  .gallery--social .gallery-item:first-child {
    transform: translateY(2rem) rotate(-1.1deg);
    margin-left: -2.5rem;
  }

  .gallery--social .gallery-item:first-child:hover {
    transform: translate(-2px, calc(2rem - 2px)) rotate(-1.1deg);
  }
}

@media (min-width: 1100px) {
  .gallery--social .gallery-item:first-child {
    margin-left: -4rem;
  }

  .gallery--social .gallery-item:last-child {
    margin-top: 5rem;
  }
}

.contact-inner {
  --contact-shadow-x: 12px;
  max-width: var(--measure);
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  border: 2px solid #09090b;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.95), rgb(248 248 251 / 0.92)),
    #ffffff;
  box-shadow: var(--contact-shadow-x) 12px 0 rgb(48 87 255 / 0.14);
}

.contact-inner > * {
  position: relative;
  left: calc(var(--contact-shadow-x) * -0.5);
}

.contact-inner h2 {
  margin-bottom: var(--space-md);
  color: #09090b;
}

.contact-lead {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: #09090b;
  margin: 0 0 var(--space-lg);
  text-wrap: balance;
}

#contact .section-label {
  color: #3d214f;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.contact-primary {
  margin: 0;
  text-align: center;
}

.contact-link {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: #3057ff;
  text-decoration: none;
  border-bottom: 2px solid rgb(48 87 255 / 0.4);
  padding-bottom: 0.12rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link:hover {
  border-bottom-color: #3057ff;
  opacity: 1;
}

.contact-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.contact-lead a {
  color: #1e2f9c;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

/* Footer */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-raised);
  border-top: var(--border);
  position: relative;
  z-index: 1;
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-footer-copy {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  align-items: center;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.1rem;
}

.footer-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.footer-links a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 540px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 899px) {
  .accent-note {
    position: relative;
    top: auto;
    left: auto;
    width: min(18rem, 100%);
    margin: 0 0 1rem;
  }
}

@media (max-width: 767px) {
  .section--editorial h2,
  #speaking #speaking-heading {
    max-width: 100%;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero--editorial h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
    max-width: 100%;
    line-height: 0.94;
    letter-spacing: -0.03em;
  }

  .hero-title-line--solid {
    transform: none;
  }

  .hero-visual-wrap {
    max-width: min(100%, 18rem);
    margin-top: 1rem;
  }

  #speaking .speaking-intro,
  .social-head {
    margin-left: 0;
    padding-top: 0;
  }

  #speaking #speaking-heading {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
    line-height: 1.02;
    width: min(100%, 10.5ch);
    max-width: 10.5ch;
    margin-top: 0.7rem;
    padding-right: 0.08em;
  }

  #speaking.section--editorial #speaking-heading {
    padding: 0 0.08em 0.1em 0;
  }

  #teaching #teaching-heading {
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
    line-height: 1.08;
    width: 100%;
    max-width: 100%;
    padding: 0.1em 0.12em 0.22em 0;
  }

  #teaching .teach-visuals {
    align-items: center;
    gap: 1.25rem;
  }

  #teaching .section-figure {
    width: min(100%, 22rem);
    max-width: 100%;
    margin-inline: auto;
  }

  #teaching .section-figure:first-child,
  #teaching .section-figure:last-child {
    margin-top: 0;
    margin-left: auto;
    transform: rotate(0);
  }

  #social #social-heading {
    font-size: clamp(1.85rem, 8.8vw, 2.5rem);
    line-height: 1.02;
    width: 100%;
    max-width: 100%;
  }

  .impact-card--social {
    justify-self: center;
    margin-inline: auto;
    max-width: min(100%, 22rem);
  }

  #contact .contact-inner h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.45rem);
    max-width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .impact-card,
  .impact-card--social {
    transform: none;
  }

  .gallery-item figcaption {
    font-size: 0.72rem;
  }

  .contact-inner {
    --contact-shadow-x: 8px;
    padding: 1.25rem;
    box-shadow: 8px 8px 0 rgb(139 147 255 / 0.12);
  }
}
