:root {
  --cream: #f6f2eb;
  --blue: #0e32a5;
  --red: #d72638;
  --orange: #f28c28;
  --yellow: #e6bf50;
  --green: #297b3a;
  --ink: #171715;
  --soft-ink: #2f2d29;
  --white: #fffdf8;
  --line: rgba(23, 23, 21, 0.22);
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --script: "Snell Roundhand", "Brush Script MT", cursive;
  --serif: "Bodoni 72", Didot, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

main {
  padding-top: 0;
}

.concept {
  min-height: 100vh;
  overflow: clip;
}

.concept section[id] {
  scroll-margin-top: 125px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 72px);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 42px);
  font-size: 13px;
}

.site-header nav a,
.site-header .text-button {
  position: relative;
}

.site-header nav a::after,
.site-header .text-button::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header .text-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.text-button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-red {
  color: var(--cream);
  background: var(--red);
}

.button-red:hover {
  color: var(--red);
  background: var(--cream);
  border-color: var(--red);
}

.button-cream {
  color: var(--blue);
  background: var(--cream);
}

.button-cream:hover {
  color: var(--cream);
  background: transparent;
  border-color: currentColor;
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-deep {
  color: var(--cream);
  background: var(--blue);
}

.button-deep:hover {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.button-full {
  width: 100%;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.section-pad {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 6.6vw, 108px);
}

.image-frame {
  position: relative;
  overflow: hidden;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Option one — Tidal editorial */

.concept-one {
  color: var(--ink);
  background: var(--cream);
}

.one-header {
  grid-template-columns: 1fr 2fr 1fr;
  background: rgba(246, 242, 235, 0.96);
  border-bottom: 1px solid rgba(14, 50, 165, 0.22);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  color: var(--blue);
  white-space: nowrap;
}

.brand-script {
  font-family: var(--script);
  font-size: 31px;
  line-height: 0.7;
}

.brand-in {
  margin: 0 5px;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.one-header nav a,
.one-header .text-button {
  color: var(--blue);
}

.one-hero {
  display: grid;
  min-height: calc(100vh - 130px);
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
}

.one-hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(64px, 8vw, 120px) clamp(28px, 7vw, 112px);
  color: var(--cream);
  background: var(--blue);
}

.one-hero-copy .eyebrow {
  margin-bottom: clamp(32px, 6vh, 72px);
}

.one-hero h1 {
  max-width: 950px;
  font-size: clamp(64px, 8.3vw, 138px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.one-hero h1 em {
  display: inline-block;
  margin-top: 0.12em;
  color: var(--yellow);
  font-family: var(--script);
  font-size: 0.7em;
  font-style: normal;
  letter-spacing: -0.02em;
  transform: translateX(0.05em) rotate(-2deg);
}

.hero-intro {
  max-width: 570px;
  margin-top: clamp(32px, 5vh, 64px);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.circle-link {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(246, 242, 235, 0.55);
  border-radius: 50%;
}

.circle-link span {
  transition: transform 180ms ease;
}

.circle-link:hover span {
  transform: translateY(4px);
}

.one-hero-image {
  min-height: 650px;
  background: #7d8a80;
}

.one-hero-image img {
  object-position: 50% 39%;
  transform: scale(1.08);
}

.one-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 50, 165, 0.08), rgba(14, 50, 165, 0.3));
  content: "";
}

.one-hero-image figcaption {
  right: 24px;
  bottom: 22px;
  color: var(--blue);
  background: var(--cream);
}

.sun-disc {
  position: absolute;
  z-index: 3;
  top: 50px;
  left: 46px;
  width: 92px;
  height: 92px;
  background: var(--yellow);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.word-river {
  overflow: hidden;
  padding: 20px 0;
  color: var(--blue);
  background: var(--yellow);
  border-block: 1px solid var(--blue);
  white-space: nowrap;
}

.word-river div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: drift 24s linear infinite alternate;
}

.word-river span {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 48px);
  font-style: italic;
}

.word-river i {
  font-size: 13px;
  font-style: normal;
}

@keyframes drift {
  to { transform: translateX(-12%); }
}

.one-why {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: clamp(50px, 7vw, 120px);
  border-bottom: 1px solid var(--line);
}

.section-number {
  padding-top: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.script-kicker {
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--script);
  font-size: clamp(39px, 4vw, 68px);
  line-height: 1;
}

.one-why h2,
.one-membership h2 {
  max-width: 1000px;
  color: var(--blue);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.two-col-copy {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 96px);
  margin-top: clamp(60px, 7vw, 105px);
  margin-left: auto;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}

.section-heading-row h2 {
  margin-top: 8px;
  color: var(--blue);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.section-heading-row > p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.55;
}

.practice-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.practice-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 22px;
  flex-direction: column;
  color: var(--cream);
  border: 1px solid var(--ink);
}

.practice-card + .practice-card {
  border-left: 0;
}

.card-blue { background: var(--blue); }
.card-red { background: var(--red); }
.card-yellow { color: var(--blue); background: var(--yellow); }
.card-green { background: var(--green); }

.card-index,
.card-time {
  position: absolute;
  top: 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-index { left: 22px; }
.card-time { right: 22px; }

.practice-card h3 {
  margin-top: auto;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.practice-card p {
  min-height: 66px;
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.55;
}

.breath-orbit {
  position: absolute;
  top: 27%;
  left: 50%;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(246, 242, 235, 0.65);
  border-radius: 50%;
  transform: translateX(-50%);
}

.breath-orbit::before,
.breath-orbit::after,
.breath-orbit span {
  position: absolute;
  border: 1px solid rgba(246, 242, 235, 0.65);
  border-radius: 50%;
  content: "";
}

.breath-orbit::before { inset: 16px; }
.breath-orbit::after { inset: 32px; }
.breath-orbit span { inset: 48px; }

.strength-lines {
  position: absolute;
  top: 28%;
  left: 50%;
  display: flex;
  width: 65%;
  height: 95px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transform: translateX(-50%) rotate(-6deg);
}

.strength-lines i {
  width: 7px;
  height: 100%;
  background: var(--cream);
  border-radius: 999px;
}

.strength-lines i:nth-child(2) { height: 62%; }
.strength-lines i:nth-child(3) { height: 82%; }

.movement-arc {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 145px;
  height: 90px;
  border: 6px solid var(--blue);
  border-bottom: 0;
  border-radius: 100px 100px 0 0;
  transform: translateX(-50%) rotate(15deg);
}

.reset-tools i {
  position: absolute;
  top: 27%;
  left: 26%;
  width: 35%;
  height: 125px;
  background: var(--cream);
  border-radius: 999px;
  transform: rotate(32deg);
}

.reset-tools b {
  position: absolute;
  top: 39%;
  right: 23%;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
}

.one-trilby {
  display: grid;
  min-height: 800px;
  grid-template-columns: 1fr 1fr;
  background: var(--yellow);
}

.trilby-portrait {
  min-height: 680px;
}

.trilby-portrait img {
  object-position: 51% 42%;
}

.trilby-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(215, 38, 56, 0.05), rgba(14, 50, 165, 0.36));
  content: "";
}

.trilby-portrait figcaption {
  top: 30px;
  left: 30px;
  color: var(--cream);
  background: var(--red);
}

.trilby-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(55px, 8vw, 120px);
  color: var(--blue);
}

.trilby-copy h2 {
  max-width: 650px;
  margin-top: 28px;
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.trilby-copy .lead {
  max-width: 580px;
  margin-top: 56px;
}

.trilby-copy > p:not(.lead, .eyebrow) {
  max-width: 560px;
  margin-top: 25px;
  line-height: 1.65;
}

.underlined-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-top: 48px;
  padding-bottom: 8px;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
}

.underlined-link span {
  transition: transform 180ms ease;
}

.underlined-link:hover span {
  transform: translate(4px, -4px);
}

.one-membership {
  background: var(--cream);
}

.membership-title {
  margin-bottom: clamp(75px, 9vw, 135px);
}

.membership-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid var(--blue);
}

.membership-includes,
.signup-steps {
  padding: clamp(35px, 5vw, 72px);
}

.membership-includes {
  color: var(--blue);
}

.signup-steps {
  color: var(--cream);
  background: var(--blue);
}

.check-list {
  margin-top: 42px;
  list-style: none;
}

.check-list li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 48px 1fr;
  font-size: clamp(17px, 1.5vw, 22px);
  border-bottom: 1px solid rgba(14, 50, 165, 0.24);
}

.check-list span {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.signup-steps ol {
  margin: 40px 0 55px;
  list-style: none;
}

.signup-steps li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 115px 1fr;
  border-bottom: 1px solid rgba(246, 242, 235, 0.25);
}

.signup-steps li b {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.signup-steps li span {
  padding-top: 4px;
  font-size: 13px;
}

.signup-steps small {
  display: block;
  margin-top: 20px;
  color: rgba(246, 242, 235, 0.75);
  text-align: center;
}

.signup-steps small button,
.three-membership-detail small button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.one-footer {
  display: grid;
  min-height: 240px;
  align-items: end;
  padding: 55px clamp(24px, 6.6vw, 108px);
  grid-template-columns: 1fr 2fr 1fr;
  color: var(--cream);
  background: var(--blue);
}

.footer-brand {
  color: var(--cream);
}

.one-footer > p {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  text-align: center;
}

.one-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
}

.one-footer button {
  padding: 0;
  color: inherit;
  background: 0;
  border: 0;
  cursor: pointer;
}

/* Option two — Movement menu */

.concept-two {
  color: var(--ink);
  background: var(--yellow);
}

.two-header {
  grid-template-columns: 1fr 1.4fr 1fr;
  color: var(--cream);
  background: var(--blue);
  border-bottom: 1px solid rgba(246, 242, 235, 0.32);
}

.two-mark {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.two-mark svg {
  width: 35px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-width: 5;
}

.two-header .button-dark {
  color: var(--blue);
  background: var(--cream);
}

.two-header .button-dark:hover {
  color: var(--cream);
  background: transparent;
  border-color: var(--cream);
}

.two-hero {
  display: grid;
  min-height: calc(100vh - 130px);
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: 1fr 180px;
  border-bottom: 1px solid var(--ink);
}

.two-hero-main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  padding: clamp(60px, 7vw, 110px);
  background: var(--orange);
  border-right: 1px solid var(--ink);
}

.two-hero-main h1 {
  margin-top: clamp(30px, 5vw, 75px);
  font-size: clamp(72px, 9.5vw, 156px);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.77;
}

.two-hero-main h1 em {
  color: var(--blue);
  font-family: var(--script);
  font-size: 0.8em;
  font-style: normal;
  font-weight: 400;
}

.two-hero-main > p:not(.eyebrow) {
  max-width: 650px;
  margin: 55px 0 28px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
}

.two-hero-main .button {
  width: max-content;
  color: var(--ink);
}

.two-hero-main .button:hover {
  color: var(--cream);
}

.two-hero-photo {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--blue);
}

.two-hero-photo img {
  object-position: 50% 47%;
  transform: scale(1.02);
}

.two-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 50, 165, 0.5));
  content: "";
}

.two-hero-photo figcaption {
  right: 25px;
  bottom: 25px;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 50%;
}

.two-hero-note {
  display: grid;
  align-items: center;
  padding: 28px clamp(35px, 6vw, 95px);
  grid-template-columns: 90px 1fr;
  gap: 35px;
  grid-column: 1;
  color: var(--cream);
  background: var(--green);
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.two-hero-note svg {
  width: 80px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-width: 4;
}

.two-hero-note p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 42px);
  font-style: italic;
  line-height: 1.03;
}

.two-story {
  display: grid;
  padding: clamp(85px, 11vw, 170px) clamp(25px, 7vw, 115px);
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 160px);
  background: var(--cream);
  border-bottom: 1px solid var(--ink);
}

.two-story h2,
.menu-intro h2,
.two-trilby h2 {
  margin-top: 25px;
  font-size: clamp(50px, 6.6vw, 104px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.two-story h2 {
  color: var(--blue);
}

.two-story-body {
  align-self: end;
}

.two-story-body p {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.two-story-body p + p {
  margin-top: 30px;
}

.two-menu {
  padding-top: clamp(85px, 9vw, 140px);
  background: var(--yellow);
}

.menu-intro {
  display: grid;
  align-items: end;
  padding: 0 clamp(25px, 7vw, 115px) clamp(70px, 7vw, 110px);
  grid-template-columns: 1.25fr 0.75fr;
  column-gap: clamp(50px, 8vw, 130px);
}

.menu-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 25px;
}

.menu-intro > p:last-child {
  font-size: 17px;
  line-height: 1.55;
}

.menu-bands {
  border-top: 1px solid var(--ink);
}

.menu-band {
  display: grid;
  min-height: 130px;
  align-items: center;
  padding: 25px clamp(25px, 6vw, 98px);
  grid-template-columns: 80px minmax(320px, 1.5fr) 1fr 140px 30px;
  border-bottom: 1px solid var(--ink);
  transition: padding 220ms ease;
}

.menu-band:hover {
  padding-right: clamp(18px, 4vw, 70px);
  padding-left: clamp(38px, 8vw, 130px);
}

.menu-band span,
.menu-band b {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-band h3 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.menu-band p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.menu-band i {
  font-size: 24px;
  font-style: normal;
}

.band-red { color: var(--cream); background: var(--red); }
.band-yellow { color: var(--blue); background: var(--yellow); }
.band-blue { color: var(--cream); background: var(--blue); }
.band-green { color: var(--cream); background: var(--green); }

.two-trilby {
  display: grid;
  min-height: 850px;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-bottom: 1px solid var(--ink);
}

.two-trilby-collage {
  position: relative;
  overflow: hidden;
  background: var(--red);
  border-right: 1px solid var(--ink);
}

.two-trilby-collage figure {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

.two-trilby-collage figure img {
  height: 100%;
  object-fit: cover;
}

.collage-one {
  top: 8%;
  left: 8%;
  width: 63%;
  height: 70%;
  transform: rotate(-3deg);
}

.collage-one img { object-position: 50% 38%; }

.collage-two {
  right: 7%;
  bottom: 5%;
  width: 47%;
  height: 55%;
  transform: rotate(5deg);
}

.collage-two img { object-position: 50% 43%; }

.collage-sticker {
  position: absolute;
  z-index: 4;
  top: 13%;
  right: 8%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--blue);
  font-family: var(--script);
  font-size: 32px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: rotate(8deg);
}

.two-trilby-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(60px, 8vw, 120px);
}

.two-trilby-copy h2 {
  color: var(--blue);
}

.two-trilby-copy .lead {
  margin-top: 42px;
  font-family: var(--serif);
  font-style: italic;
}

.two-trilby-copy > p:not(.eyebrow, .lead) {
  max-width: 580px;
  margin: 27px 0 46px;
  font-size: 17px;
  line-height: 1.65;
}

.two-trilby-copy .button {
  width: max-content;
}

.two-join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink);
}

.join-card,
.how-card {
  padding: clamp(70px, 8vw, 125px);
}

.join-card {
  color: var(--cream);
  background: var(--blue);
  border-right: 1px solid var(--ink);
}

.join-card h2 {
  margin-top: 26px;
  font-size: clamp(50px, 5.5vw, 90px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.join-card ul {
  margin: 55px 0;
  list-style: none;
}

.join-card li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(246, 242, 235, 0.27);
}

.how-card {
  background: var(--orange);
}

.how-card ol {
  margin-top: 47px;
  list-style: none;
}

.how-card li {
  display: grid;
  padding: 27px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid rgba(23, 23, 21, 0.35);
}

.how-card li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  border-radius: 50%;
}

.how-card li b {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.how-card li p {
  margin-top: 5px;
}

.member-prompt {
  margin-top: 50px;
  text-align: center;
}

.member-prompt button {
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.two-footer {
  padding: clamp(80px, 10vw, 155px) clamp(25px, 7vw, 115px) 40px;
  color: var(--cream);
  background: var(--green);
}

.big-footer-line {
  font-size: clamp(72px, 11vw, 180px);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.77;
}

.big-footer-line em {
  color: var(--yellow);
  font-family: var(--script);
  font-size: 0.68em;
  font-style: normal;
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 130px;
  padding-top: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(246, 242, 235, 0.5);
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  background: 0;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
}

/* Option three — Quiet studio */

.concept-three {
  color: #22211f;
  background: #f5f1e8;
}

.three-hero {
  position: relative;
  min-height: calc(100vh - 48px);
  overflow: hidden;
  color: var(--cream);
  background: #303a3c;
}

.three-hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  transform: scale(1.02);
}

.three-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 26, 0.72), rgba(14, 23, 26, 0.1) 70%), linear-gradient(0deg, rgba(14, 23, 26, 0.38), transparent 45%);
}

.three-header {
  position: relative;
  z-index: 2;
  top: 0;
  grid-template-columns: 1fr 2fr 1fr;
  border-bottom: 1px solid rgba(246, 242, 235, 0.45);
}

.three-wordmark {
  width: max-content;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.three-wordmark i {
  margin: 0 2px;
  font-family: var(--script);
  font-size: 1.25em;
  font-weight: 400;
}

.outline-button {
  width: max-content;
  min-height: 42px;
  justify-self: end;
  padding: 0 20px;
  color: var(--cream);
  background: rgba(246, 242, 235, 0.08);
  border: 1px solid rgba(246, 242, 235, 0.65);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.outline-button:hover {
  color: var(--ink);
  background: var(--cream);
}

.three-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 130px);
  justify-content: center;
  flex-direction: column;
  padding: 70px clamp(25px, 8vw, 130px) 120px;
}

.three-hero-copy h1 {
  max-width: 850px;
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.three-hero-copy h1 em {
  color: var(--yellow);
  font-family: var(--script);
  font-size: 0.8em;
  font-style: normal;
}

.three-hero-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 48px 0 30px;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.6;
}

.button-light-outline {
  width: max-content;
  color: var(--cream);
  border-color: rgba(246, 242, 235, 0.8);
}

.button-light-outline:hover {
  color: var(--ink);
  background: var(--cream);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: clamp(25px, 5vw, 80px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll i {
  font-size: 22px;
  font-style: normal;
}

.three-philosophy {
  padding: clamp(100px, 12vw, 190px) clamp(25px, 10vw, 160px);
}

.three-philosophy h2 {
  max-width: 1200px;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(55px, 7.2vw, 116px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.philosophy-grid {
  display: grid;
  max-width: 880px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(45px, 8vw, 115px);
  margin-top: clamp(75px, 9vw, 135px);
  margin-left: auto;
}

.philosophy-grid .lead {
  font-family: var(--serif);
}

.philosophy-grid > p:last-child {
  font-size: 16px;
  line-height: 1.75;
}

.three-practice {
  padding: clamp(80px, 10vw, 145px) clamp(24px, 5vw, 80px);
  color: var(--cream);
  background: #202822;
}

.three-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}

.three-section-head h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(45px, 5.6vw, 90px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.three-section-head > p {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.65;
}

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

.three-class-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(246, 242, 235, 0.58);
}

.three-class-card:nth-child(even) { border-left: 0; }
.three-class-card:nth-child(n + 3) { border-top: 0; }

.class-photo img {
  height: 100%;
  object-fit: cover;
}

.class-photo:first-child img { object-position: 50% 42%; }
.class-photo:last-child img { object-position: 50% 43%; }

.class-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 25, 21, 0.8), transparent 65%);
  content: "";
}

.class-photo > div {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 32px;
  left: 36px;
}

.three-class-card span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.three-class-card h3 {
  margin-top: 11px;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.three-class-card p {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
}

.class-solid {
  display: flex;
  justify-content: flex-end;
  padding: 36px;
  flex-direction: column;
}

.class-solid i {
  position: absolute;
  top: 30px;
  right: 34px;
  font-size: 25px;
  font-style: normal;
}

.class-deep { background: var(--blue); }
.class-warm { color: var(--ink); background: var(--orange); }

.three-trilby {
  display: grid;
  min-height: 850px;
  padding: clamp(70px, 9vw, 145px) clamp(25px, 8vw, 130px);
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 9vw, 145px);
  background: var(--cream);
}

.three-trilby-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.three-trilby-copy h2 {
  margin-top: 27px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.three-trilby-copy .lead {
  margin-top: 55px;
  font-family: var(--serif);
}

.three-trilby-copy > p:not(.eyebrow, .lead) {
  max-width: 590px;
  margin-top: 27px;
  font-size: 16px;
  line-height: 1.75;
}

.three-trilby-image {
  min-height: 680px;
}

.three-trilby-image img {
  object-position: 50% 44%;
}

.three-trilby-image::after {
  position: absolute;
  inset: 0;
  background: rgba(14, 50, 165, 0.13);
  content: "";
}

.three-trilby-image figcaption {
  right: 26px;
  bottom: 24px;
  color: var(--blue);
  background: var(--cream);
}

.three-membership {
  display: grid;
  min-height: 850px;
  grid-template-columns: 1fr 1fr;
  color: var(--cream);
  background: var(--blue);
}

.three-membership-intro,
.three-membership-detail {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(65px, 8vw, 125px);
}

.three-membership-intro {
  border-right: 1px solid rgba(246, 242, 235, 0.45);
}

.three-membership-intro h2 {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(57px, 6.5vw, 105px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.three-membership-intro > p:last-child {
  max-width: 530px;
  margin-top: 55px;
  font-size: 18px;
  line-height: 1.65;
}

.three-membership-detail ul {
  list-style: none;
}

.three-membership-detail li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 19px;
  border-bottom: 1px solid rgba(246, 242, 235, 0.3);
}

.three-membership-detail li span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.three-signup-flow {
  display: grid;
  margin: 55px 0 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.three-signup-flow p {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.45;
}

.three-signup-flow b {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.three-membership-detail .button-deep {
  color: var(--blue);
  background: var(--cream);
}

.three-membership-detail .button-deep:hover {
  color: var(--cream);
  background: transparent;
  border-color: var(--cream);
}

.three-membership-detail small {
  margin-top: 18px;
  color: rgba(246, 242, 235, 0.75);
  text-align: center;
}

.three-footer {
  display: grid;
  min-height: 300px;
  align-items: end;
  padding: 70px clamp(25px, 6vw, 95px) 40px;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 70px;
  color: var(--ink);
  background: var(--yellow);
}

.three-footer > div p {
  max-width: 330px;
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.5;
}

.three-footer nav {
  display: grid;
  gap: 12px;
  font-size: 13px;
}

.three-footer nav button {
  width: max-content;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.three-footer > span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Option four — selected blend */

.concept-four {
  color: var(--ink);
  background: var(--cream);
}

#four-library {
  scroll-margin-top: 145px;
}

.four-header nav {
  gap: clamp(14px, 2vw, 32px);
}

.concept-four .button-red {
  color: var(--white);
}

.four-about {
  display: grid;
  min-height: 820px;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 112px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.four-about-copy .eyebrow {
  margin-bottom: clamp(32px, 5vw, 62px);
}

.four-about-copy .script-kicker {
  margin-bottom: 14px;
}

.four-about-copy h2 {
  color: var(--blue);
  font-size: clamp(48px, 5.1vw, 82px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.four-about-body {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
  margin-top: clamp(48px, 6vw, 82px);
  font-size: 14px;
  line-height: 1.65;
}

.four-video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  color: var(--cream);
  background: #788584;
  border: 1px solid var(--blue);
  cursor: pointer;
  text-align: left;
}

.four-video-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.four-video-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 50, 165, 0.08), rgba(14, 50, 165, 0.6));
}

.four-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(82px, 10vw, 142px);
  height: clamp(82px, 10vw, 142px);
  place-items: center;
  padding-left: 0.12em;
  color: var(--blue);
  background: var(--yellow);
  border: 1px solid var(--cream);
  border-radius: 50%;
  font-size: clamp(22px, 2.4vw, 38px);
  transform: translate(-50%, -50%);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.four-video-label,
.four-video-time {
  position: absolute;
  bottom: clamp(20px, 3vw, 42px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.four-video-label { left: clamp(20px, 3vw, 42px); }
.four-video-time { right: clamp(20px, 3vw, 42px); }

.four-video-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.four-video-frame:hover img {
  transform: scale(1.025);
}

.four-video-frame:hover .four-video-play {
  color: var(--cream);
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.04);
}

.four-practice .pim-spiral {
  position: absolute;
  top: 25%;
  left: 50%;
  width: clamp(115px, 10vw, 165px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  transform: translateX(-50%);
  color: var(--white);
}

.four-practice .card-red {
  color: var(--white);
}

.four-trilby {
  border-top: 1px solid var(--blue);
}

.four-membership {
  min-height: 850px;
}

.four-includes {
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(246, 242, 235, 0.35);
}

.four-includes li {
  padding: 16px 12px 16px 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(246, 242, 235, 0.35);
}

.four-includes li:nth-child(even) {
  padding-right: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(246, 242, 235, 0.35);
}

.four-signup {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(65px, 8vw, 125px);
}

.four-faq {
  display: grid;
  min-height: 700px;
  align-items: start;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
  color: var(--blue);
  background: var(--cream);
}

.four-faq-heading h2 {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.four-faq-list {
  border-top: 1px solid var(--blue);
}

.four-faq-list details {
  border-bottom: 1px solid rgba(14, 50, 165, 0.42);
}

.four-faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  list-style: none;
}

.four-faq-list summary::-webkit-details-marker {
  display: none;
}

.four-faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.four-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.four-faq-list details p {
  max-width: 620px;
  padding: 0 48px 30px 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.7;
}

.four-footer {
  border-top: 1px solid var(--blue);
}

.four-footer-navigation {
  display: grid;
  gap: 34px;
}

.three-footer .social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: color 180ms ease, transform 180ms ease;
}

.social-icon .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover svg {
  color: var(--blue);
  transform: translateY(-2px);
}

/* Shared prototype dialog */

.auth-dialog {
  width: min(92vw, 530px);
  padding: clamp(36px, 6vw, 62px);
  color: var(--blue);
  background: var(--cream);
  border: 1px solid var(--blue);
  box-shadow: 18px 18px 0 var(--yellow);
}

.auth-dialog::backdrop {
  background: rgba(13, 21, 40, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 18px;
  padding: 0;
  color: var(--blue);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
}

.dialog-mark svg {
  width: 58px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-width: 4;
}

.auth-dialog h2 {
  margin: 13px 0 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.auth-dialog > p:not(.eyebrow, .dialog-switch, .prototype-note) {
  color: var(--soft-ink);
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(14, 50, 165, 0.4);
  border-radius: 0;
}

.auth-form .button {
  margin-top: 8px;
}

.dialog-switch,
.prototype-note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.dialog-switch button {
  padding: 0;
  color: var(--blue);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.prototype-note {
  padding: 25px;
  color: var(--blue);
  background: rgba(230, 191, 80, 0.28);
  border: 1px solid var(--yellow);
}

/* Responsive */

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }

  .four-header {
    grid-template-columns: auto 1fr auto;
  }

  .four-header nav {
    display: flex;
    justify-content: center;
  }

  .one-hero { grid-template-columns: 1fr 0.72fr; }
  .one-hero-copy { padding-right: 55px; padding-left: 55px; }

  .practice-cards { grid-template-columns: repeat(2, 1fr); }
  .practice-card:nth-child(3) { border-top: 0; border-left: 1px solid var(--ink); }
  .practice-card:nth-child(4) { border-top: 0; }

  .two-header,
  .three-header { grid-template-columns: 1fr auto; }
  .two-hero { grid-template-columns: 1fr 0.78fr; }
  .two-hero-main { padding: 70px 55px; }
  .two-hero-main h1 { font-size: clamp(72px, 10vw, 116px); }

  .menu-band { grid-template-columns: 60px minmax(280px, 1.5fr) 1fr 100px 25px; }

  .three-footer { grid-template-columns: 1.4fr 1fr; }
  .three-footer > span { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-header { min-height: 72px; padding: 0 20px; }
  .four-header { grid-template-columns: 1fr auto; }
  .four-header nav { display: none; }
  .header-actions { gap: 14px; }
  .header-actions .text-button { display: none; }
  .header-actions .button { min-height: 42px; padding: 0 17px; }

  .brand-script { font-size: 25px; }
  .brand-in { font-size: 17px; }
  .one-header .header-actions .text-button,
  .two-header .header-actions .text-button { display: inline-block; }

  .one-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .one-hero-copy {
    min-height: 680px;
    padding: 74px 25px 60px;
  }

  .one-hero h1 { font-size: clamp(60px, 17vw, 92px); }
  .one-hero-image { min-height: 510px; }
  .one-hero-image img { object-position: 50% 42%; }

  .one-why { grid-template-columns: 1fr; gap: 35px; }
  .two-col-copy { grid-template-columns: 1fr; gap: 27px; margin-top: 55px; }

  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .practice-cards { grid-template-columns: 1fr; }
  .practice-card { min-height: 450px; }
  .practice-card + .practice-card,
  .practice-card:nth-child(3) { border-top: 0; border-left: 1px solid var(--ink); }

  .one-trilby,
  .membership-panel,
  .two-trilby,
  .two-join,
  .three-trilby,
  .three-membership {
    grid-template-columns: 1fr;
  }

  .trilby-portrait,
  .three-trilby-image { min-height: 590px; }
  .trilby-copy { padding: 75px 25px; }
  .membership-title { margin-bottom: 65px; }
  .signup-steps { border-top: 1px solid var(--blue); }

  .one-footer { grid-template-columns: 1fr; gap: 38px; text-align: left; }
  .one-footer > p { text-align: left; }
  .one-footer > div { justify-content: flex-start; }

  .two-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 600px auto;
  }

  .two-hero-main { padding: 80px 25px; border-right: 0; }
  .two-hero-main h1 { font-size: clamp(70px, 19vw, 110px); }
  .two-hero-main { grid-column: auto; grid-row: auto; }
  .two-hero-photo { grid-column: auto; grid-row: auto; border-top: 1px solid var(--ink); }
  .two-hero-note { grid-column: auto; border-right: 0; }

  .two-story,
  .menu-intro {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .menu-intro .eyebrow { grid-column: auto; margin-bottom: -35px; }

  .menu-band {
    min-height: 150px;
    padding: 28px 24px;
    grid-template-columns: 42px 1fr 20px;
    grid-template-rows: auto auto;
    row-gap: 12px;
  }

  .menu-band:hover { padding-right: 18px; padding-left: 30px; }
  .menu-band h3 { font-size: 30px; }
  .menu-band p { grid-column: 2; }
  .menu-band b { grid-column: 2; }
  .menu-band i { grid-row: 1 / 3; grid-column: 3; }

  .two-trilby-collage { min-height: 700px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .two-trilby-copy,
  .join-card,
  .how-card { padding: 75px 25px; }
  .join-card { border-right: 0; border-bottom: 1px solid var(--ink); }

  .three-hero { min-height: 820px; }
  .three-hero-copy { min-height: 748px; padding-right: 25px; padding-left: 25px; }
  .three-hero-copy h1 { font-size: clamp(65px, 18vw, 104px); }

  .philosophy-grid { grid-template-columns: 1fr; gap: 35px; }
  .three-section-head { align-items: flex-start; flex-direction: column; }
  .three-class-grid { grid-template-columns: 1fr; }
  .three-class-card { min-height: 450px; }
  .three-class-card:nth-child(even) { border-top: 0; border-left: 1px solid rgba(246, 242, 235, 0.58); }
  .three-class-card:nth-child(n + 3) { border-top: 0; }

  .three-trilby { gap: 65px; padding-right: 25px; padding-left: 25px; }
  .three-trilby-image { grid-row: 1; }
  .three-membership-intro,
  .three-membership-detail { padding: 80px 25px; }
  .three-membership-intro { border-right: 0; border-bottom: 1px solid rgba(246, 242, 235, 0.45); }

  .three-footer { grid-template-columns: 1fr; gap: 48px; }

  .four-about {
    grid-template-columns: 1fr;
  }

  .four-about .four-video-frame { grid-row: 1; }
  .four-about-body { grid-template-columns: 1fr; }
  .four-faq { grid-template-columns: 1fr; }
  .four-includes { margin-top: 42px; }
  .four-signup { border-top-color: rgba(246, 242, 235, 0.45); }
}

@media (max-width: 520px) {
  .section-pad { padding-right: 20px; padding-left: 20px; }
  .one-header .button { display: none; }
  .one-header { grid-template-columns: 1fr auto; }

  .one-hero-copy .eyebrow { margin-bottom: 42px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .one-hero-image { min-height: 460px; }
  .one-why h2,
  .one-membership h2 { font-size: 45px; }

  .practice-card { min-height: 410px; }
  .trilby-copy h2,
  .section-heading-row h2 { font-size: 43px; }
  .membership-includes,
  .signup-steps { padding: 45px 20px; }
  .signup-steps li { grid-template-columns: 90px 1fr; }

  .two-mark span { display: none; }
  .two-hero { grid-template-rows: auto 520px auto; }
  .two-hero-main h1 { font-size: 66px; }
  .two-hero-note { grid-template-columns: 63px 1fr; gap: 20px; padding: 25px 20px; }
  .two-hero-note svg { width: 60px; }
  .two-story h2,
  .menu-intro h2,
  .two-trilby h2,
  .join-card h2 { font-size: 48px; }
  .two-trilby-collage { min-height: 540px; }
  .collage-sticker { width: 86px; height: 86px; font-size: 25px; }
  .big-footer-line { font-size: 61px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 28px; margin-top: 90px; }
  .footer-bottom nav { flex-direction: column; gap: 14px; }

  .three-wordmark { font-size: 22px; }
  .three-header .outline-button { min-height: 39px; padding: 0 12px; font-size: 11px; }
  .three-hero-copy h1 { font-size: 63px; }
  .three-hero-copy .eyebrow { font-size: 9px; letter-spacing: 0.1em; }
  .three-philosophy h2 { font-size: 47px; }
  .three-section-head h2,
  .three-trilby-copy h2 { font-size: 44px; }
  .three-signup-flow { grid-template-columns: 1fr; gap: 22px; }

  .four-about { padding-right: 20px; padding-left: 20px; }
  .four-about-copy h2 { font-size: 45px; }
  .four-video-label,
  .four-video-time { font-size: 9px; }
  .four-faq { min-height: 0; }
  .four-faq-list summary { min-height: 76px; }
  .four-includes { grid-template-columns: 1fr; }
  .four-includes li:nth-child(even) { padding-left: 0; border-left: 0; }
  .four-signup { padding: 65px 20px; }

  .auth-dialog { padding: 45px 22px 35px; box-shadow: 8px 8px 0 var(--yellow); }
}

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