@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Unbounded:wght@500;700;800&display=swap");

:root {
  --ink: #171512;
  --paper: #efe7d7;
  --blue: #24488f;
  --ochre: #d9aa32;
  --brick: #c74835;
  --white: #fffaf0;
  --muted: #6a6258;
  --rule: 2px solid var(--ink);
  --page: 100%;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

body.menu-open { overflow: hidden; }

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

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 5px; }

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

svg { display: block; }

::selection { background: var(--blue); color: var(--white); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink); border: 3px solid var(--paper); }

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

.site-shell {
  width: var(--page);
  margin: 0 auto;
  overflow: hidden;
  border-right: var(--rule);
  border-left: var(--rule);
  background: var(--paper);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) 260px;
  min-height: 76px;
  border-bottom: var(--rule);
  background: var(--paper);
}

.brand,
.header-nav,
.header-action {
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.brand {
  gap: 12px;
  border-right: var(--rule);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
}

.header-nav { justify-content: center; gap: 32px; }
.header-nav a { font-size: 13px; font-weight: 800; text-decoration: none; }
.header-nav a:hover { text-decoration: underline; }

.header-action {
  justify-content: space-between;
  border-left: var(--rule);
  background: var(--brick);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 0;
  border-left: var(--rule);
  background: var(--ochre);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.arrow-icon { width: 26px; height: 20px; flex: none; }

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 64px 0 0;
  display: none;
  grid-template-rows: repeat(6, 1fr);
  background: var(--paper);
  border-top: var(--rule);
}

.mobile-menu.open { display: grid; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: var(--rule);
  font-family: "Unbounded", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.page-main { min-height: 70vh; }

.display,
.section-title,
.product-title,
.price,
.calendar-event strong,
.feature-title {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
}

.display { max-width: 13ch; font-size: clamp(54px, 8vw, 96px); font-weight: 800; text-transform: uppercase; }
.section-title { max-width: 20ch; font-size: clamp(34px, 5vw, 72px); font-weight: 700; }
.section-title--wide { max-width: 28ch; }
.product-title { max-width: 19ch; font-size: clamp(42px, 6vw, 88px); font-weight: 800; text-transform: uppercase; }

.section-title,
.product-title,
.format-card__title,
.feature-title {
  overflow-wrap: anywhere;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, .8fr);
  grid-template-rows: minmax(0, 1fr) 188px;
  border-bottom: var(--rule);
}

.hero-lead {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: 44px 4vw;
  border-right: var(--rule);
  overflow: hidden;
}

.hero-thesis {
  max-width: 21ch;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
}

.hero-controls { display: grid; grid-template-rows: repeat(3, 1fr); border-bottom: var(--rule); }
.hero-control {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px;
  border-bottom: var(--rule);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 700;
}
.hero-control:last-child { border-bottom: 0; }
.hero-control small { font-family: "Manrope", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.tone-blue { background: var(--blue); color: var(--white); }
.tone-ochre { background: var(--ochre); color: var(--ink); }
.tone-brick { background: var(--brick); color: var(--white); }
.tone-ink { background: var(--ink); color: var(--white); }
.tone-paper { background: var(--paper); color: var(--ink); }

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 28px 4vw;
  border-right: var(--rule);
}

.hero-copy p { max-width: 68ch; margin: 0; font-size: clamp(17px, 1.5vw, 23px); font-weight: 600; }
.hero-formats { max-width: 24ch; font-size: 13px; font-weight: 800; }

.block-link,
.solid-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  font-weight: 800;
  text-decoration: none;
}

.block-link { flex-direction: column; background: var(--ink); color: var(--white); }
.block-link .arrow-icon { align-self: flex-end; }
.solid-link { align-items: center; border: var(--rule); }
.solid-link:hover { background: var(--ochre); }

.section { border-bottom: var(--rule); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr) 260px;
  min-height: 220px;
  border-bottom: var(--rule);
}
.section-head > * { min-width: 0; padding: 34px 4vw; border-right: var(--rule); }
.section-head > *:last-child { border-right: 0; }
.section-head__title { display: flex; align-items: center; }
.section-head__copy { display: flex; align-items: flex-end; }
.section-head__copy p { max-width: 48ch; margin: 0; font-size: 17px; font-weight: 600; }
.section-head__action { display: flex; flex-direction: column; justify-content: space-between; font-weight: 800; text-decoration: none; }
.section-head__action .arrow-icon { align-self: flex-end; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.split > * { min-width: 0; padding: clamp(28px, 5vw, 72px); border-right: var(--rule); }
.split > *:last-child { border-right: 0; }

.manifesto-copy { font-size: clamp(22px, 2.7vw, 40px); font-weight: 700; }
.manifesto-copy p { max-width: 30ch; margin: 0 0 30px; }
.manifesto-copy p:last-child { margin-bottom: 0; }
.manifesto-copy--statement { padding: clamp(40px, 8vw, 120px); }
.manifesto-aside { display: flex; flex-direction: column; justify-content: space-between; gap: 50px; }
.manifesto-aside strong { max-width: 18ch; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(26px, 4vw, 54px); }

.format-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.format-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: 30px;
  border-right: var(--rule);
  border-bottom: var(--rule);
  text-decoration: none;
}
.format-card:nth-child(1) { grid-column: span 5; }
.format-card:nth-child(2) { grid-column: span 4; }
.format-card:nth-child(3) { grid-column: span 3; border-right: 0; }
.format-card:nth-child(4) { grid-column: span 3; }
.format-card:nth-child(5) { grid-column: span 5; }
.format-card:nth-child(6) { grid-column: span 4; border-right: 0; }
.format-card:hover .format-card__title { text-decoration: underline; text-underline-offset: 8px; }
.format-card__meta { display: flex; justify-content: space-between; gap: 20px; font-size: 12px; font-weight: 800; }
.format-card__title { max-width: 14ch; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(24px, 3vw, 42px); font-weight: 700; }
.format-card p { max-width: 42ch; margin: 0; font-weight: 600; }

.calendar-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 26px;
  border-bottom: var(--rule);
}
.calendar-month { font-family: "Unbounded", Arial, sans-serif; font-size: clamp(28px, 4vw, 56px); font-weight: 700; }
.calendar-switcher { display: flex; border: var(--rule); }
.calendar-switcher button { min-width: 54px; min-height: 52px; border: 0; background: var(--paper); cursor: pointer; }
.calendar-switcher button + button { border-left: var(--rule); }
.calendar-switcher button:hover { background: var(--ochre); }

.filters { display: flex; gap: 0; overflow-x: auto; border-bottom: var(--rule); scrollbar-width: thin; }
.filter-button {
  flex: none;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-right: var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.active,
.filter-button:hover { background: var(--ink); color: var(--white); }

.calendar-list { display: grid; }
.calendar-event {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 210px 220px;
  min-height: 145px;
  border-bottom: var(--rule);
}
.calendar-event:last-child { border-bottom: 0; }
.calendar-event > * { padding: 24px; border-right: var(--rule); }
.calendar-event > *:last-child { border-right: 0; }
.calendar-date { display: flex; flex-direction: column; justify-content: space-between; }
.calendar-date strong { font-size: 30px; }
.calendar-date span { font-size: 12px; font-weight: 800; }
.calendar-event__body { display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.calendar-event__body strong { max-width: 24ch; font-size: clamp(20px, 2.5vw, 34px); }
.calendar-event__body p { max-width: 66ch; margin: 0; font-weight: 600; }
.calendar-event__type { display: flex; flex-direction: column; justify-content: space-between; font-size: 13px; font-weight: 800; }
.calendar-event__action { display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: var(--white); font-weight: 800; text-decoration: none; }
.calendar-event__action .arrow-icon { align-self: flex-end; }
.calendar-event.hidden { display: none; }
.calendar-empty { display: none; padding: 50px; font-family: "Unbounded", Arial, sans-serif; font-size: 26px; }
.calendar-empty.visible { display: block; }

.media-strip { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(440px, .8fr); min-height: 560px; }
.media-frame { position: relative; min-height: 420px; overflow: hidden; border-right: var(--rule); background: var(--blue); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-label { position: absolute; right: 0; bottom: 0; max-width: 260px; padding: 18px 22px; border-top: var(--rule); border-left: var(--rule); background: var(--paper); font-size: 12px; font-weight: 800; }
.media-copy { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding: clamp(30px, 4vw, 60px); }
.media-copy .section-title { max-width: 16ch; font-size: clamp(30px, 3.2vw, 52px); text-wrap: balance; }
.media-copy p { max-width: 50ch; margin: 0; font-size: clamp(17px, 1.35vw, 22px); font-weight: 600; }

.experts-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.expert { min-width: 0; border-right: var(--rule); }
.expert:last-child { border-right: 0; }
.expert-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-bottom: var(--rule); }
.expert-media img { width: 100%; height: 100%; object-fit: cover; }
.expert-body { min-height: 180px; padding: 22px; }
.expert-body strong { display: block; margin-bottom: 14px; font-family: "Unbounded", Arial, sans-serif; font-size: 18px; }
.expert-body p { margin: 0; font-size: 14px; font-weight: 600; }

.page-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); min-height: 610px; border-bottom: var(--rule); }
.page-hero__copy { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding: clamp(34px, 6vw, 88px) 4vw; border-right: var(--rule); }
.page-hero__copy p { max-width: 60ch; margin: 0; font-size: clamp(18px, 2vw, 28px); font-weight: 600; }
.page-hero__side { display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.page-hero__media { position: relative; overflow: hidden; border-bottom: var(--rule); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fact { min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border-right: var(--rule); }
.fact:last-child { border-right: 0; }
.fact small { font-weight: 800; }
.fact strong { font-family: "Unbounded", Arial, sans-serif; font-size: 18px; }

.content-grid { display: grid; grid-template-columns: minmax(260px, .32fr) minmax(0, .68fr); }
.content-nav { padding: 30px; border-right: var(--rule); }
.content-nav strong { display: block; margin-bottom: 20px; font-family: "Unbounded", Arial, sans-serif; }
.content-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--ink); font-weight: 700; }
.content-body { min-width: 0; }
.content-section { padding: clamp(40px, 7vw, 100px); border-bottom: var(--rule); }
.content-section:last-child { border-bottom: 0; }
.content-section h2 { max-width: 22ch; margin: 0 0 38px; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(30px, 4vw, 58px); }
.content-section h3 { margin: 38px 0 18px; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(20px, 2.4vw, 32px); }
.content-section p { max-width: 72ch; margin: 0 0 24px; font-size: 18px; }
.content-section ul { max-width: 72ch; margin: 0; padding-left: 22px; font-size: 17px; }
.content-section li + li { margin-top: 12px; }

.result-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: var(--rule); border-left: var(--rule); }
.result-item { min-height: 170px; padding: 24px; border-right: var(--rule); border-bottom: var(--rule); }
.result-item strong { display: block; margin-bottom: 20px; font-family: "Unbounded", Arial, sans-serif; font-size: 20px; }
.result-item p { margin: 0; font-size: 15px; }

.program-steps { display: grid; }
.program-step { display: grid; grid-template-columns: 120px minmax(0, 1fr) minmax(260px, .42fr); min-height: 220px; border-bottom: var(--rule); }
.program-step > * { padding: 28px; border-right: var(--rule); }
.program-step > *:last-child { border-right: 0; }
.program-step__number { font-family: "Unbounded", Arial, sans-serif; font-size: 42px; font-weight: 800; }
.program-step h3 { max-width: 25ch; margin: 0 0 24px; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(22px, 3vw, 38px); }
.program-step p { max-width: 62ch; margin: 0; font-weight: 600; }
.program-step__result { display: flex; flex-direction: column; justify-content: space-between; gap: 30px; }
.program-step__result small { font-weight: 800; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; padding: 30px; border-right: var(--rule); }
.price-card:last-child { border-right: 0; }
.price-card h3 { max-width: 18ch; margin: 0; font-family: "Unbounded", Arial, sans-serif; font-size: 26px; }
.price { font-size: clamp(34px, 4vw, 58px); font-weight: 800; }
.price-card p { max-width: 42ch; margin: 0; font-weight: 600; }
.price-card__actions { display: grid; gap: 10px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: var(--ochre); }
.button--dark { background: var(--ink); color: var(--white); }
.button--blue { background: var(--blue); color: var(--white); }
.button--brick { background: var(--brick); color: var(--white); }

.lead-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); border-bottom: var(--rule); }
.lead-section__copy { display: flex; flex-direction: column; justify-content: space-between; gap: 50px; padding: clamp(38px, 6vw, 88px); border-right: var(--rule); }
.lead-section__copy p { max-width: 52ch; margin: 0; font-size: 18px; font-weight: 600; }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; }
.field { display: grid; gap: 8px; min-height: 120px; padding: 20px; border-right: var(--rule); border-bottom: var(--rule); }
.field:nth-child(even) { border-right: 0; }
.field label { font-size: 12px; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  outline: 0;
}
.field textarea { min-height: 70px; resize: vertical; }
.field--wide { grid-column: 1 / -1; border-right: 0; }
.form-consent { grid-column: 1 / -1; padding: 18px 20px; border-bottom: var(--rule); font-size: 12px; font-weight: 600; }
.form-consent label { display: flex; gap: 12px; align-items: flex-start; }
.form-actions { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) 210px; }
.form-submit { min-height: 80px; border: 0; border-right: var(--rule); background: var(--brick); color: var(--white); padding: 20px; text-align: left; font-weight: 800; cursor: pointer; }
.form-submit:hover { background: var(--ink); }
.form-demo { display: flex; align-items: center; padding: 20px; background: var(--ochre); font-size: 12px; font-weight: 800; }
.form-status { grid-column: 1 / -1; display: none; padding: 18px 20px; background: var(--blue); color: var(--white); font-weight: 800; }
.form-status.visible { display: block; }

.course-list { display: grid; }
.course-row { display: grid; grid-template-columns: 110px minmax(0, 1fr) 220px 220px; min-height: 150px; border-bottom: var(--rule); }
.course-row:last-child { border-bottom: 0; }
.course-row > * { padding: 24px; border-right: var(--rule); }
.course-row > *:last-child { border-right: 0; }
.course-row__number { font-family: "Unbounded", Arial, sans-serif; font-size: 30px; font-weight: 800; }
.course-row h2 { max-width: 25ch; margin: 0 0 18px; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(22px, 3vw, 38px); }
.course-row p { max-width: 56ch; margin: 0; font-weight: 600; }
.course-row__price { display: flex; align-items: center; font-family: "Unbounded", Arial, sans-serif; font-size: 24px; font-weight: 700; }
.course-row__link { display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: var(--white); font-weight: 800; text-decoration: none; }
.course-row__link .arrow-icon { align-self: flex-end; }

.club-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.club-benefit { min-height: 250px; padding: 26px; border-right: var(--rule); border-bottom: var(--rule); }
.club-benefit:nth-child(4n) { border-right: 0; }
.club-benefit h3 { margin: 0 0 24px; font-family: "Unbounded", Arial, sans-serif; font-size: 22px; }
.club-benefit p { margin: 0; font-weight: 600; }

.technical { max-width: 1000px; min-height: 70vh; padding: clamp(40px, 8vw, 120px); }
.technical h1 { margin: 0 0 44px; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(38px, 6vw, 76px); }
.technical h2 { margin: 46px 0 18px; font-family: "Unbounded", Arial, sans-serif; }
.technical p,
.technical li { max-width: 72ch; font-size: 17px; }
.draft-note { margin-bottom: 36px; padding: 20px; border: var(--rule); background: var(--ochre); font-weight: 800; }

.site-footer { background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(170px, .4fr)); }
.footer-main > * { min-height: 230px; padding: 30px; border-right: 2px solid var(--paper); }
.footer-main > *:last-child { border-right: 0; }
.footer-brand { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.footer-brand strong { max-width: 12ch; font-family: "Unbounded", Arial, sans-serif; font-size: clamp(30px, 4vw, 54px); }
.footer-col strong { display: block; margin-bottom: 22px; font-family: "Unbounded", Arial, sans-serif; font-size: 14px; }
.footer-col a { display: block; margin-bottom: 13px; font-size: 13px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 30px; border-top: 2px solid var(--paper); font-size: 12px; }

@media (prefers-reduced-motion: no-preference) {
  .calendar-event,
  .format-card,
  .course-row { transition: background-color 180ms ease-out, color 180ms ease-out; }
  .calendar-event:hover,
  .course-row:hover { background: var(--white); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 245px minmax(0, 1fr) 210px; }
  .header-nav { gap: 18px; padding: 0 16px; }
  .header-nav a { font-size: 12px; }
  .experts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .expert { border-bottom: var(--rule); }
  .expert:nth-child(3n) { border-right: 0; }
  .expert:last-child { border-right: var(--rule); }
  .calendar-event { grid-template-columns: 140px minmax(0, 1fr) 180px; }
  .calendar-event__action { grid-column: 1 / -1; min-height: 90px; border-top: var(--rule); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 280px; border-right: 0; border-bottom: var(--rule); }
  .price-card:last-child { border-bottom: 0; }
  .club-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .club-benefit:nth-child(2n) { border-right: 0; }
  .club-benefit:nth-child(4n) { border-right: 0; }
  .media-strip { grid-template-columns: 1fr; min-height: auto; }
  .media-frame { min-height: 460px; border-right: 0; border-bottom: var(--rule); }
}

@media (max-width: 820px) {
  .site-shell { border: 0; }
  .site-header { min-height: 64px; grid-template-columns: minmax(0, 1fr) 72px; }
  .brand { padding: 0 14px; border-right: 0; font-size: 13px; }
  .brand-mark { width: 36px; height: 36px; }
  .header-nav,
  .header-action { display: none; }
  .menu-toggle { display: block; }

  .hero { min-height: auto; grid-template-columns: 1fr; grid-template-rows: 400px 260px auto 130px; }
  .hero-lead { gap: 28px; padding: 28px 18px; border-right: 0; }
  .display { font-size: clamp(42px, 13vw, 70px); }
  .hero-thesis { font-size: 23px; }
  .hero-controls { grid-row: 2; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 1fr; }
  .hero-control { min-width: 0; flex-direction: column; align-items: flex-start; padding: 18px 12px; border-right: var(--rule); border-bottom: 0; font-size: 14px; overflow-wrap: anywhere; }
  .hero-control:last-child { border-right: 0; }
  .hero-copy { grid-row: 3; grid-template-columns: 1fr; gap: 20px; padding: 26px 18px; border-right: 0; }
  .hero-copy p { font-size: 18px; }

  .section-head { grid-template-columns: 1fr; }
  .section-head > * { padding: 26px 18px; border-right: 0; border-bottom: var(--rule); }
  .section-head > *:last-child { min-height: 120px; border-bottom: 0; }
  .section-title { font-size: 34px; }
  .split { grid-template-columns: 1fr; }
  .split > * { padding: 38px 20px; border-right: 0; border-bottom: var(--rule); }
  .split > *:last-child { border-bottom: 0; }
  .manifesto-copy { font-size: 23px; }
  .manifesto-aside strong { font-size: 30px; }

  .format-grid { grid-template-columns: 1fr; }
  .format-card,
  .format-card:nth-child(n) { grid-column: 1; min-height: 250px; border-right: 0; }
  .format-card__title { font-size: 28px; }

  .calendar-toolbar { grid-template-columns: 1fr; align-items: stretch; }
  .calendar-switcher { width: max-content; }
  .calendar-event { grid-template-columns: 92px minmax(0, 1fr); }
  .calendar-event__type { grid-column: 1; grid-row: 2; border-top: var(--rule); }
  .calendar-event__action { grid-column: 2; grid-row: 2; border-top: var(--rule); }
  .calendar-event > * { padding: 17px; }
  .calendar-event__body strong { font-size: 22px; }
  .calendar-event__body p { font-size: 14px; }

  .media-strip { grid-template-columns: 1fr; min-height: auto; }
  .media-frame { min-height: 390px; border-right: 0; border-bottom: var(--rule); }
  .media-copy { padding: 38px 20px; }
  .experts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expert:nth-child(odd) { border-right: var(--rule); }
  .expert:nth-child(even) { border-right: 0; }
  .expert-body { min-height: 160px; padding: 18px; }

  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero__copy { min-height: 500px; padding: 42px 20px; border-right: 0; border-bottom: var(--rule); }
  .product-title { font-size: clamp(38px, 11vw, 68px); }
  .page-hero__media { min-height: 360px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-nav { display: none; }
  .content-section { padding: 46px 20px; }
  .content-section h2 { font-size: 32px; }
  .result-list { grid-template-columns: 1fr; }
  .program-step { grid-template-columns: 72px minmax(0, 1fr); }
  .program-step__number { font-size: 28px; }
  .program-step__result { grid-column: 1 / -1; border-top: var(--rule); }
  .program-step > * { padding: 20px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .lead-section { grid-template-columns: 1fr; }
  .lead-section__copy { padding: 46px 20px; border-right: 0; border-bottom: var(--rule); }
  .lead-form { grid-template-columns: 1fr; }
  .field,
  .field:nth-child(even) { grid-column: 1; border-right: 0; }
  .form-actions { grid-template-columns: 1fr; }
  .form-submit { border-right: 0; border-bottom: var(--rule); }

  .course-row { grid-template-columns: 78px minmax(0, 1fr); }
  .course-row__price { grid-column: 1; border-top: var(--rule); }
  .course-row__link { grid-column: 2; border-top: var(--rule); min-height: 95px; }
  .club-benefits { grid-template-columns: 1fr; }
  .club-benefit,
  .club-benefit:nth-child(n) { min-height: 220px; border-right: 0; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > * { min-height: 190px; border-bottom: 2px solid var(--paper); }
  .footer-main > *:nth-child(2n) { border-right: 0; }
  .footer-brand { grid-column: 1 / -1; border-right: 0; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .experts-grid { grid-template-columns: 1fr; }
  .expert,
  .expert:nth-child(n) { border-right: 0; }
  .page-hero__facts { grid-template-columns: 1fr; }
  .fact { min-height: 100px; border-right: 0; border-bottom: var(--rule); }
  .fact:last-child { border-bottom: 0; }
  .calendar-event { grid-template-columns: 78px minmax(0, 1fr); }
  .calendar-event__type { display: none; }
  .calendar-event__action { grid-column: 1 / -1; grid-row: auto; }
  .course-row { grid-template-columns: 64px minmax(0, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > * { border-right: 0; }
}
