:root {
  --forest: #5dae8f;
  --deep: #6f5f53;
  --sage: #b8d8c9;
  --moss: #7fb99c;
  --ivory: #eeeae4;
  --paper: #fbfaf7;
  --clay: #7b695c;
  --gold: #d8c9b5;
  --ink: #2b2723;
  --muted: #6f665e;
  --line: rgba(111, 95, 83, 0.18);
  --serif: "Zen Old Mincho", serif;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 92px;
  padding: 0 5vw;
  color: var(--deep);
}
.brand { display: flex; align-items: center; width: max-content; }
.brand img {
  width: 170px;
  height: auto;
  object-fit: contain;
}
nav { display: flex; gap: 30px; font-size: 12px; font-weight: 600; }
nav a:hover { color: var(--clay); }
.header-cta {
  justify-self: end;
  padding: 14px 21px;
  color: white;
  background: var(--forest);
  font-size: 12px;
  font-weight: 600;
}

.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--paper); }
.hero > img {
  position: absolute;
  top: 8%;
  right: 0;
  width: 59%;
  height: 88%;
  object-fit: cover;
  object-position: 48% center;
  clip-path: ellipse(64% 72% at 58% 50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(246,244,240,.98) 0%, rgba(246,244,240,.93) 35%, rgba(246,244,240,.08) 61%, transparent 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 1%;
  z-index: 1;
  width: 59%;
  height: 91%;
  border: 1px solid rgba(191,160,122,.45);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo-mark {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  z-index: 2;
  width: min(14vw, 170px);
  opacity: .08;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; width: 54%; padding: 25vh 0 10vh 8vw; }
.kicker { margin: 0 0 24px; color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.055em; line-height: 1.42; }
h1 { font-size: clamp(58px, 7vw, 108px); }
h1 em { display: block; color: var(--clay); font-style: normal; white-space: nowrap; }
.mobile-label { display: none; }
.lead { margin: 28px 0 0; font: 500 clamp(15px, 1.3vw, 19px)/2 var(--serif); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.button {
  display: inline-flex; justify-content: space-between; align-items: center;
  gap: 36px; min-width: 220px; padding: 18px 21px; border: 0;
  font: 600 13px var(--sans); cursor: pointer; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.primary { color: white; background: var(--forest); }
.primary:hover { background: #4b987b; }
.line-button i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 24px;
  margin: -5px 0 -5px -8px;
  border-radius: 12px;
  color: #06c755;
  background: white;
  font: 800 10px var(--sans);
  font-style: normal;
}
.link-button { padding-bottom: 7px; border-bottom: 1px solid; font-size: 12px; font-weight: 600; }
.link-button span { margin-left: 16px; }
.hero-note { position: absolute; right: 2.2vw; top: 50%; z-index: 2; font-size: 10px; letter-spacing: .18em; writing-mode: vertical-rl; }
.scroll { position: absolute; bottom: 30px; left: 5vw; z-index: 2; display: flex; align-items: center; gap: 13px; font-size: 10px; letter-spacing: .14em; }
.scroll i { display: block; width: 55px; height: 1px; background: var(--ink); }

.news-strip {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.news-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 3vw 20px 7vw;
  color: white;
  background: var(--forest);
}
.news-title span { font-size: 10px; letter-spacing: .14em; }
.news-title strong { margin-top: 5px; font: 600 15px var(--serif); }
.news-strip > a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 20px 7vw 20px 3vw;
}
.news-strip time, .news-strip > a > span { color: var(--muted); font-size: 11px; letter-spacing: .07em; }
.news-strip p { margin: 0; font: 500 13px/1.8 var(--serif); }
.news-strip p { min-width: 0; overflow-wrap: anywhere; }

.section { padding: 125px 7vw; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.section-label span { margin-right: 18px; color: var(--clay); }
.intro {
  display: grid;
  justify-items: center;
  min-height: 850px;
  padding-top: 170px;
  padding-bottom: 170px;
  text-align: center;
  background: var(--paper);
}
.intro .section-label { margin-bottom: 70px; }
.intro-main .kicker { margin-bottom: 38px; }
.intro h2, .approach h2, .program h2, .flow h2, .space h2, .shop h2, .contact h2 { font-size: clamp(38px, 4.5vw, 68px); }
.intro-text { max-width: 860px; padding-top: 55px; font: 15px/2.25 var(--serif); }
.intro-text p { margin: 0; text-wrap: balance; }
.notice { max-width: 680px; margin: 45px auto 0; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 2; }

.journey { background: var(--ivory); }
.journey-label { margin-bottom: 65px; text-align: center; }
.journey-label > span { color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.journey-label h2 { margin-top: 22px; font-size: clamp(36px, 4vw, 58px); }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }
.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 50px;
  overflow: hidden;
  color: var(--paper);
}
.journey-card::before, .journey-card::after { content: ""; position: absolute; pointer-events: none; }
.journey-card::before { inset: 0; opacity: .75; }
.journey-card::after { width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.journey-card.first { background: linear-gradient(145deg, var(--moss), var(--forest)); }
.journey-card.first::before { background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.23) 0 14%, transparent 14.5%); }
.journey-card.first::after { top: -70px; right: -60px; }
.journey-card.continue { color: var(--ink); background: linear-gradient(145deg, #f1ede6, #ded0bf); }
.journey-card.continue::before { background: repeating-linear-gradient(120deg, transparent 0 35px, rgba(255,255,255,.22) 36px 37px); }
.journey-card.continue::after { right: 30px; bottom: -130px; border-color: rgba(43,43,43,.2); }
.journey-card > * { position: relative; z-index: 1; }
.journey-card > span { font-size: 11px; letter-spacing: .1em; }
.journey-card h3 { margin: 12px 0 18px; font: 600 34px var(--serif); }
.journey-card p { max-width: 430px; margin: 0 0 35px; font: 13px/2 var(--serif); }
.journey-card b { padding-top: 15px; border-top: 1px solid currentColor; font-size: 12px; }

.audiences { display: grid; grid-template-columns: repeat(3, 1fr); }
.audience-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  padding: 20px 7vw;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.audience-head p { margin: 0; color: var(--muted); font: 13px var(--serif); }
.audience-card {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-width: 0; min-height: 570px; padding: 34px; overflow: hidden; color: white;
}
.audience-card::before, .audience-card::after { content: ""; position: absolute; inset: 0; }
.audience-card::before { background: repeating-linear-gradient(120deg, transparent 0 34px, rgba(255,255,255,.06) 35px 36px); }
.audience-card::after { opacity: .85; mix-blend-mode: screen; }
.sport { background: linear-gradient(145deg, #8cc5aa, var(--forest)); }
.sport::after { background: radial-gradient(circle at 70% 25%, #d7e5e0 0 10%, transparent 10.5%); }
.maintain { background: linear-gradient(145deg, #d7c9b8, var(--clay)); }
.maintain::after { background: linear-gradient(120deg, transparent 35%, rgba(255,248,236,.4) 36% 42%, transparent 43%); }
.restart { background: linear-gradient(145deg, var(--sage), var(--moss)); }
.restart::after { background: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,.45) 0 18%, transparent 18.5%); }
.audience-card > * { position: relative; z-index: 1; }
.audience-card > span { font-size: 11px; letter-spacing: .16em; }
.audience-card div > p { margin: 0 0 13px; font: 500 14px var(--serif); }
.audience-card h3 { margin: 0 0 32px; font: 600 clamp(25px, 2.3vw, 36px)/1.55 var(--serif); }
.audience-card a { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.45); font-size: 13px; }

.approach {
  border-top: 12px solid var(--paper);
  color: var(--ivory);
  background: linear-gradient(145deg, #67584e, #4f443d);
}
.section-label.light { color: rgba(245,241,232,.65); }
.approach-heading { display: flex; justify-content: space-between; align-items: end; margin: 55px 0 70px; }
.approach-heading .kicker { order: 2; margin: 0 0 10px; color: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.steps article { position: relative; padding: 35px 4vw 20px 0; border-right: 1px solid rgba(255,255,255,.18); }
.steps article + article { padding-left: 4vw; }
.steps article:last-child { border-right: 0; }
.step-no { color: var(--gold); font-size: 11px; }
.step-icon { position: relative; width: 130px; height: 100px; margin: 45px auto; }
.step-icon::before, .step-icon::after { content: ""; position: absolute; inset: 10%; border: 1px solid var(--gold); border-radius: 50%; }
.observe::after { transform: translateX(25px); }
.loosen::before { border-radius: 50% 10%; transform: rotate(35deg); }
.loosen::after { border-radius: 10% 50%; transform: rotate(-35deg); }
.connect::before { width: 55px; left: 0; }
.connect::after { width: 55px; right: 0; left: auto; }
.steps h3 { margin: 0 0 14px; font: 600 28px var(--serif); }
.steps p { margin: 0; color: rgba(245,241,232,.65); font: 12px/2 var(--serif); }

.trainer {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 10vw;
  align-items: center;
  background: var(--ivory);
}
.trainer-photo {
  position: relative;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--sage), var(--forest));
}
.trainer-photo::before {
  content: "";
  position: absolute;
  left: 11%;
  top: 9%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
}
.trainer-photo::after {
  content: "";
  position: absolute;
  right: 13%;
  bottom: 11%;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
}
.trainer-photo img {
  position: relative;
  display: block;
  z-index: 1;
  width: min(70%, 360px);
  aspect-ratio: 1;
  margin: 90px auto 0;
  border: 18px solid rgba(251,250,247,.52);
  border-radius: 50%;
  object-fit: cover;
}
.trainer-photo figcaption {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  color: white;
  text-align: center;
  font: 600 12px var(--serif);
  letter-spacing: .16em;
}
.trainer-copy .kicker { margin-top: 55px; }
.trainer-copy h2 { font-size: clamp(42px, 5vw, 72px); }
.trainer-role { margin: 12px 0 32px; color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.trainer-copy > p:not(.kicker, .trainer-role) { max-width: 620px; font: 13px/2.1 var(--serif); }
.instagram-link {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  max-width: 530px;
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.instagram-link span { color: var(--clay); font-size: 11px; letter-spacing: .12em; }
.instagram-link strong { font-size: 13px; }
.instagram-link b { font-size: 17px; }

.program { background: var(--paper); }
.program-heading { display: grid; grid-template-columns: .65fr 1fr 1fr; align-items: end; margin-bottom: 70px; }
.program-heading .kicker { margin: 0 0 10px; }
.program-list { border-top: 1px solid var(--line); }
.program-card {
  display: grid; grid-template-columns: 80px 1.4fr .7fr 50px; gap: 25px; align-items: center;
  padding: 35px 0; border-bottom: 1px solid var(--line);
}
.program-index, .en { color: var(--clay); font-size: 11px; letter-spacing: .13em; }
.program-card h3 { margin: 8px 0 12px; font: 600 24px var(--serif); }
.program-card p { max-width: 600px; margin: 0; color: var(--muted); font: 13px/1.9 var(--serif); }
.price small { display: block; margin-top: 6px; color: var(--muted); font: 11px/1.6 var(--serif); letter-spacing: 0; }
.price { font-size: 11px; letter-spacing: .1em; }
.price strong { display: block; margin-top: 8px; font: 600 14px var(--serif); letter-spacing: 0; }
.program-card > a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; }
.program-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.program-notes p {
  margin: 0;
  padding: 20px;
  border-radius: 24px;
  background: var(--ivory);
  color: var(--muted);
  font: 12px/1.9 var(--serif);
}
.program-notes strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 13px;
}

.flow { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; color: var(--ivory); background: var(--deep); }
.flow-copy .kicker { margin-top: 55px; color: var(--gold); }
.flow-copy > p:not(.kicker) { max-width: 520px; margin: 32px 0 42px; color: rgba(245,241,232,.65); font: 13px/2 var(--serif); }
.pale { color: var(--deep); background: var(--ivory); }
.flow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.flow-list li { display: grid; grid-template-columns: 60px 1fr; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.flow-list li > span { color: var(--gold); font-size: 11px; }
.flow-list strong { font: 600 17px var(--serif); }
.flow-list p { margin: 8px 0 0; color: rgba(245,241,232,.68); font-size: 12px; line-height: 1.8; }

.session-style { background: var(--paper); }
.session-heading {
  display: grid;
  grid-template-columns: .55fr .75fr 1.05fr;
  align-items: end;
  gap: 35px;
  margin-bottom: 65px;
}
.session-heading h2 { font-size: clamp(38px, 4.5vw, 68px); }
.session-heading > p:last-child { margin: 0; color: var(--muted); font: 13px/2 var(--serif); }
.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.session-card { padding: 20px; border: 1px solid var(--line); }
.session-card > span { color: var(--clay); font-size: 11px; letter-spacing: .13em; }
.session-art { position: relative; height: 270px; margin: 18px 0 25px; overflow: hidden; background: var(--ivory); }
.session-art::before, .session-art::after, .session-art i { content: ""; position: absolute; }
.studio-art::before { inset: 18% 12%; border: 1px solid var(--forest); }
.studio-art::after { left: 50%; top: 18%; bottom: 18%; width: 1px; background: var(--forest); }
.studio-art i { right: 18%; bottom: 18%; width: 70px; height: 70px; border-radius: 50%; background: var(--gold); }
.online-art::before { inset: 19% 13%; border: 8px solid var(--forest); border-radius: 8px; }
.online-art::after { left: 35%; right: 35%; bottom: 14%; height: 8px; background: var(--forest); }
.online-art i { left: 42%; top: 36%; width: 45px; height: 45px; border: 1px solid var(--clay); border-radius: 50%; }
.team-art::before { left: 17%; top: 25%; width: 70px; height: 70px; border-radius: 50%; background: var(--sage); box-shadow: 75px 30px 0 var(--gold), 150px -5px 0 var(--forest); }
.team-art::after { left: 15%; right: 15%; bottom: 22%; height: 1px; background: var(--ink); }
.session-card h3 { margin: 0 0 12px; font: 600 20px var(--serif); }
.session-card p { min-height: 65px; margin: 0; color: var(--muted); font: 12px/1.9 var(--serif); }
.session-card a { display: block; margin-top: 22px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; }

.space {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  align-items: center;
  background: var(--paper);
}
.space-copy .kicker { margin-top: 55px; }
.space-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted);
  font: 13px/2.1 var(--serif);
}
.space-gallery {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 18px;
  align-items: end;
}
.space-gallery img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  background: var(--ivory);
}
.space-gallery .space-main {
  grid-row: span 2;
  min-height: 620px;
  border-radius: 220px 220px 8px 8px;
}
.space-gallery img:not(.space-main) { border-radius: 120px 120px 8px 8px; }

.shop { background: var(--ivory); }
.shop-heading { display: grid; grid-template-columns: .55fr .75fr 1fr; align-items: end; margin-bottom: 65px; }
.shop-heading > p:last-child { margin: 0; font: 13px/2 var(--serif); }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product { padding: 20px; background: var(--paper); }
.product-visual { display: grid; place-items: center; height: 330px; margin-bottom: 23px; overflow: hidden; background: #e7e4de; }
.product-visual span { color: var(--ivory); }
.ball span { display: grid; place-items: center; width: 140px; height: 140px; border-radius: 50%; background: var(--forest); font: 600 40px var(--serif); }
.band span { display: grid; place-items: center; width: 190px; height: 90px; border: 18px solid var(--clay); border-radius: 50%; color: var(--clay); font-size: 11px; letter-spacing: .12em; transform: rotate(-15deg); }
.video { background: linear-gradient(145deg, var(--sage), var(--deep)); }
.video span { display: grid; place-items: center; width: 80px; height: 80px; border: 1px solid white; border-radius: 50%; font-size: 11px; }
.product > p { margin: 0 0 8px; color: var(--clay); font-size: 11px; letter-spacing: .13em; }
.product h3 { margin: 0 0 14px; font: 600 18px var(--serif); }
.product > strong { font-size: 12px; letter-spacing: .1em; }
.product > a { display: block; margin-top: 23px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; }

.journal { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; color: var(--paper); background: var(--deep); }
.journal-head .kicker { margin-top: 50px; color: var(--gold); }
.journal-head h2 { font-size: clamp(42px, 5vw, 72px); }
.journal-head > p:last-child { max-width: 500px; color: rgba(246,244,240,.7); font: 13px/2 var(--serif); }
.journal-list { border-top: 1px solid rgba(255,255,255,.2); }
.journal-list a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 25px;
  min-height: 115px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.journal-list span { color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.journal-list strong { font: 500 15px var(--serif); }
.journal-list b { font-size: 16px; }
.access-content { min-width: 0; }
.access-photo {
  width: 100%;
  height: 300px;
  margin-bottom: 35px;
  object-fit: cover;
  object-position: center;
  border-radius: 160px 160px 8px 8px;
  background: var(--ivory);
}
.map-frame {
  width: 100%;
  height: 420px;
  margin-top: 35px;
  border: 0;
  background: var(--ivory);
  filter: saturate(.78) contrast(.92);
}

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; background: var(--paper); }
.contact-copy > p:not(.kicker) { margin: 30px 0; font: 13px/2 var(--serif); }
.contact-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.contact-tags span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 30px; font-size: 11px; }
.line-contact {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin-top: 38px;
  padding: 18px;
  color: white;
  background: #06c755;
}
.line-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 36px;
  border-radius: 18px;
  color: #06c755;
  background: white;
  font-size: 11px;
  font-weight: 800;
}
.line-contact small { display: block; margin-bottom: 3px; font-size: 11px; font-weight: 500; }
.line-contact strong { font: 600 14px var(--serif); }
.line-contact b { font-size: 18px; }
.line-note { margin: 10px 0 0 !important; color: var(--muted); font-size: 11px !important; }
.contact-form { display: grid; gap: 24px; }
.contact-form label { display: grid; gap: 9px; font: 600 12px var(--serif); }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select, textarea {
  width: 100%; padding: 15px 2px; border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0; outline: 0; color: var(--ink); background: transparent; font: 13px var(--sans);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--clay); }
.form-status { min-height: 18px; margin: 0; color: var(--clay); font: 12px var(--serif); }

footer { padding: 70px 7vw 30px; color: var(--ivory); background: var(--forest); }
.footer-brand { color: var(--ivory); }
.footer-brand img {
  width: min(280px, 54vw);
  filter: brightness(0) invert(1);
  opacity: .9;
}
footer > p { margin: 50px 0; font: 600 clamp(30px, 5vw, 70px) var(--serif); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .06em; }
.footer-bottom a { color: white; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .header { grid-template-columns: 1fr auto; height: 75px; }
  nav { display: none; }
  .header-cta { padding: 11px 14px; }
  .hero-copy { width: 72%; padding-top: 22vh; }
  .news-strip { grid-template-columns: 180px 1fr; }
  .intro, .program-heading, .shop-heading { grid-template-columns: 1fr; gap: 25px; }
  .intro-text { padding-top: 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .audiences { grid-template-columns: 1fr; }
  .audience-head { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .audience-card { min-height: 380px; }
  .approach-heading { display: block; }
  .approach-heading .kicker { margin-top: 25px; }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article + article { padding: 35px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .program-card { grid-template-columns: 50px 1fr 45px; }
  .program-card .price { grid-column: 2; }
  .program-card > a { grid-column: 3; grid-row: 1 / span 2; }
  .flow, .space, .contact { grid-template-columns: 1fr; }
  .trainer { grid-template-columns: 1fr; }
  .trainer-photo { min-height: 450px; }
  .session-heading { grid-template-columns: 1fr; }
  .session-grid { grid-template-columns: 1fr; }
  .program-notes { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .journal { grid-template-columns: 1fr; }
  .space-gallery .space-main { min-height: 480px; }
}

@media (max-width: 600px) {
  .header { display: flex; justify-content: space-between; padding: 0 6vw; }
  .brand > span { font-size: 18px; }
  .brand img { width: 118px; }
  .header-cta {
    position: absolute;
    top: 19px;
    right: 6vw;
    z-index: 2;
    display: block;
    padding: 10px 13px;
    font-size: 11px;
  }
  .desktop-label { display: none; }
  .mobile-label { display: inline; }
  .hero { min-height: 760px; background: var(--ivory); }
  .hero > img {
    top: auto;
    right: -12%;
    bottom: 0;
    width: 112%;
    height: 48%;
    object-position: 42% center;
    clip-path: ellipse(66% 78% at 62% 62%);
  }
  .hero-logo-mark {
    right: 5vw;
    bottom: 42px;
    width: 92px;
    opacity: .07;
  }
  .hero::before { display: none; }
  .hero-overlay { background: linear-gradient(180deg, var(--ivory) 0 51%, transparent 72%); }
  .hero-copy { width: 100%; padding: 150px 6vw 0; }
  h1 { font-size: 50px; }
  .lead {
    max-width: 320px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .lead br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-note { display: none; }
  .news-strip { grid-template-columns: 1fr; }
  .news-title { padding: 16px 6vw; }
  .news-strip > a {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    gap: 10px;
    padding: 20px 8vw;
  }
  .news-strip p {
    width: 100%;
    max-width: 320px;
    font-size: 12px;
    line-height: 1.8;
    word-break: break-all;
  }
  .news-strip > a > span { grid-column: 1; }
  .section { padding: 90px 6vw; }
  .kicker,
  .section-label,
  .news-title span,
  .news-strip time,
  .news-strip > a > span,
  .journey-label > span,
  .journey-card > span,
  .audience-card > span,
  .step-no,
  .trainer-role,
  .instagram-link span,
  .program-index,
  .en,
  .price,
  .price small,
  .flow-list li > span,
  .session-card > span,
  .session-card a,
  .product > p,
  .product > strong,
  .product > a,
  .journal-list span,
  .contact-tags span,
  .line-contact small,
  .line-note,
  .footer-bottom {
    font-size: 12px !important;
  }
  .intro { min-height: 720px; padding-top: 120px; padding-bottom: 120px; }
  .intro .section-label { margin-bottom: 45px; }
  .intro h2, .approach h2, .program h2, .flow h2, .space h2, .shop h2, .contact h2 { font-size: 36px; }
  .intro > * {
    width: 100%;
    min-width: 0;
  }
  .intro-main { max-width: 100%; }
  .intro h2 {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    font-size: 25px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .intro h2 br { display: block; }
  .intro-text {
    width: 100%;
    max-width: 295px;
    font-size: 14px;
    line-height: 2.15;
    overflow-wrap: anywhere;
  }
  .intro-text p { text-wrap: auto; line-break: strict; }
  .intro-text br { display: none; }
  .journey-card { min-height: 360px; padding: 35px 28px; }
  .journey-card p {
    max-width: 245px;
    overflow-wrap: anywhere;
    line-break: strict;
  }
  .journey-label h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: 30px;
    line-height: 1.65;
  }
  .journey-card h3 { font-size: 28px; }
  .program-card { grid-template-columns: 35px 1fr; padding: 28px 0; }
  .program-card > a { display: none; }
  .program-card .price { grid-column: 2; }
  .two-cols { grid-template-columns: 1fr; }
  .trainer-photo { min-height: 360px; }
  .trainer-photo img {
    width: min(74%, 260px);
    margin-top: 58px;
    border-width: 12px;
  }
  .instagram-link { grid-template-columns: 85px 1fr auto; }
  .session-art { height: 230px; }
  .space-gallery { grid-template-columns: 1fr; }
  .space-gallery .space-main,
  .space-gallery img {
    min-height: 260px;
    border-radius: 120px 120px 8px 8px;
  }
  .journal-list a { grid-template-columns: 90px 1fr auto; gap: 12px; }
  .journal-list strong { font-size: 13px; }
  .map-frame { height: 330px; }
  .access-photo {
    height: 230px;
    border-radius: 110px 110px 8px 8px;
  }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
}

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