@font-face {
  font-family: "Poggers";
  src: url("assets/poggers-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-regular.ttf") format("truetype");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --gold: #f8b913;
  --gold-dark: #d99d00;
  --ink: #050505;
  --charcoal: #121212;
  --grey: #89898a;
  --paper: #f3f3f0;
  --white: #fff;
  --line: rgba(5, 5, 5, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  color: #000;
  background: var(--gold);
  font-weight: 700;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--shell);
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.site-header .brand img {
  width: auto;
  height: 72px;
}

.site-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header p span {
  padding-inline: 8px;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.7) 44%, rgba(0, 0, 0, 0.1) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 790px;
  padding-top: 188px;
  padding-bottom: 110px;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.eyebrow span {
  width: 42px;
  height: 3px;
  background: var(--gold);
}

.hero h1,
.section h2,
.programme h2,
.real-life h2,
.member-stories h2,
.path-grid h3 {
  font-family: "Poggers", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.3rem, 8vw, 8.6rem);
  line-height: 0.84;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 34px 0 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 2px solid var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #ffd150;
}

.button-primary {
  color: #050505;
  background: var(--gold);
}

.application-card {
  position: relative;
  padding: 34px;
  border-top: 4px solid var(--gold);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.application-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  place-items: center;
  color: #000;
  background: var(--gold);
  font-weight: 800;
}

.application-label {
  margin: 0 0 10px;
  color: #626262;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-card h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.application-card > p:not(.application-label) {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.application-note {
  display: flex;
  margin-top: 30px;
  padding-top: 20px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #d8d8d8;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.application-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(248, 185, 19, 0.2);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 130px;
  background: var(--gold);
}

.hero-facts-inner {
  display: grid;
  min-height: 130px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.hero-facts span {
  display: flex;
  min-height: 46px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  color: #080808;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
}

.hero-facts span:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-number {
  position: absolute;
  top: 76px;
  left: -14px;
  color: rgba(0, 0, 0, 0.055);
  font-family: "Poggers", Impact, sans-serif;
  font-size: 11rem;
  line-height: 1;
}

.kicker {
  color: #6a6a6a;
}

.kicker::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 12px;
  vertical-align: 3px;
  background: var(--gold);
  content: "";
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 110px;
}

.booking-section {
  color: #fff;
  background: #0b0b0b;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(500px, 1.32fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.booking-copy {
  position: sticky;
  top: 40px;
  padding-top: 34px;
}

.booking-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.9;
}

.booking-copy > p:last-of-type {
  max-width: 500px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.7);
}

.booking-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-copy li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 700;
}

.booking-copy li::before {
  position: absolute;
  top: 23px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.booking-widget {
  min-height: 790px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.booking-widget iframe {
  display: block;
  width: 100%;
  min-height: 740px;
  border: 0;
  overflow: hidden;
  background: #fff;
}

.booking-widget > p {
  margin: 0;
  padding: 10px 16px 14px;
  color: #686868;
  font-size: 0.72rem;
  text-align: center;
}

.booking-widget a {
  color: #111;
  font-weight: 800;
}

.intro-section h2,
.path-heading h2,
.real-life h2,
.next-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.94;
}

.intro-copy {
  padding-top: 44px;
  color: #484848;
  font-size: 1.04rem;
}

.intro-copy p {
  margin: 0 0 24px;
}

.programme {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.programme-visual {
  position: relative;
  min-height: 900px;
}

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

.visual-label {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(270px, 52%);
  min-height: 180px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
  color: #000;
  background: var(--gold);
}

.visual-label strong {
  font-family: "Poggers", Impact, sans-serif;
  font-size: 4.5rem;
  line-height: 0.9;
}

.visual-label span {
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.programme-content {
  padding: 110px clamp(38px, 6vw, 110px);
}

.programme-content h2 {
  max-width: 600px;
  margin: 0 0 50px;
  font-size: clamp(3rem, 4.8vw, 5.3rem);
  line-height: 0.92;
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.included-list li > span {
  color: var(--gold-dark);
  font-family: "Poggers", Impact, sans-serif;
  font-size: 1.1rem;
}

.included-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.included-list p {
  margin: 0;
  color: #666;
  font-size: 0.84rem;
  line-height: 1.5;
}

.reset-path {
  color: #fff;
  background: var(--charcoal);
}

.path-heading {
  display: grid;
  margin-bottom: 76px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.path-heading h2 {
  max-width: 800px;
}

.path-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
}

.path-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.path-grid li {
  position: relative;
  min-height: 300px;
  padding: 34px 30px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.path-grid li:not(:first-child) {
  padding-left: 30px;
}

.path-grid li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--gold);
  content: "";
}

.path-grid li:not(:first-child)::before {
  left: 30px;
}

.path-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-grid h3 {
  margin: 58px 0 12px;
  font-size: 2.3rem;
}

.path-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.real-life {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1fr 1fr;
  color: #080808;
  background: var(--gold);
}

.real-life-copy {
  padding: 120px max(48px, calc((100vw - 1180px) / 2));
  padding-right: clamp(50px, 7vw, 130px);
}

.real-life .kicker {
  color: rgba(0, 0, 0, 0.65);
}

.real-life .kicker::before {
  background: #000;
}

.real-life-copy > p:not(.kicker) {
  max-width: 640px;
  margin: 32px 0 0;
  font-size: 1.04rem;
}

.audience-list {
  display: grid;
  margin-top: 54px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.26);
}

.audience-list span {
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.26);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.real-life-image {
  min-height: 760px;
}

.real-life-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-stories {
  color: #fff;
  background: #080808;
}

.stories-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.stories-heading h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.88;
}

.stories-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
}

.member-stories .kicker {
  color: rgba(255, 255, 255, 0.58);
}

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

.story-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #151515;
}

.story-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.story-card.story-landscape {
  grid-column: span 2;
}

.story-card.story-landscape video {
  aspect-ratio: 16 / 9;
}

.story-card > div {
  min-height: 92px;
  padding: 20px 22px;
}

.story-card strong,
.story-card span {
  display: block;
}

.story-card strong {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.stories-more {
  margin-top: 28px;
}

.stories-more summary {
  display: flex;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 2px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.stories-more summary::-webkit-details-marker {
  display: none;
}

.stories-more summary b {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.stories-more summary:hover,
.stories-more summary:focus-visible {
  color: #050505;
  background: var(--gold);
}

.stories-more[open] summary b {
  transform: rotate(45deg);
}

.stories-subhead {
  margin: 44px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 58px;
}

.proof-mark {
  width: 90px;
  height: 90px;
  object-fit: cover;
  object-position: top;
}

.proof blockquote {
  max-width: 690px;
  margin: 0 0 24px;
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
  line-height: 1.22;
}

.proof cite {
  color: #333;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.proof cite span {
  color: #777;
  font-weight: 400;
}

.proof-points {
  border-top: 1px solid var(--line);
}

.proof-points div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  margin-bottom: 4px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.proof-points span {
  color: #6c6c6c;
  font-size: 0.82rem;
}

.next-step {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.next-copy > p:last-child {
  max-width: 480px;
  margin-top: 30px;
  color: #555;
}

.next-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.next-list li {
  display: grid;
  padding: 26px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--line);
}

.next-list li > span {
  color: var(--gold-dark);
  font-family: "Poggers", Impact, sans-serif;
  font-size: 1.2rem;
}

.next-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.next-list p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.84rem;
}

.contact-strip {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 10px;
  padding: 28px 32px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: #111;
}

.contact-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-strip a {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.6);
  background: #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer img {
  width: auto;
  height: 94px;
}

.footer p,
.footer a {
  margin: 0;
  font-size: 0.72rem;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

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

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .hero {
    min-height: 1050px;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.64) 68%, rgba(0, 0, 0, 0.32) 100%);
  }

  .hero-content {
    min-height: 920px;
    padding-top: 170px;
    padding-bottom: 160px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 46px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .application-card {
    max-width: 520px;
  }

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

  .hero-facts span {
    min-height: 56px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .intro-section,
  .booking-layout,
  .path-heading,
  .stories-heading,
  .proof,
  .next-step {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .booking-copy {
    position: static;
    padding-top: 0;
  }

  .programme,
  .real-life {
    grid-template-columns: 1fr;
  }

  .programme-visual,
  .real-life-image {
    min-height: 620px;
  }

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

  .real-life-copy {
    padding-inline: max(24px, calc((100vw - 760px) / 2));
  }

  .proof-mark {
    display: none;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  .site-header {
    min-height: 86px;
  }

  .site-header .brand img {
    width: auto;
    height: 58px;
  }

  .site-header p {
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 1000px;
  }

  .hero-image {
    height: 53%;
    object-position: 51% 47%;
  }

  .hero-content {
    min-height: 870px;
    padding-top: 310px;
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
  }

  .hero-intro {
    margin-block: 24px 28px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    font-size: 0.72rem;
  }

  .application-card {
    padding: 26px;
  }

  .application-icon {
    margin-bottom: 22px;
  }

  .hero-facts span {
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-number {
    top: 38px;
    font-size: 8rem;
  }

  .intro-section h2,
  .booking-copy h2,
  .path-heading h2,
  .stories-heading h2,
  .real-life h2,
  .next-copy h2 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .programme-visual,
  .real-life-image {
    min-height: 440px;
  }

  .visual-label {
    min-height: 126px;
    padding: 20px;
  }

  .visual-label strong {
    font-size: 3.3rem;
  }

  .programme-content,
  .real-life-copy {
    padding: 82px 20px;
  }

  .booking-widget {
    min-height: 720px;
    padding: 4px;
  }

  .booking-widget iframe {
    min-height: 680px;
  }

  .programme-content h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .included-list li {
    grid-template-columns: 42px 1fr;
  }

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

  .path-grid li,
  .path-grid li:not(:first-child) {
    min-height: 230px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .path-grid li:not(:first-child)::before {
    left: 0;
  }

  .path-grid h3 {
    margin-top: 42px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .proof {
    gap: 34px;
  }

  .proof blockquote {
    font-size: 1.85rem;
  }

  .stories-heading {
    margin-bottom: 44px;
    gap: 24px;
  }

  .stories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .story-card.story-landscape {
    grid-column: 1 / -1;
  }

  .story-card > div {
    min-height: 108px;
    padding: 15px;
  }

  .next-list li {
    grid-template-columns: 52px 1fr;
  }

  .contact-strip,
  .footer-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer p {
    max-width: 310px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keep content inside its grid track, including narrow in-app browsers. */
main *, .site-header > *, .footer-inner > * { min-width: 0; }
h1, h2, h3, p, li, a, strong, span { overflow-wrap: break-word; }
.reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
.booking-copy { position: static; }
html { scroll-behavior: auto; }
.hero h1, .programme-content h2, .intro-section h2, .booking-copy h2,
.path-heading h2, .stories-heading h2, .real-life h2, .next-copy h2 { line-height: 1.04; }
@media (max-width: 980px) {
 .hero-content, .programme, .real-life, .intro-section, .booking-layout,
 .path-heading, .stories-heading, .proof, .next-step { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 620px) {
 .hero h1 { font-size: clamp(2.5rem, 13vw, 3.4rem); }
 .programme-content h2, .intro-section h2, .booking-copy h2,
 .path-heading h2, .stories-heading h2, .real-life h2, .next-copy h2 {
   font-size: clamp(2rem, 10vw, 2.7rem);
 }
 .included-list li { grid-template-columns: 32px minmax(0, 1fr); }
 .next-list li { grid-template-columns: 40px minmax(0, 1fr); }
 .booking-widget { width: 100%; }
 .booking-widget iframe { max-width: 100%; }
}
