/* ============================================
   TORELIO PERSONAL GYM
   Quiet luxury LP — mobile first
   ============================================ */

:root {
  --bg: #070707;
  --bg-2: #0c0c0c;
  --charcoal: #111111;
  --card: #141414;
  --gold: #c6b07a;
  --gold-2: #d4c4a0;
  --gold-deep: #a89460;
  --gold-dim: rgba(198, 176, 122, 0.12);
  --white: #f6f3ec;
  --muted: rgba(246, 243, 236, 0.58);
  --muted-2: rgba(246, 243, 236, 0.38);
  --line: rgba(198, 176, 122, 0.18);
  --line-soft: rgba(246, 243, 236, 0.08);
  --ink: #1a1610;
  --header-h: 4.35rem;
  --fixed-cta-h: 4.2rem;
  --pad: clamp(1.15rem, 4.8vw, 2.75rem);
  --section: clamp(4.5rem, 11vw, 8.75rem);
  --max: 1120px;
  --wide: 1280px;
  --radius: 2px;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --display: "Cormorant Garamond", "Shippori Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.6rem);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--white);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: clip;
}

body.menu-open,
body.modal-open,
body.lb-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
}
.skip-link:focus { top: 1rem; }

.pc-only { display: none; }

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.section { padding-block: var(--section); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section-head--left.section-label::before,
.section-head--left .section-label::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 4.6vw, 2.35rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--white);
}

.section-lead {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 36rem;
  line-height: 2.05;
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.25rem);
}
.section-head .section-lead { margin-inline: auto; }
.section-head--left {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: opacity 0.4s var(--ease), gap 0.4s var(--ease);
}
.text-link::after { content: "→"; }
.text-link:hover { opacity: 0.7; gap: 0.7rem; }

.media-zoom {
  overflow: hidden;
}
.media-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
  filter: saturate(0.9) contrast(1.08) brightness(1.08);
}
.media-zoom:hover img { transform: scale(1.08); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  background: transparent;
  color: var(--white);
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { min-height: 2.45rem; padding: 0 1rem; font-size: 0.64rem; }
.btn--lg { min-height: 3.3rem; padding: 0 1.85rem; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 8px 28px rgba(198, 176, 122, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold);
}

/* ---------- Progress / header ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 70;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.header.is-scrolled {
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
}

.header__inner {
  width: min(100% - 1.1rem, var(--wide));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.logo__mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.logo__tag {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav { display: none; }
.nav__list {
  display: flex;
  gap: 1.55rem;
}
.nav a {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: rgba(246, 243, 236, 0.78);
  position: relative;
  padding-bottom: 0.2rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header .btn--ghost,
.header .btn--gold { display: none; }

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 7px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.2px;
  background: var(--gold);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.menu-btn.is-open span:first-child { transform: translateY(4.1px) rotate(40deg); }
.menu-btn.is-open span:last-child { transform: translateY(-4.1px) rotate(-40deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(7, 7, 7, 0.97);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 5.5rem 1.5rem 3rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  display: block;
  padding: 0.7rem 0;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__meta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  line-height: 2;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 28s var(--ease-out) forwards;
  filter: saturate(0.78) contrast(1.08) brightness(0.72);
}
.hero__veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.28) 0%, rgba(7, 7, 7, 0.12) 28%, rgba(7, 7, 7, 0.55) 72%, rgba(7, 7, 7, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.08) 55%, rgba(7, 7, 7, 0.2) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - var(--pad) * 2, var(--wide));
  margin: 0 auto;
  padding: 7.5rem 0 5.5rem;
}
.hero__eyebrow {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 6.4vw, 3.55rem);
  line-height: 1.42;
  letter-spacing: 0.08em;
}
.hero__lead {
  margin-top: 1.35rem;
  max-width: 32rem;
  color: rgba(246, 243, 236, 0.78);
  font-size: 0.88rem;
  line-height: 2.1;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2.1rem;
}
.hero__cta .btn { width: 100%; }

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.4); transform-origin: bottom; opacity: 0.3; }
}

/* ---------- Reasons ---------- */
.reasons { background: var(--bg); padding-top: clamp(3.5rem, 8vw, 6rem); }
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.1rem 1.25rem;
}
.reason {
  text-align: center;
  max-width: 16rem;
  margin-inline: auto;
}
.reason__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.95rem;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.reason__icon svg {
  width: 28px;
  height: 28px;
}
.reason h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.reason p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.95;
}

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.about__grid {
  display: grid;
  gap: 2.25rem;
}
.about__media {
  aspect-ratio: 3 / 4;
  max-height: 640px;
  background: #141414;
  overflow: hidden;
}
.about__media img { height: 100%; }
.about__lead {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(246, 243, 236, 0.88);
}
.about__copy {
  margin-top: 1.15rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 2.15;
}

/* ---------- Stats ---------- */
.stats {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  background: var(--charcoal);
  border-block: 1px solid var(--line-soft);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
  text-align: center;
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}
.stat__unit {
  font-size: 0.45em;
  margin-left: 0.12em;
}
.stat__unit--pre {
  margin-left: 0;
  margin-right: 0.05em;
}
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ---------- Program ---------- */
.program { background: var(--bg); }
.program__grid {
  display: grid;
  gap: 1.35rem;
}
.program-card {
  background: var(--card);
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}
.program-card__media {
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}
.program-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
}
.program-card__en {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}
.program-card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  margin: 0.35rem 0 0.7rem;
}
.program-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.95;
}
.program-card .text-link { margin-top: 1.1rem; font-size: 0.66rem; }

/* ---------- Before After ---------- */
.voice { background: var(--bg-2); overflow: clip; }
.ba__viewport {
  overflow: hidden;
  width: min(100%, var(--wide));
  margin-inline: auto;
}
.ba__track {
  display: flex;
  gap: 1.25rem;
  padding-inline: var(--pad);
  transition: transform 0.7s var(--ease);
}
.ba-card {
  flex: 0 0 min(86vw, 340px);
  background: var(--card);
}
.ba-card__photos {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.ba-card__after,
.ba-card__before {
  position: absolute;
  inset: 0;
}
.ba-card__after img,
.ba-card__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(0.8) contrast(1.05);
}
.ba-card__before {
  width: 50%;
  overflow: hidden;
  z-index: 1;
}
.ba-card__before img {
  width: var(--ba-w, 100%);
  max-width: none;
  object-position: left center;
}
.ba-card__after span,
.ba-card__before span {
  position: absolute;
  bottom: 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(7, 7, 7, 0.55);
  padding: 0.2rem 0.5rem;
}
.ba-card__before span { left: 0.7rem; }
.ba-card__after span { right: 0.7rem; }
.ba-card__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 2;
}
.ba-card__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  background: rgba(7, 7, 7, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ba-card__meta { padding: 1.15rem 1.1rem 1.35rem; }
.ba-card__who {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.ba-card__stat {
  margin-top: 0.4rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.ba-card__quote {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: rgba(246, 243, 236, 0.78);
  line-height: 1.9;
}
.ba__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.ba__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.ba__btn:hover { border-color: var(--gold); background: var(--gold-dim); }
.ba__btn svg { width: 18px; height: 18px; }
.ba__dots { display: flex; gap: 0.45rem; }
.ba__dots button {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(198, 176, 122, 0.28);
}
.ba__dots button.is-on { background: var(--gold); }
.ba__note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

/* ---------- Flow ---------- */
.flow { background: var(--bg); }
.flow__list {
  display: grid;
  gap: 1.75rem;
}
.flow-item {
  text-align: center;
  position: relative;
}
.flow-item__num {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.flow-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
}
.flow-item__icon svg { width: 20px; height: 20px; }
.flow-item h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.flow-item p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ---------- Trainer ---------- */
.trainer { background: var(--bg-2); }
.trainer__grid {
  display: grid;
  gap: 2.25rem;
}
.trainer__media {
  aspect-ratio: 3 / 4;
  max-height: 680px;
  background: #141414;
  overflow: hidden;
}
.trainer__media img { height: 100%; }
.trainer__role {
  font-family: var(--display);
  letter-spacing: 0.28em;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}
.trainer__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.16em;
  margin-top: 0.35rem;
}
.trainer__kana {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0.35rem 0 1.3rem;
}
.trainer__lead {
  font-size: 0.95rem;
  line-height: 2.1;
  margin-bottom: 1.1rem;
}
.trainer__bio {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 2.15;
}
.trainer__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.trainer__creds li {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); overflow: clip; }
.gallery__track-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery__track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0 var(--pad) 0.5rem;
}
.gallery__item {
  position: relative;
  flex: 0 0 min(78vw, 420px);
  aspect-ratio: 16 / 10;
  border: 0;
  padding: 0;
  background: #161616;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: saturate(0.8) contrast(1.06);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item span {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.gallery__hint {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.68rem;
  color: var(--muted-2);
  letter-spacing: 0.12em;
}

/* ---------- Price ---------- */
.price { background: var(--bg-2); }
.price__grid {
  display: grid;
  gap: 1.15rem;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(198, 176, 122, 0.08), transparent 38%), var(--card);
  padding-top: 2.6rem;
}
.price-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.4rem;
  font-weight: 500;
}
.price-card__en {
  font-family: var(--display);
  letter-spacing: 0.28em;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  margin: 0.25rem 0 0.2rem;
}
.price-card__freq {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.price-card__num {
  font-family: var(--display);
  font-size: 2.35rem;
  color: var(--gold);
  margin: 1rem 0 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.price-card__num span {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 0.3rem;
  letter-spacing: 0.1em;
}
.price-card__list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
  flex: 1;
}
.price-card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.78rem;
  color: rgba(246, 243, 236, 0.78);
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 4px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
}
.price__note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted-2);
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: 0;
  color: var(--gold);
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 1.15rem 0.1rem;
  font-family: var(--serif);
}
.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 12px; height: 1px; }
.faq-item__icon::after { width: 1px; height: 12px; transition: opacity 0.3s; }
.faq-item.is-open .faq-item__icon::after { opacity: 0; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 2;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.is-open .faq-item__a {
  max-height: 12rem;
  opacity: 1;
  padding-bottom: 1.2rem;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.cta__media,
.cta__veil { position: absolute; inset: 0; }
.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.55);
}
.cta__veil {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.42) 55%, rgba(7, 7, 7, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.2), rgba(7, 7, 7, 0.55));
}
.cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  padding-block: 5rem;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.cta__lead {
  margin: 1.15rem 0 1.8rem;
  max-width: 28rem;
  color: rgba(246, 243, 236, 0.78);
  font-size: 0.88rem;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta__actions .btn { width: 100%; }
.cta__info {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 2.05;
  letter-spacing: 0.08em;
}
.cta__brand {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.cta__info a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.footer {
  background: #080808;
  border-top: 1px solid var(--line-soft);
  padding: 2.5rem 0 6.5rem;
}
.footer__inner {
  width: min(100% - var(--pad) * 2, var(--wide));
  margin-inline: auto;
  display: grid;
  gap: 1.6rem;
}
.footer__brand p {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted-2);
  max-width: 22rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.3rem;
}
.footer__nav a {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  width: min(100% - var(--pad) * 2, var(--wide));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.66rem;
  color: var(--muted-2);
  line-height: 1.9;
}

/* ---------- Modal / lightbox / toast / fixed CTA ---------- */
.modal[hidden],
.lightbox[hidden],
.toast[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 2rem 1.45rem 1.55rem;
}
.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  border: 0;
  background: none;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1;
}
.modal h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}
.modal__lead {
  margin: 0.6rem 0 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.form { display: grid; gap: 0.75rem; }
.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.72rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--white);
  background: #0a0a0a;
}
.form textarea { min-height: 5.5rem; resize: vertical; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 1.5rem;
}
.lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1100px);
  max-height: 82vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 2;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.5);
  color: var(--gold);
  display: grid;
  place-items: center;
  z-index: 2;
}
.lightbox__nav svg { width: 18px; height: 18px; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--fixed-cta-h) + 1.2rem);
  transform: translateX(-50%);
  z-index: 90;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 1.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  width: min(calc(100% - 2rem), 420px);
  text-align: center;
}

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  height: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #0a0a0a;
  border-top: 1px solid var(--line-soft);
  transition: transform 0.45s var(--ease);
}
.fixed-cta.is-hidden { transform: translateY(110%); }
.fixed-cta a {
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.fixed-cta__line { color: var(--white); }
.fixed-cta__web { background: var(--gold); color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.js .reveal {
  animation: reveal-fallback 0.01s linear 3.2s forwards;
}
.js .reveal.is-in { animation: none; }
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}

/* ---------- Tablet ---------- */
@media (min-width: 720px) {
  .pc-only { display: inline; }
  .header .btn--gold { display: inline-flex; }
  .hero__cta {
    flex-direction: row;
    align-items: center;
  }
  .hero__cta .btn { width: auto; }
  .reasons__grid { grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.4rem; }
  .reasons__grid .reason:nth-child(4),
  .reasons__grid .reason:nth-child(5) { grid-column: span 1; }
  .about__grid,
  .trainer__grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 3rem; }
  .about__media,
  .trainer__media { max-height: none; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .program__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .ba-card { flex-basis: min(46vw, 380px); }
  .flow__list { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
  .price__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .faq__grid { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .faq-item:nth-child(-n+2) { border-top: 0; }
  .cta__inner { grid-template-columns: 1.3fr 0.7fr; align-items: end; }
  .cta__actions {
    flex-direction: row;
    align-items: center;
  }
  .cta__actions .btn { width: auto; }
  .gallery__item { flex-basis: 380px; }
  .footer { padding-bottom: 2.5rem; }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .reason h3 { font-size: 0.95rem; }
}

/* ---------- Desktop ---------- */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .fixed-cta { display: none; }
  .menu-btn { display: none; }
  .nav { display: block; }
  .header .btn--ghost,
  .header .btn--gold { display: inline-flex; }
  .hero__content { padding: 8.5rem 0 6.5rem; }
  .reasons__grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
  .reason { max-width: none; }
  .program__grid { grid-template-columns: repeat(4, 1fr); }
  .ba-card { flex-basis: min(30vw, 360px); }
  .flow__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4.35rem;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 1px;
    background: linear-gradient(90deg, var(--line), transparent);
    pointer-events: none;
  }
  .price-card--featured { transform: translateY(-10px); }
  .gallery__item { flex-basis: 440px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img,
  .media-zoom img,
  .program-card,
  .gallery__item img { animation: none; transition: none; }
  .hero__scroll::after { animation: none; }
}
