:root {
  --bg: #07050d;
  --bg-deep: #030208;
  --panel: rgba(15, 11, 25, 0.82);
  --panel-strong: rgba(11, 8, 20, 0.95);
  --text: #f8f2e8;
  --muted: #c8bed1;
  --gold: #e1b95e;
  --gold-light: #f7dc98;
  --purple: #8d49c5;
  --line: rgba(225, 185, 94, 0.32);
  --border: rgba(225, 185, 94, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 5% 12%, rgba(100, 31, 139, 0.18), transparent 23rem),
    radial-gradient(circle at 92% 42%, rgba(82, 22, 122, 0.2), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(225,185,94,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 85%, rgba(255,255,255,.5) 0 1px, transparent 1.5px);
  background-size: 190px 190px, 260px 260px, 330px 330px;
}

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

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

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: #110b04;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(225, 185, 94, 0.16);
  background: rgba(5, 3, 10, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 30px;
}

.brand {
  display: flex;
  flex-direction: column;
  width: 185px;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand span {
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.46em;
}

.brand strong {
  font-size: 21px;
  font-weight: 500;
}

.brand small {
  margin-top: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 6px;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #e6deeb;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--gold-light);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(8, 5, 14, 0.82);
  color: var(--gold-light);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid #f0c660;
  border-radius: 9px;
  background: linear-gradient(135deg, #f1c45f 0%, #bd7917 62%, #e9ad3e 100%);
  box-shadow: 0 10px 35px rgba(220, 153, 39, 0.18), inset 0 1px rgba(255, 255, 255, 0.34);
  color: #130c05;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 42px rgba(220, 153, 39, 0.32), inset 0 1px rgba(255, 255, 255, 0.34);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  border-color: var(--gold);
  background: transparent;
  box-shadow: none;
  color: var(--gold-light);
  font-size: 11px;
  text-transform: uppercase;
}

.button-small:hover {
  background: var(--gold);
  color: #130c05;
}

.button-ghost {
  border-color: #9658b6;
  background: rgba(97, 38, 123, 0.12);
  box-shadow: inset 0 0 24px rgba(151, 58, 195, 0.14);
  color: var(--text);
}

.button-large {
  min-height: 60px;
  padding: 16px 30px;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: auto;
  padding-top: 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(99, 40, 132, 0.16), transparent 28rem),
    #05030a;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 88px 0 auto;
  height: 25%;
  background: linear-gradient(to bottom, rgba(3,2,8,.56), transparent);
}

.hero::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(7,5,13,.9) 52%, transparent 100%);
}

.hero-art {
  position: absolute;
  top: 88px;
  right: 0;
  left: 0;
  display: block;
  height: clamp(360px, 40vw, 768px);
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,3,10,.16), transparent 50%, rgba(5,3,10,.1)),
    radial-gradient(circle at 52% 40%, transparent 38%, rgba(6,4,12,.2) 100%);
  content: "";
}

.hero-cta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: clamp(330px, 34vw, 652px);
  padding-bottom: 54px;
}

.hero-cta .button {
  min-width: 215px;
}

.offer-action p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.offer-action p svg {
  width: 14px;
  color: var(--gold-light);
}

.glass-panel {
  border: 1px solid rgba(225, 185, 94, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(33, 17, 48, 0.32), rgba(7, 5, 13, 0.86)),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.025);
}

.intro {
  padding-top: 110px;
}

.intro::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, 1000px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0.42;
  transform: translateX(-50%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(460px, 1.15fr);
  overflow: hidden;
}

.intro-visual {
  position: relative;
  min-height: 570px;
}

.intro-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(9, 6, 16, .92) 100%);
  content: "";
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-copy {
  align-self: center;
  padding: 56px 56px 56px 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h2,
h3 {
  margin-top: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 400;
}

h2 {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.intro-copy h2 span {
  color: var(--gold);
}

.intro-copy > p:not(.eyebrow) {
  margin: 0 0 14px;
  color: #ddd4df;
  font-size: 13px;
  line-height: 1.7;
}

.audience-section {
  padding-top: 0;
}

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

.checklist-panel {
  padding: 38px;
}

.checklist-panel h2 {
  min-height: 2.35em;
  margin-bottom: 26px;
  font-size: clamp(28px, 3.2vw, 40px);
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(6, 4, 12, 0.5);
  color: #ded5df;
  font-size: 13px;
}

.checklist li svg {
  width: 24px;
  min-width: 24px;
  color: #ba72e7;
  filter: drop-shadow(0 0 8px rgba(183, 87, 235, 0.65));
  stroke-width: 1.5;
}

.lessons-section {
  padding-top: 10px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading::after {
  display: block;
  width: min(320px, 70%);
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0.55;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lesson-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: border-color 220ms ease, transform 220ms ease;
}

.lesson-card:hover {
  border-color: rgba(225, 185, 94, 0.58);
  transform: translateY(-6px);
}

.lesson-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, transparent 34%, rgba(6,4,12,.82) 59%, #06040c 82%);
  content: "";
}

.lesson-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lesson-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px 28px;
}

.lesson-content > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lesson-content h3 {
  margin: 8px 0 16px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.25;
}

.lesson-content ul {
  margin: 0;
  padding-left: 18px;
  color: #d7cdd8;
  font-size: 12px;
  line-height: 1.55;
}

.lesson-content li::marker {
  color: var(--gold);
}

.format-section {
  padding-top: 36px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 28px 16px;
  border: 1px solid rgba(225, 185, 94, 0.16);
  border-radius: 18px;
  background: rgba(10, 7, 17, 0.7);
  box-shadow: var(--shadow);
}

.format-grid article {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-right: 1px solid rgba(225, 185, 94, 0.18);
  text-align: center;
}

.format-grid article:last-child {
  border: 0;
}

.format-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  color: var(--gold-light);
  stroke-width: 1.35;
}

.format-grid strong {
  font-size: 12px;
  font-weight: 600;
}

.format-grid span {
  color: var(--muted);
  font-size: 11px;
}

.offer-section {
  padding-top: 30px;
}

.offer-card {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr auto 0.85fr;
  gap: 38px;
  overflow: hidden;
  padding: 42px 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 113, 27, 0.18), transparent 22rem),
    linear-gradient(120deg, rgba(45, 20, 63, 0.55), rgba(7, 5, 13, 0.95) 45%);
  box-shadow: var(--shadow);
}

.offer-card::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(225, 185, 94, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(225,185,94,.025), 0 0 0 65px rgba(225,185,94,.02);
  content: "";
}

.offer-copy {
  position: relative;
}

.offer-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.5vw, 40px);
}

.offer-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.offer-price {
  position: relative;
  text-align: center;
}

.offer-price > span:first-child {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.offer-price p {
  margin: 3px 0;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  white-space: nowrap;
}

.offer-price p small {
  font-size: 16px;
}

.offer-price > span:last-child {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.offer-action {
  position: relative;
  text-align: center;
}

.offer-action .button {
  width: 100%;
}

.facilitator {
  padding-bottom: 70px;
}

.facilitator-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, .8fr) minmax(460px, 1.2fr);
  gap: 80px;
}

.facilitator-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 52% 52% 18px 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 70px rgba(89,36,121,.2);
}

.facilitator-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,5,13,.85), transparent 35%);
  content: "";
}

.facilitator-photo img {
  width: 100%;
  aspect-ratio: .79;
  object-fit: cover;
  object-position: center top;
}

.facilitator-copy {
  max-width: 630px;
}

.facilitator-copy h2 {
  margin-bottom: 6px;
}

.facilitator-copy h3 {
  margin-bottom: 26px;
  color: #d7c4dc;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .08em;
}

.facilitator-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.text-link svg {
  width: 16px;
}

.faq-section {
  padding-top: 70px;
  border-top: 1px solid rgba(225, 185, 94, .1);
}

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

details {
  overflow: hidden;
  border: 1px solid rgba(225, 185, 94, .22);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 16, 34, .84), rgba(10,7,17,.92));
  transition: border-color 180ms ease;
}

details[open] {
  border-color: rgba(225, 185, 94, .58);
}

summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary svg {
  width: 19px;
  min-width: 19px;
  color: var(--gold-light);
  transition: transform 180ms ease;
}

details[open] summary svg {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 12px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,3,10,.88), rgba(5,3,10,.32) 50%, rgba(5,3,10,.72)),
    linear-gradient(to top, rgba(5,3,10,.9), transparent 50%),
    url("assets/images/WhatsApp Image 2026-08-17 at 17.44.20.jpeg") center 63% / cover no-repeat;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(147,61,196,.26), transparent 32%);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  color: #fff5f9;
  font-size: clamp(34px, 6vw, 66px);
  text-shadow: 0 4px 28px rgba(0,0,0,.7);
}

footer {
  padding: 28px 0;
  border-top: 1px solid rgba(225, 185, 94, .12);
  background: #030207;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #887e8f;
  font-size: 10px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold-light);
  transition: color 180ms ease;
}

.footer-inner a:hover {
  color: #fff3c8;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 10px;
  }

  .lesson-card {
    min-height: 560px;
  }

  .offer-card {
    grid-template-columns: 1fr auto;
  }

  .offer-copy {
    grid-column: 1 / -1;
    text-align: center;
  }

  .facilitator-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .section {
    padding: 74px 0;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    width: 150px;
  }

  .brand strong {
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(7, 4, 13, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(225, 185, 94, .1);
    font-size: 11px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero::before {
    top: 74px;
  }

  .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero-art img {
    height: auto;
    object-fit: contain;
  }

  .hero-cta {
    justify-content: flex-start;
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .intro {
    padding-top: 74px;
  }

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

  .intro-visual {
    min-height: 420px;
  }

  .intro-visual::after {
    background: linear-gradient(to bottom, transparent 55%, rgba(9,6,16,.95));
  }

  .intro-copy {
    margin-top: -70px;
    padding: 32px;
    position: relative;
    z-index: 2;
  }

  .dual-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .checklist-panel h2 {
    min-height: auto;
  }

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

  .lesson-card {
    min-height: 640px;
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-grid article {
    border-right: 1px solid rgba(225, 185, 94, 0.18);
    border-bottom: 1px solid rgba(225, 185, 94, 0.18);
  }

  .format-grid article:nth-child(2n) {
    border-right: 0;
  }

  .format-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
    text-align: center;
  }

  .offer-copy {
    grid-column: auto;
  }

  .facilitator-grid {
    grid-template-columns: minmax(250px, .8fr) 1.2fr;
    gap: 34px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-art {
    width: 100%;
    height: auto;
  }

  .hero-art img {
    width: 100%;
    height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .button {
    width: 100%;
    min-width: 0;
  }

  .intro-visual {
    min-height: 360px;
  }

  .intro-copy {
    padding: 28px 22px 32px;
  }

  .intro-copy h2 br {
    display: none;
  }

  .checklist-panel {
    padding: 26px 18px;
  }

  .checklist li {
    padding: 12px;
    font-size: 12px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .lesson-card {
    min-height: 570px;
  }

  .lesson-content {
    padding: 26px 22px;
  }

  .format-grid {
    padding: 12px;
  }

  .format-grid article {
    min-height: 135px;
    padding: 10px 6px;
  }

  .format-grid svg {
    width: 31px;
    height: 31px;
  }

  .offer-section {
    padding-top: 20px;
  }

  .offer-card {
    padding: 34px 20px;
  }

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

  .facilitator-photo {
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .facilitator-copy {
    text-align: center;
  }

  .final-cta {
    min-height: 500px;
  }

  .final-cta h2 br {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
