:root {
  --ivory: #f4f0e7;
  --paper: #fffdf8;
  --ink: #141823;
  --blue: #1239a6;
  --blue-deep: #09236f;
  --blue-soft: #dce5ff;
  --coral: #ed6a5a;
  --lime: #c9df65;
  --line: rgba(20, 24, 35, 0.17);
  --muted: #636773;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 92rem;
  --header: 5.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem clamp(1rem, 3vw, 3.5rem);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, min-height 0.35s;
}

.site-header.is-scrolled {
  min-height: 4.5rem;
  background: rgba(244, 240, 231, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-seal {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(18, 57, 166, 0.18);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a,
.site-footer nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.header-link:hover {
  background: var(--ink);
  color: white;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(48rem, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.85fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 1.5rem clamp(2rem, 6vw, 7rem);
  padding: calc(var(--header) + 4rem) clamp(1.25rem, 5vw, 6rem) 2rem;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(18, 57, 166, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 57, 166, 0.07) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, black 60%, transparent);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(25rem, 47vw, 48rem);
  aspect-ratio: 1;
  right: -7%;
  top: 5%;
  border-radius: 50%;
  background: var(--blue-soft);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 13rem;
  aspect-ratio: 1;
  left: -5rem;
  bottom: 5rem;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.65;
}

.hero-index,
.section-number {
  position: absolute;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(9rem, 22vw, 24rem);
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(18, 57, 166, 0.12);
  pointer-events: none;
  user-select: none;
}

.hero-index {
  left: -1rem;
  bottom: 2rem;
}

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

.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9.6vw, 9.75rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.76;
}

.hero h1 em,
.section h2 em,
.manifesto h2 em {
  color: var(--blue);
  font-weight: 400;
}

.hero-intro {
  max-width: 41rem;
  margin: 2.25rem 0 2rem;
  padding-left: clamp(1rem, 4vw, 5rem);
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: clamp(1rem, 4vw, 5rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--blue);
  color: white;
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: white;
}

.button-light {
  background: white;
  color: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 31rem);
  margin: 0 auto;
}

.portrait-frame {
  position: relative;
  clip-path: polygon(7% 0, 100% 0, 100% 89%, 87% 100%, 0 100%, 0 10%);
  background: var(--coral);
  padding: 0.75rem;
  transform: rotate(1.5deg);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04);
  clip-path: inherit;
}

.portrait-orbit {
  position: absolute;
  z-index: -1;
  inset: -2.5rem;
  border: 1px solid rgba(18, 57, 166, 0.28);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.portrait-orbit::before {
  content: "";
  position: absolute;
  width: 1rem;
  aspect-ratio: 1;
  left: 15%;
  top: 4%;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.hero-portrait figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.hero-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 62rem;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  padding: 1rem 1.4rem;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts strong {
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.ticker {
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--blue);
  color: white;
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  white-space: nowrap;
}

.ticker i {
  color: var(--lime);
  font-size: 0.65rem;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 10rem);
}

.section-number {
  top: 5rem;
  right: 0;
  font-size: clamp(8rem, 17vw, 17rem);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 67rem;
}

.section h2,
.manifesto h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.8fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.profile-quote {
  position: relative;
  margin: 0;
  padding-top: 4rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  line-height: 1.18;
}

.profile-quote p {
  margin: 0;
}

.quote-mark {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  color: var(--coral);
  font-size: 8rem;
  line-height: 1;
}

.profile-copy {
  padding-top: 0.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.profile-copy p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.15em;
}

.profile-data {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.profile-data div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.profile-data dt {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.profile-data dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.journey {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 2fr);
  background: var(--ink);
  color: white;
  padding-inline: clamp(1.25rem, 5vw, 6rem);
}

.journey-title {
  position: sticky;
  top: 8rem;
  align-self: start;
  padding-right: clamp(1rem, 4vw, 5rem);
}

.journey-title h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.journey-title h2 em {
  color: var(--lime);
}

.journey-title > p:last-child {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.6);
}

.journey .kicker {
  color: var(--coral);
}

.journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-card {
  position: relative;
  min-height: 20rem;
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  align-content: center;
  gap: 0.75rem 2rem;
  padding: 3rem clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: background 0.35s, color 0.35s;
}

.journey-card:hover,
.journey-card-current {
  background: var(--blue);
}

.journey-card::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: -0.55rem;
  top: 50%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.journey-year,
.journey-icon {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-icon {
  justify-self: end;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.journey-card h3 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 1;
}

.journey-card p {
  align-self: end;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.journey-step {
  position: absolute;
  right: -0.5rem;
  bottom: -2rem;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 1;
}

.agenda {
  min-height: 65rem;
}

.agenda-heading {
  max-width: 54rem;
}

.agenda-wheel {
  position: relative;
  width: min(100%, 75rem);
  min-height: 48rem;
  margin: 3rem auto 0;
}

.agenda-wheel::before,
.agenda-wheel::after {
  content: "";
  position: absolute;
  inset: 10% 25%;
  border: 1px solid rgba(18, 57, 166, 0.25);
  border-radius: 50%;
}

.agenda-wheel::after {
  inset: 18% 31%;
  border-style: dashed;
  animation: orbit 30s linear infinite reverse;
}

.agenda-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 15rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 2rem 5rem rgba(18, 57, 166, 0.25);
}

.agenda-center span,
.agenda-center small {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-center strong {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
}

.agenda-item {
  position: absolute;
  z-index: 3;
  width: min(22rem, 35%);
  padding: 1.5rem;
  border-top: 3px solid var(--coral);
  background: var(--paper);
  box-shadow: 0 1.5rem 4rem rgba(20, 24, 35, 0.08);
}

.agenda-item span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
}

.agenda-item h3 {
  margin: 0.6rem 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 400;
}

.agenda-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.agenda-item-1 { left: 2%; top: 5%; }
.agenda-item-2 { right: 1%; top: 12%; }
.agenda-item-3 { left: 4%; bottom: 3%; }
.agenda-item-4 { right: 2%; bottom: 7%; }

.speeches {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding-inline: clamp(1.25rem, 5vw, 6rem);
  background: var(--blue-soft);
}

.speeches-intro {
  align-self: start;
}

.speeches-intro h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.speeches-intro > p:not(.kicker) {
  color: var(--muted);
}

.speech-list {
  border-top: 2px solid var(--ink);
}

.speech-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 0.5rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 0.3s var(--ease), background 0.3s;
}

.speech-row:hover {
  padding-inline: 1.25rem;
  background: rgba(255, 255, 255, 0.58);
}

.speech-row time,
.speech-row span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.speech-row h3 {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.speech-row b {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background 0.25s, color 0.25s;
}

.speech-row:hover b {
  background: var(--blue);
  color: white;
}

.manifesto {
  position: relative;
  min-height: 42rem;
  display: grid;
  place-content: center;
  padding: 5rem 1.25rem;
  overflow: hidden;
  background: var(--blue);
  color: white;
  text-align: center;
}

.manifesto-lines {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at center, transparent 0 3rem, rgba(255,255,255,.08) 3.05rem 3.12rem);
}

.manifesto p,
.manifesto h2,
.manifesto a {
  position: relative;
  z-index: 1;
}

.manifesto p {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: 70rem;
  margin-bottom: 2.5rem;
}

.manifesto h2 em {
  color: var(--lime);
}

.manifesto .button {
  justify-self: center;
}

/* Social */
.social {
  width: min(100% - 2.5rem, var(--max));
}

.social-intro {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.social-intro h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}

.social-intro > p:not(.kicker) {
  color: var(--muted);
}

.social-handles {
  list-style: none;
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.social-handles a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 5.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.social-handles a:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0.55rem 0.55rem 0 var(--blue-soft);
}

.social-icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--blue);
}

.social-handles a:hover .social-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.social-meta {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.social-label {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-handles strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-arrow {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.85rem;
}

.social-feed {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
  background: var(--blue-soft);
}

.social-feed-copy h3 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.social-feed-copy > p:not(.kicker) {
  max-width: 28rem;
  color: var(--muted);
}

.social-feed-copy .button {
  margin-top: 1.25rem;
}

.x-embed-wrap {
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.x-timeline-frame {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #fff;
}

.x-embed-fallback {
  margin: 0;
  padding: 0.85rem 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.x-embed-fallback a {
  color: var(--blue);
}

.contact-social {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.65rem;
}

.contact-social a {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.contact-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-self: end;
}

.footer-social a {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-copy {
  align-self: start;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.contact-copy > p:not(.kicker) {
  max-width: 33rem;
  color: var(--muted);
}

.contact-email {
  display: block;
  margin: 2rem 0 1.2rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 1rem 1rem 0 var(--blue-soft);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 0;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b52222;
}

.field-error {
  min-height: 1rem;
  color: #b52222;
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.82rem;
}

.form-status.is-success { color: #146b35; }
.form-status.is-error { color: #b52222; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto auto;
  align-items: end;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer > span {
  font-size: 0.75rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-link {
    display: none;
  }

  .site-nav {
    justify-self: end;
  }

  .profile-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .profile-data {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .profile-data div {
    padding: 1rem;
    border-right: 1px solid var(--line);
  }

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

  .journey-title {
    position: relative;
    top: auto;
    margin-bottom: 3rem;
  }

  .agenda-wheel {
    min-height: 43rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header: 4.6rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-content: center;
    gap: 0.4rem;
    border: 1px solid var(--ink);
    background: transparent;
  }

  .menu-toggle span {
    width: 1.2rem;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s;
  }

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

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

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: calc(var(--header) + 3rem) 1.25rem 2rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero .kicker {
    order: 1;
  }

  .hero h1 {
    order: 2;
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .hero-portrait {
    order: 3;
    width: min(88%, 24rem);
    margin-top: 1.5rem;
  }

  .hero-intro {
    order: 4;
    margin: 1rem 0;
    padding-left: 0;
  }

  .hero-actions {
    order: 5;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 0;
  }

  .hero-facts {
    order: 6;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: min(100% - 2rem, var(--max));
  }

  .profile-layout,
  .speeches,
  .social-feed,
  .contact {
    grid-template-columns: 1fr;
  }

  .social-handles {
    grid-template-columns: 1fr 1fr;
  }

  .profile-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .profile-data div:nth-child(even) {
    border-right: 0;
  }

  .journey {
    width: 100%;
    padding-inline: 1rem;
  }

  .journey-card {
    min-height: 18rem;
    grid-template-columns: 1fr;
    padding: 2.25rem 1.5rem;
  }

  .journey-icon {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
  }

  .journey-card p {
    max-width: 30rem;
  }

  .agenda {
    min-height: auto;
  }

  .agenda-wheel {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .agenda-wheel::before,
  .agenda-wheel::after {
    display: none;
  }

  .agenda-center {
    position: relative;
    top: auto;
    left: auto;
    width: 11rem;
    margin: 1rem auto;
    transform: none;
  }

  .agenda-item {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .speeches {
    width: 100%;
    padding-inline: 1rem;
  }

  .speech-row {
    grid-template-columns: 1fr auto;
  }

  .speech-row time {
    grid-column: 1 / -1;
  }

  .contact-form {
    grid-template-columns: 1fr;
    box-shadow: 0.6rem 0.6rem 0 var(--blue-soft);
  }

  .field-wide {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-social {
    justify-self: start;
  }
}

@media (max-width: 479px) {
  .brand-copy strong {
    font-size: 0.8rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero-portrait {
    width: 95%;
  }

  .profile-data {
    grid-template-columns: 1fr;
  }

  .profile-data div {
    border-right: 0;
  }

  .social-handles {
    grid-template-columns: 1fr;
  }

  .speech-row {
    gap: 0.75rem;
  }

  .speech-row b {
    width: 2.35rem;
    height: 2.35rem;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
