:root {
  --turquoise: #14e7c7;
  --petrol: #25796b;
  --deep-teal: #0d4f49;
  --accent: #6157ff;
  --accent-dark: #4338ca;
  --paper: #eefbf7;
  --sand: #d9f5ee;
  --ink: #17110f;
  --muted: #536560;
  --line: transparent;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(238, 251, 247, 0.92);
  backdrop-filter: blur(18px);
  display: flex;
  min-height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--deep-teal);
  font-weight: 950;
  text-transform: uppercase;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 0.88rem;
  font-weight: 850;
}

nav a:hover,
.site-footer a:hover {
  color: var(--petrol);
}

.icon-link,
.instagram-footer {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.icon-link svg,
.instagram-footer svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 21px;
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.hero__shade {
  background:
    radial-gradient(circle at 84% 12%, rgba(20, 231, 199, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(13, 79, 73, 0.96), rgba(13, 79, 73, 0.72) 46%, rgba(23, 17, 15, 0.24)),
    linear-gradient(0deg, rgba(23, 17, 15, 0.52), transparent 42%);
  inset: 0;
  position: absolute;
}

.hero__brand-mark {
  border: 3px solid rgba(20, 231, 199, 0.78);
  border-radius: 50%;
  height: 34vw;
  max-height: 460px;
  max-width: 460px;
  min-height: 210px;
  min-width: 210px;
  position: absolute;
  right: -8vw;
  top: 92px;
  width: 34vw;
  z-index: 1;
}

.hero__brand-mark::after {
  border: 2px solid rgba(20, 231, 199, 0.46);
  border-radius: 50%;
  content: "";
  inset: 10%;
  position: absolute;
}

.hero__content {
  color: var(--white);
  max-width: 1080px;
  padding: clamp(104px, 15svh, 150px) clamp(20px, 5vw, 72px) 96px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--teal .section-label,
.moments .section-label {
  color: var(--turquoise);
}

h1,
h2,
h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 1080px;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

p,
li {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.hero__copy {
  color: rgba(255, 255, 255, 0.9);
  max-width: 660px;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.contact__actions a,
.page-content a.cta {
  align-items: center;
  background: var(--turquoise);
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  min-height: 48px;
  padding: 0 18px;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.contact__actions a:hover,
.page-content a.cta:hover {
  transform: translateY(-2px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: var(--white);
}

.hero__note {
  bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  left: clamp(20px, 5vw, 72px);
  position: absolute;
  z-index: 2;
}

.section {
  overflow: hidden;
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 72px);
  position: relative;
}

.section::before {
  border: 2px solid rgba(20, 231, 199, 0.34);
  border-radius: 50%;
  content: "";
  height: clamp(120px, 18vw, 260px);
  pointer-events: none;
  position: absolute;
  right: clamp(-110px, -8vw, -40px);
  top: clamp(28px, 8vw, 80px);
  width: clamp(120px, 18vw, 260px);
}

.split,
.stage,
.contact {
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.split p,
.stage__content p,
.contact p {
  max-width: 700px;
}

.section--teal {
  background: var(--deep-teal);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.section--teal::after {
  border: 2px solid rgba(20, 231, 199, 0.56);
  border-radius: 50%;
  bottom: -110px;
  content: "";
  height: 280px;
  position: absolute;
  right: -80px;
  width: 280px;
}

.section--teal p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(32px, 5vw, 72px);
}

.pathway-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.pathway {
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  border-radius: 6px;
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.pathway:hover {
  border-color: var(--turquoise);
  transform: translateY(-3px);
}

.pathway img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  width: 104px;
}

.pathway span,
.page-content .label {
  color: var(--turquoise);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pathway h3,
.pathway p {
  margin-bottom: 0;
}

.stage {
  align-items: center;
  background: var(--sand);
}

.stage::before {
  left: -82px;
  right: auto;
  top: 54px;
}

.stage__image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.stage__image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.success-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.success-list li {
  background: rgba(255, 255, 255, 0.54);
  border-radius: 6px;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.success-list strong {
  color: var(--deep-teal);
  font-size: 1.18rem;
}

.success-list span {
  color: var(--muted);
}

.offers {
  background: var(--paper);
}

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

.offer-list a {
  background: rgba(255, 255, 255, 0.68);
  border-radius: 6px;
  display: grid;
  gap: 16px;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
  overflow: hidden;
  padding: 0 0 22px;
  position: relative;
  transition: transform 180ms ease, background 180ms ease;
}

.offer-list img {
  aspect-ratio: 4 / 5;
  height: auto;
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.offer-list a:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.offer-list strong {
  color: var(--deep-teal);
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.1;
  padding: 0 18px;
}

.offer-list span {
  color: var(--muted);
  padding: 0 18px;
}

.moments {
  background: var(--ink);
  color: var(--white);
}

.moments p {
  color: rgba(255, 255, 255, 0.72);
}

.moments__heading {
  max-width: 880px;
}

.moment {
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(220px, 0.48fr) 1fr;
  padding: 42px 0;
}

.moment img {
  aspect-ratio: 5 / 4;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

time {
  color: var(--turquoise);
  display: block;
  font-size: 0.8rem;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact {
  background: #d8fff7;
  align-items: start;
}

.contact__body {
  display: grid;
  gap: 20px;
}

.contact__actions {
  align-content: start;
  margin-top: 10px;
}

.contact__actions a {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--white);
}

.contact__note {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 6px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
}

.contact-form label {
  color: var(--deep-teal);
  display: grid;
  font-size: 0.82rem;
  font-weight: 950;
  gap: 7px;
  text-transform: uppercase;
}

.hp-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.form-hint {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

.contact-form--page {
  margin: 32px 0;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 44px;
}

.contact-list a {
  background: var(--deep-teal);
  border-radius: 5px;
  color: var(--white);
  font-weight: 900;
  min-height: 46px;
  padding: 12px 16px;
}

.site-footer {
  align-items: center;
  background: var(--deep-teal);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer a {
  font-weight: 850;
}

.footer-brand {
  display: grid;
  flex-basis: 100%;
  gap: 4px;
  justify-items: center;
  margin-bottom: 4px;
  text-align: center;
}

.instagram-footer {
  margin-top: 4px;
}

.footer-brand strong,
.footer-brand span,
.footer-brand a {
  color: var(--white);
}

.footer-brand span {
  opacity: 0.82;
}

.page-main {
  padding-top: 64px;
}

.page-hero {
  background:
    radial-gradient(circle at 88% 22%, rgba(20, 231, 199, 0.34), transparent 22%),
    linear-gradient(135deg, var(--deep-teal), var(--petrol));
  color: var(--white);
  overflow: hidden;
  padding: clamp(92px, 14vw, 170px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 110px);
  position: relative;
}

.page-hero::after {
  border: 3px solid rgba(20, 231, 199, 0.62);
  border-radius: 50%;
  content: "";
  height: clamp(210px, 31vw, 430px);
  position: absolute;
  right: clamp(-150px, -7vw, -60px);
  top: clamp(48px, 8vw, 90px);
  width: clamp(210px, 31vw, 430px);
}

.page-hero::before {
  border: 2px solid rgba(20, 231, 199, 0.36);
  border-radius: 50%;
  content: "";
  height: clamp(92px, 12vw, 170px);
  position: absolute;
  right: clamp(120px, 18vw, 260px);
  top: clamp(54px, 7vw, 92px);
  width: clamp(92px, 12vw, 170px);
}

.page-hero h1 {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  position: relative;
  z-index: 1;
}

.page-content {
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(54px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.page-content h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  margin-top: 64px;
}

.page-content h2:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.page-content h3 {
  color: var(--accent-dark);
  margin-top: 34px;
}

.page-content ul,
.page-content ol {
  padding-left: 1.2rem;
}

.page-content li + li {
  margin-top: 10px;
}

.page-content blockquote {
  border-left: 5px solid var(--turquoise);
  color: var(--deep-teal);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 850;
  margin: 36px 0;
  padding-left: 22px;
}

.page-content img {
  border-radius: 6px;
  margin: 34px 0;
}

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

.subscription-box {
  background: #d8fff7;
  border: 0;
  border-radius: 6px;
  margin: 36px 0;
  padding: clamp(24px, 4vw, 42px);
}

.subscription-box strong {
  color: var(--deep-teal);
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 12px;
}

.page-content table {
  border-collapse: collapse;
  margin: 30px 0;
  width: 100%;
}

.page-content th,
.page-content td {
  padding: 14px 10px;
  text-align: left;
  vertical-align: top;
}

.page-content th {
  color: var(--deep-teal);
}

.page-content tr {
  background: rgba(255, 255, 255, 0.42);
}

.page-content tr + tr {
  box-shadow: inset 0 8px var(--paper);
}

.price-grid,
.week-plan,
.event-list {
  display: grid;
  gap: 12px;
}

.price-grid div,
.week-plan article,
.event-list article,
.location-panel {
  background: rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  padding: 18px;
}

.price-grid span,
.week-plan h3,
.location-panel strong {
  color: var(--accent-dark);
  display: block;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.location-panel span {
  color: var(--muted);
}

.week-plan {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 30px 0;
}

.week-plan article {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 210px;
  min-width: 0;
  overflow: hidden;
}

.week-plan h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  line-height: 1;
  margin: 0;
}

.day-courses {
  display: grid;
  gap: 16px;
}

.day-courses > div {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
}

.week-plan strong {
  color: var(--deep-teal);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.week-plan span {
  color: var(--muted);
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.week-plan span b {
  color: var(--deep-teal);
  display: block;
  font-weight: 900;
  margin-bottom: 3px;
}

.price-panel {
  background: var(--sand);
  border-radius: 6px;
  margin: clamp(58px, 8vw, 110px) 0;
  padding: clamp(24px, 5vw, 54px);
}

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

.price-grid strong {
  color: var(--deep-teal);
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.price-grid small {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  line-height: 1.35;
  margin-top: 12px;
}

.price-grid .price-featured {
  background: var(--deep-teal);
}

.price-grid .price-featured span,
.price-grid .price-featured small {
  color: rgba(255, 255, 255, 0.78);
}

.price-grid .price-featured strong {
  color: var(--white);
}

.event-list p {
  margin-bottom: 0;
}

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

.course-section {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1fr);
  margin: clamp(54px, 8vw, 110px) 0;
}

.course-section--reverse .course-section__media {
  order: 2;
}

.course-section__media {
  aspect-ratio: 4 / 5;
  background: var(--deep-teal);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.course-section__media::after {
  border: 2px solid rgba(20, 231, 199, 0.7);
  border-radius: 50%;
  bottom: -52px;
  content: "";
  height: 150px;
  position: absolute;
  right: -44px;
  width: 150px;
}

.course-section__media img {
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.about-lead {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  margin-bottom: clamp(48px, 7vw, 96px);
}

.about-lead h2 {
  margin-bottom: 24px;
}

.about-lead figure {
  margin: 0;
}

.about-lead img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  height: auto;
  margin: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.about-lead figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-top: 12px;
}

.reveal {
  transform: translateY(18px);
  transition: transform 600ms ease;
}

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

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .page-main {
    padding-top: 92px;
  }

  .split,
  .stage,
  .contact,
  .moment,
  .offer-list,
  .price-grid,
  .week-plan,
  .event-list,
  .pathway-grid,
  .course-section,
  .image-pair,
  .about-lead {
    grid-template-columns: 1fr;
  }

  .week-plan article,
  .day-courses > div {
    grid-template-columns: 1fr;
  }

  .course-section--reverse .course-section__media {
    order: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    padding: 11px 16px 10px;
  }

  .brand {
    font-size: 0.92rem;
  }

  nav {
    gap: 8px;
    font-size: 0.68rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    width: 100%;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .icon-link svg {
    height: 18px;
    width: 18px;
  }

  .page-main {
    padding-top: 88px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero__content {
    padding-top: 116px;
  }

  .hero__brand-mark {
    right: -38vw;
    top: 84px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.4vw, 3.45rem);
    line-height: 0.98;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
  }

  .section,
  .page-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .week-plan article {
    gap: 12px;
    min-height: 0;
    padding: 18px;
  }

  .day-courses {
    gap: 12px;
  }

  .hero__actions,
  .contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact__actions a {
    justify-content: center;
    width: 100%;
  }

}
