:root {
  --ivory: #f7f2ec;
  --stone: #ded8cf;
  --clay: #c9b8a6;
  --charcoal: #4f4a45;
  --muted: #7a7169;
  --taupe: #7b6d62;
  --brown: #5f534b;
  --green: #2f4a3d;
  --green-soft: #dbe3dc;
  --sand: #e7ded5;
  --white-soft: #fffaf4;
  --shadow: 0 28px 80px rgba(79, 74, 69, 0.12);
  --serif: "Marcellus", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.announcement-bar {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: center;
}

.announcement-bar strong {
  flex: 0 0 auto;
  padding: 6px 12px;
  border: 1px solid rgba(247, 242, 236, 0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-bar:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 74, 61, 0.36);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.72);
  border-bottom: 1px solid rgba(231, 222, 213, 0.34);
  backdrop-filter: blur(20px) saturate(1.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(148px, 15vw, 220px);
  color: var(--charcoal);
  justify-self: start;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.button {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--charcoal);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--green);
  color: var(--ivory);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 74, 61, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 250, 244, 0.42);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  color: var(--ivory);
  background: var(--green);
  border-color: var(--green);
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header-social-links {
  gap: 8px;
}

.header-social-links .social-link {
  width: 27px;
  height: 27px;
}

.header-social-links .social-link svg {
  width: 12px;
  height: 12px;
}

.nav-social-links {
  display: none;
}

.contact-social-links {
  margin-top: -6px;
}

.footer-social-links {
  justify-content: flex-end;
  margin-top: 8px;
}

.footer-social-links .social-link {
  color: var(--ivory);
  border-color: rgba(247, 242, 236, 0.3);
  background: rgba(247, 242, 236, 0.08);
}

.footer-social-links .social-link:hover {
  color: var(--charcoal);
  background: var(--ivory);
  border-color: var(--ivory);
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 14px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

.section-pad {
  padding: clamp(38px, 5vw, 64px) clamp(20px, 5vw, 76px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-soft {
  transform: translateY(16px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
}

.hero.section-pad {
  padding-top: clamp(36px, 4vw, 52px);
  padding-bottom: clamp(30px, 4vw, 46px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  padding-top: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.65rem);
}

h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.problem-line {
  margin: 28px 0 0;
  color: var(--green);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
}

.hero-subtitle {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.hero-support {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-1px);
  background: #243a30;
  border-color: #243a30;
}

.button-ghost {
  background: transparent;
  color: var(--green);
}

.button-ghost:hover {
  color: var(--ivory);
}

.hero-image img {
  width: 100%;
  max-height: 660px;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 8px;
  filter: saturate(0.74) contrast(0.96);
  box-shadow: var(--shadow);
}

.intro {
  background: var(--stone);
}

.narrow,
.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.narrow p,
.section-heading p {
  color: var(--muted);
}

.narrow h2,
.section-heading h2 {
  margin-bottom: 24px;
}

.highlight-line,
.closing-line {
  margin-top: 28px;
  color: var(--green);
  font-weight: 600;
}

.events,
.for-you {
  background: var(--white-soft);
}

.events {
  padding-bottom: clamp(26px, 3.5vw, 44px);
}

.experience {
  padding-top: clamp(30px, 4vw, 50px);
}

.event-grid {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: clamp(26px, 4vw, 42px) auto 0;
}

.event-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 18px 24px 28px;
  overflow: hidden;
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid var(--sand);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(79, 74, 69, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event-pill::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 27px;
  background: linear-gradient(to bottom, rgba(219, 227, 220, 0), rgba(219, 227, 220, 0.58));
  pointer-events: none;
}

.event-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 74, 61, 0.34);
  box-shadow: 0 22px 44px rgba(47, 74, 61, 0.14);
}

.event-pill.is-cancelled {
  opacity: 0.68;
}

.event-pill-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-width: 0;
}

.event-pill-title {
  flex-basis: 100%;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}

.event-pill-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.event-pill-meta span + span::before {
  content: "·";
  margin-right: 16px;
  color: var(--clay);
}

.event-pill-status {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-sold-out,
.status-cancelled {
  color: #7b3d37;
  background: #f0dcd8;
}

.event-pill-action {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
}

.events-loading,
.events-empty {
  margin: 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--sand);
  border-radius: 8px;
}

.for-you-list {
  max-width: 780px;
  padding: 0;
  margin: 34px auto 0;
  color: var(--muted);
  list-style: none;
}

.for-you-list li {
  padding: 10px 16px;
  background: rgba(219, 227, 220, 0.32);
  border: 1px solid rgba(47, 74, 61, 0.18);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.9rem;
}

.feedback,
.coach {
  background: var(--ivory);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 8vw, 118px);
  max-width: 1120px;
  margin: 0 auto;
}

.copy {
  color: var(--muted);
  max-width: 690px;
}

.experience,
.contact {
  background: var(--white-soft);
}

.stage-list {
  display: grid;
  gap: clamp(44px, 6vw, 80px);
  max-width: 1120px;
  margin: clamp(54px, 7vw, 86px) auto 0;
}

.stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.stage-reverse .stage-image {
  order: 2;
}

.stage-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.72) contrast(0.96);
  box-shadow: var(--shadow);
}

.stage-copy {
  color: var(--muted);
}

.stage-number {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 3.7rem;
  line-height: 0.9;
}

.stage-copy h3 {
  margin-bottom: 18px;
  color: var(--charcoal);
}

.outcomes {
  margin-top: 28px;
}

.outcomes span {
  padding: 9px 14px;
  border: 1px solid rgba(47, 74, 61, 0.2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(219, 227, 220, 0.38);
  font-size: 0.9rem;
}

.pill-rotator {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 52px;
}

.pill-rotator > * {
  position: absolute;
  inset: auto;
  width: max-content;
  max-width: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.pill-rotator > *.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(42px, 5vw, 62px) auto 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

blockquote {
  min-height: 170px;
  margin: 0;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-soft);
  border: 1px solid var(--sand);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(79, 74, 69, 0.14), 0 3px 9px rgba(47, 74, 61, 0.08);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

blockquote:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 74, 61, 0.34);
  box-shadow: 0 30px 62px rgba(47, 74, 61, 0.2), 0 8px 18px rgba(79, 74, 69, 0.12);
}

.studios {
  background: var(--stone);
}

.section-button {
  margin-top: 34px;
}

.best-for {
  margin: 34px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(122, 113, 105, 0.22);
}

.best-for h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.best-for ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.best-for li {
  position: relative;
  padding-left: 18px;
}

.best-for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

.coach-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.coach-image img {
  width: 100%;
  max-width: 78%;
  max-height: 680px;
  aspect-ratio: 4 / 5.45;
  margin-inline: auto;
  object-fit: cover;
  object-position: 52% 35%;
  border-radius: 8px;
  filter: saturate(0.78) contrast(0.97);
  box-shadow: var(--shadow);
}

.coach-copy {
  color: var(--muted);
}

.coach-copy h2 {
  margin-bottom: 28px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 7vw, 96px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.contact-intro p {
  color: var(--muted);
}

.contact-intro h2 {
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ivory);
  border: 1px solid rgba(47, 74, 61, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(47, 74, 61, 0.08);
  text-align: center;
}

.email-link {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2vw, 1.28rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.form-button {
  width: fit-content;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 76px);
  background: var(--charcoal);
  color: var(--ivory);
}

.site-footer .brand {
  width: 184px;
  color: var(--ivory);
}

.site-footer .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-copy {
  display: grid;
  gap: 6px;
  text-align: right;
}

.site-footer p {
  margin: 0;
  color: rgba(247, 242, 236, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(247, 242, 236, 0.98);
    border-bottom: 1px solid var(--sand);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav a {
    width: 100%;
    max-width: 360px;
    padding: 13px;
    text-align: center;
    border-bottom: 1px solid rgba(231, 222, 213, 0.72);
  }

  .nav-social-links {
    display: flex;
    width: 100%;
    max-width: 360px;
    padding-top: 16px;
  }

  .nav-social-links .social-link {
    width: 27px;
    max-width: none;
    height: 27px;
    padding: 0;
    border-bottom: 1px solid rgba(47, 74, 61, 0.22);
    background: var(--ivory);
  }

  .nav-social-links .social-link svg {
    width: 12px;
    height: 12px;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    width: min(78vw, 430px);
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .section-pad {
    padding-block: 40px;
  }

  .split,
  .stage,
  .coach-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .split,
  .stage-copy,
  .coach-copy,
  .contact-intro,
  .copy {
    text-align: center;
  }

  .stage-reverse .stage-image {
    order: 0;
  }

  .stage-image img {
    aspect-ratio: 4 / 3;
  }

  .coach-image img {
    max-width: min(78%, 360px);
  }

  .hero-image {
    width: min(78%, 360px);
  }

  .hero-image img {
    aspect-ratio: 4 / 5.45;
  }

  .event-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .best-for ul {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .best-for li {
    width: fit-content;
    max-width: 100%;
    text-align: left;
  }

  .quotes {
    grid-template-columns: repeat(5, minmax(250px, 78vw));
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    text-align: left;
  }

  .footer-social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 112px;
  }

  .announcement-bar {
    display: grid;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    width: 150px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-social-links {
    gap: 7px;
  }

  .header-social-links .social-link {
    width: 27px;
    height: 27px;
  }

  .header-social-links .social-link svg {
    width: 12px;
    height: 12px;
  }

  .nav-toggle {
    width: 30px;
    height: 30px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 14px;
    margin: 4px auto;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  blockquote {
    min-height: 150px;
    padding: 24px;
    font-size: 1.2rem;
  }

  .event-pill {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 18px 20px 30px;
    border-radius: 28px;
  }

  .event-pill-action {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pill-rotator {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .pill-rotator > * {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
}
