:root {
  --ink: #1d1d1a;
  --ink-soft: #54544e;
  --surface: #f4f4f3;
  --surface-alt: #e9eae7;
  --white: #ffffff;
  --accent: #c4512f;
  --accent-dark: #86341f;
  --accent-pale: #f2d5ca;
  --line: #d4d4cf;
  --focus: #1f63db;
  --font-sans: "Zen Kaku Gothic Antique", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --content: 1240px;
  --text: 720px;
  --header: 88px;
  --z-sticky: 20;
  --z-menu: 30;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
  background: var(--surface);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: var(--header);
  background: rgba(244, 244, 243, .96);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}

.site-header.is-scrolled { border-color: var(--line); }

.header-inner {
  width: min(var(--content), calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
  text-decoration: none;
}

.wordmark-ja {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: .17em;
  white-space: nowrap;
}

.wordmark-en {
  margin-top: 8px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .38em;
  white-space: nowrap;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a,
.footer-nav a,
.footer-social a,
.mobile-menu a { text-underline-offset: 5px; }

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-nav a:hover,
.footer-social a:hover { color: var(--accent); }

.header-cta {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: background-color .2s ease, transform .2s ease;
}

.header-cta:hover { background: var(--accent); transform: translateY(-1px); }

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(680px, 100%);
  padding: 72px clamp(40px, 5vw, 96px) 82px max(32px, calc((100vw - var(--content)) / 2));
}

.hero-role {
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}

.hero h1 {
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: clamp(54px, 5.7vw, 84px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.hero h1 span { color: var(--accent); }

.hero-lead {
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions,
.book-actions,
.event-actions,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--accent-dark); }
.button-outline { border: 1px solid var(--ink); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--accent); }
.button-quiet { color: var(--white); border: 1px solid #66665f; background: transparent; }
.button-quiet:hover { border-color: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 7px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.text-link:hover { color: var(--accent); text-decoration-color: var(--accent); }

.text-link span {
  display: inline-block;
  transition: transform .2s ease;
}

.text-link:hover span { transform: translateX(4px); }

.hero-visual {
  position: relative;
  min-height: 690px;
  padding: 34px max(32px, calc((100vw - var(--content)) / 2)) 34px 0;
  display: flex;
  align-items: stretch;
}

.hero-visual figure {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-alt);
  animation: hero-enter .8s cubic-bezier(.19, 1, .22, 1) both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 24%;
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: rgba(29, 29, 26, .88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-orbit {
  position: absolute;
  top: 8%;
  left: -70px;
  width: 260px;
  aspect-ratio: 1;
  border: 52px solid var(--accent-pale);
  border-radius: 50%;
}

.hero-signature {
  position: absolute;
  left: 43%;
  bottom: -88px;
  z-index: 0;
  color: rgba(196, 81, 47, .08);
  font-family: var(--font-serif);
  font-size: 340px;
  line-height: 1;
  pointer-events: none;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.pathways a {
  min-height: 96px;
  padding: 22px clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.pathways a:last-child { border-right: 0; }
.pathways a:hover { color: var(--accent-dark); background: var(--accent-pale); }
.pathways span { color: var(--accent); font-size: 12px; font-weight: 900; }

.manifesto {
  padding: clamp(86px, 10vw, 150px) max(32px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--ink);
}

.manifesto > p {
  max-width: 980px;
  margin-bottom: 44px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.manifesto-note {
  padding-top: 24px;
  color: #c9c9c3;
  border-top: 1px solid #50504b;
  font-size: 16px;
}

.section { padding: clamp(96px, 10vw, 150px) 0; }
.section-inner { width: min(var(--content), calc(100% - 64px)); margin: 0 auto; }
.section-label { margin-bottom: 22px; color: var(--accent-dark); font-size: 15px; font-weight: 900; letter-spacing: .08em; }

.book-feature { background: var(--white); }

.book-layout {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(380px, 1.16fr) minmax(230px, .62fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.book-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--accent-pale);
  border-radius: 14px;
}

.book-art img {
  position: relative;
  z-index: 1;
  width: min(62%, 300px);
  filter: drop-shadow(0 8px 8px rgba(77, 35, 22, .18));
}

.book-backdrop {
  position: absolute;
  right: -30px;
  bottom: -65px;
  color: rgba(134, 52, 31, .11);
  font-family: var(--font-serif);
  font-size: 360px;
  line-height: 1;
}

.book-copy h2,
.event-heading h2,
.activity-heading h2,
.connect h2 {
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.3vw, 64px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -.03em;
}

.book-copy > p:not(.section-label):not(.book-name) {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
}

.book-name {
  margin-bottom: 26px;
  color: var(--accent-dark);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.book-list {
  align-self: stretch;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.book-list > p { margin-bottom: 18px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.book-list ol { margin: 0; padding: 0; list-style: none; }
.book-list li { padding: 20px 0; border-top: 1px solid var(--line); font-family: var(--font-serif); font-size: 16px; line-height: 1.65; }
.book-list li span { display: block; margin-bottom: 5px; color: var(--ink-soft); font-family: var(--font-sans); font-size: 12px; }

.events { color: var(--white); background: var(--accent); }

.event-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(500px, 1.3fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.events .section-label { color: var(--accent-pale); }
.event-heading > p:last-child { max-width: 470px; color: #ffe8df; font-size: 17px; }

.event-state {
  padding: clamp(32px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
  border-radius: 14px;
}

.event-state-label { margin-bottom: 28px; color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.event-state-body { padding: 0 0 34px; display: grid; grid-template-columns: 58px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.event-state-body > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--accent); border: 1px solid var(--accent); border-radius: 50%; font-size: 22px; }
.event-state h3 { margin-bottom: 14px; font-family: var(--font-serif); font-size: 26px; line-height: 1.5; }
.event-state-body p { max-width: 620px; margin-bottom: 0; color: var(--ink-soft); }
.event-actions { margin-top: 32px; }

.activity { background: var(--surface); }

.activity-heading {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
}

.activity-heading h2 { margin-bottom: 0; }
.activity-heading > p { max-width: 580px; margin-bottom: 8px; color: var(--ink-soft); font-size: 17px; }

.activity-feature {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.55fr .7fr;
  background: var(--ink);
}

.activity-image-link { min-height: 100%; overflow: hidden; }
.activity-image-link img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }

.activity-copy {
  padding: clamp(42px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.activity-copy > span { margin-bottom: 30px; color: var(--accent-pale); font-size: 13px; font-weight: 700; }
.activity-copy h3 { margin-bottom: 28px; font-family: var(--font-serif); font-size: clamp(36px, 3.5vw, 54px); line-height: 1.4; }
.activity-copy p { margin-bottom: 38px; color: #c9c9c3; }
.activity-copy .text-link { color: var(--white); text-decoration-color: #66665f; }

.activity-secondary { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.activity-panel {
  min-height: 540px;
  display: grid;
  overflow: hidden;
  border-radius: 14px;
}

.activity-panel-speaking { grid-template-rows: 1.1fr .9fr; color: var(--ink); background: var(--white); }
.activity-panel .panel-image { overflow: hidden; }
.activity-panel .panel-image img { width: 100%; height: 100%; object-fit: cover; }
.panel-copy { padding: clamp(32px, 4vw, 52px); }
.panel-copy h3 { margin-bottom: 18px; font-family: var(--font-serif); font-size: 34px; line-height: 1.45; }
.panel-copy p { max-width: 520px; margin-bottom: 24px; color: var(--ink-soft); }
.panel-copy a { display: inline-flex; gap: 14px; font-size: 15px; font-weight: 700; text-underline-offset: 6px; }

.activity-panel-aon { grid-template-columns: 1fr 1fr; align-items: stretch; color: var(--white); background: var(--accent-dark); }
.activity-panel-aon .panel-copy { display: flex; flex-direction: column; justify-content: center; }
.activity-panel-aon .panel-copy > span { margin-bottom: 24px; color: var(--accent-pale); font-size: 13px; }
.activity-panel-aon .panel-copy p { color: #f6d9cf; }
.activity-panel-aon img { width: 100%; height: 100%; object-fit: cover; }

.profile-band { background: var(--surface-alt); }

.profile-layout {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}

.profile-monogram {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 340px);
  line-height: .8;
  letter-spacing: -.12em;
  opacity: .18;
}

.profile-copy { position: relative; z-index: 1; max-width: 700px; }
.profile-copy h2 { margin-bottom: 28px; font-family: var(--font-serif); font-size: clamp(38px, 4vw, 58px); line-height: 1.35; }
.profile-copy h2 span { display: block; margin-top: 10px; color: var(--accent-dark); font-family: var(--font-sans); font-size: 13px; font-weight: 900; letter-spacing: .18em; }
.profile-copy > p:not(.section-label) { margin-bottom: 30px; color: var(--ink-soft); font-size: 17px; }
.profile-roles { margin: 0 0 36px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.profile-roles li { padding: 7px 13px; border: 1px solid #b6b7b2; border-radius: 999px; font-size: 13px; font-weight: 700; }

.connect { color: var(--white); background: var(--ink); }
.connect .section-label { color: var(--accent-pale); }
.connect-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.connect h2 { margin-bottom: 0; }
.connect-copy > p:first-child { max-width: 660px; margin-bottom: 38px; color: #d2d2cc; font-size: 18px; }
.connect-note { margin: 24px 0 0; color: #a7a7a1; font-size: 13px; }

.site-footer { padding: 80px max(32px, calc((100vw - var(--content)) / 2)) 26px; color: var(--ink); background: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1.15fr .9fr .55fr; gap: 72px; align-items: start; }
.footer-wordmark { margin-bottom: 24px; }
.footer-inner > div:first-child > p { color: var(--ink-soft); font-size: 14px; }
.footer-nav, .footer-social { display: grid; gap: 13px; }
.footer-nav a, .footer-social a { width: fit-content; font-size: 14px; font-weight: 700; text-decoration: none; }
.footer-meta { margin-top: 66px; padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
.footer-meta span:last-child { display: flex; gap: 24px; }

@keyframes hero-enter {
  from { opacity: .55; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@media (max-width: 1080px) {
  :root { --header: 76px; }
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 19px; height: 1px; display: block; background: var(--ink); transition: transform .2s ease; }
  .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); }
  .mobile-menu {
    position: fixed;
    inset: var(--header) 0 0;
    z-index: var(--z-menu);
    padding: 56px 32px 40px;
    overflow-y: auto;
    color: var(--white);
    background: var(--ink);
  }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav > a { padding: 18px 0; border-bottom: 1px solid #4a4a45; font-family: var(--font-serif); font-size: clamp(24px, 4vw, 34px); text-decoration: none; }
  .mobile-menu nav > .mobile-menu-cta { margin-top: 26px; padding: 16px 20px; color: var(--ink); background: var(--white); border: 0; border-radius: 999px; font-family: var(--font-sans); font-size: 15px; font-weight: 700; text-align: center; }
  .mobile-menu-social { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 22px; }
  .mobile-menu-social a { color: #c9c9c3; font-size: 13px; }

  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 38px; padding-right: 38px; }
  .hero h1 { font-size: clamp(50px, 6vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-visual { padding-right: 32px; }
  .pathways { grid-template-columns: repeat(2, 1fr); }
  .pathways a:nth-child(2) { border-right: 0; }
  .pathways a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .book-layout { grid-template-columns: .8fr 1.2fr; }
  .book-list { grid-column: 1 / -1; display: grid; grid-template-columns: 150px 1fr; gap: 28px; }
  .book-list > p { margin-top: 20px; }
  .book-list ol { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

  .event-layout { grid-template-columns: .75fr 1.25fr; gap: 48px; }
  .activity-panel-aon { grid-template-columns: 1.1fr .9fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --header: 70px; }
  body { font-size: 16px; line-height: 1.72; }
  .header-inner { width: calc(100% - 36px); gap: 12px; }
  .wordmark-ja { font-size: 19px; }
  .wordmark-en { margin-top: 6px; font-size: 7px; }
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; width: 44px; height: 44px; }

  .hero { min-height: 0; display: flex; flex-direction: column; }
  .hero-copy { order: 2; width: 100%; padding: 44px 20px 54px; }
  .hero-role { margin-bottom: 20px; font-size: 14px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(47px, 13.2vw, 58px); line-height: 1.22; }
  .hero-lead { margin-bottom: 34px; font-size: 16px; line-height: 1.85; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { order: 1; min-height: auto; padding: 12px 12px 0; }
  .hero-visual figure { aspect-ratio: 4 / 4.15; border-radius: 12px; }
  .hero-visual img { min-height: 0; object-position: center 22%; }
  .hero-visual figcaption { right: 12px; bottom: 12px; left: 12px; padding: 10px 12px; font-size: 10px; }
  .hero-orbit { top: -20px; right: -20px; left: auto; width: 150px; border-width: 30px; }
  .hero-signature { right: -40px; bottom: 80px; left: auto; font-size: 210px; }

  .pathways { grid-template-columns: 1fr; }
  .pathways a { min-height: 70px; padding: 18px 20px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .pathways a:last-child { border-bottom: 0; }

  .manifesto { padding: 64px 20px; }
  .manifesto > p { margin-bottom: 30px; font-size: clamp(32px, 9.2vw, 43px); line-height: 1.5; }
  .manifesto-note { font-size: 15px; }

  .section { padding: 64px 0; }
  .section-inner { width: calc(100% - 40px); }
  .section-label { margin-bottom: 16px; font-size: 14px; }
  .book-copy h2,
  .event-heading h2,
  .activity-heading h2,
  .connect h2 { margin-bottom: 24px; font-size: clamp(38px, 10.8vw, 48px); line-height: 1.42; }

  .book-layout { display: flex; flex-direction: column; align-items: stretch; gap: 32px; }
  .book-art { min-height: 390px; }
  .book-art img { width: min(64%, 270px); }
  .book-copy > p:not(.section-label):not(.book-name) { font-size: 16px; }
  .book-name { font-size: 22px; }
  .book-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .book-actions .button { width: 100%; }
  .book-list { display: block; width: 100%; }
  .book-list ol { display: block; }

  .event-layout { display: block; }
  .event-heading { margin-bottom: 32px; }
  .event-heading > p:last-child { font-size: 16px; }
  .event-state { padding: 30px 24px; border-radius: 12px; }
  .event-state-body { grid-template-columns: 1fr; gap: 18px; }
  .event-state h3 { font-size: 22px; }
  .event-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .event-actions .button { width: 100%; }

  .activity-heading { margin-bottom: 36px; display: block; }
  .activity-heading > p { margin-top: 26px; font-size: 16px; }
  .activity-feature { min-height: 0; display: flex; flex-direction: column; }
  .activity-image-link { aspect-ratio: 16 / 10; }
  .activity-copy { padding: 32px 22px 36px; }
  .activity-copy > span { margin-bottom: 20px; }
  .activity-copy h3 { margin-bottom: 18px; font-size: 35px; }
  .activity-secondary { grid-template-columns: 1fr; gap: 20px; }
  .activity-panel { min-height: 0; border-radius: 12px; }
  .activity-panel-speaking { grid-template-rows: auto auto; }
  .activity-panel .panel-image { aspect-ratio: 16 / 10; }
  .panel-copy { padding: 28px 22px 32px; }
  .panel-copy h3 { font-size: 30px; }
  .activity-panel-aon { grid-template-columns: minmax(0, 1fr) 126px; }
  .activity-panel-aon img { min-height: 100%; aspect-ratio: auto; }

  .profile-layout { min-height: 0; display: block; }
  .profile-monogram { position: absolute; top: -16px; right: 0; font-size: 160px; }
  .profile-copy h2 { font-size: 42px; }
  .profile-copy > p:not(.section-label) { font-size: 16px; }
  .profile-roles { gap: 8px; }
  .profile-copy .button { width: 100%; }

  .connect-layout { display: block; }
  .connect-copy { margin-top: 34px; }
  .connect-copy > p:first-child { font-size: 16px; }
  .connect-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .connect-actions .button { width: 100%; }

  .site-footer { padding: 62px 20px 24px; }
  .footer-inner { display: block; }
  .footer-nav { margin-top: 42px; padding-top: 32px; border-top: 1px solid var(--line); }
  .footer-social { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 18px; }
  .footer-meta { margin-top: 46px; display: block; }
  .footer-meta span { display: block; }
  .footer-meta span:last-child { margin-top: 15px; display: flex; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
