/* Irremplazables — estilos de producción. Fuente: ficheros segmentados de /styles. */

/* tokens.css */
:root {
  --cream: #fff4e5;
  --paper: #fffaf2;
  --ink: #2c1932;
  --burgundy: #8f2458;
  --mustard: #f2ba18;
  --terracotta: #e95b3f;
  --terracotta-text: #a43a30;
  --soft: #f7e2db;
  --line: #dfc9c3;
  --line-dark: #b75a7f;
  --muted: #715763;
  --text-on-dark: #fffaf2;
  --text-on-dark-muted: #f3dfe7;
  --white: #fffaf2;
  --font: "Archivo", sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --space-section: clamp(64px, 7vw, 104px);
  --space-small: clamp(40px, 5vw, 68px);
  --header-height: 102px;
  --header-height-compact: 72px;
}

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

@media (max-width: 620px) {
  :root {
    --header-height: 88px;
    --header-height-compact: 68px;
  }
}


/* base.css */
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
figure {
  margin: 0;
}
a {
  color: inherit;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 4.6vw, 5.15rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
h2 {
  max-width: 850px;
  font-size: clamp(1.8rem, 2.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: var(--space-section);
}
.section-small {
  padding-block: var(--space-small);
}
.surface-cream {
  background: var(--cream);
}
.surface-soft {
  background: var(--soft);
}
.surface-dark {
  background: var(--burgundy);
  color: var(--white);
}
.surface-ink {
  background: var(--ink);
  color: var(--white);
}
.surface-mustard {
  background: var(--mustard);
  color: var(--ink);
}
.surface-terracotta {
  background: var(--terracotta);
  color: var(--ink);
}
.surface-terracotta .lede,
.surface-terracotta .text-link {
  color: var(--ink);
}
.lede {
  max-width: 780px;
  color: var(--burgundy);
  font-size: clamp(1.28rem, 2.2vw, 1.9rem);
  line-height: 1.38;
}
.large-copy {
  max-width: 800px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.36;
}
.narrow {
  max-width: 720px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  background: var(--burgundy);
  color: var(--white);
  border: 1px solid var(--burgundy);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    color 150ms ease;
}
.button:hover,
.button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
}
.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.button-line {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-block: 7px;
  color: var(--burgundy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.surface-dark .text-link,
.surface-ink .text-link {
  color: var(--white);
}
.section-number,
.event-status {
  margin-bottom: 20px;
  color: var(--terracotta-text);
  font-size: 0.86rem;
  font-weight: 700;
}
.surface-terracotta .event-status {
  color: var(--ink);
}
.rule {
  border-top: 1px solid var(--line);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}


/* header-footer.css */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.top-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(255, 244, 229, 0.78);
  border-color: rgba(143, 36, 88, 0.22);
  box-shadow: 0 2px 8px rgba(44, 25, 50, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 180ms ease;
}
.site-header.is-scrolled .header-inner {
  min-height: var(--header-height-compact);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}
.site-header.is-scrolled .brand img {
  width: 42px;
  height: 42px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 34px);
}
.site-nav a {
  padding-block: 36px;
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: padding 180ms ease, border-color 150ms ease;
}
.site-header.is-scrolled .site-nav a {
  padding-block: 23px;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--terracotta);
}
.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}
.menu-lines {
  position: relative;
}
.menu-lines::before {
  position: absolute;
  top: -6px;
}
.menu-lines::after {
  position: absolute;
  top: 6px;
}
.site-footer {
  padding-block: 46px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}
.site-footer .brand img {
  width: 76px;
  height: 76px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 50px;
  align-items: start;
}
.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-grid nav a {
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.footer-legal a,
.footer-legal button {
  color: var(--text-on-dark-muted);
}
.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--line-dark);
  font-size: 0.86rem;
}
.footer-meta p {
  margin: 0;
}
.agent-access {
  grid-column: 1 / -1;
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
}
.agent-access summary {
  width: fit-content;
  cursor: pointer;
}
.agent-access p {
  margin: 10px 0 0;
}
.agent-access a {
  color: var(--white);
}


/* layout.css */
.page-hero {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--cream);
}
.page-hero.surface-terracotta {
  background: var(--terracotta);
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.hero-copy p {
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 34px;
}
.media-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--burgundy);
}
.media-frame picture {
  position: absolute;
  inset: 0;
}
.media-frame img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.media-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--terracotta);
  content: "";
}
.media-wide {
  min-height: 620px;
}
.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(52px, 8vw, 120px);
}
.split-even {
  grid-template-columns: 1fr 1fr;
}
.split h2 {
  margin-bottom: 0;
}
.editorial-list {
  border-top: 1px solid currentColor;
}
.editorial-row {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 22px;
  align-items: start;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.editorial-row:is(a) {
  text-decoration: none;
}
.editorial-row .number {
  color: var(--terracotta-text);
  font-weight: 700;
}
.editorial-row h3 {
  margin-bottom: 10px;
}
.editorial-row p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}
.surface-dark .editorial-row {
  border-color: var(--line-dark);
}
.surface-dark .editorial-row p {
  color: var(--text-on-dark-muted);
}
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.three-columns > * {
  padding: 34px 7% 38px 0;
}
.three-columns > * + * {
  padding-left: 7%;
  border-left: 1px solid var(--line);
}
.three-columns p {
  margin-bottom: 0;
}
.statement {
  padding-block: clamp(58px, 8vw, 106px);
}
.statement p {
  max-width: 1100px;
  margin: 0 0 30px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.closing-phrase {
  padding-block: clamp(72px, 10vw, 142px);
  background: var(--mustard);
}
.closing-phrase p {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.status-block {
  padding: 30px;
  border: 1px solid currentColor;
}
.status-block p:last-child {
  margin-bottom: 0;
}
.prose {
  max-width: 780px;
}
.prose > * + * {
  margin-top: 20px;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li + li {
  margin-top: 10px;
}
.content-pairs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid currentColor;
}
.content-pairs article {
  padding: 30px 7% 32px 0;
  border-bottom: 1px solid var(--line);
}
.content-pairs article:nth-child(even) {
  padding-left: 7%;
  border-left: 1px solid var(--line);
}
.content-pairs h3 {
  margin-bottom: 12px;
}
.content-pairs p {
  margin-bottom: 0;
}
.surface-dark .content-pairs article {
  border-color: var(--line-dark);
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
}
.subsection-intro {
  max-width: 760px;
  margin-bottom: 46px;
}


/* home.css */
.home-hero {
  padding-block: clamp(62px, 8vw, 118px);
  background: var(--cream);
}
.home-hero .hero-split {
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, 0.78fr);
}
.home-hero .media-frame {
  min-height: 650px;
}
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 9vw, 128px);
}
.thesis-grid p {
  color: var(--text-on-dark-muted);
}
.thesis-close {
  margin-top: 32px;
  padding-top: 24px;
  color: var(--white) !important;
  border-top: 1px solid var(--line-dark);
  font-size: 1.18rem;
  font-weight: 700;
}
.pillar-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.pillar {
  padding: 40px 8% 46px 0;
}
.pillar + .pillar {
  padding-left: 8%;
  border-left: 1px solid var(--line);
}
.pillar .number {
  display: block;
  margin-bottom: 30px;
  color: var(--terracotta-text);
  font-weight: 700;
}
.pillar ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.pillar li {
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.home-programs .section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 58px;
  margin-bottom: 54px;
}
.home-programs .section-heading h2 {
  margin: 0;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.deliverables span {
  padding: 22px 16px;
  font-weight: 700;
  text-align: center;
}
.deliverables span + span {
  border-left: 1px solid var(--line);
}
.day-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.day-feature .media-frame {
  min-height: 600px;
}
.day-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 116px);
  background: var(--terracotta);
  color: var(--ink);
}
.day-feature-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}
.day-feature-copy .text-link {
  color: var(--ink);
}
.people-band {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 8vw, 110px);
}
.presence {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.presence p {
  margin: 20px 0 0;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 600;
}
.presence p span {
  margin-inline: 0.45em;
  color: var(--terracotta);
}


/* pages.css */
.chapter {
  padding-block: 40px;
  border-top: 1px solid var(--ink);
}
.chapter-grid {
  display: grid;
  grid-template-columns: 86px minmax(260px, 0.75fr) 1.25fr;
  gap: 24px 46px;
}
.chapter-number {
  color: var(--terracotta-text);
  font-weight: 700;
}
.chapter h2,
.chapter h3 {
  margin-bottom: 18px;
}
.chapter dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px 24px;
  margin: 0;
}
.chapter dt {
  font-weight: 700;
}
.chapter dd {
  margin: 0;
}
.program-chapter {
  margin-top: clamp(64px, 8vw, 104px);
  scroll-margin-top: 100px;
}
.program-chapter-header {
  padding: clamp(30px, 4vw, 52px);
  background: var(--burgundy);
  color: var(--white);
}
.program-chapter-header .chapter-number {
  color: var(--mustard);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
}
.program-chapter-header h3 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  line-height: 1.05;
}
.program-chapter-header p:last-child {
  margin-bottom: 0;
}
.program-chapter > .three-columns {
  border-top: 0;
}
.program-detail {
  padding: clamp(28px, 4vw, 44px);
  background: var(--soft);
}
.program-detail .chapter-grid {
  align-items: start;
}
.program-detail h3 {
  margin-bottom: 0;
}
.program-detail ul {
  margin-top: 0;
}
.sequence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.sequence > div {
  min-height: 210px;
  padding: 28px;
}
.sequence > div + div {
  border-left: 1px solid var(--line-dark);
}
.sequence span {
  color: var(--mustard);
  font-weight: 700;
}
.sequence h3 {
  margin-top: 38px;
}
.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}
.capability-list span {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  font-weight: 600;
}
.capability-list span:nth-child(even) {
  padding-left: 8%;
  border-left: 1px solid var(--line);
}
.question-block {
  display: flex;
  min-height: 340px;
  align-items: flex-end;
  padding: clamp(36px, 6vw, 78px);
  background: var(--burgundy);
  color: var(--white);
}
.question-block p {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.team-placeholder {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.team-placeholder p {
  max-width: 580px;
  margin: 0;
}
.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 42px;
  margin: 0;
  padding: 34px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  list-style: none;
  font-size: clamp(1.3rem, 3vw, 2.25rem);
  font-weight: 600;
}
.contact-options {
  border-top: 1px solid var(--ink);
}
.contact-option {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}
.contact-option .option-number {
  margin-top: 7px;
  color: var(--terracotta-text);
  font-weight: 700;
}
.contact-option h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
}
.contact-option p {
  max-width: 680px;
  margin: 0;
}
.process-list {
  counter-reset: process;
  border-top: 1px solid currentColor;
}
.process-step {
  display: grid;
  grid-template-columns: 70px 0.7fr 1.3fr;
  gap: 22px 36px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  color: var(--terracotta-text);
  font-weight: 700;
}
.process-step h3,
.process-step p {
  margin: 0;
}
.surface-dark .process-step {
  border-color: var(--line-dark);
}
.faq {
  border-top: 1px solid var(--ink);
}
.faq details {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
}
.faq details p {
  max-width: 800px;
  margin: 14px 0 0;
}
.empresas-hero-media {
  min-height: 0;
  aspect-ratio: 4 / 5;
}


/* contact-form.css */
.contact-form-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.contact-form {
  padding: clamp(26px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}
.form-field,
.form-field label {
  display: block;
}
.form-field--wide {
  grid-column: 1 / -1;
}
.form-field label {
  margin-bottom: 7px;
  font-weight: 700;
}
.form-field label span,
.form-hint,
.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--muted);
  border-radius: 4px;
  font: inherit;
}
.form-field textarea {
  min-height: 168px;
  resize: vertical;
}
.form-field :is(input, select, textarea):focus {
  border-color: var(--burgundy);
  outline: 3px solid rgba(143, 36, 88, 0.18);
}
.form-hint,
.form-note {
  margin: 6px 0 0;
}
.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 26px 0 22px;
}
.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}
.form-status {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--burgundy);
  background: var(--soft);
}
.form-status[data-state="success"] {
  border-color: #28734d;
}
.form-status[data-state="error"] {
  border-color: #a43a30;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 920px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field--wide {
    grid-column: auto;
  }
  .contact-form {
    padding: 24px 20px;
  }
}


/* legal.css */
.legal-hero {
  padding-block: clamp(54px, 7vw, 88px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  max-width: 820px;
}
.legal-hero p {
  max-width: 780px;
}
.legal-draft {
  max-width: 780px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--terracotta);
  background: var(--paper);
}
.legal-draft strong {
  display: block;
  margin-bottom: 4px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}
.legal-index {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}
.legal-index a {
  display: block;
  padding-block: 9px;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}
.legal-content section + section {
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}
.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}
.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.16rem;
}
.legal-content ul {
  padding-left: 1.2rem;
}
.legal-content li + li {
  margin-top: 8px;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.legal-content th,
.legal-content td {
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}
.legal-content th {
  background: var(--soft);
}
.legal-pending {
  color: #9f321d;
  font-weight: 700;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-index {
    position: static;
  }
  .legal-content table {
    display: block;
    overflow-x: auto;
  }
}


/* cookie-consent.css */
.cookie-banner,
.cookie-panel {
  position: fixed;
  z-index: 90;
  right: var(--gutter);
  bottom: 24px;
  left: var(--gutter);
  margin-inline: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.cookie-banner {
  max-width: 1120px;
  padding: 24px;
}
.cookie-banner[hidden],
.cookie-panel[hidden] {
  display: none;
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 36px;
  align-items: end;
}
.cookie-banner h2,
.cookie-panel h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.cookie-banner p {
  max-width: 720px;
  margin: 0;
  font-size: 0.95rem;
}
.cookie-banner a,
.cookie-panel a {
  color: var(--burgundy);
  font-weight: 700;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-action {
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid var(--burgundy);
  border-radius: 6px;
  background: transparent;
  color: var(--burgundy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cookie-action:hover,
.cookie-action:focus-visible {
  background: var(--soft);
}
.cookie-action--primary {
  background: var(--burgundy);
  color: var(--white);
}
.cookie-action--primary:hover,
.cookie-action--primary:focus-visible {
  background: var(--ink);
}

.cookie-backdrop {
  position: fixed;
  z-index: 89;
  inset: 0;
  background: rgba(44, 25, 50, 0.52);
}
.cookie-backdrop[hidden] {
  display: none;
}
.cookie-panel {
  top: 50%;
  bottom: auto;
  max-width: 680px;
  max-height: calc(100vh - 40px);
  padding: 28px;
  overflow-y: auto;
  transform: translateY(-50%);
}
.cookie-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.cookie-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}
.cookie-panel__intro {
  margin-bottom: 24px;
}
.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.cookie-category h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}
.cookie-category p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 26px;
  align-self: start;
}
.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cookie-switch span {
  width: 48px;
  height: 26px;
  background: #8a747e;
  border-radius: 13px;
  cursor: pointer;
}
.cookie-switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  content: "";
  transition: left 150ms ease;
}
.cookie-switch input:checked + span {
  background: var(--burgundy);
}
.cookie-switch input:checked + span::after {
  left: 26px;
}
.cookie-switch input:focus-visible + span {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}
.cookie-switch input:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-panel .cookie-actions {
  margin-top: 24px;
}
.cookie-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cookie-banner {
    bottom: 12px;
    padding: 20px;
  }
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-action {
    width: 100%;
  }
  .cookie-panel {
    right: 12px;
    left: 12px;
    padding: 22px;
  }
}


/* cookie-trigger.css */
.cookie-floating {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(46, 31, 34, 0.22);
  cursor: pointer;
}
.cookie-floating[hidden] {
  display: none;
}
.cookie-floating:hover,
.cookie-floating:focus-visible {
  background: var(--ink);
}
.cookie-floating__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.cookie-floating__icon::after {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  background: var(--burgundy);
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  border-radius: 0 0 0 10px;
  content: "";
}
.cookie-floating:hover .cookie-floating__icon::after,
.cookie-floating:focus-visible .cookie-floating__icon::after {
  background: var(--ink);
}
.cookie-floating__icon i {
  position: absolute;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cookie-floating__icon i:nth-child(1) {
  top: 5px;
  left: 5px;
}
.cookie-floating__icon i:nth-child(2) {
  right: 5px;
  bottom: 5px;
}
.cookie-floating__icon i:nth-child(3) {
  bottom: 4px;
  left: 7px;
}


/* responsive.css */
@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
  .menu-label {
    font-size: 0.84rem;
    font-weight: 700;
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: var(--header-height) 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px var(--gutter);
    background: var(--cream);
  }
  .site-header.is-scrolled .site-nav {
    inset: var(--header-height-compact) 0 0;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 17px 0;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--line);
  }
  .hero-split,
  .home-hero .hero-split,
  .split,
  .split-even,
  .thesis-grid,
  .home-programs .section-heading,
  .day-feature,
  .people-band {
    grid-template-columns: 1fr;
  }
  .hero-split {
    gap: 52px;
  }
  .home-hero .media-frame,
  .media-frame,
  .day-feature .media-frame {
    min-height: 480px;
  }
  .day-feature-copy {
    min-height: 500px;
  }
  .three-columns {
    grid-template-columns: 1fr;
  }
  .three-columns > * {
    padding: 28px 0;
  }
  .three-columns > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .chapter-grid {
    grid-template-columns: 62px 1fr;
  }
  .chapter-grid > :last-child {
    grid-column: 2;
  }
  .sequence {
    grid-template-columns: 1fr;
  }
  .sequence > div {
    min-height: 0;
  }
  .sequence > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }
  .content-pairs {
    grid-template-columns: 1fr;
  }
  .content-pairs article,
  .content-pairs article:nth-child(even) {
    padding: 26px 0;
    border-left: 0;
  }
  .process-step {
    grid-template-columns: 52px 1fr;
  }
  .process-step p {
    grid-column: 2;
  }
  .program-chapter-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .program-chapter-header > :last-child {
    grid-column: 1;
  }
  .program-detail .chapter-grid {
    grid-template-columns: 38px 1fr;
  }
  .program-detail .chapter-grid > :last-child {
    grid-column: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --space-section: 72px;
  }
  body {
    font-size: 16px;
  }
  h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.25rem);
  }
  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }
  h3 {
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
  }
  .brand span {
    font-size: 0.78rem;
    letter-spacing: 0.045em;
  }
  .brand img {
    width: 56px;
    height: 56px;
  }
  .site-header.is-scrolled .brand img {
    width: 38px;
    height: 38px;
  }
  .site-footer .brand img {
    width: 70px;
    height: 70px;
  }
  .page-hero,
  .home-hero {
    padding-top: 54px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .text-link {
    align-self: flex-start;
  }
  .home-hero .media-frame,
  .media-frame,
  .day-feature .media-frame {
    min-height: 360px;
  }
  .pillar-diagram {
    grid-template-columns: 1fr;
  }
  .pillar {
    padding: 34px 0 38px;
  }
  .pillar + .pillar {
    padding: 38px 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
  .editorial-row {
    grid-template-columns: 34px 1fr 22px;
    gap: 12px;
  }
  .deliverables {
    grid-template-columns: 1fr;
  }
  .deliverables span {
    text-align: left;
  }
  .deliverables span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .presence p span {
    margin-inline: 0.2em;
  }
  .chapter-grid {
    grid-template-columns: 38px 1fr;
    gap: 18px 12px;
  }
  .program-chapter-header {
    padding: 30px 24px 34px;
  }
  .program-chapter-header .chapter-number {
    font-size: 3rem;
  }
  .program-chapter-header h3 {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }
  .chapter dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .chapter dd {
    margin-bottom: 12px;
  }
  .capability-list {
    grid-template-columns: 1fr;
  }
  .capability-list span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .question-block {
    min-height: 300px;
  }
  .country-list {
    gap: 4px 22px;
  }
  .contact-option {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }
}
