@font-face {
  font-family: "Newake";
  src: url("../assets/fonts/newake-font-demo.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/avenirltstd-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/avenirltstd-roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/avenirltstd-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../assets/fonts/avenirltstd-heavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --navy: #0c355a;
  --navy-dark: #071e35;
  --navy-mid: #0a2a47;
  --gold: #d49829;
  --crimson: #ad2b2b;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-lt: #e9ecef;
  --gray-text: #555555;
  --font-head: "Newake", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Avenir", "Segoe UI", Roboto, sans-serif;
  --ease: 0.3s ease;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  --radius: 1.2rem;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Inline SVG icon system */
.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Utility */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.title-light {
  color: var(--white);
}
.gold-bar {
  width: 4.8rem;
  height: 0.32rem;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 2.4rem;
}
.gold-bar--center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.body-text {
  font-size: 1.7rem;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 1.8rem;
}
.body-emphasis {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.9rem;
}
.gold-name {
  color: var(--gold);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Buttons — <a> tags styled as buttons, zero JS needed for navigation */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.7rem 2.8rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}
.btn--primary {
  background-color: var(--crimson);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(173, 43, 43, 0.35);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 152, 41, 0.4);
  color: var(--white);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--large {
  font-size: 1.7rem;
  padding: 1.9rem 3rem;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.badge .ic {
  color: var(--gold);
  font-size: 1.5rem;
}

/* Two-col */
.two-col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Image frame */
.img-frame {
  position: relative;
  border-radius: var(--radius);
}
.img-frame img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.img-accent {
  position: absolute;
  bottom: -1.4rem;
  left: -1.4rem;
  width: 55%;
  height: 55%;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.45;
  pointer-events: none;
}
.img-accent--right {
  left: auto;
  right: -1.4rem;
}

/* HEADER */
.mc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 2rem;
  background: transparent;
  transition:
    background var(--ease),
    box-shadow var(--ease);
}
.mc-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.mc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.mc-logo {
  height: 3.4rem;
  width: auto;
}
.mc-header__btn {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background var(--ease);
  text-decoration: none;
  display: inline-block;
}
.mc-header__btn:hover,
.mc-header__btn:focus-visible {
  background: var(--gold);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../assets/imgs/backgrounds/herobg.webp") center/cover
    no-repeat;
  padding: 10rem 2rem 6rem;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 30, 53, 0.93) 0%,
    rgba(12, 53, 90, 0.86) 55%,
    rgba(173, 43, 43, 0.38) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero__pill {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(212, 152, 41, 0.4);
  border-radius: 50px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 9vw, 7rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero__subtitle {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.hero__subtext {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

/* CORE */
.sec-core {
  padding: 7rem 0;
  background: var(--white);
}

/* PILLARS */
.sec-pillars {
  padding: 7rem 0;
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition:
    background var(--ease),
    transform var(--ease),
    border-color var(--ease);
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.pillar-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: rgba(212, 152, 41, 0.15);
  border: 1px solid rgba(212, 152, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.pillar-icon .ic {
  font-size: 2rem;
  color: var(--gold);
}
.pillar-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.pillar-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pillar-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* ACCORDION — native details/summary, zero JS */
.sec-cover {
  padding: 7rem 0;
  background: var(--off-white);
}
.accordion {
  margin: 2.4rem 0;
}
details.acc-item {
  border-bottom: 1px solid var(--gray-lt);
}
details.acc-item:first-child {
  border-top: 1px solid var(--gray-lt);
}
summary.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  cursor: pointer;
  padding: 1.4rem 0;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
summary.acc-header::-webkit-details-marker {
  display: none;
}
.acc-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}
.acc-x {
  color: var(--crimson);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.acc-left strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.acc-chevron {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--ease);
}
details[open] > summary .acc-chevron {
  transform: rotate(180deg);
}
.acc-body {
  padding: 0.4rem 0 1.4rem 2.8rem;
  font-size: 1.55rem;
  line-height: 1.7;
  color: var(--gray-text);
}

/* Stat block */
.stat-block {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 1.6rem;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat-block::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border: 2px solid rgba(212, 152, 41, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.stat-block::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  border: 2px solid rgba(212, 152, 41, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 0;
}
.stat__number {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 10vw, 6rem);
  color: var(--white);
  line-height: 1;
}
.stat__pct {
  font-size: 3.2rem;
  color: var(--gold);
}
.stat__label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 4rem;
  height: 1px;
  background: rgba(212, 152, 41, 0.3);
  margin: 0.4rem auto;
}
.stat-caption {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 1.8rem 0 0;
}

/* WHO */
.sec-who {
  padding: 7rem 0;
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
}
.who-intro {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
  text-align: center;
}
.who-grid {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 4rem;
}
.who-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 3rem 2.4rem;
}
.who-card-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(212, 152, 41, 0.22);
}
.who-icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(212, 152, 41, 0.14);
  border: 1px solid rgba(212, 152, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.who-icon .ic {
  color: var(--gold);
  font-size: 1.9rem;
}
.who-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  color: var(--white);
}
.who-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}
.who-x {
  color: var(--crimson);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.who-divider {
  display: none;
}
.who-cta-wrap {
  text-align: center;
  margin-top: 4rem;
}

/* ABOUT */
.sec-about {
  padding: 7rem 0;
  background: var(--white);
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.cred-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
}
.cred-tag .ic {
  color: var(--gold);
}

/* REGISTER */
.sec-register {
  padding: 8rem 2rem;
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
  text-align: center;
}
.sec-register .section-title {
  color: var(--white);
}
.register-sub {
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}
.register-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.register-card__head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 2.4rem 2.4rem 2rem;
  text-align: center;
}
.register-card__head h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.4rem;
}
.register-card__head p {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
}
.register-card__form {
  height: 45rem;
  padding-bottom: 5rem;
}
.register-card__form iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FINAL */
.sec-final {
  position: relative;
  padding: 9rem 2rem;
  text-align: center;
  background: url("../assets/imgs/backgrounds/div3.webp") center/cover no-repeat;
}
.sec-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 30, 53, 0.95) 0%,
    rgba(12, 53, 90, 0.92) 100%
  );
  pointer-events: none;
}
.sec-final__content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.final-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}
.final-text {
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.sec-final .badges {
  margin-top: 3rem;
}

/* FOOTER */
.mc-footer {
  background: var(--navy-dark);
  padding: 5rem 2rem 3rem;
}
.mc-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  text-align: center;
}
.footer-logo {
  height: 3.8rem;
  width: auto;
}
.footer-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-blog-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.footer-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-head);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 152, 41, 0.3);
  padding-bottom: 0.2rem;
  transition:
    color var(--ease),
    border-color var(--ease);
}
.footer-blog-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.footer-blog-link .ic {
  transition: transform var(--ease);
}
.footer-blog-link:hover .ic {
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  width: 100%;
}
.footer-copy {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
}
.footer-copy a {
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--ease);
}
.footer-copy a:hover {
  color: var(--gold);
}

/* LEGAL PAGES */
.sec-legal {
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
  padding: 12rem 0 7rem;
  min-height: 100svh;
}
.legal-updated {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}
.legal-body {
  max-width: 78rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.6rem;
  line-height: 1.8;
}
.legal-body h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--white);
  margin: 3.6rem 0 1.2rem;
  letter-spacing: 0.02em;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p {
  margin-bottom: 1.6rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.6rem;
}
.legal-body ul li {
  margin-bottom: 0.6rem;
}
.legal-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 152, 41, 0.4);
  transition: color var(--ease);
}
.legal-body a:hover,
.legal-body a:focus-visible {
  color: var(--white);
}
.legal-placeholder {
  background: rgba(212, 152, 41, 0.1);
  border: 1px solid rgba(212, 152, 41, 0.35);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 2rem;
  margin-bottom: 3rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE 640px+ */
@media (min-width: 640px) {
  .btn {
    width: auto;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
}

/* RESPONSIVE 900px+ */
@media (min-width: 900px) {
  .two-col {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
  .two-col > * {
    flex: 1;
  }
  .two-col--reverse {
    flex-direction: row-reverse;
  }
  .who-grid {
    flex-direction: row;
    align-items: start;
  }
  .who-grid .who-card {
    flex: 1;
  }
  .who-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex-shrink: 0;
  }
  .who-divider span {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--gold);
    background: rgba(212, 152, 41, 0.13);
    border: 2px solid rgba(212, 152, 41, 0.28);
    border-radius: 50%;
    width: 5.2rem;
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pillar-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(212, 152, 41, 0.38);
  }
  .who-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
  }
  .cred-tag:hover {
    background: rgba(212, 152, 41, 0.08);
    border-color: rgba(212, 152, 41, 0.38);
  }
  .sec-core,
  .sec-cover,
  .sec-about,
  .sec-pillars,
  .sec-who {
    padding: 9rem 0;
  }
  .section-header {
    margin-bottom: 5rem;
  }
}

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