/* ============================================================
   Tatiana Popa — "Blue Hour Atlas"
   ink #0B1626 · atlas #16283F · paper #F3EEE4
   gold #D9A93F · sky #9DB8D4 · madder #A63D2F
   ============================================================ */

:root {
  --ink: #0B1626;
  --ink-2: #10203a;
  --atlas: #16283F;
  --paper: #F3EEE4;
  --paper-2: #EAE3D3;
  --gold: #D9A93F;
  --gold-soft: #E8C979;
  --sky: #9DB8D4;
  --sky-dim: #6d87a5;
  --madder: #A63D2F;
  --display: "Fraunces", Georgia, serif;
  --body: "Outfit", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
}

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

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

body {
  font-family: var(--body);
  font-weight: 340;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink);
  padding: 0.6rem 1rem; font-family: var(--mono); text-decoration: none;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- utilities ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section--paper .eyebrow { color: var(--madder); }

.mono-small {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ghost { background: transparent; color: var(--paper); border: 1px solid rgba(157, 184, 212, 0.45); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn--dark:hover { background: var(--atlas); }

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.section--paper a:focus-visible { outline-color: var(--madder); }

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(11, 22, 38, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(157, 184, 212, 0.14);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.nav__mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.35s ease;
}
.nav.is-scrolled .nav__mark { color: var(--paper); }
.nav__mark svg { width: 26px; height: 26px; color: var(--gold); transition: transform 0.6s ease; }
.nav__mark:hover svg { transform: rotate(180deg); }

.nav__links { display: flex; gap: clamp(0.8rem, 2vw, 1.6rem); }
.nav__links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #4A5C7C;
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--madder); }
.nav.is-scrolled .nav__links a { color: var(--sky); }
.nav.is-scrolled .nav__links a:hover { color: var(--gold); }

.nav__cta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-soft); }

.nav__right { display: flex; align-items: center; gap: clamp(0.7rem, 1.6vw, 1.3rem); }
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.nav__lang a {
  text-decoration: none;
  color: #4A5C7C;
  padding: 0.2rem 0.15rem;
  transition: color 0.25s ease;
}
.nav__lang a:hover { color: var(--madder); }
.nav__lang a[aria-current] { color: var(--madder); font-weight: 500; }
.nav__lang span { color: rgba(11, 22, 38, 0.3); }
.nav.is-scrolled .nav__lang a { color: var(--sky); }
.nav.is-scrolled .nav__lang a:hover { color: var(--gold); }
.nav.is-scrolled .nav__lang a[aria-current] { color: var(--gold); }
.nav.is-scrolled .nav__lang span { color: rgba(157, 184, 212, 0.4); }

/* ---------- mobile menu ---------- */

.nav__burger {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease, top 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav.is-scrolled .nav__burger span { background: var(--paper); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
.nav__burger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 49;
  padding: 4.6rem clamp(1.2rem, 4vw, 3rem) 1.4rem;
  display: none;
  flex-direction: column;
  background: rgba(11, 22, 38, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__mobile.is-open { transform: none; opacity: 1; }
.nav__mobile a {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(157, 184, 212, 0.14);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.nav__mobile a:hover { color: var(--gold); padding-left: 0.4rem; }
.nav__mobile a:last-child { border-bottom: none; color: var(--gold); }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__mark svg { display: none; }
  .nav__mobile:not([hidden]) { display: flex; }
  .nav__cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav__mobile, .nav__burger span { transition: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* the library photograph is the backdrop; a warm veil keeps the right side readable */
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.72) 0%, rgba(250, 247, 240, 0) 20%),
    linear-gradient(270deg,
      rgba(250, 247, 240, 0.97) 0%,
      rgba(250, 247, 240, 0.92) 30%,
      rgba(250, 247, 240, 0.6) 52%,
      rgba(250, 247, 240, 0.1) 74%,
      rgba(250, 247, 240, 0) 100%),
    url("../assets/hero-bg.webp") left -9vw top 24% / 106% auto no-repeat,
    #F5EFE3;
}

.hero .eyebrow { color: var(--madder); }
.hero .hero__title { color: var(--ink); }
.hero .hero__line--italic { color: var(--ink); font-style: normal; }
.hero .hero__role { color: #5D6B85; }
.hero .hero__lede { color: #43506A; }
.hero .btn--ghost {
  color: var(--ink);
  border-color: rgba(11, 22, 38, 0.35);
}
.hero .btn--ghost:hover { border-color: #A94F80; color: #A94F80; }
.hero .hero__scroll { color: #8B94A8; }
.hero .hero__scroll-line { background: rgba(11, 22, 38, 0.25); }

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 7rem clamp(1.2rem, 4vw, 3rem) 5rem;
  max-width: var(--max);
}
.hero__text {
  max-width: 33rem;
  margin-left: auto;
}

/* --- hero photo overlays --- */

.hero__badge {
  position: absolute;
  z-index: 2;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: 4.8rem;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(11, 22, 38, 0.14);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  color: #43506A;
  animation: fadeUp 1s 0.9s ease both;
}

.hero__coords { animation: fadeUp 0.9s 0.1s ease both; }

.hero__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-weight: 380;
  font-size: clamp(3.6rem, 11.5vw, 8.6rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0.4rem 0 1.6rem;
}
.hero__line { display: block; animation: fadeUp 0.9s 0.25s ease both; }
.hero__line--italic {
  font-style: italic;
  color: var(--gold);
  animation-delay: 0.4s;
}

.hero__role {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.9s 0.55s ease both;
}

.hero__lede {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 320;
  color: #cfd9e6;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.9s 0.7s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: fadeUp 0.9s 0.85s ease both;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--sky-dim);
  text-decoration: none;
}
.hero__scroll-line {
  width: 52px; height: 1px;
  background: var(--sky-dim);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollHint 2.4s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__coords, .hero__line, .hero__role, .hero__lede, .hero__actions, .hero__badge { animation: none; }
  .hero__scroll-line::after { animation: none; transform: none; }
}

@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(250, 247, 240, 0.55) 0%, rgba(250, 247, 240, 0.1) 12%, rgba(250, 247, 240, 0.14) 30%, rgba(250, 247, 240, 0.9) 46%, rgba(250, 247, 240, 0.99) 58%, #FAF7F0 100%),
      url("../assets/hero-bg.webp") top -1rem center / 175% auto no-repeat,
      #F5EFE3;
    min-height: auto;
    padding-bottom: 4.5rem;
  }
  .hero__inner { padding-top: 44vh; }
  .hero__text { margin-left: 0; }
  .hero__badge { display: none; }
  .hero__scroll { display: none; }
}

/* ---------- stats ---------- */

.stats {
  border-top: 1px solid rgba(157, 184, 212, 0.14);
  border-bottom: 1px solid rgba(157, 184, 212, 0.14);
  background: var(--ink-2);
}
.stats__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.4rem 1.4rem 2.4rem 0;
  border-left: 1px solid rgba(157, 184, 212, 0.14);
  padding-left: 1.4rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 420;
  color: var(--gold);
  line-height: 1.1;
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--sky);
  max-width: 16rem;
}
@media (max-width: 860px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: none; padding: 1.4rem 0; border-top: 1px solid rgba(157,184,212,0.14); padding-left: 0; }
  .stat:first-child { border-top: none; }
}

/* ---------- organisations marquee ---------- */

.orgs {
  background: #FAF7F0;
  border-bottom: 1px solid rgba(11, 22, 38, 0.1);
  padding: 2.2rem 0 2.6rem;
}
.orgs__label {
  text-align: center;
  color: rgba(11, 22, 38, 0.72);
  margin-bottom: 1.8rem;
}
.orgs__marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.orgs__track {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(2.6rem, 6vw, 4.5rem);
  padding-right: clamp(2.6rem, 6vw, 4.5rem);
  flex-shrink: 0;
  min-width: max-content;
  animation: orgsMarquee 46s linear infinite;
}
.orgs__marquee:hover .orgs__track { animation-play-state: paused; }
@keyframes orgsMarquee {
  to { transform: translateX(-100%); }
}
.orgs__track img {
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.orgs__track li:hover img { transform: translateY(-2px); }
.orgs__square img { height: 42px; }

@media (prefers-reduced-motion: reduce) {
  .orgs__track { animation: none; flex-wrap: wrap; justify-content: center; min-width: 0; }
  .orgs__track[aria-hidden="true"] { display: none; }
  .orgs__marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- sections ---------- */

.section { position: relative; }
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 3rem);
}

.section--paper {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(217, 169, 63, 0.14), transparent 60%),
    var(--paper);
  color: var(--ink);
}
.section--dark {
  background:
    radial-gradient(1000px 600px at 10% 20%, rgba(33, 56, 92, 0.5), transparent 65%),
    var(--ink);
  color: var(--paper);
}

.section__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.section__title em {
  font-style: italic;
  color: var(--madder);
}
.section--dark .section__title em { color: var(--gold); }

.section__lede {
  max-width: 38rem;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.section__lede a { color: var(--madder); text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- about ---------- */

.section__inner--split {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about__portrait { position: sticky; top: 6.5rem; }
.about__portrait figure {
  position: relative;
}
.about__portrait img {
  width: 100%;
  height: auto;
  filter: saturate(0.96);
  border-radius: 14px;
  border: 1px solid rgba(11, 22, 38, 0.16);
  box-shadow: 0 24px 60px -24px rgba(11, 22, 38, 0.45);
}
.about__portrait figcaption {
  text-align: center;
  padding-top: 0.9rem;
  color: rgba(11, 22, 38, 0.6);
}
.about__badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.2rem auto 0;
  width: fit-content;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(11, 22, 38, 0.2);
  border-radius: 999px;
  background: var(--paper-2);
}
.about__badge-level {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--madder);
}
.about__badge-text {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--atlas);
}

.about__body p { margin-bottom: 1.1rem; max-width: 40rem; }
.about__body strong { font-weight: 560; }

.about__facts {
  list-style: none;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(11, 22, 38, 0.14);
}
.about__facts li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(11, 22, 38, 0.14);
  font-size: 0.95rem;
}
.about__facts .mono-small { color: var(--madder); padding-top: 0.15rem; }

@media (max-width: 860px) {
  .section__inner--split { grid-template-columns: 1fr; }
  .about__portrait { position: static; max-width: 320px; }
  .about__facts li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- quote ---------- */

.quote {
  background: var(--atlas);
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(217, 169, 63, 0.12), transparent 60%),
    var(--atlas);
}
.quote .section__inner { padding-top: 5rem; padding-bottom: 5rem; }
.quote__block p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  max-width: 52rem;
  color: var(--paper);
}
.quote__block footer { margin-top: 1.6rem; display: grid; gap: 0.4rem; }
.quote__orig {
  font-size: 0.92rem;
  color: var(--sky);
  font-style: italic;
}
.quote__block cite { color: var(--gold); font-style: normal; }

/* ---------- journey / route ---------- */

.route {
  list-style: none;
  margin-top: 2.5rem;
  position: relative;
  padding-left: 1.6rem;
}
.route::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  border-left: 1px dashed rgba(217, 169, 63, 0.28);
}
/* the golden line that draws itself as you scroll (height driven from JS) */
.route::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 8px;
  height: calc(var(--route-progress, 0) * (100% - 16px));
  border-left: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(217, 169, 63, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .route::after { height: calc(100% - 16px); }
}
.route__stop {
  position: relative;
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.6rem;
  padding: 0 0 2.6rem;
}
.route__stop::before {
  content: "";
  position: absolute;
  left: calc(-1.6rem + 0.5px);
  top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(217, 169, 63, 0.45);
  transform: translateX(-50%);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.route__stop.is-passed::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(217, 169, 63, 0.6);
}
.route__stop .route__year { opacity: 0.55; transition: opacity 0.4s ease; }
.route__stop.is-passed .route__year { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .route__stop::before { background: var(--gold); border-color: var(--gold); }
  .route__stop .route__year { opacity: 1; }
}
.route__year { color: var(--gold); padding-top: 0.25rem; }
.route__stop h3 {
  font-family: var(--display);
  font-weight: 460;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.route__org {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.6rem;
}
.route__stop p:not(.route__org) { color: #c3cfdd; max-width: 40rem; font-size: 0.97rem; }

.route__education {
  margin-top: 1.5rem;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(157, 184, 212, 0.2);
  border-radius: 14px;
  background: rgba(22, 40, 63, 0.55);
}
.route__edu-title { color: var(--gold); display: block; margin-bottom: 0.9rem; }
.route__education ul { list-style: none; display: grid; gap: 0.55rem; }
.route__education li { color: #c3cfdd; font-size: 0.97rem; }
.route__education strong { color: var(--paper); font-weight: 520; }

@media (max-width: 640px) {
  .route__stop { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---------- press ---------- */

.press__group {
  color: var(--madder);
  margin: 3rem 0 0.9rem;
}
.press__group:first-of-type { margin-top: 0.5rem; }

.press { list-style: none; border-top: 1px solid rgba(11, 22, 38, 0.16); }

.press__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.press__brand img {
  height: 22px;
  width: auto;
  max-width: 74px;
  object-fit: contain;
  flex-shrink: 0;
}
.press__row a {
  display: grid;
  grid-template-columns: 15rem 1fr auto;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.15rem 0.4rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 22, 38, 0.16);
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.press__row a:hover { background: rgba(217, 169, 63, 0.13); padding-left: 0.9rem; }
.press__outlet { color: var(--madder); }
.press__title {
  font-family: var(--display);
  font-weight: 440;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.3;
  color: var(--ink);
}
.press__arrow {
  font-size: 1.1rem;
  color: var(--madder);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.press__row a:hover .press__arrow { opacity: 1; transform: none; }
.press__more { margin-top: 2.4rem; }

/* ---------- talks extras ---------- */

.talk__watch {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 169, 63, 0.4);
  padding-bottom: 0.15rem;
  transition: border-color 0.25s ease;
}
.talk__watch:hover { border-color: var(--gold); }

.talks__more {
  margin-top: 2.6rem;
  padding: 1.7rem 2rem;
  border: 1px solid rgba(157, 184, 212, 0.2);
  border-radius: 14px;
  background: rgba(22, 40, 63, 0.45);
}
.talks__more-title { color: var(--gold); display: block; margin-bottom: 0.9rem; }
.talks__more ul { list-style: none; display: grid; gap: 0.55rem; }
.talks__more a {
  color: #c3cfdd;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(157, 184, 212, 0.25);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.talks__more a:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 720px) {
  .press__row a { grid-template-columns: 1fr; gap: 0.25rem; }
  .press__arrow { display: none; }
}

/* ---------- talks ---------- */

.talks {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.talk {
  border: 1px solid rgba(157, 184, 212, 0.2);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  background: rgba(22, 40, 63, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.talk:hover { transform: translateY(-4px); border-color: rgba(217, 169, 63, 0.55); }
.talk--feature {
  grid-column: span 3;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(217, 169, 63, 0.16), transparent 60%),
    rgba(22, 40, 63, 0.65);
}
.talk__where { color: var(--gold); display: block; margin-bottom: 0.7rem; }
.talk h3 {
  font-family: var(--display);
  font-weight: 460;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.talk--feature h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 30rem; }
.talk p:not(.talk__where) { color: #c3cfdd; font-size: 0.95rem; max-width: 46rem; }

@media (max-width: 900px) {
  .talks { grid-template-columns: 1fr 1fr; }
  .talk--feature { grid-column: span 2; }
}
@media (max-width: 580px) {
  .talks { grid-template-columns: 1fr; }
  .talk--feature { grid-column: span 1; }
}

/* ---------- recognition ---------- */

.awards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11, 22, 38, 0.16);
  border-left: 1px solid rgba(11, 22, 38, 0.16);
}
.award {
  padding: 1.9rem 1.8rem;
  border-right: 1px solid rgba(11, 22, 38, 0.16);
  border-bottom: 1px solid rgba(11, 22, 38, 0.16);
}
.award__year { color: var(--madder); display: block; margin-bottom: 0.7rem; }
.award h3 {
  font-family: var(--display);
  font-weight: 460;
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}
.award p { font-size: 0.95rem; color: #3c4a5e; max-width: 30rem; }

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

.digcomp { margin-top: 3.2rem; }
.digcomp__title { color: var(--madder); display: block; margin-bottom: 1.1rem; }
.digcomp__bars { list-style: none; display: grid; gap: 0.7rem; max-width: 44rem; }
.digcomp__bars li {
  display: grid;
  grid-template-columns: 15rem 1fr auto;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}
.digcomp__bars b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--atlas);
  white-space: nowrap;
}
.digcomp__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 22, 38, 0.12);
  overflow: hidden;
}
.digcomp__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--madder));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
}
.digcomp.is-visible .digcomp__bar i { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .digcomp__bar i { transform: none; transition: none; }
}
@media (max-width: 640px) {
  .digcomp__bars li { grid-template-columns: 1fr auto; }
  .digcomp__bars li span:first-child { grid-column: 1 / -1; }
}

/* ---------- contact ---------- */

.contact {
  background:
    radial-gradient(1100px 600px at 50% 0%, rgba(33, 56, 92, 0.6), transparent 70%),
    var(--ink);
  text-align: center;
}
.contact .section__inner { padding-bottom: 3rem; }
.contact .eyebrow { margin-bottom: 1.4rem; }
.contact__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-weight: 380;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.contact__title em { font-style: italic; color: var(--gold); }
.contact__lede { color: var(--sky); max-width: 30rem; margin: 0 auto 2.4rem; }
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}
.contact__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}
.contact__links a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid rgba(157, 184, 212, 0.35);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.contact__links a:hover { color: var(--gold); border-color: var(--gold); }

.contact__links a.social {
  border-bottom: none;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
}
.contact__links .social svg {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
}
.contact__links .social:hover svg { transform: translateY(-2px); }
.contact__links .social--li:hover { color: #0A66C2; }
.contact__links .social--fb:hover { color: #1877F2; }
.contact__links .social--ig:hover svg path { fill: url(#ig-grad); }

.footer {
  border-top: 1px solid rgba(157, 184, 212, 0.14);
  padding: 1.6rem clamp(1.2rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--sky-dim);
}
