@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --navy: #193853;
  --navy-deep: #102b43;
  --blue: #34688c;
  --coral: #e7785c;
  --coral-soft: #f5b39f;
  --sun: #f2c86a;
  --cream: #f5f0e8;
  --paper: #fbfaf6;
  --ink: #203342;
  --muted: #77818a;
  --line: rgba(25, 56, 83, .17);
  --line-light: rgba(251, 250, 246, .22);
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; width: 100%; max-width: 100%; }

.page-width { width: min(calc(100% - 96px), 1400px); margin-inline: auto; }
.section { padding-block: 138px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--paper); }
.section-sand { background: #eae1d4; }

/* Header */
.site-header { position: fixed; z-index: 30; top: 0; left: 0; width: 100%; color: var(--navy); transition: background .4s var(--ease), box-shadow .4s var(--ease); }
.site-header.scrolled { background: rgba(251, 250, 246, .94); box-shadow: 0 1px 0 rgba(25, 56, 83, .12); backdrop-filter: blur(16px); }
.topline { border-bottom: 1px solid rgba(25, 56, 83, .15); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.topline-inner { display: flex; align-items: center; justify-content: space-between; min-height: 28px; color: rgba(25, 56, 83, .68); }
.topline-inner b { margin-inline: 8px; color: var(--coral); font-weight: 400; }
.live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(231, 120, 92, .12); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 36px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-k { position: relative; display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid var(--coral); border-radius: 50%; color: var(--coral); font-family: var(--serif); font-size: 18px; }
.brand-k::after { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(231, 120, 92, .4); border-radius: 50%; }
.brand-name { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-name strong { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: .04em; }
.brand-name small { color: rgba(25, 56, 83, .6); font-family: var(--mono); font-size: 7px; letter-spacing: .2em; }
.primary-nav { display: flex; align-items: center; gap: clamp(23px, 3vw, 48px); margin-left: auto; }
.primary-nav a, .nav-button, .footer-links a { position: relative; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav a::after, .footer-links a::after { content: ''; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.primary-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-button { display: inline-flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid var(--navy); color: var(--navy); white-space: nowrap; transition: background .3s var(--ease), color .3s var(--ease); }
.nav-button span, .button span, .text-link span, .membership-link span { font-size: 16px; font-weight: 400; line-height: 0; transition: transform .3s var(--ease); }
.nav-button:hover { background: var(--navy); color: var(--paper); }
.nav-button:hover span, .button:hover span, .text-link:hover span, .membership-link:hover span { transform: translate(3px, -3px); }
.menu-toggle { display: none; padding: 10px 0 10px 10px; border: 0; background: transparent; color: var(--navy); }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s var(--ease); }
.mobile-nav { display: none; }

/* Type and shared components */
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 27px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.eyebrow-light { color: rgba(251, 250, 246, .68); }
.eyebrow-rule { display: inline-block; width: 29px; height: 1px; background: currentColor; opacity: .8; }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 7.3vw, 113px); font-weight: 400; letter-spacing: -.055em; line-height: .86; }
h2 em, h3 em, h1 em { color: var(--coral); font-style: italic; font-weight: 400; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 55px; margin-bottom: 62px; }
.section-note { width: min(100%, 320px); padding-bottom: 3px; }
.section-note p { margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 51px; padding: 0 20px; border: 1px solid transparent; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button-coral { background: var(--coral); border-color: var(--coral); color: var(--paper); }
.button-coral:hover { background: transparent; color: var(--coral); }
.button-cream { background: var(--paper); border-color: var(--paper); color: var(--navy); }
.button-cream:hover { background: transparent; color: var(--paper); }
.button-navy { background: var(--navy); border-color: var(--navy); color: var(--paper); }
.button-navy:hover { background: transparent; color: var(--navy); }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .72s var(--ease), transform .72s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; }

/* Hero */
.hero { position: relative; min-height: min(900px, 100svh); overflow: hidden; display: flex; align-items: center; background: var(--cream); color: var(--navy); }
.hero-bg, .hero-wash { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82); transform: scale(1.035); transition: transform 1s var(--ease); }
.hero:hover .hero-bg img { transform: scale(1.05); }
.hero-wash { background: linear-gradient(90deg, rgba(245, 240, 232, .98) 0%, rgba(245, 240, 232, .94) 29%, rgba(245, 240, 232, .56) 50%, rgba(245, 240, 232, .05) 75%), linear-gradient(0deg, rgba(245, 240, 232, .48), transparent 35%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 80px; align-items: center; padding-top: 96px; }
.hero-copy { max-width: 720px; }
.hero h1 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(75px, 10.5vw, 166px); font-weight: 400; letter-spacing: -.08em; line-height: .78; }
.hero h1 em { color: var(--navy); }
.hero-lede { max-width: 350px; margin: 35px 0 0; color: rgba(25, 56, 83, .78); font-size: 14px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 23px; margin-top: 33px; }
.hero-note { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; min-height: 365px; padding-left: 19px; border-left: 1px solid rgba(25, 56, 83, .28); }
.hero-note-number { color: var(--coral); font-family: var(--mono); font-size: 10px; }
.hero-note p { max-width: 120px; margin: auto 0; font-family: var(--serif); font-size: 21px; line-height: 1.18; }
.hero-note-line { width: 48px; height: 1px; background: var(--coral); }
.hero-foot { position: absolute; z-index: 1; right: 0; bottom: 26px; left: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(25, 56, 83, .64); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.hero-foot b { margin-right: 8px; color: var(--coral); font-weight: 400; }
.hero-foot-center { color: var(--navy); }
.hero-foot a { display: flex; align-items: center; gap: 12px; }
.hero-foot i { position: relative; display: block; width: 42px; height: 1px; background: rgba(25, 56, 83, .42); }
.hero-foot i::after { content: ''; position: absolute; top: -2px; right: 0; width: 5px; height: 5px; border-right: 1px solid var(--coral); border-bottom: 1px solid var(--coral); transform: rotate(-45deg); }

/* Ticker */
.ticker { overflow: hidden; background: var(--navy); color: var(--paper); }
.ticker-track { display: flex; align-items: center; justify-content: space-around; gap: 25px; min-height: 48px; padding-inline: 25px; font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.ticker-track i { color: var(--coral); font-style: normal; font-size: 12px; }

/* Method */
.method { display: grid; grid-template-columns: 75px minmax(0, 2fr) minmax(230px, 1fr); grid-template-areas: 'side main copy' '. stats stats'; gap: 55px 42px; }
.method-side { grid-area: side; display: flex; flex-direction: column; align-items: center; gap: 13px; color: var(--coral); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.side-rule { width: 1px; height: 62px; background: var(--coral); opacity: .65; }
.side-label { writing-mode: vertical-rl; transform: rotate(180deg); color: var(--muted); }
.method-main { grid-area: main; }
.method-main h2 { max-width: 600px; }
.method-main h2 em { color: var(--coral); }
.method-copy { grid-area: copy; align-self: end; padding-left: 27px; border-left: 1px solid var(--line); }
.method-copy p { margin: 0 0 18px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.method-copy p:nth-child(2) { margin-bottom: 23px; }
.method-stats { grid-area: stats; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 830px; margin-top: 25px; border-top: 1px solid var(--line); }
.method-stats > div { display: flex; align-items: baseline; gap: 14px; padding: 21px 22px 0 0; border-right: 1px solid var(--line); }
.method-stats > div:not(:first-child) { padding-left: 22px; }
.method-stats > div:last-child { border-right: 0; }
.method-stats strong { color: var(--coral); font-family: var(--serif); font-size: 44px; font-weight: 400; letter-spacing: -.07em; }
.method-stats span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

/* Class cards */
.classes { padding-top: 126px; }
.class-cards { display: grid; grid-template-columns: 1.17fr .83fr; grid-template-rows: auto auto; gap: 18px; }
.class-card { overflow: hidden; border-radius: 17px; background: var(--paper); box-shadow: 0 4px 20px rgba(25, 56, 83, .06); }
.class-card-large { grid-row: span 2; }
.class-image { position: relative; height: 235px; overflow: hidden; background: var(--navy); }
.class-card-large .class-image { height: 504px; }
.class-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84); transition: transform .85s var(--ease), filter .85s var(--ease); }
.class-card:hover .class-image img { transform: scale(1.05); filter: saturate(1); }
.class-number, .class-pill { position: absolute; top: 17px; z-index: 1; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.class-number { left: 18px; color: var(--paper); }
.class-pill { right: 17px; padding: 6px 8px; background: var(--coral); color: var(--paper); }
.class-card:nth-child(2) .class-pill { background: var(--sun); color: var(--navy); }
.class-card:nth-child(3) .class-pill { background: var(--paper); color: var(--navy); }
.class-card-copy { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 21px 21px 22px; }
.class-card-copy h3 { margin: 0 0 9px; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 400; letter-spacing: -.05em; line-height: .86; }
.class-card-copy h3 em { color: var(--coral); }
.class-card-copy p { max-width: 260px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.round-link { display: grid; place-items: center; width: 36px; height: 36px; flex-shrink: 0; border: 1px solid var(--coral); border-radius: 50%; color: var(--coral); font-size: 16px; transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.class-card:hover .round-link { background: var(--coral); color: var(--paper); transform: rotate(45deg); }

/* Memberships */
.memberships { display: grid; grid-template-columns: minmax(245px, .6fr) minmax(0, 1.4fr); gap: clamp(55px, 9vw, 150px); align-items: start; }
.membership-intro { padding-top: 13px; }
.membership-intro h2 { margin-bottom: 29px; }
.membership-intro > p:not(.eyebrow) { max-width: 250px; margin: 0 0 24px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.membership-options { min-width: 0; }
.billing-toggle { display: flex; align-items: center; gap: 5px; width: max-content; margin-bottom: 17px; padding: 4px; border: 1px solid var(--line); border-radius: 30px; }
.billing { padding: 9px 11px; border: 0; border-radius: 22px; background: transparent; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.billing.active { background: var(--navy); color: var(--paper); }
.billing span { margin-left: 4px; color: var(--coral); }
.billing.active span { color: var(--sun); }
.membership-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.membership-card { position: relative; min-height: 480px; padding: 22px 19px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); display: flex; flex-direction: column; }
.membership-card-featured { border-color: var(--coral); background: #fae1d7; }
.popular { position: absolute; top: -10px; right: 14px; padding: 5px 8px; background: var(--coral); color: var(--paper); font-family: var(--mono); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.membership-top { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.membership-card h3 { margin: 47px 0 9px; color: var(--navy); font-family: var(--serif); font-size: 51px; font-weight: 400; letter-spacing: -.06em; line-height: .85; }
.membership-card > p { min-height: 36px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.member-price { display: flex; align-items: baseline; gap: 5px; margin-top: 26px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 7px; }
.member-price strong { color: var(--navy); font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -.05em; }
.membership-card ul { display: flex; flex-direction: column; gap: 10px; margin: 25px 0; padding: 0; list-style: none; color: var(--ink); font-size: 10px; }
.membership-card li::before { content: '✳'; margin-right: 8px; color: var(--coral); font-size: 9px; }
.membership-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); color: var(--navy); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.membership-note { display: block; margin-top: 13px; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .07em; text-align: right; text-transform: uppercase; }

/* Coaching */
.coach { padding-block: 130px; }
.coach-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, .8fr); gap: clamp(55px, 12vw, 180px); align-items: center; }
.coach-photo { position: relative; min-height: 645px; overflow: hidden; border-radius: 140px 140px 10px 10px; background: var(--navy-deep); }
.coach-photo img { width: 100%; height: 100%; min-height: 645px; object-fit: cover; filter: saturate(.8); }
.coach-photo > span { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; justify-content: space-between; color: var(--paper); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.coach-copy h2 { margin-bottom: 29px; }
.coach-copy > p:not(.eyebrow) { max-width: 370px; margin: 0 0 35px; color: var(--muted-light); font-size: 13px; line-height: 1.75; }
.coach-list { max-width: 390px; margin-bottom: 34px; border-top: 1px solid var(--line-light); }
.coach-list > div { display: flex; align-items: center; gap: 18px; min-height: 52px; border-bottom: 1px solid var(--line-light); }
.coach-list b { width: 23px; color: var(--coral-soft); font-family: var(--mono); font-size: 8px; font-weight: 400; }
.coach-list span { font-family: var(--serif); font-size: 22px; }

/* Schedule */
.schedule { padding-top: 130px; }
.schedule-layout { display: grid; grid-template-columns: 185px minmax(0, 1fr); gap: 47px; border-top: 1px solid var(--line); }
.day-tabs { display: flex; flex-direction: column; gap: 3px; padding-top: 12px; }
.day-tab { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 12px; border: 0; background: transparent; color: var(--muted); text-align: left; }
.day-tab b { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.day-tab small { font-family: var(--mono); font-size: 8px; }
.day-tab.active { background: var(--navy); color: var(--paper); }
.schedule-list { min-height: 325px; }
.schedule-row { display: grid; grid-template-columns: 73px minmax(130px, 1fr) 95px 115px 18px; gap: 14px; align-items: center; min-height: 73px; border-bottom: 1px solid var(--line); animation: scheduleIn .35s var(--ease) both; }
@keyframes scheduleIn { from { opacity: .1; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
.schedule-time { color: var(--coral); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; }
.schedule-name { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.03em; }
.schedule-coach, .schedule-level { color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.schedule-level { justify-self: end; padding: 6px 7px; border: 1px solid var(--line); }
.schedule-arrow { color: var(--coral); font-size: 16px; }

/* Club */
.club-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(55px, 10vw, 155px); align-items: center; }
.club-copy h2 { margin-bottom: 27px; }
.club-copy > p:not(.eyebrow) { max-width: 365px; margin: 0 0 36px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.club-perks { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 430px; margin-bottom: 33px; border-top: 1px solid var(--line); }
.club-perks > div { min-height: 108px; padding: 16px 11px 0 0; border-right: 1px solid var(--line); }
.club-perks > div:not(:first-child) { padding-left: 11px; }
.club-perks > div:last-child { border-right: 0; }
.club-perks strong { display: block; color: var(--coral); font-family: var(--serif); font-size: 35px; font-weight: 400; letter-spacing: -.06em; }
.club-perks span { display: block; margin-top: 7px; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.club-photo { position: relative; min-height: 615px; overflow: hidden; border-radius: 12px 110px 12px 12px; background: var(--navy); }
.club-photo img { width: 100%; height: 100%; min-height: 615px; object-fit: cover; filter: saturate(.86); transition: transform .9s var(--ease); }
.club-photo:hover img { transform: scale(1.045); }
.club-photo > div { position: absolute; right: 20px; bottom: 18px; left: 20px; display: flex; justify-content: space-between; color: var(--paper); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

/* Stories */
.stories { background: var(--paper); }
.stories-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 57px; }
.story-controls { display: flex; align-items: center; gap: 16px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.story-controls b { color: var(--navy); font-weight: 500; }
.story-control { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--navy); font-size: 17px; transition: background .3s var(--ease), color .3s var(--ease); }
.story-control:hover { background: var(--navy); color: var(--paper); }
.story-card { position: relative; padding: 64px clamp(25px, 8vw, 135px) 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-quote { position: absolute; top: 32px; left: 0; color: var(--coral); font-family: Georgia, serif; font-size: 90px; line-height: .7; }
.story-card blockquote { max-width: 930px; margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.5vw, 66px); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.story-credit { display: flex; align-items: center; gap: 21px; margin-top: 45px; }
.story-credit strong { font-family: var(--serif); font-size: 17px; font-weight: 400; }
.story-credit span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.story-credit i { width: 55px; height: 1px; background: var(--coral); }
#storyTag { margin-left: auto; color: var(--coral); }
.story-card.story-changing blockquote, .story-card.story-changing .story-credit { animation: storyIn .42s var(--ease) both; }
@keyframes storyIn { from { opacity: .15; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* FAQ and trial */
.faq { padding-block: 125px; }
.faq-grid { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr); gap: clamp(55px, 10vw, 165px); align-items: start; }
.faq-intro h2 { margin-bottom: 28px; }
.faq-intro > p:not(.eyebrow) { max-width: 270px; margin: 0 0 24px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 73px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 25px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--coral); font-family: var(--sans); font-size: 23px; transition: transform .3s var(--ease); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 590px; margin: -2px 40px 23px 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.trial { background: var(--coral-soft); color: var(--navy); }
.trial-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(55px, 10vw, 170px); align-items: start; }
.trial-copy h2 { margin-bottom: 29px; }
.trial-copy > p:not(.eyebrow) { max-width: 330px; margin: 0 0 36px; color: rgba(25, 56, 83, .7); font-size: 13px; line-height: 1.7; }
.trial-details { display: flex; flex-direction: column; gap: 8px; padding-top: 17px; border-top: 1px solid rgba(25, 56, 83, .35); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.trial-details a { font-size: 12px; font-weight: 700; }
.trial-form { padding: 30px 30px 23px; border: 1px solid rgba(25, 56, 83, .45); border-radius: 13px; }
.form-top { display: flex; justify-content: space-between; margin-bottom: 35px; font-family: var(--mono); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.trial-form .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.trial-form label { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
.trial-form label > span { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.trial-form input, .trial-form select, .trial-form textarea { width: 100%; padding: 0 0 12px; border: 0; border-bottom: 1px solid rgba(25, 56, 83, .42); border-radius: 0; outline: none; background: transparent; color: var(--navy); font-family: var(--serif); font-size: 22px; }
.trial-form input::placeholder, .trial-form textarea::placeholder { color: rgba(25, 56, 83, .48); }
.trial-form textarea { resize: vertical; line-height: 1.35; }
.trial-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 10px) 8px, calc(100% - 5px) 8px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.trial-form select option { background: var(--coral-soft); color: var(--navy); }
.trial-form input:focus, .trial-form select:focus, .trial-form textarea:focus { border-color: var(--navy); }
.trial-form .form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 9px; }
.trial-form .form-submit small { max-width: 170px; color: rgba(25, 56, 83, .58); font-family: var(--mono); font-size: 7px; line-height: 1.5; text-align: right; text-transform: uppercase; }
.form-status { min-height: 17px; margin: 15px 0 0; color: rgba(25, 56, 83, .8); font-family: var(--mono); font-size: 8px; letter-spacing: .04em; line-height: 1.5; }

/* Footer */
.site-footer { padding-block: 67px 25px; background: var(--navy-deep); color: var(--paper); }
.site-footer .brand-name small { color: rgba(251, 250, 246, .55); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: start; padding-bottom: 73px; }
.footer-top > p { justify-self: center; margin: 0; font-family: var(--serif); font-size: 30px; line-height: .9; }
.footer-top > p em { color: var(--coral-soft); }
.footer-links { justify-self: end; display: grid; grid-template-columns: auto auto; gap: 14px 24px; }
.footer-links a { color: rgba(251, 250, 246, .65); font-size: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 17px; border-top: 1px solid var(--line-light); color: rgba(251, 250, 246, .4); font-family: var(--mono); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.toast { position: fixed; z-index: 40; right: 23px; bottom: 22px; max-width: 325px; padding: 16px 18px; border: 1px solid var(--coral); background: var(--navy-deep); color: var(--paper); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; line-height: 1.5; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .page-width { width: min(calc(100% - 64px), 1400px); }
  .primary-nav { gap: 23px; }
  .nav-button { font-size: 8px; }
  .hero-inner { gap: 45px; }
  .method { grid-template-columns: 58px minmax(0, 1.7fr) minmax(210px, 1fr); gap: 35px 25px; }
  .memberships, .coach-grid, .club-grid, .trial-grid { gap: 60px; }
  .coach-photo, .coach-photo img { min-height: 570px; }
  .club-photo, .club-photo img { min-height: 545px; }
  .schedule-row { grid-template-columns: 65px minmax(120px, 1fr) 85px 100px 18px; gap: 10px; }
}

@media (max-width: 800px) {
  .page-width { width: min(calc(100% - 48px), 1400px); }
  .section { padding-block: 102px; }
  .nav-wrap { min-height: 69px; }
  .primary-nav, .nav-button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 97px 0 0; display: flex; visibility: hidden; pointer-events: none; flex-direction: column; padding: 17px 24px 24px; background: var(--paper); opacity: 0; transform: translateY(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s; }
  .mobile-links { display: flex; flex-direction: column; }
  .mobile-links a { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 28px; }
  .mobile-links small, .mobile-cta span { color: var(--coral); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
  .mobile-cta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 16px 15px; border: 1px solid var(--coral); color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .menu-open .mobile-nav { visibility: visible; pointer-events: auto; opacity: 1; transform: translateY(0); }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 760px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 115px; gap: 30px; padding-top: 82px; }
  .hero h1 { font-size: clamp(75px, 14vw, 125px); }
  .hero-note { min-height: 300px; }
  .hero-note p { font-size: 18px; }
  .hero-foot { bottom: 20px; }
  .hero-foot-center { display: none; }
  .method { grid-template-columns: 48px minmax(0, 1fr); grid-template-areas: 'side main' '. copy' '. stats'; gap: 42px 20px; }
  .method-stats { grid-column: 2; margin-top: 0; }
  .section-head, .membership-head { align-items: start; flex-direction: column; gap: 29px; margin-bottom: 48px; }
  .section-note { width: min(100%, 400px); }
  .class-cards { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; }
  .class-card-large { grid-column: span 2; grid-row: auto; }
  .class-card-large .class-image { height: 410px; }
  .class-image { height: 260px; }
  .memberships { grid-template-columns: 1fr; gap: 60px; }
  .membership-intro { max-width: 500px; }
  .membership-cards { grid-template-columns: repeat(3, 1fr); }
  .membership-card { min-height: 445px; }
  .coach-grid, .club-grid, .trial-grid { grid-template-columns: 1fr; gap: 67px; }
  .coach-photo, .coach-photo img { min-height: 590px; }
  .club-photo, .club-photo img { min-height: 580px; }
  .schedule-layout { grid-template-columns: 140px minmax(0, 1fr); gap: 28px; }
  .schedule-row { grid-template-columns: 63px minmax(100px, 1fr) 85px 18px; gap: 9px; }
  .schedule-coach { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { justify-self: end; text-align: right; }
  .footer-links { grid-column: span 2; justify-self: start; }
}

@media (max-width: 520px) {
  .page-width { width: calc(100% - 36px); }
  .section { padding-block: 78px; }
  .topline-inner { min-height: 27px; font-size: 7px; }
  .topline-inner span:last-child { display: none; }
  .mobile-nav { inset: 96px 0 0; padding-inline: 18px; }
  .brand-name strong { font-size: 20px; }
  .brand-name small { font-size: 6px; }
  .hero { min-height: 720px; }
  .hero-bg img { object-position: 64% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(245, 240, 232, .98) 0%, rgba(245, 240, 232, .88) 44%, rgba(245, 240, 232, .22) 100%), linear-gradient(0deg, rgba(245, 240, 232, .55), transparent 42%); }
  .hero-inner { display: block; padding-top: 65px; }
  .hero h1 { font-size: clamp(65px, 19vw, 93px); }
  .hero-lede { max-width: 275px; margin-top: 28px; font-size: 13px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 29px; }
  .hero-note { display: none; }
  .hero-foot { font-size: 7px; }
  .hero-foot > span:first-child { max-width: 160px; }
  .hero-foot a span { display: none; }
  .hero-foot i { width: 34px; }
  .ticker-track { justify-content: flex-start; gap: 19px; min-height: 43px; padding-inline: 16px; font-size: 8px; }
  h2 { font-size: clamp(55px, 16vw, 78px); }
  .method { grid-template-columns: 1fr; grid-template-areas: 'main' 'copy' 'stats'; gap: 30px; }
  .method-side { display: none; }
  .method-copy { padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .method-stats { grid-column: auto; grid-template-columns: 1fr; }
  .method-stats > div, .method-stats > div:not(:first-child) { min-height: 83px; padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-stats > div:last-child { border-bottom: 0; }
  .method-stats strong { font-size: 37px; }
  .class-cards { display: flex; flex-direction: column; gap: 12px; }
  .class-card-large .class-image, .class-image { height: 320px; }
  .class-card-large .class-image { height: 390px; }
  .class-card-copy { padding: 18px 17px 19px; }
  .class-card-copy h3 { font-size: 34px; }
  .class-card-copy p { max-width: 220px; }
  .billing-toggle { width: 100%; justify-content: space-between; }
  .billing { flex: 1; }
  .membership-cards { grid-template-columns: 1fr; gap: 12px; }
  .membership-card { min-height: 390px; padding-inline: 18px; }
  .membership-card h3 { font-size: 57px; }
  .membership-note { text-align: left; }
  .coach-photo, .coach-photo img { min-height: 445px; }
  .coach-photo { border-radius: 100px 100px 10px 10px; }
  .coach-list { margin-bottom: 29px; }
  .schedule-layout { display: block; }
  .day-tabs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; margin-bottom: 23px; padding-top: 11px; }
  .day-tab { display: block; min-height: 57px; padding: 8px 2px; text-align: center; }
  .day-tab b { display: block; font-size: 16px; }
  .day-tab small { display: block; margin-top: 5px; font-size: 7px; }
  .schedule-row { grid-template-columns: 52px minmax(0, 1fr) 18px; min-height: 68px; gap: 8px; }
  .schedule-level { display: none; }
  .schedule-name { font-size: 23px; }
  .club-perks { grid-template-columns: 1fr; }
  .club-perks > div, .club-perks > div:not(:first-child) { min-height: 74px; padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .club-perks > div:last-child { border-bottom: 0; }
  .club-perks strong { display: inline-block; margin-right: 13px; font-size: 30px; }
  .club-perks span { display: inline-block; }
  .club-photo, .club-photo img { min-height: 460px; }
  .stories-head { align-items: start; flex-direction: column; gap: 28px; margin-bottom: 43px; }
  .story-card { padding: 55px 0 30px; }
  .story-quote { top: 28px; font-size: 70px; }
  .story-card blockquote { font-size: 38px; }
  .story-credit { align-items: flex-start; flex-wrap: wrap; gap: 12px 17px; margin-top: 33px; }
  .story-credit i { width: 43px; margin-top: 8px; }
  #storyTag { width: 100%; margin-left: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-list summary { min-height: 67px; font-size: 23px; }
  .faq-list details p { margin-right: 0; }
  .trial-grid { gap: 47px; }
  .trial-form { padding: 25px 18px 20px; }
  .trial-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .trial-form input, .trial-form select, .trial-form textarea { font-size: 20px; }
  .trial-form .form-submit { align-items: flex-start; flex-direction: column; }
  .trial-form .form-submit small { max-width: 230px; text-align: left; }
  .footer-top { grid-template-columns: 1fr; gap: 33px; padding-bottom: 54px; }
  .footer-top > p { justify-self: start; text-align: left; }
  .footer-links { grid-column: auto; justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; font-size: 7px; }
  .toast { right: 15px; bottom: 15px; left: 15px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
