/* Threshold Training CE — design system */

:root {
  color-scheme: dark;

  --void: #0c0a09;
  --surface: #12100e;
  --surface-2: #1a1714;
  --surface-glass: rgba(18, 16, 14, 0.82);
  --border: rgba(255, 248, 240, 0.07);
  --border-bright: rgba(255, 248, 240, 0.12);

  --text: #f5f0e8;
  --text-soft: #c4bdb3;
  --text-muted: #8a8278;

  --gold: #c4a035;
  --gold-soft: rgba(196, 160, 53, 0.12);
  --gold-glow: rgba(196, 160, 53, 0.22);
  --ember: #8b6914;
  --cyan: #6ec4e8;
  --violet: #9b8cff;
  --violet-soft: rgba(140, 120, 180, 0.18);

  --font-display: "Instrument Serif", Georgia, serif;
  --font-ui: "DM Sans", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 48px rgba(196, 160, 53, 0.08);

  --header-h: 4rem;
  --container: 68rem;
  --narrow: 40rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--void);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, var(--narrow));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--void);
  font-weight: 600;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 18s var(--ease-out) infinite alternate;
}

.ambient__orb--1 {
  width: 50vw;
  height: 50vw;
  top: -20%;
  right: -15%;
  background: radial-gradient(circle, rgba(196, 160, 53, 0.12), transparent 68%);
}

.ambient__orb--2 {
  width: 44vw;
  height: 44vw;
  bottom: -15%;
  left: -12%;
  background: radial-gradient(circle, rgba(140, 120, 180, 0.1), transparent 70%);
  animation-delay: -6s;
}

.ambient__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(196, 160, 53, 0.04), transparent 55%);
  opacity: 0.9;
}

.ambient__grid {
  display: none;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-3%, 4%) scale(1.06); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(1.2);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand__mark {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--gold) 100%);
  box-shadow: 0 0 24px rgba(110, 196, 232, 0.2), 0 0 12px rgba(155, 140, 255, 0.15);
}

.brand__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand__sub { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: 0.35rem;
  background: var(--gold-soft) !important;
  border: 1px solid rgba(196, 160, 53, 0.28) !important;
  color: var(--text) !important;
}

.nav-cta:hover {
  border-color: rgba(196, 160, 53, 0.5) !important;
  box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero--centered .hero__inner {
  display: block;
  text-align: center;
  max-width: var(--narrow);
  margin-inline: auto;
}

.hero__sigil {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: rgba(196, 160, 53, 0.35);
  margin: 0 0 1.5rem;
  letter-spacing: 0.5em;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero__badge-dot { display: none; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero--centered h1 {
  max-width: none;
  margin-inline: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--text-soft);
  max-width: 34rem;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.hero__whisper {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 auto 0;
  max-width: 28rem;
  line-height: 1.5;
  opacity: 0.85;
}

.hero__sub { display: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
  justify-content: center;
}

.hero-panel { display: none; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.button--primary {
  background: linear-gradient(180deg, #d4b04a, var(--gold));
  color: var(--void);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(196, 160, 53, 0.28);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}

.button--ghost:hover {
  background: rgba(255, 248, 240, 0.03);
  border-color: rgba(196, 160, 53, 0.3);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section--tight { padding-top: 0; }

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section--soft {
  background: rgba(255, 248, 240, 0.015);
  border-block: 1px solid var(--border);
}

.section-header--center {
  text-align: center;
  max-width: var(--narrow);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-foot {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.section-foot a {
  color: var(--gold);
  text-decoration: none;
}

.section-foot a:hover { text-decoration: underline; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.bento-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.bento-card--span-4 { grid-column: span 4; }
.bento-card--span-6 { grid-column: span 6; }
.bento-card--span-8 { grid-column: span 8; }
.bento-card--span-12 { grid-column: span 12; }

.bento-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.bento-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Audience chips */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.audience-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Offering cards */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.offering-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.offering-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--offering-accent, var(--gold));
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.offering-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
}

.chip--lens {
  background: var(--violet-soft);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.offering-card--quiet {
  background: rgba(255, 248, 240, 0.02);
}

.offering-card--quiet:hover {
  transform: translateY(-2px);
}

.offering-card__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
}

.offering-card__link:hover { text-decoration: underline; }

/* CE status */
.ce-status {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 160, 53, 0.22);
  background: var(--gold-soft);
}

.ce-status[data-compact] {
  padding: 0.85rem 1.1rem;
}

.ce-status__mark {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.ce-status--pending .ce-status__mark {
  animation: pulse-gold 2.5s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.ce-status__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}

.ce-status__headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.ce-status__detail {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.ce-status[data-compact] .ce-status__detail { display: none; }

/* Start card */
.start-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(196, 160, 53, 0.06), transparent);
  text-align: center;
  max-width: var(--narrow);
  margin-inline: auto;
}

.start-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.start-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.65rem;
}

.start-card p {
  color: var(--text-soft);
  margin: 0 0 1.25rem;
  max-width: 28rem;
  margin-inline: auto;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(196, 160, 53, 0.35);
}

.prose--center { text-align: center; }

.prose--center a { color: var(--gold); }

.page-hero--center {
  text-align: center;
}

.page-hero--center .container { max-width: var(--narrow); }

.page-hero--center p { margin-inline: auto; }

.offering-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.offering-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.offering-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offering-card__topics li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

/* Prose & page shells */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  color: var(--text-soft);
  max-width: 42rem;
  font-size: 1.05rem;
}

.prose { color: var(--text-soft); }
.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.35rem; }
.prose strong { color: var(--text); font-weight: 600; }

.card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 1.25rem;
}

.card h2, .card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-top: 0;
}

.notice { display: none; }

.cta-band--warm {
  background: linear-gradient(160deg, rgba(196, 160, 53, 0.06), rgba(140, 120, 180, 0.04));
  border-color: rgba(196, 160, 53, 0.15);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cta-band {
  margin: 2rem 0;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--text-soft);
}

/* Footer */
.site-footer {
  margin-top: 5rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid { display: none; }

.footer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.footer-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 28rem;
}

.footer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.88rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom p { margin: 0 0 0.35rem; }

.chip--accent {
  background: var(--gold-soft);
  color: var(--gold);
}

/* Responsive */
.offering-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.button--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.chip--muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.ext-icon {
  font-size: 0.85em;
  opacity: 0.85;
}

.learn-course-card.is-highlighted {
  border-color: rgba(110, 196, 232, 0.55);
  box-shadow: 0 0 0 1px rgba(110, 196, 232, 0.25), var(--shadow-soft);
}

/* Learn hub bridge */
.learn-bridge {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.learn-bridge__panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.learn-bridge__panel--featured {
  background:
    linear-gradient(145deg, rgba(110, 196, 232, 0.1), rgba(155, 140, 255, 0.06)),
    var(--surface-2);
  border-color: rgba(110, 196, 232, 0.22);
}

.learn-bridge__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.65rem;
}

.learn-bridge__panel h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.learn-bridge__desc {
  margin: 0 0 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.learn-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.learn-bridge__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.learn-bridge__links a {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9rem;
}

.learn-bridge__links a:hover { text-decoration: underline; }

.learn-open-banner {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(110, 196, 232, 0.35);
  background: rgba(110, 196, 232, 0.08);
}

.learn-open-banner p { margin: 0; flex: 1; min-width: 12rem; }

.learn-open-banner__dismiss {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.learn-catalog {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.learn-catalog__status {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .learn-bridge { grid-template-columns: 1fr; }
}

  .hero-panel { order: -1; }
  .bento-card--span-4,
  .bento-card--span-6,
  .bento-card--span-8 { grid-column: span 12; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a { padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
