@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500;8..60,600&display=swap');

:root {
  --color-blue: #0b3d91;
  --color-blue-deep: #0e2140;
  --color-blue-soft: #dce8ff;
  --color-red: #c5282f;
  --color-red-soft: #f5d7da;
  --color-ink: #0e2140;
  --color-ink-soft: #334c72;
  --color-accent: #c5282f;
  --color-accent-soft: #d9696d;
  --color-line: rgba(14, 33, 64, 0.12);
  --color-line-strong: rgba(11, 61, 145, 0.2);
  --color-surface: #edf3ff;
  --color-surface-alt: #ffffff;
  --color-surface-strong: #d8e4fb;
  --color-paper: #ffffff;
  --color-muted: #5a6d8a;
  --color-shadow: 0 24px 60px rgba(14, 33, 64, 0.08);
  --color-shadow-soft: 0 16px 36px rgba(14, 33, 64, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(11, 61, 145, 0.1), transparent 34%),
    radial-gradient(circle at top right, rgba(197, 40, 47, 0.08), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #eef3fb 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(1400px, calc(100% - 52px));
  margin: 0 auto;
}

.site-main {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  background: rgba(250, 252, 255, 0.9);
  backdrop-filter: blur(14px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-home.is-transparent:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94) 0%, rgba(250, 252, 255, 0.68) 48%, rgba(250, 252, 255, 0) 100%);
  backdrop-filter: blur(8px);
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled {
  padding: 12px 0;
  border-bottom-color: var(--color-line);
  box-shadow: 0 12px 28px rgba(20, 35, 58, 0.08);
}

.site-header__line {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(11, 61, 145, 0) 0%, rgba(11, 61, 145, 0.96) 30%, rgba(255, 255, 255, 0.98) 50%, rgba(197, 40, 47, 0.96) 70%, rgba(197, 40, 47, 0) 100%);
  opacity: 0.48;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  padding: 6px 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: var(--president-logo-height, 46px);
  max-width: min(34vw, 300px);
  border-radius: var(--president-logo-radius, 16px);
  transition: height 0.3s ease;
}

.site-header.is-scrolled .brand__logo {
  height: var(--president-logo-sticky-height, 42px);
}

.brand__logo--mobile {
  height: var(--president-logo-mobile-height, 38px);
  max-width: 220px;
}

.brand__logo--footer {
  height: var(--president-logo-footer-height, 48px);
  max-width: 280px;
}

.site-nav {
  flex: 1;
}

.site-nav__list,
.mobile-menu__list,
.site-footer__list,
.editorial-page__keypoints {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.site-nav__list > li {
  position: relative;
}

.site-nav__list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 168px;
  padding: 8px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  transition: color 0.24s ease;
}

.site-nav__list > li.menu-item-has-children > a {
  padding-right: 22px;
}

.site-nav__list > li.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.8;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav__list > li > a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav__list > li > a:hover,
.site-nav__list > li.current-menu-item > a,
.site-nav__list > li.current_page_item > a,
.site-nav__list > li.current-page-ancestor > a,
.site-nav__list > li.current-menu-ancestor > a {
  color: var(--color-ink);
}

.site-nav__list > li > a:hover::after,
.site-nav__list > li.current-menu-item > a::after,
.site-nav__list > li.current_page_item > a::after,
.site-nav__list > li.current-page-ancestor > a::after,
.site-nav__list > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 240px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 54px rgba(20, 35, 58, 0.14);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-nav__list .sub-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__list > li.menu-item-has-children:hover > a::before,
.site-nav__list > li.menu-item-has-children:focus-within > a::before {
  transform: translateY(-35%) rotate(225deg);
  opacity: 1;
}

.site-nav__list .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu .current-menu-item > a,
.site-nav__list .sub-menu .current_page_item > a {
  background: var(--color-blue-soft);
  color: var(--color-blue-deep);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header__cta,
.button--primary,
.button--dark {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fdf9f3;
  box-shadow: 0 14px 28px rgba(11, 61, 145, 0.16);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(11, 61, 145, 0.24);
  color: var(--color-blue);
}

.site-header__cta:hover,
.button:hover,
.text-link:hover,
.editorial-rail__cta:hover {
  transform: translateY(-1px);
}

.site-header__toggle,
.mobile-menu,
.mobile-backdrop {
  display: none;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  display: block;
  padding: 0;
  min-height: 0;
  background: linear-gradient(180deg, #eef3fb 0%, #e7edf8 100%);
}

.home-hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
}

.home-hero__image {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.94) brightness(1.04) contrast(0.94);
  opacity: 0.88;
}

.home-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
}

.home-hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 1;
}

.home-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  z-index: 2;
}

.home-hero__copy {
  position: relative;
  max-width: 100%;
  width: auto;
  text-align: left;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero__title,
.page-hero h1,
.section-title,
.generic-page__title,
.contact-form h2,
.chapter-card h3,
.contact-point h3 {
  font-family: 'Source Serif 4', serif;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 52px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.home-hero__title {
  display: block;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(56px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.035em;
  white-space: nowrap;
  color: #fff;
  text-shadow:
    0 2px 10px rgba(12, 23, 44, 0.42),
    0 10px 28px rgba(12, 23, 44, 0.28),
    0 0 2px rgba(12, 23, 44, 0.45);
}

.home-hero__title-main,
.home-hero__title-accent {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}

.home-hero__title-accent {
  margin-left: 0.12em;
}

@media (min-width: 981px) {
  .home-hero {
    min-height: 0;
  }

  .home-hero__media {
    height: auto;
  }

  .home-hero__image {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 980px) {
  .home-hero {
    padding-top: 74px;
  }

  .admin-bar .home-hero {
    padding-top: 106px;
  }

  .home-hero__inner {
    position: absolute;
    inset: 74px 0 0;
    align-items: flex-end;
    padding-bottom: 18px;
  }

  .admin-bar .home-hero__inner {
    inset-block-start: 106px;
  }

  .home-hero__media {
    height: auto;
    min-height: 0;
    overflow: clip;
  }

  .home-hero__image {
    height: auto;
    object-fit: fill;
    object-position: 50% 50%;
  }

  .home-hero__copy {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .home-hero__title {
    font-size: clamp(18px, 3.4vw, 30px);
    line-height: 1;
    white-space: nowrap;
    text-wrap: nowrap;
    letter-spacing: -0.02em;
  }
}

.home-hero__text,
.page-hero__text,
.manifesto__content p,
.editorial-page__content p,
.contact-page__content p,
.generic-page__content {
  font-size: 18px;
  line-height: 1.76;
  color: var(--color-ink-soft);
}

.manifesto,
.chapters,
.editorial-page,
.contact-page,
.generic-page {
  position: relative;
  padding: 92px 0 118px;
}

.manifesto {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.4)),
    var(--color-surface);
  border-top: 1px solid rgba(20, 35, 58, 0.06);
  border-bottom: 1px solid rgba(20, 35, 58, 0.06);
}

.manifesto__grid,
.editorial-page__grid,
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.manifesto__aside,
.editorial-page__aside {
  position: sticky;
  top: 118px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.section-subtitle {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
}

.manifesto__content,
.editorial-page__content,
.contact-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manifesto__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.manifesto__image {
  height: 360px;
  border-radius: 36px;
  box-shadow: var(--color-shadow);
}

.pull-quote {
  margin: 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--color-accent);
  font-family: 'Source Serif 4', serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.5;
  color: var(--color-ink);
}

.closing-card,
.highlight-card,
.contact-form,
.contact-point,
.closing-band,
.editorial-page__lead-card,
.editorial-rail,
.contact-page__intro-card,
.movement-simple-values {
  border-radius: 30px;
}

.closing-card,
.highlight-card,
.contact-form,
.contact-point,
.editorial-page__lead-card,
.editorial-rail,
.contact-page__intro-card,
.movement-simple-values {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.94) 100%);
  border: 1px solid var(--color-line);
  box-shadow: var(--color-shadow-soft);
}

.closing-card,
.highlight-card,
.editorial-page__lead-card,
.contact-page__intro-card,
.movement-simple-values {
  padding: 30px;
}

.closing-card p,
.highlight-card p,
.highlight-card__items p {
  margin: 0;
}

.closing-card p + p,
.highlight-card__items p + p {
  margin-top: 12px;
}

.closing-card p:last-child,
.highlight-card__items p:last-child {
  color: var(--color-accent);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.chapters__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.chapter-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 255, 0.94) 100%);
  border: 1px solid rgba(11, 61, 145, 0.1);
  box-shadow: var(--color-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.chapter-card__media {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 18px 0 18px 18px;
}

.chapter-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: 0 18px 32px rgba(14, 33, 64, 0.12);
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.chapter-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px 30px 28px 24px;
}

.chapter-card__number {
  position: absolute;
  left: 32px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 33, 64, 0.86);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.chapter-card h3,
.contact-point h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--color-ink);
}

.chapter-card p,
.contact-point p,
.editorial-page__aside li {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.chapter-card__eyebrow {
  margin: 0;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-card__cta::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.chapter-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  border-color: rgba(11, 61, 145, 0.16);
  box-shadow: 0 28px 54px rgba(11, 61, 145, 0.12);
}

.chapter-card--featured .chapter-card__media {
  padding: 20px 0 20px 20px;
}

.chapter-card--featured .chapter-card__content {
  padding: 34px 36px 34px 28px;
}

.chapter-card--featured h3 {
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.02;
}

.chapter-card--featured p {
  max-width: 640px;
  font-size: 18px;
}

.chapter-card:hover {
  border-color: rgba(11, 61, 145, 0.28);
  box-shadow: 0 28px 58px rgba(11, 61, 145, 0.12);
}

.page-hero {
  padding: 152px 0 72px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(11, 61, 145, 0.1), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(197, 40, 47, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 48px;
  align-items: center;
}

.page-hero__copy {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--color-ink);
}

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

.page-hero__subtitle {
  margin: 22px 0 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.58;
  color: var(--color-ink-soft);
}

.page-hero__text {
  margin: 18px 0 0;
  max-width: 560px;
}

.page-hero__visual {
  position: relative;
  max-width: 430px;
}

.page-hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  border: 1px solid rgba(11, 61, 145, 0.14);
  background: #fff;
  box-shadow: 0 24px 52px rgba(14, 33, 64, 0.14);
}

.page-hero__chapter {
  position: absolute;
  right: -10px;
  bottom: -34px;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(80px, 8vw, 132px);
  line-height: 1;
  color: rgba(11, 61, 145, 0.18);
  pointer-events: none;
}

.editorial-page,
.contact-page,
.generic-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    var(--color-surface-alt);
}

.editorial-rail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px;
}

.editorial-rail__chapter {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.editorial-rail__chapter span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.editorial-rail__chapter strong {
  font-family: 'Source Serif 4', serif;
  font-size: 38px;
  color: var(--color-ink);
}

.editorial-page__keypoints {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editorial-page__keypoints li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.editorial-page__keypoints li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.editorial-rail__cta {
  display: inline-flex;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fdf9f3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-page__intro,
.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.editorial-page__lead-label,
.contact-page__lead-label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.editorial-page__lead,
.movement-simple-intro__lead {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.52;
  color: var(--color-ink);
}

.editorial-page__body,
.movement-simple-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editorial-page__paragraph {
  margin: 0;
}

.editorial-page__paragraph--dropcap::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  font-family: 'Source Serif 4', serif;
  font-size: 64px;
  line-height: 0.88;
  color: var(--color-accent);
}

.closing-band {
  padding: 30px 34px;
  background: linear-gradient(135deg, #10264d 0%, #173a7a 66%, #244c97 100%);
  border: 1px solid rgba(16, 38, 77, 0.36);
  box-shadow: 0 28px 54px rgba(16, 38, 77, 0.18);
}

.closing-band p {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.55;
  color: #fbf7f0;
}

.movement-simple-values__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.movement-simple-values__title {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.18;
  font-weight: 400;
}

.movement-simple-values__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.movement-simple-values__item {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(11, 61, 145, 0.08);
  border: 1px solid rgba(197, 40, 47, 0.18);
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page__grid {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 42px;
}

.contact-page__form-wrap {
  order: 2;
}

.contact-page__content {
  order: 1;
}

.contact-form {
  padding: 36px;
}

.contact-form__head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--color-ink);
}

.contact-form__head p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.contact-form label {
  display: block;
  margin-top: 22px;
}

.contact-form label > span,
.contact-form .contact-form__hint {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-form .wpcf7 {
  width: 100%;
}

.contact-form .wpcf7 form > p {
  margin: 22px 0 0;
}

.contact-form .wpcf7 form > p:first-of-type {
  margin-top: 18px;
}

.contact-form .wpcf7 br {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 16px;
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(11, 61, 145, 0.42);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.08);
  background: #fff;
}

.contact-form input[type='submit'],
.contact-form button,
.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--color-ink);
  background: var(--color-ink);
  color: #fbf7f0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-point {
  padding: 24px;
}

.contact-page__intro-card p:last-child {
  margin-bottom: 0;
}

.generic-page__inner {
  max-width: 860px;
}

.generic-page__title {
  margin: 0 0 18px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  font-weight: 400;
}

.profile-hero__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.profile-hero__copy {
  max-width: 640px;
}

.profile-hero__copy h1 {
  max-width: none;
  white-space: nowrap;
  color: var(--color-ink);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
}

.profile-hero__copy .page-hero__subtitle {
  max-width: none;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
  white-space: nowrap;
  color: var(--color-ink);
}

.profile-hero__visual {
  position: relative;
}

.profile-hero__visual::before {
  content: '';
  position: absolute;
  inset: 7% -6% auto auto;
  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(218, 44, 56, 0.16) 0%, rgba(218, 44, 56, 0) 68%);
  pointer-events: none;
}

.profile-hero__visual .page-hero__photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  box-shadow: 0 30px 60px rgba(11, 61, 145, 0.16);
}

.profile-page__inner {
  max-width: 1180px;
}

.profile-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: start;
}

.profile-page__content,
.profile-panel {
  border-radius: 32px;
  border: 1px solid rgba(11, 61, 145, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.92) 100%);
  box-shadow: 0 24px 56px rgba(16, 38, 77, 0.1);
}

.profile-page__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(30px, 4vw, 46px);
}

.profile-page__lead {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(11, 61, 145, 0.1);
}

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

.profile-page__lead p:not(.profile-panel__eyebrow) {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.45;
  color: var(--color-ink);
}

.profile-page__content > * {
  margin: 0;
}

.profile-page__content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-ink-soft);
}

.profile-page__content p + p {
  padding-top: 8px;
  border-top: 1px solid rgba(11, 61, 145, 0.08);
}

.profile-page__content h2,
.profile-page__content h3 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(28px, 2.3vw, 36px);
  line-height: 1.15;
  color: var(--color-ink);
}

.profile-page__aside {
  display: grid;
  gap: 0;
  position: sticky;
  top: 118px;
}

.profile-panel {
  padding: 26px 26px 28px;
}

.profile-panel__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.profile-panel h2 {
  margin: 0 0 18px;
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 1.16;
  color: var(--color-ink);
}

.profile-panel__content > *:first-child,
.profile-panel > p:last-child {
  margin-top: 0;
}

.profile-panel__content > *:last-child,
.profile-panel > p:last-child {
  margin-bottom: 0;
}

.profile-panel__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.profile-panel__content li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink-soft);
}

.profile-panel__content li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-red) 100%);
  box-shadow: 0 0 0 5px rgba(11, 61, 145, 0.08);
}

.speech-page__inner {
  max-width: 1180px;
}

.speech-page__layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.speech-page__aside {
  position: sticky;
  top: 118px;
}

.speech-rail {
  padding: 26px 26px 28px;
}

.speech-rail__content {
  display: grid;
  gap: 14px;
}

.speech-rail__list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 10px;
}

.speech-rail__list li {
  margin: 0;
  color: var(--color-ink-soft);
}

.speech-rail__list a {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.speech-rail__list a:hover {
  color: var(--color-blue);
}

.speech-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speech-page__intro,
.speech-section {
  border-radius: 32px;
  border: 1px solid rgba(11, 61, 145, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.92) 100%);
  box-shadow: 0 24px 56px rgba(16, 38, 77, 0.1);
}

.speech-page__intro {
  padding: clamp(30px, 4vw, 46px);
  display: grid;
  gap: 24px;
}

.speech-page__lead {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(11, 61, 145, 0.1);
}

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

.speech-page__lead p:not(.profile-panel__eyebrow) {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.45;
  color: var(--color-ink);
}

.speech-page__body > * {
  margin-top: 0;
}

.speech-page__body > *:last-child {
  margin-bottom: 0;
}

.speech-page__body p,
.speech-section__body p,
.speech-section__body li {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-ink-soft);
}

.speech-section {
  padding: clamp(28px, 3.5vw, 40px);
}

.speech-section__head {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(11, 61, 145, 0.1);
}

.speech-section__head .eyebrow {
  margin-bottom: 0;
}

.speech-section__head h2 {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--color-ink);
}

.speech-section__body > *:first-child {
  margin-top: 0;
}

.speech-section__body > *:last-child {
  margin-bottom: 0;
}

.speech-section__body ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.speech-section__body li {
  position: relative;
  padding-left: 22px;
}

.speech-section__body li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-red) 100%);
  box-shadow: 0 0 0 5px rgba(11, 61, 145, 0.08);
}

.site-signature {
  padding: 18px 0 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 248, 255, 0.56) 100%);
}

.site-signature__inner {
  display: flex;
  justify-content: center;
}

.site-signature__image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  opacity: 0.96;
}

.site-footer {
  position: relative;
  padding: 38px 0 46px;
  border-top: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%);
  backdrop-filter: blur(10px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.site-footer__nav {
  justify-self: start;
}

.site-footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px 22px;
}

.site-footer__list a,
.site-footer__legal {
  font-size: 13px;
  color: var(--color-muted);
}

.site-footer__legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

@media (max-width: 1200px) {
  .site-nav__list > li > a {
    max-width: 146px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .page-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero__visual {
    max-width: 480px;
  }

  .manifesto__grid,
  .editorial-page__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__aside,
  .editorial-page__aside {
    position: static;
  }

  .profile-overview__grid,
  .profile-page__layout,
  .speech-page__layout {
    grid-template-columns: 1fr;
  }

  .profile-page__aside,
  .speech-page__aside {
    position: static;
  }
}

@media (max-width: 1080px) {
  .site-nav,
  .site-header__cta {
    display: none;
  }

  .home-hero__inner {
    inset: 0;
    align-items: center;
  }

  .home-hero__copy {
    max-width: min(68%, 620px);
  }

  .home-hero__title {
    font-size: clamp(36px, 4.8vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    white-space: normal;
    text-wrap: balance;
  }

  .site-header__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
  }

  .site-header__toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 0 auto;
    background: var(--color-ink);
  }

  .mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(20, 35, 58, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .mobile-menu {
    position: fixed;
    top: 16px;
    right: 16px;
    bottom: 16px;
    height: calc(100dvh - 32px);
    max-height: calc(100dvh - 32px);
    z-index: 55;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: min(420px, calc(100vw - 32px));
    padding: 22px;
    border-radius: 30px;
    border: 1px solid var(--color-line);
    background: rgba(249, 245, 239, 0.98);
    box-shadow: 0 24px 54px rgba(20, 35, 58, 0.16);
    transform: translateX(112%);
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: transform 0.28s ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .menu-open .mobile-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-menu__close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-line-strong);
    border-radius: 999px;
    background: transparent;
    color: var(--color-ink);
    font-size: 26px;
    cursor: pointer;
  }

  .mobile-menu__nav {
    flex: 1;
    min-height: 0;
    overflow: auto;
  }

  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu__list .sub-menu {
    list-style: none;
    margin: 6px 0 0;
    padding: 0 0 0 14px;
    display: grid;
    gap: 6px;
  }

  .mobile-menu__list a {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu__list > li.menu-item-has-children > a {
    position: relative;
    padding-right: 38px;
  }

  .mobile-menu__list > li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 17px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: 0.75;
  }

  .mobile-menu__list .sub-menu a {
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(220, 232, 255, 0.6);
    font-size: 14px;
  }

  .mobile-menu__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    min-height: 52px;
    border-radius: 999px;
    background: var(--color-ink);
    color: #fbf7f0;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 30px, 100%);
  }

  .home-hero__inner {
    inset: 74px 0 0;
    align-items: flex-end;
    padding-bottom: 18px;
  }

  .hero-quote,
  .closing-card,
  .highlight-card,
  .contact-form,
  .contact-point,
  .editorial-page__lead-card,
  .editorial-rail,
  .contact-page__intro-card,
  .movement-simple-values {
    padding: 24px;
    border-radius: 24px;
  }

  .home-hero__copy {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .home-hero__title {
    font-size: clamp(16px, 3.2vw, 24px);
    line-height: 1;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .manifesto,
  .chapters,
  .editorial-page,
  .contact-page,
  .generic-page {
    padding: 76px 0 92px;
  }

  .chapters__grid,
  .editorial-page__intro,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .chapter-card,
  .chapter-card--featured {
    grid-template-columns: 1fr;
  }

  .chapter-card__media,
  .chapter-card--featured .chapter-card__media {
    padding: 18px 18px 0;
  }

  .chapter-card__content,
  .chapter-card--featured .chapter-card__content {
    padding: 24px 24px 26px;
  }

  .page-hero__photo {
    border-radius: 24px;
  }

  .page-hero__chapter {
    right: 2px;
    bottom: -26px;
  }

  .profile-hero__markers {
    margin-top: 22px;
  }

  .profile-hero__caption,
  .profile-overview__card,
  .profile-page__content,
  .profile-panel,
  .speech-page__intro,
  .speech-section {
    border-radius: 24px;
  }

  .profile-overview__card--lead p:not(.profile-overview__eyebrow) {
    font-size: clamp(22px, 7vw, 30px);
  }

  .profile-page__content p {
    font-size: 17px;
    line-height: 1.85;
  }

  .speech-page__body p,
  .speech-section__body p,
  .speech-section__body li {
    font-size: 17px;
    line-height: 1.85;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    justify-self: start;
  }

  .site-footer__list {
    justify-content: flex-start;
  }

  .site-signature {
    padding: 10px 0 4px;
  }

  .site-signature__image {
    width: min(100%, 280px);
  }
}

@media (max-width: 560px) {
  .brand__logo {
    max-width: 62vw;
  }

  .home-hero {
    padding-top: 72px;
  }

  .admin-bar .home-hero {
    padding-top: 104px;
  }

  .home-hero__media {
    height: auto;
    overflow: clip;
  }

  .home-hero__image {
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: 50% 50%;
    transform: scale(0.95);
    transform-origin: center top;
  }

  .home-hero__title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(14px, 4.8vw, 22px);
    line-height: 1;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .home-hero__title-accent {
    margin-left: 0;
  }

  .home-hero__text,
  .page-hero__text,
  .manifesto__content p,
  .editorial-page__content p,
  .contact-page__content p {
    font-size: 17px;
  }

  .button,
  .site-header__cta {
    width: 100%;
  }

  .home-hero__copy {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .home-hero__inner {
    inset: 72px 0 0;
    align-items: flex-end;
    padding-bottom: 18px;
  }

  .admin-bar .home-hero__inner {
    inset-block-start: 104px;
  }

  .hero-quote p,
  .pull-quote,
  .closing-band p {
    font-size: 22px;
  }

  .chapter-card__content,
  .contact-form {
    padding: 22px;
  }

  .profile-hero__copy h1 {
    max-width: none;
    white-space: normal;
  }

  .profile-hero__markers span {
    min-height: 34px;
    padding-inline: 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .profile-hero__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .profile-hero__caption strong {
    font-size: 22px;
  }

  .profile-overview__card,
  .profile-page__content,
  .profile-panel,
  .speech-page__intro,
  .speech-section {
    padding: 22px;
  }

  .profile-panel--signature p:last-child {
    font-size: 20px;
  }
}

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