@import "tailwindcss";

:root {
  --cream: #e9dec8;
  --cream-deep: #d9c6a5;
  --ink: #172129;
  --navy: #1d303c;
  --blue: #397d9c;
  --blue-dark: #2c6179;
  --orange: #c2763f;
  --ochre: #b28b55;
  --red: #b65b52;
  --white: #f8f1e5;
  --muted: #726b5f;
  --line: rgba(23, 33, 41, .18);
  --line-light: rgba(248, 241, 229, .2);
  --canvas: 2560px;
  --shell: 1840px;
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.section-shell,
.header-shell,
.hero-shell,
.cta-shell,
.footer-shell {
  width: min(100%, var(--canvas));
  margin-inline: auto;
}
.section-shell { max-width: var(--shell); }
.section-pad { padding: clamp(86px, 8vw, 152px) clamp(22px, 4.5vw, 80px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background: rgba(238, 231, 217, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-shell { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; padding: 0 clamp(20px, 3vw, 58px); }
.brand-lockup { position: relative; min-width: 256px; display: inline-flex; align-items: center; gap: 12px; isolation: isolate; }
.brand-lockup > img { width: 54px; height: 52px; object-fit: contain; background: var(--white); filter: saturate(.76) sepia(.08) contrast(.96); }
.brand-lockup > .brand-copy { display: grid; line-height: 1; }
.brand-copy b { font-size: 13px; font-weight: 900; letter-spacing: .105em; }
.brand-copy small { margin-top: 7px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 2vw, 38px); }
.desktop-nav a { position: relative; display: flex; gap: 7px; align-items: baseline; padding: 28px 0 24px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a > span { color: var(--red); font-family: var(--serif); font-size: 9px; font-weight: 400; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .28s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-size: 11px; font-weight: 800; letter-spacing: .04em; white-space: nowrap; }
.mobile-menu { display: none; }

/* Controls */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 18px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.button span { font-size: 18px; font-weight: 400; line-height: 1; transition: transform .28s ease; }
.button:hover span { transform: translate(4px, -4px); }
.button--small { min-height: 40px; padding: 9px 13px; gap: 14px; font-size: 9px; }
.button--ink { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button--ink:hover { background: var(--blue); border-color: var(--blue); }
.button--cream { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.button--cream:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.button--blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.button--blue:hover { background: var(--ink); border-color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 15px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { transition: transform .28s ease; }
.text-link:hover span { transform: translate(3px, -2px); }
.text-link--light { color: var(--white); }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: rgba(255, 253, 248, .64); }

/* Hero */
.home-hero { background: var(--ink); color: var(--white); }
.hero-shell { position: relative; min-height: 840px; height: clamp(840px, calc(100svh - 80px), 1120px); display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: clamp(34px, 4vw, 86px); padding: 72px clamp(22px, 4.5vw, 88px) 116px; overflow: hidden; }
.hero-shell::before { content: ""; position: absolute; inset: 22px clamp(22px, 4.5vw, 88px) 96px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); pointer-events: none; }
.hero-copy { position: relative; z-index: 3; max-width: 770px; }
.hero-issue { margin: 0 0 32px; color: rgba(255,253,248,.46); font-family: var(--serif); font-size: 13px; letter-spacing: .06em; }
.hero-issue b { color: var(--orange); font-size: 22px; font-weight: 400; }
.hero-copy h1 { margin: 0; font-family: var(--sans); font-size: clamp(82px, 7.4vw, 166px); font-weight: 900; letter-spacing: -.08em; line-height: .76; text-transform: uppercase; }
.hero-copy h1 span { color: var(--orange); }
.hero-lead { max-width: 620px; margin: 38px 0 30px; color: rgba(255,253,248,.72); font-family: var(--serif); font-size: clamp(19px, 1.5vw, 28px); line-height: 1.38; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; }
.hero-stamp { position: relative; z-index: 2; margin: 0; padding: clamp(12px, 1vw, 20px); background: var(--cream); color: var(--ink); box-shadow: 0 40px 100px rgba(0,0,0,.34); transform: rotate(.65deg); }
.hero-stamp::before,
.hero-stamp::after { content: ""; position: absolute; z-index: 3; right: -7px; left: -7px; height: 13px; background: radial-gradient(circle at 7px 7px, transparent 6px, var(--cream) 6.6px) 0 0 / 14px 14px repeat-x; }
.hero-stamp::before { top: -7px; }
.hero-stamp::after { bottom: -7px; transform: rotate(180deg); }
.hero-stamp > img { width: 100%; max-width: 1080px; aspect-ratio: 1080 / 740; object-fit: cover; filter: saturate(.7) sepia(.035) contrast(1.04); }
.hero-stamp figcaption { display: grid; grid-template-columns: .75fr 1fr auto; align-items: center; gap: 20px; padding: 15px 4px 1px; }
.hero-stamp figcaption span,
.hero-stamp figcaption small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-stamp figcaption b { font-family: var(--serif); font-size: 17px; font-weight: 400; }
.stamp-reg { position: absolute; z-index: 4; top: 35px; right: 34px; left: 34px; display: flex; justify-content: space-between; color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; text-shadow: 0 1px 8px #000; }
.stamp-cancel { position: absolute; z-index: 4; right: -24px; bottom: 46px; width: 124px; height: 124px; border: 2px solid rgba(11,16,24,.5); border-radius: 50%; transform: rotate(-12deg); }
.stamp-cancel::before { content: "GG\A 2026"; white-space: pre; position: absolute; inset: 11px; display: grid; place-items: center; border: 1px solid rgba(11,16,24,.45); border-radius: 50%; font-size: 10px; font-weight: 900; line-height: 1.2; letter-spacing: .12em; text-align: center; }
.stamp-cancel i { position: absolute; right: 89px; width: 100px; height: 1px; background: rgba(11,16,24,.5); }
.stamp-cancel i:nth-child(1) { top: 43px; }.stamp-cancel i:nth-child(2) { top: 58px; }.stamp-cancel i:nth-child(3) { top: 73px; }
.hero-index { position: absolute; z-index: 4; right: clamp(22px, 4.5vw, 88px); bottom: 0; left: clamp(22px, 4.5vw, 88px); height: 84px; display: grid; grid-template-columns: repeat(3, minmax(180px, 260px)); border-top: 1px solid var(--line-light); }
.hero-index div { display: flex; align-items: center; gap: 12px; padding-right: 26px; border-right: 1px solid var(--line-light); }
.hero-index div + div { padding-left: 26px; }
.hero-index b { color: var(--orange); font-family: var(--serif); font-size: 28px; font-weight: 400; }
.hero-index span { color: rgba(255,253,248,.52); font-size: 8px; font-weight: 800; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; }
.motion-line { overflow: hidden; padding: 15px 0; background: var(--ink); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: rgba(255,253,248,.68); }
.motion-line > div { width: max-content; display: flex; animation: belt 34s linear infinite; }
.motion-line span { font-size: 10px; font-weight: 900; letter-spacing: .14em; white-space: nowrap; }
.motion-line i { margin: 0 24px; color: var(--orange); font-style: normal; }

/* Mark-style accents: used as signatures rather than wallpaper. */
.brand-postmark { position: relative; width: 174px; height: 112px; flex: 0 0 auto; color: currentColor; transform: rotate(-7deg); opacity: .78; }
.brand-postmark > span { position: absolute; z-index: 2; inset: 0 auto 0 0; width: 112px; display: grid; place-items: center; align-content: center; border: 2px solid currentColor; border-radius: 50%; text-align: center; }
.brand-postmark > span::before { content: ""; position: absolute; inset: 8px; border: 1px solid currentColor; border-radius: inherit; opacity: .55; }
.brand-postmark b { font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: .04em; }
.brand-postmark small { margin-top: 7px; font-size: 6px; font-weight: 900; letter-spacing: .12em; }
.brand-postmark i { position: absolute; right: 0; width: 88px; height: 1px; background: currentColor; opacity: .55; }
.brand-postmark i:nth-of-type(1) { top: 40px; }
.brand-postmark i:nth-of-type(2) { top: 56px; }
.brand-postmark i:nth-of-type(3) { top: 72px; }

.club-ritual { overflow: hidden; background: var(--cream); }
.club-ritual-shell { position: relative; display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(34px, 6vw, 110px); align-items: start; }
.club-ritual-shell::before { content: "GG / ПИСЬМО 01"; position: absolute; right: 0; top: 0; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.club-ritual .brand-postmark { margin-top: 18px; color: var(--orange); }
.club-ritual-copy { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); column-gap: clamp(40px, 7vw, 120px); align-items: end; }
.club-ritual-copy .eyebrow { grid-column: 1 / -1; }
.club-ritual-copy h2 { margin: 0; font-size: clamp(58px, 6vw, 118px); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.club-ritual-copy h2 span { color: var(--blue); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
.club-ritual-copy > p:last-child { max-width: 570px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: clamp(18px, 1.45vw, 25px); line-height: 1.45; }
.ritual-route { grid-column: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(54px, 6vw, 94px) 0 0; padding: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); list-style: none; }
.ritual-route li { min-height: 170px; display: grid; align-content: space-between; padding: 22px; border-right: 1px solid var(--line); }
.ritual-route li:last-child { border-right: 0; }
.ritual-route span { color: var(--orange); font-family: var(--serif); font-size: 18px; }
.ritual-route b { align-self: end; font-size: clamp(17px, 1.35vw, 24px); letter-spacing: -.03em; text-transform: uppercase; }
.ritual-route small { color: var(--muted); font-size: 9px; line-height: 1.35; }

/* Shared section typography */
.section-label { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 15px; margin-bottom: clamp(50px, 5.5vw, 88px); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-label span { color: var(--red); font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: 0; }
.section-label b { white-space: nowrap; }
.section-label i { height: 1px; margin-left: 12px; background: currentColor; opacity: .18; }
.section-head { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(50px, 8vw, 140px); align-items: end; margin-bottom: clamp(48px, 5vw, 78px); }
.section-head > *,
.history-layout > *,
.first-visit-head > *,
.archive-head > *,
.inner-summary > *,
.route-layout > *,
.faq-layout > * { min-width: 0; }
.section-head h2,
.history-copy h2,
.first-visit-head h2,
.archive-head h2,
.faq-layout h2,
.inner-display,
.special-hero h1,
.cta-copy h2 { margin: 0; font-size: clamp(58px, 5.8vw, 112px); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.section-head h2 span,
.history-copy h2 span,
.first-visit-head h2 span,
.archive-head h2 span,
.faq-layout h2 span { color: var(--blue); }
.section-head > p { max-width: 590px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: clamp(18px, 1.5vw, 25px); line-height: 1.45; }
.section-head--light > p { color: rgba(255,253,248,.56); }
.section-head--light h2 span { color: var(--orange); }

/* History */
.history-section { background: var(--cream); }
.history-layout { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(54px, 9vw, 160px); align-items: center; }
.history-copy { max-width: 850px; }
.history-copy h2 { font-size: clamp(60px, 5.8vw, 112px); }
.history-copy > p:not(.eyebrow) { max-width: 660px; margin: 34px 0; color: var(--muted); font-family: var(--serif); font-size: clamp(17px, 1.3vw, 22px); line-height: 1.5; }
.year-axis { max-width: 620px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin: 38px 0; }
.year-axis b { color: var(--blue); font-family: var(--serif); font-size: clamp(31px, 3vw, 54px); font-weight: 400; }
.year-axis i { height: 1px; background: var(--ink); }
.facade-sheet { position: relative; width: min(100%, 560px); justify-self: center; margin: 0; padding: 14px; background: var(--white); box-shadow: 0 25px 70px rgba(11,16,24,.14); transform: rotate(-1.4deg); }
.facade-sheet::before { content: "ARCHIVE / GG-1936"; position: absolute; z-index: 2; top: 27px; left: 28px; padding: 7px 9px; background: var(--ink); color: #fff; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.facade-sheet img { width: 100%; height: min(660px, 66vw); object-fit: cover; object-position: 50% 17%; filter: saturate(.68) sepia(.05) contrast(1.03); }
.facade-sheet figcaption { display: grid; gap: 4px; padding: 13px 4px 1px; }
.facade-sheet figcaption b { font-size: 9px; letter-spacing: .12em; }
.facade-sheet figcaption span { color: var(--muted); font-family: var(--serif); font-size: 12px; }
.history-mark { position: absolute; right: -1vw; bottom: -30px; color: rgba(8,120,185,.08); font-size: clamp(160px, 22vw, 420px); font-weight: 900; letter-spacing: -.1em; line-height: .7; pointer-events: none; }

/* Programs */
.programs-section { background: var(--navy); color: var(--white); }
.programs-section .section-label span { color: var(--orange); }
.programs-section .section-label i { background: var(--white); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.program-card { --accent: var(--blue); position: relative; min-height: 390px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px, 2.2vw, 38px); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); overflow: hidden; isolation: isolate; transition: color .35s ease; }
.program-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: var(--accent); transform: translateY(101%); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.program-card:hover::before { transform: translateY(0); }
.program-card--blue { --accent: var(--blue-dark); }
.program-card--orange { --accent: #a94e18; }
.program-card--red { --accent: #7a422a; }
.program-card--cream { --accent: #26384d; }
.program-meta { display: flex; justify-content: space-between; align-items: center; }
.program-meta span { color: var(--orange); font-family: var(--serif); font-size: 21px; }
.program-meta small { color: rgba(255,253,248,.42); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.program-copy h3 { max-width: 440px; margin: 0 0 18px; font-size: clamp(30px, 2.5vw, 48px); font-weight: 900; letter-spacing: -.055em; line-height: .95; }
.program-copy > b { display: block; margin-bottom: 13px; color: var(--orange); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.program-copy p { max-width: 460px; margin: 0; color: rgba(255,253,248,.56); font-size: 13px; }
.program-card:hover .program-copy p,
.program-card:hover .program-meta small { color: rgba(255,255,255,.78); }
.program-arrow { position: absolute; top: 50%; right: 30px; color: var(--orange); font-size: 25px; transform: translateY(-50%); transition: transform .3s ease; }
.program-card:hover .program-arrow { transform: translate(5px, -55%); }

/* Interior */
.inside-section { background: var(--cream); }
.inside-gallery { display: grid; grid-template-columns: 1.45fr .8fr; grid-template-rows: auto auto; gap: 18px; }
.inside-shot { position: relative; margin: 0; overflow: hidden; background: var(--ink); }
.inside-shot--gym { grid-row: 1 / 3; align-self: start; }
.inside-shot img { width: 100%; object-fit: cover; filter: saturate(.68) sepia(.035) contrast(1.04); transition: transform .7s ease, filter .7s ease; }
.inside-shot--gym img { max-width: 1080px; aspect-ratio: 1080 / 740; }
.inside-shot--reception img { max-width: 680px; aspect-ratio: 1 / .78; }
.inside-shot:hover img { transform: scale(1.015); filter: saturate(.82) sepia(.02) contrast(1.02); }
.inside-shot figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 14px 17px; background: rgba(11,16,24,.88); color: #fff; backdrop-filter: blur(8px); }
.inside-shot figcaption span { color: var(--orange); font-family: var(--serif); font-size: 18px; }
.inside-shot figcaption b { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.inside-shot figcaption small { color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.inside-statement { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: var(--blue); color: #fff; }
.inside-statement > span { font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.inside-statement p { margin: 0; font-size: clamp(28px, 2.3vw, 44px); font-weight: 900; letter-spacing: -.05em; line-height: .95; }
.inside-statement b { color: var(--cream); }

/* First visit */
.first-visit-section { background: var(--cream-deep); }
.first-visit-head { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 140px); align-items: end; }
.first-visit-head .brand-postmark { position: absolute; right: 0; top: -92px; color: var(--blue-dark); }
.first-visit-head > p { max-width: 590px; margin: 0; font-family: var(--serif); font-size: clamp(18px, 1.5vw, 25px); line-height: 1.45; }
.visit-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 66px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.visit-steps li { min-height: 260px; display: flex; flex-direction: column; padding: 24px; border-right: 1px solid var(--line); }
.visit-steps li:last-child { border-right: 0; }
.visit-steps span { color: var(--red); font-family: var(--serif); font-size: 19px; }
.visit-steps h3 { margin: auto 0 13px; font-size: 25px; letter-spacing: -.04em; text-transform: uppercase; }
.visit-steps p { margin: 0; color: var(--muted); font-size: 13px; }

/* Archive */
.archive-section { padding-right: 0; padding-left: 0; background: var(--ochre); }
.archive-section > .section-shell { padding-inline: clamp(22px, 4.5vw, 80px); }
.archive-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 140px); align-items: end; margin-bottom: 62px; }
.archive-head h2 span { color: var(--cream); }
.archive-head p { max-width: 580px; margin: 0; font-family: var(--serif); font-size: clamp(18px, 1.5vw, 25px); line-height: 1.45; }
.archive-window { width: min(100%, var(--canvas)); margin-inline: auto; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--ink) transparent; }
.archive-track { width: max-content; display: flex; gap: 18px; padding: 0 clamp(22px, 4.5vw, 80px) 24px; }
.archive-card { width: clamp(280px, 20vw, 405px); flex: 0 0 auto; padding: 10px; background: var(--cream); box-shadow: 0 18px 40px rgba(61,38,9,.18); scroll-snap-align: start; }
.archive-card:nth-child(even) { transform: translateY(20px) rotate(.7deg); }
.archive-card:nth-child(odd) { transform: rotate(-.45deg); }
.archive-card img { width: 100%; aspect-ratio: 410 / 512; object-fit: cover; }
.archive-card > div { display: flex; align-items: center; gap: 12px; padding: 11px 3px 2px; }
.archive-card > div > span { color: var(--red); font-family: var(--serif); font-size: 19px; }
.archive-card p { display: grid; margin: 0; line-height: 1.12; }
.archive-card p b { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.archive-card p small { margin-top: 4px; color: var(--muted); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.archive-caption { display: flex; justify-content: space-between; gap: 22px; padding: 30px clamp(22px, 4.5vw, 80px) 0; border-top: 1px solid rgba(11,16,24,.28); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.archive-caption b { font-family: var(--serif); font-size: 12px; font-weight: 400; text-transform: none; }

/* Membership + FAQ */
.membership-section { background: var(--cream); }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.membership-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); transition: background .3s ease; }
.membership-grid article:last-child { border-right: 0; }
.membership-grid article:hover { background: var(--cream-deep); }
.membership-grid article > span { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.membership-grid h3 { margin: auto 0 15px; font-size: clamp(29px, 2.4vw, 44px); letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.membership-grid p { max-width: 400px; margin: 0; color: var(--muted); font-size: 13px; }
.membership-foot { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 30px; }
.membership-foot p { display: grid; gap: 8px; margin: 0; }
.membership-foot small { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.membership-foot b { font-family: var(--serif); font-size: 17px; font-weight: 400; }
.faq-section { background: var(--ink); color: var(--white); }
.faq-section .section-label span { color: var(--orange); }
.faq-section .section-label i { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 150px); }
.faq-layout h2 span { color: var(--orange); }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { min-height: 82px; display: grid; grid-template-columns: 43px 1fr 26px; gap: 16px; align-items: center; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(18px, 1.4vw, 23px); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--orange); font-family: var(--sans); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.faq-list summary b { color: var(--orange); font-family: var(--sans); font-size: 20px; font-weight: 300; transition: transform .25s ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: 0 0 25px 59px; color: rgba(255,253,248,.56); font-size: 14px; }

/* CTA and footer */
.cta-band { overflow: hidden; background: var(--blue-dark); color: #fff; }
.cta-shell { position: relative; min-height: 400px; display: grid; grid-template-columns: 180px 1fr auto; gap: clamp(38px, 5vw, 90px); align-items: center; padding: 70px clamp(22px, 4.5vw, 88px); }
.cta-shell::after { content: ""; position: absolute; right: -210px; top: -290px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 48px rgba(215,119,34,.12), 0 0 0 96px rgba(255,255,255,.04); }
.cta-stamp { position: relative; z-index: 1; width: 150px; height: 150px; display: grid; place-items: center; align-content: center; border: 2px solid var(--cream); border-radius: 50%; transform: rotate(-9deg); }
.cta-stamp::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.cta-stamp span { font-family: var(--serif); font-size: 58px; line-height: .9; }
.cta-stamp small { margin-top: 9px; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { max-width: 980px; font-size: clamp(52px, 5vw, 96px); }
.cta-copy > p:last-child { max-width: 660px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 17px; }
.cta-shell > .button { position: relative; z-index: 2; }
.site-footer { background: var(--ink); color: var(--white); }
.footer-shell { padding: 38px clamp(22px, 4.5vw, 88px) 28px; }
.footer-masthead { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 30px; padding-bottom: 62px; border-bottom: 1px solid var(--line-light); }
.footer-masthead p,
.footer-masthead > span { margin: 0; color: rgba(255,253,248,.36); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-masthead > span { justify-self: end; }
.footer-masthead h2 { margin: 0; font-size: clamp(58px, 6vw, 112px); font-weight: 900; letter-spacing: -.08em; line-height: .72; text-align: center; }
.footer-masthead h2 em { color: var(--orange); font-family: var(--serif); font-weight: 400; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .65fr); gap: 6vw; padding: 68px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer .brand-lockup { color: var(--white); }
.site-footer .brand-lockup > img { padding: 3px; border-radius: 50%; }
.site-footer .brand-copy small { color: rgba(255,253,248,.4); }
.footer-brand > p { max-width: 420px; margin: 18px 0 0; color: rgba(255,253,248,.48); font-family: var(--serif); font-size: 19px; }
.footer-label { margin: 0 0 12px; color: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a:not(.brand-lockup),
.footer-grid p:not(.footer-label):not(.footer-brand > p) { margin: 0; color: rgba(255,253,248,.62); font-size: 12px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 21px; border-top: 1px solid var(--line-light); color: rgba(255,253,248,.34); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

/* Inner pages */
.inner-page { background: var(--cream); }
.inner-hero { background: var(--ink); color: var(--white); }
.inner-hero-shell { width: min(100%, var(--canvas)); min-height: 740px; margin-inline: auto; display: grid; grid-template-columns: .92fr 1.08fr; }
.inner-hero-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 80px clamp(24px, 4.5vw, 88px); }
.inner-serial { margin: 0 0 26px; color: var(--orange); font-family: var(--serif); font-size: 20px; }
.inner-hero h1 { max-width: 900px; margin: 0; font-size: clamp(56px, 5.4vw, 104px); font-weight: 900; letter-spacing: -.07em; line-height: .84; text-transform: uppercase; }
.inner-hero h1 span { display: block; margin-top: 12px; color: var(--orange); font-family: var(--serif); font-size: .48em; font-weight: 400; letter-spacing: -.03em; line-height: 1.1; text-transform: none; }
.inner-hero-copy > p:not(.eyebrow):not(.inner-serial) { max-width: 680px; margin: 30px 0; color: rgba(255,253,248,.62); font-family: var(--serif); font-size: 18px; }
.inner-hero-media { position: relative; min-height: 740px; display: grid; place-items: center; overflow: hidden; background: var(--navy); }
.inner-hero-media img { width: 100%; max-width: 1080px; height: 100%; object-fit: cover; filter: saturate(.68) sepia(.035) contrast(1.04); }
.inner-hero-media--facade { padding: 48px; background: var(--cream-deep); }
.inner-hero-media--facade img { width: min(100%, 520px); height: auto; max-height: 650px; object-position: 50% 17%; box-shadow: 0 28px 70px rgba(11,16,24,.22); transform: rotate(-1deg); }
.inner-hero-media figcaption { position: absolute; right: 26px; bottom: 22px; left: 26px; display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.55); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.inner-summary { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: end; }
.inner-display { font-size: clamp(52px, 5vw, 96px); }
.inner-display span { color: var(--blue); }
.inner-summary > p { margin: 0; font-family: var(--serif); font-size: clamp(23px, 2vw, 36px); line-height: 1.28; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.benefit-grid article { min-height: 290px; display: flex; flex-direction: column; padding: 27px; border-right: 1px solid var(--line); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-grid article > span { color: var(--red); font-family: var(--serif); font-size: 19px; }
.benefit-grid h3 { margin: auto 0 14px; font-size: clamp(25px, 2vw, 38px); letter-spacing: -.045em; text-transform: uppercase; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.route-section { background: var(--navy); color: var(--white); }
.route-section .section-label span { color: var(--orange); }
.route-section .section-label i { background: var(--white); }
.route-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.route-layout .inner-display span { color: var(--orange); }
.route-layout ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.route-layout li { display: grid; grid-template-columns: 58px 1fr; align-items: center; min-height: 94px; border-bottom: 1px solid var(--line-light); }
.route-layout li span { color: var(--orange); font-family: var(--serif); font-size: 20px; }
.route-layout li b { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.related-nav { background: var(--cream); }
.related-nav > .section-shell { position: relative; }
.related-nav .brand-postmark { position: absolute; right: 0; top: -10px; color: var(--page-accent, var(--orange)); transform: rotate(6deg) scale(.78); transform-origin: top right; }
.related-nav > .section-shell > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.related-nav a { display: flex; justify-content: space-between; gap: 18px; padding: 26px 22px; border-right: 1px solid var(--line); font-size: 14px; font-weight: 900; text-transform: uppercase; }
.related-nav a:last-child { border-right: 0; }
.related-nav a:hover { background: var(--cream-deep); }
.contact-board { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); }
.contact-board > div { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-board > div:nth-child(2n) { border-right: 0; }
.contact-board > div:nth-last-child(-n+2) { border-bottom: 0; }
.contact-board span { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-board b,
.contact-board a { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 30px); font-weight: 400; }
.contact-intro { margin-bottom: 66px; }
.history-timeline { background: var(--cream-deep); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.timeline article { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); }
.timeline article:last-child { border-right: 0; }
.timeline b { color: var(--blue); font-family: var(--serif); font-size: 48px; font-weight: 400; }
.timeline h3 { margin: auto 0 12px; font-size: 24px; text-transform: uppercase; }
.timeline p { margin: 0; color: var(--muted); font-size: 13px; }

@keyframes belt { to { transform: translateX(-50%); } }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes viewIn { from { opacity: .15; transform: translateY(46px); } to { opacity: 1; transform: translateY(0); } }
.hero-copy { animation: heroIn .72s .08s ease-out both; }
.hero-stamp { animation: heroIn .85s .18s ease-out both; }
@supports (animation-timeline: view()) {
  .reveal-block { animation: viewIn linear both; animation-timeline: view(); animation-range: entry 0% entry 34%; }
}

@media (max-width: 1260px) {
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { min-width: 76px; display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--ink); cursor: pointer; list-style: none; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary b { font-size: 17px; font-weight: 300; }
  .mobile-menu[open] summary b { transform: rotate(45deg); }
  .mobile-menu nav { position: absolute; right: 0; top: 48px; width: 310px; display: grid; padding: 10px 22px; background: var(--cream); border: 1px solid var(--line); box-shadow: 0 25px 65px rgba(0,0,0,.2); }
  .mobile-menu nav a { display: flex; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 900; text-transform: uppercase; }
  .mobile-menu nav a span { color: var(--red); font-family: var(--serif); font-size: 10px; }
  .hero-shell { grid-template-columns: .95fr 1.05fr; }
  .program-card { min-height: 350px; }
}

@media (max-width: 900px) {
  .site-header { height: 66px; }
  .header-shell { padding: 0 18px; gap: 12px; }
  .brand-lockup--compact { min-width: 0; }
  .brand-lockup--compact > img { width: 46px; height: 45px; }
  .brand-lockup--compact > .brand-copy { display: none; }
  .header-phone, .button--small { display: none; }
  .hero-shell { height: auto; min-height: 0; grid-template-columns: 1fr; gap: 46px; padding: 64px 20px 108px; }
  .hero-shell::before { inset: 18px 20px 88px; }
  .hero-copy h1 { font-size: clamp(66px, 20vw, 110px); }
  .hero-lead { font-size: 18px; }
  .hero-stamp { width: min(100%, 690px); justify-self: center; }
  .stamp-cancel { right: -12px; bottom: 38px; width: 92px; height: 92px; }
  .stamp-cancel::before { font-size: 7px; }
  .stamp-cancel i { right: 66px; width: 68px; }
  .stamp-cancel i:nth-child(1) { top: 32px; }.stamp-cancel i:nth-child(2) { top: 45px; }.stamp-cancel i:nth-child(3) { top: 58px; }
  .hero-stamp figcaption { grid-template-columns: 1fr auto; }
  .hero-stamp figcaption b { grid-column: 1 / 3; grid-row: 1; }
  .hero-stamp figcaption span { grid-column: 1; grid-row: 2; }.hero-stamp figcaption small { grid-column: 2; grid-row: 2; }
  .hero-index { right: 20px; left: 20px; grid-template-columns: 1fr 1fr; }
  .hero-index div:nth-child(2) { display: none; }
  .section-pad { padding: 76px 20px; }
  .section-label { margin-bottom: 46px; }
  .section-head,
  .history-layout,
  .first-visit-head,
  .archive-head,
  .faq-layout,
  .inner-summary,
  .route-layout { grid-template-columns: 1fr; gap: 34px; }
  .section-head h2,
  .history-copy h2,
  .first-visit-head h2,
  .archive-head h2,
  .faq-layout h2,
  .inner-display { font-size: clamp(44px, 11.6vw, 76px); }
  .facade-sheet { width: min(100%, 520px); }
  .facade-sheet img { height: 620px; }
  .history-mark { bottom: -20px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 310px; }
  .inside-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .inside-shot--gym { grid-row: auto; }
  .inside-shot--gym img, .inside-shot--reception img { max-width: none; width: 100%; }
  .inside-statement { min-height: 220px; }
  .visit-steps { grid-template-columns: 1fr 1fr; }
  .visit-steps li { min-height: 230px; }
  .visit-steps li:nth-child(2) { border-right: 0; }
  .visit-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .archive-section > .section-shell { padding-inline: 20px; }
  .archive-card { width: 78vw; max-width: 405px; }
  .archive-window { scroll-snap-type: x mandatory; }
  .archive-track { padding-inline: 20px; }
  .archive-caption { padding-inline: 20px; }
  .archive-caption b { display: none; }
  .membership-grid, .benefit-grid, .timeline { grid-template-columns: 1fr; }
  .membership-grid article, .benefit-grid article, .timeline article { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .membership-grid article:last-child, .benefit-grid article:last-child, .timeline article:last-child { border-bottom: 0; }
  .membership-foot { align-items: flex-start; flex-direction: column; }
  .faq-layout { gap: 48px; }
  .cta-shell { min-height: 0; grid-template-columns: 94px 1fr; gap: 28px; padding: 68px 20px; }
  .cta-stamp { width: 88px; height: 88px; }
  .cta-stamp span { font-size: 35px; }
  .cta-stamp small { font-size: 6px; }
  .cta-copy h2 { font-size: clamp(42px, 12vw, 70px); }
  .cta-shell > .button { grid-column: 1 / 3; justify-self: start; }
  .footer-masthead { grid-template-columns: 1fr; }
  .footer-masthead h2 { text-align: left; }
  .footer-masthead > span { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { flex-direction: column; }
  .inner-hero-shell { min-height: 0; grid-template-columns: 1fr; }
  .inner-hero-copy { min-height: 590px; padding: 70px 20px; }
  .inner-hero h1 { font-size: clamp(47px, 13vw, 76px); }
  .inner-hero-media { min-height: 520px; }
  .contact-board { grid-template-columns: 1fr; }
  .contact-board > div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .contact-board > div:last-child { border-bottom: 0 !important; }
  .related-nav > .section-shell > div { grid-template-columns: 1fr; }
  .related-nav a { border-right: 0; border-bottom: 1px solid var(--line); }
  .related-nav a:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-index div { padding-right: 8px; }
  .hero-index div + div { padding-left: 12px; }
  .hero-index b { font-size: 22px; }
  .hero-index span { font-size: 6px; }
  .section-label { grid-template-columns: auto 1fr; }
  .section-label i { display: none; }
  .visit-steps { grid-template-columns: 1fr; }
  .visit-steps li { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .visit-steps li:last-child { border-bottom: 0; }
  .inside-shot figcaption { grid-template-columns: 34px 1fr; }
  .inside-shot figcaption small { display: none; }
  .cta-shell { grid-template-columns: 1fr; }
  .cta-shell > .button { grid-column: 1; }
}

@media (min-width: 2200px) {
  .site-header { height: 90px; }
  .header-shell { max-width: 2100px; }
  .hero-shell { max-width: 2360px; }
  .hero-copy h1 { font-size: 166px; }
  .program-card { min-height: 430px; }
}

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

/* Premium refinement: one editorial grid, readable type and one clear action. */
:root {
  --canvas: 1920px;
  --shell: 1680px;
  --sans: "Helvetica Neue", "Nimbus Sans", Arial, sans-serif;
  --display: "Arial Narrow", "Nimbus Sans Narrow", "Helvetica Neue", Arial, sans-serif;
  --serif: "C059", Georgia, "Times New Roman", serif;
}

body { font-size: 17px; }
.section-pad { padding: clamp(76px, 6.2vw, 124px) clamp(22px, 4.5vw, 80px); }

.site-header {
  height: 84px;
  background: rgba(11, 16, 24, .96);
  border-bottom-color: rgba(255, 253, 248, .14);
  color: var(--white);
}
.header-shell { max-width: var(--canvas); }
.brand-lockup { min-width: 270px; gap: 14px; }
.brand-lockup > img {
  width: 52px;
  height: 52px;
  padding: 3px;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, .34);
  border-radius: 50%;
  background: var(--cream);
}
.brand-copy b { font-size: 14px; letter-spacing: .12em; }
.brand-copy small { margin-top: 7px; color: rgba(255, 253, 248, .52); font-size: 10px; }
.desktop-nav a { padding-block: 30px 26px; font-size: 11px; letter-spacing: .11em; }
.desktop-nav a > span { color: var(--orange); font-size: 10px; }
.desktop-nav a::after { bottom: 20px; background: var(--orange); }
.header-phone { color: rgba(255, 253, 248, .82); font-size: 12px; }

.button { min-height: 56px; padding: 15px 20px; font-size: 11px; letter-spacing: .105em; }
.button--small { min-height: 43px; padding: 10px 14px; font-size: 10px; }
.button--signal { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.button--signal:hover { background: var(--cream); border-color: var(--cream); }
.text-link { font-size: 11px; }
.eyebrow { margin-bottom: 20px; font-size: 11px; letter-spacing: .17em; }

.home-hero { isolation: isolate; }
.hero-shell {
  min-height: 760px;
  height: clamp(760px, calc(100svh - 84px), 980px);
  grid-template-columns: .9fr 1.1fr;
  padding: 72px clamp(24px, 4.5vw, 86px);
}
.hero-shell::before { inset: 24px clamp(24px, 4.5vw, 86px); }
.hero-copy { max-width: 760px; }
.hero-status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: rgba(255, 253, 248, .7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(215, 119, 34, .14); }
.hero-copy h1,
.section-head h2,
.history-copy h2,
.first-visit-head h2,
.archive-head h2,
.faq-layout h2,
.inner-display,
.inner-hero h1,
.cta-copy h2,
.footer-masthead h2 { font-family: var(--display); font-stretch: condensed; }
.hero-copy h1 { font-size: clamp(76px, 6.6vw, 138px); line-height: .78; }
.hero-lead { max-width: 590px; margin: 34px 0 28px; font-size: clamp(19px, 1.4vw, 25px); }
.hero-location {
  max-width: 610px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding-top: 15px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, .5);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-location b { color: var(--white); font-size: 11px; }
.hero-location small { color: var(--orange); font-size: 10px; font-weight: 900; }
.hero-stamp { width: min(100%, 970px); justify-self: end; padding: clamp(12px, 1vw, 18px); }
.hero-stamp > img { max-width: none; aspect-ratio: 1064 / 704; }
.hero-stamp figcaption span,
.hero-stamp figcaption small,
.stamp-reg { font-size: 10px; }
.hero-stamp figcaption b { font-size: 19px; }
.stamp-cancel { width: 108px; height: 108px; opacity: .7; }
.stamp-cancel i { right: 78px; }
.motion-line { padding: 14px 0; }
.motion-line span { font-size: 11px; }

.section-label { margin-bottom: clamp(42px, 4.2vw, 68px); font-size: 10px; }
.section-label span { font-size: 19px; }
.section-head { margin-bottom: clamp(40px, 4.2vw, 66px); }
.section-head h2,
.history-copy h2,
.first-visit-head h2,
.archive-head h2,
.faq-layout h2,
.inner-display { font-size: clamp(56px, 5vw, 98px); }
.section-head > p,
.first-visit-head > p,
.archive-head p { font-size: clamp(19px, 1.45vw, 25px); }

.history-layout { gap: clamp(48px, 7vw, 124px); }
.history-copy > p:not(.eyebrow) { font-size: clamp(18px, 1.25vw, 22px); }
.facade-sheet::before { font-size: 9px; }
.facade-sheet figcaption b { font-size: 11px; }
.facade-sheet figcaption span { font-size: 14px; }
.facade-sheet img { height: auto; aspect-ratio: 598 / 480; object-position: center; }

.goal-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.goal-rail a {
  min-height: 142px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background .28s ease, color .28s ease;
}
.goal-rail a:hover { background: var(--orange); color: var(--ink); }
.goal-rail > a > span { color: var(--orange); font-family: var(--serif); font-size: 18px; }
.goal-rail a:hover > span { color: var(--ink); }
.goal-rail div { display: grid; gap: 8px; }
.goal-rail b { font-size: 16px; line-height: 1.05; text-transform: uppercase; }
.goal-rail small { color: rgba(255, 253, 248, .52); font-size: 12px; line-height: 1.4; }
.goal-rail a:hover small { color: rgba(11, 16, 24, .68); }
.goal-rail i { color: var(--orange); font-size: 18px; font-style: normal; }
.goal-rail a:hover i { color: var(--ink); }
.program-card { min-height: 340px; }
.program-meta small { font-size: 10px; }
.program-copy h3 { font-family: var(--display); font-size: clamp(31px, 2.2vw, 43px); }
.program-copy > b { font-size: 19px; }
.program-copy p { font-size: 15px; line-height: 1.5; }

.inside-gallery { grid-template-columns: 1.45fr .7fr; grid-template-rows: 1fr; gap: 20px; }
.inside-shot--reception { min-height: 610px; }
.inside-shot--reception img { width: 100%; max-width: none; height: 100%; aspect-ratio: auto; object-fit: cover; }
.inside-shot figcaption { padding: 17px 19px; }
.inside-shot figcaption span { font-size: 20px; }
.inside-shot figcaption b { font-size: 12px; }
.inside-shot figcaption small { font-size: 10px; }
.inside-side { min-width: 0; display: grid; grid-template-rows: 1fr auto; }
.inside-statement { min-height: 320px; }
.inside-statement > span { font-size: 10px; }
.inside-features { margin: 0; padding: 0; list-style: none; background: var(--ink); color: var(--white); }
.inside-features li { display: grid; grid-template-columns: 36px 1fr; gap: 3px 12px; align-items: center; padding: 19px 22px; border-top: 1px solid var(--line-light); }
.inside-features span { grid-row: 1 / 3; color: var(--orange); font-family: var(--serif); font-size: 17px; }
.inside-features b { font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.inside-features small { color: rgba(255, 253, 248, .48); font-size: 11px; }

.visit-steps { margin: 52px 0 32px; }
.visit-steps li { min-height: 230px; }
.visit-steps h3 { font-family: var(--display); font-size: 27px; }
.visit-steps p { font-size: 15px; line-height: 1.5; }

.archive-card:nth-child(even),
.archive-card:nth-child(odd) { transform: none; }
.archive-card:nth-child(even) { transform: translateY(14px); }
.archive-card p b { font-size: 11px; }
.archive-card p small,
.archive-caption { font-size: 10px; }
.archive-caption b { font-size: 14px; }

.membership-grid article { min-height: 285px; }
.membership-grid article > span,
.membership-foot small { font-size: 10px; }
.membership-grid h3 { font-family: var(--display); }
.membership-grid p { font-size: 15px; line-height: 1.5; }
.membership-foot b { font-size: 19px; }
.faq-list summary { min-height: 76px; }
.faq-list summary > span { font-size: 10px; }
.faq-list details p { font-size: 15px; line-height: 1.55; }

.cta-shell { min-height: 360px; }
.cta-stamp small,
.footer-masthead p,
.footer-masthead > span,
.footer-label,
.footer-bottom { font-size: 10px; }
.footer-grid a:not(.brand-lockup),
.footer-grid p:not(.footer-label):not(.footer-brand > p) { font-size: 14px; }

.mobile-visit-bar { display: none; }

.inner-page { --page-accent: var(--blue); }
.desktop-nav a[aria-current="page"] { color: var(--orange); }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-menu nav a[aria-current="page"] { color: var(--orange); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: rgba(255,253,248,.46); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs a { color: rgba(255,253,248,.8); }
.breadcrumbs a:hover { color: var(--page-accent); }
.direction-passport { width: min(100%, var(--canvas)); display: grid; grid-template-columns: repeat(3, 1fr); margin-inline: auto; border-top: 1px solid rgba(255,255,255,.16); background: var(--ink); color: var(--white); }
.direction-passport > div { min-height: 126px; display: grid; align-content: center; gap: 12px; padding: 26px clamp(24px, 4vw, 72px); border-right: 1px solid rgba(255,255,255,.16); }
.direction-passport > div:last-child { border-right: 0; }
.direction-passport span { color: var(--page-accent); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.direction-passport b { max-width: 310px; font-family: var(--serif); font-size: clamp(18px, 1.35vw, 24px); font-weight: 400; line-height: 1.15; }
.inner-hero--reverse .inner-hero-copy { grid-column: 2; grid-row: 1; }
.inner-hero--reverse .inner-hero-media { grid-column: 1; grid-row: 1; }
.inner-hero--reverse .direction-passport { direction: rtl; }
.inner-hero--reverse .direction-passport > div { direction: ltr; }
.inner-page--funkcionalnyj-trening,
.inner-page--gruppovye-programmy,
.inner-page--gostevoj-vizit { --page-accent: var(--orange); }
.inner-page--edinoborstva { --page-accent: var(--red); }
.inner-page--sauna,
.inner-page--massazh { --page-accent: var(--ochre); }
.inner-page--personalnye-trenirovki,
.inner-page--abonementy { --page-accent: var(--blue); }
.inner-hero-shell { min-height: 660px; max-width: var(--canvas); }
.inner-hero-copy { padding-block: 68px; }
.inner-serial,
.inner-hero h1 span,
.inner-display span,
.route-layout .inner-display span,
.route-layout li span,
.benefit-grid article > span { color: var(--page-accent); }
.inner-hero h1 { font-size: clamp(54px, 4.8vw, 92px); }
.inner-hero-copy > p:not(.eyebrow):not(.inner-serial) { font-size: 20px; }
.inner-hero-media { min-height: 660px; }
.inner-hero-media::before { content: ""; position: absolute; z-index: 2; inset: 16px; border: 1px solid rgba(255,255,255,.3); pointer-events: none; }
.inner-hero-media img { max-width: none; }
.inner-hero-media--facade img { width: min(100%, 680px); max-height: none; }
.benefit-grid article { min-height: 255px; }
.benefit-grid p,
.timeline p { font-size: 15px; line-height: 1.5; }
.contact-board span { font-size: 10px; }

@media (max-width: 1260px) {
  .mobile-menu summary { color: var(--white); border-bottom-color: rgba(255,255,255,.5); font-size: 11px; }
  .mobile-menu nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    width: 100vw;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    padding: 20px clamp(20px, 5vw, 64px) 44px;
    background: rgba(11, 16, 24, .99);
    border: 0;
    border-top: 1px solid var(--line-light);
    color: var(--white);
    box-shadow: 0 30px 80px rgba(0,0,0,.42);
  }
  .mobile-menu nav a { min-height: 58px; align-items: center; border-bottom-color: var(--line-light); font-size: clamp(20px, 3vw, 34px); }
  .mobile-menu nav a span { color: var(--orange); font-size: 12px; }
  .mobile-menu nav .mobile-menu-phone { margin-top: 12px; color: var(--orange); font-size: 14px; }
  .program-card { min-height: 320px; }
}

@media (max-width: 900px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); font-size: 16px; }
  .site-header { height: 68px; }
  .brand-lockup--compact > img { width: 48px; height: 48px; }
  .mobile-menu nav { top: 68px; max-height: calc(100dvh - 68px); }
  .mobile-visit-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    background: var(--cream);
    border-top: 1px solid rgba(11,16,24,.2);
    color: var(--ink);
    box-shadow: 0 -10px 30px rgba(11,16,24,.15);
  }
  .mobile-visit-bar > span { display: grid; line-height: 1.15; }
  .mobile-visit-bar small { color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-visit-bar b { margin-top: 4px; font-size: 12px; }
  .mobile-visit-bar a { min-height: 44px; display: flex; align-items: center; gap: 14px; padding: 10px 14px; background: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
  .mobile-visit-bar i { font-size: 16px; font-style: normal; }
  .hero-shell { gap: 38px; padding: 54px 20px 70px; }
  .hero-shell { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .hero-shell::before { inset: 18px 20px; }
  .hero-copy h1 { font-size: clamp(65px, 19vw, 106px); }
  .hero-status { margin-bottom: 24px; font-size: 10px; }
  .hero-location { grid-template-columns: 1fr auto; font-size: 9px; }
  .hero-location > span { display: none; }
  .hero-location b { font-size: 10px; }
  .hero-stamp { justify-self: center; }
  .hero-stamp figcaption span,
  .hero-stamp figcaption small { font-size: 9px; }
  .section-pad { padding: 68px 20px; }
  .section-head h2,
  .history-copy h2,
  .first-visit-head h2,
  .archive-head h2,
  .faq-layout h2,
  .inner-display { font-size: clamp(46px, 11.8vw, 72px); }
  .goal-rail {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .goal-rail::-webkit-scrollbar,
  .program-grid::-webkit-scrollbar { display: none; }
  .goal-rail a { min-width: min(82vw, 390px); border: 1px solid var(--line-light); scroll-snap-align: start; }
  .program-grid {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .program-card { min-width: min(84vw, 430px); min-height: 360px; border: 1px solid var(--line-light); scroll-snap-align: start; }
  .inside-gallery { grid-template-columns: 1fr; }
  .inside-shot--reception { min-height: 0; }
  .inside-shot--reception img { height: auto; aspect-ratio: 1064 / 690; }
  .inside-side { grid-template-rows: auto auto; }
  .inside-statement { min-height: 240px; }
  .visit-steps p,
  .membership-grid p,
  .benefit-grid p,
  .timeline p { font-size: 15px; }
  .archive-caption { font-size: 9px; }
  .cta-copy > p:last-child { font-size: 18px; }
  .inner-hero-copy { min-height: 540px; }
  .inner-hero h1 { font-size: clamp(42px, 11vw, 62px); overflow-wrap: anywhere; }
  .inner-hero-media { min-height: 440px; }
  .inner-hero-copy > p:not(.eyebrow):not(.inner-serial) { font-size: 18px; }
  .club-ritual-shell { grid-template-columns: 1fr; }
  .club-ritual .brand-postmark { margin: 0 0 10px; }
  .club-ritual-copy { grid-template-columns: 1fr; gap: 28px; }
  .club-ritual-copy .eyebrow { grid-column: 1; }
  .ritual-route { grid-column: 1; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .ritual-route li { min-height: 150px; border-bottom: 1px solid var(--line); }
  .ritual-route li:nth-child(2n) { border-right: 0; }
  .ritual-route li:nth-last-child(-n+2) { border-bottom: 0; }
  .first-visit-head .brand-postmark { position: relative; right: auto; top: auto; margin-top: 28px; }
  .related-nav .brand-postmark { position: relative; right: auto; top: auto; margin-bottom: 26px; transform-origin: center; }
  .breadcrumbs { margin-bottom: 26px; }
  .direction-passport { grid-template-columns: 1fr; }
  .direction-passport > div { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .direction-passport > div:last-child { border-bottom: 0; }
  .inner-hero--reverse .inner-hero-copy,
  .inner-hero--reverse .inner-hero-media { grid-column: 1; grid-row: auto; }
  .inner-hero--reverse .direction-passport { direction: ltr; }
}

@media (max-width: 520px) {
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-copy h1 { font-size: clamp(58px, 18vw, 84px); }
  .hero-lead { font-size: 18px; }
  .hero-location { margin-top: 28px; }
  .stamp-cancel { right: -8px; width: 82px; height: 82px; }
  .program-card { min-width: 86vw; }
  .goal-rail a { min-width: 86vw; }
  .section-label { font-size: 9px; }
  .club-ritual-copy h2 { font-size: clamp(44px, 13vw, 64px); }
  .ritual-route { grid-template-columns: 1fr; }
  .ritual-route li { min-height: 126px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .ritual-route li:last-child { border-bottom: 0 !important; }
  .cta-shell > .button { width: 100%; }
  .archive-card p b { font-size: 10px; }
  .mobile-visit-bar b { max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (min-width: 2200px) {
  .header-shell,
  .hero-shell { max-width: var(--canvas); }
  .hero-copy h1 { font-size: 138px; }
  .program-card { min-height: 340px; }
}

/* Premium kinetic layer: editorial entrances, depth and controlled ambient motion. */
:root {
  --motion-fast: 220ms;
  --motion-base: 480ms;
  --motion-slow: 820ms;
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
  --page-progress: 0;
  --page-shift: 0px;
  --hero-shift: 0px;
}

html { scroll-padding-top: 96px; }
section[id] { scroll-margin-top: 96px; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--ink);
}

.site-header {
  isolation: isolate;
  transition: background-color var(--motion-base) ease, border-color var(--motion-base) ease;
}
.site-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, var(--orange), #f0a558);
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
  pointer-events: none;
}
html[data-scrolled="true"] .site-header {
  background: rgba(11, 16, 24, .88);
  border-bottom-color: rgba(255, 253, 248, .22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}
html[data-scrolled="true"] .brand-lockup--compact > img { transform: rotate(-4deg) scale(.94); }
.brand-lockup--compact > img { transition: transform var(--motion-base) var(--ease-premium), filter var(--motion-base) ease, box-shadow var(--motion-base) ease; }

@keyframes heroMetaIn {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes heroWordIn {
  from { opacity: 0; transform: translate3d(0, 112%, 0) rotate(2.5deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}
@keyframes heroStampIn {
  from { opacity: 0; transform: translate3d(42px, 48px, 0) rotate(2.2deg) scale(.965); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(.65deg) scale(1); }
}
@keyframes heroPhotoBreathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-.45%, -.35%, 0); }
}
@keyframes ghostDriftLeft {
  from { transform: translate3d(-1.5%, 0, 0); }
  to { transform: translate3d(4.5%, 0, 0); }
}
@keyframes ghostDriftRight {
  from { transform: translate3d(2%, 0, 0); }
  to { transform: translate3d(-5%, 0, 0); }
}
@keyframes statusPulse {
  0%, 100% { opacity: .72; box-shadow: 0 0 0 5px rgba(215, 119, 34, .14); }
  50% { opacity: 1; box-shadow: 0 0 0 10px rgba(215, 119, 34, 0); }
}
@keyframes innerMediaIn {
  from { opacity: 0; translate: 4% 34px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes innerPhotoSettle {
  from { scale: 1.045; }
  to { scale: 1; }
}
@keyframes ctaOrbit {
  from { transform: rotate(0deg) scale(.94); opacity: 0; }
  25% { opacity: .72; }
  to { transform: rotate(180deg) scale(1); opacity: .38; }
}
@keyframes ctaPulse {
  from { transform: scale(.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes detailsIn {
  from { opacity: 0; translate: 0 -8px; }
  to { opacity: 1; translate: 0 0; }
}

.home-hero { position: relative; overflow: hidden; }
.hero-shell { isolation: isolate; perspective: 1400px; }
.hero-copy { animation: none; }
.hero-ghost {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.hero-ghost span {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(170px, 22vw, 430px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .7;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 248, .055);
  white-space: nowrap;
}
.hero-ghost span:first-child { top: 4%; left: -9%; animation: ghostDriftLeft 18s ease-in-out infinite alternate; }
.hero-ghost span:last-child { right: -17%; bottom: 4%; animation: ghostDriftRight 21s ease-in-out infinite alternate; }

.hero-copy > .eyebrow,
.hero-status,
.hero-lead,
.hero-actions,
.hero-location { animation: heroMetaIn var(--motion-slow) var(--ease-premium) both; }
.hero-copy > .eyebrow { animation-delay: 80ms; }
.hero-status { animation-delay: 160ms; }
.hero-lead { animation-delay: 620ms; }
.hero-actions { animation-delay: 720ms; }
.hero-location { animation-delay: 820ms; }
.hero-status i { animation: statusPulse 2.8s ease-in-out infinite; }

.hero-copy h1 .hero-line {
  display: block;
  overflow: clip;
  color: inherit;
}
.hero-copy h1 .hero-word {
  display: block;
  color: inherit;
  transform-origin: left bottom;
  animation: heroWordIn 920ms var(--ease-premium) both;
}
.hero-copy h1 .hero-line:nth-child(1) .hero-word { animation-delay: 220ms; }
.hero-copy h1 .hero-line:nth-child(2) .hero-word { animation-delay: 330ms; }
.hero-copy h1 .hero-line:nth-child(3) .hero-word { animation-delay: 440ms; }
.hero-copy h1 .hero-line--accent .hero-word { color: var(--orange); }

.hero-media-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 2;
  width: min(100%, 970px);
  justify-self: end;
  perspective: 1400px;
  transform: perspective(1400px) translate3d(0, var(--hero-shift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: transform 320ms ease-out;
}
.hero-stamp {
  width: 100%;
  justify-self: stretch;
  animation: heroStampIn 1100ms 300ms var(--ease-premium) both;
  transform-origin: 52% 56%;
}
.hero-photo-frame { overflow: hidden; background: var(--navy); }
.hero-photo-frame img {
  width: 100%;
  max-width: none;
  aspect-ratio: 1064 / 704;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
  animation: heroPhotoBreathe 14s 1.4s ease-in-out infinite alternate;
  transform-origin: 52% 52%;
}
.stamp-cancel { transition: rotate var(--motion-slow) var(--ease-premium), scale var(--motion-slow) var(--ease-premium); }
.hero-stamp:hover .stamp-cancel { rotate: 8deg; scale: 1.04; }

.motion-line { position: relative; }
.motion-line-track { will-change: transform; }
.motion-line.is-paused .motion-line-track,
.motion-paused .motion-line-track,
.motion-paused .hero-ghost span,
.motion-paused .hero-photo-frame img,
.motion-paused .hero-status i,
html[data-motion-hidden="true"] .motion-line-track,
html[data-motion-hidden="true"] .hero-ghost span,
html[data-motion-hidden="true"] .hero-photo-frame img,
html[data-motion-hidden="true"] .hero-status i { animation-play-state: paused !important; }
.motion-toggle {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(14px, 2.4vw, 42px);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(11,16,24,.88);
  color: var(--white);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  translate: 0 -50%;
  transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease;
}
.motion-toggle:hover,
.motion-toggle[aria-pressed="true"] { background: var(--cream); color: var(--ink); }
.motion-toggle i { min-width: 10px; font-style: normal; }

.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 34px;
  animation: none;
  transition: opacity var(--motion-slow) var(--ease-premium), translate var(--motion-slow) var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="label"] { translate: 0 12px; }
.motion-ready [data-reveal="stamp"] { translate: 0 44px; scale: .98; transition-property: opacity, translate, scale; }
.motion-ready [data-reveal].is-visible { opacity: 1; translate: 0 0; scale: 1; }

.section-label i {
  transform: scaleX(.08);
  transform-origin: left center;
  transition: transform 1100ms 160ms var(--ease-premium);
}
.section-label.is-visible i { transform: scaleX(1); }

.motion-ready .program-grid[data-reveal] .program-card,
.motion-ready .visit-steps[data-reveal] li,
.motion-ready .archive-window[data-reveal] .archive-card,
.motion-ready .membership-grid[data-reveal] article,
.motion-ready .benefit-grid[data-reveal] article,
.motion-ready .timeline[data-reveal] article,
.motion-ready .contact-board[data-reveal] > div {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 720ms var(--ease-premium), translate 720ms var(--ease-premium);
}
.motion-ready .program-grid.is-visible .program-card,
.motion-ready .visit-steps.is-visible li,
.motion-ready .archive-window.is-visible .archive-card,
.motion-ready .membership-grid.is-visible article,
.motion-ready .benefit-grid.is-visible article,
.motion-ready .timeline.is-visible article,
.motion-ready .contact-board.is-visible > div { opacity: 1; translate: 0 0; }

.motion-ready :is(.program-grid, .visit-steps, .archive-window, .membership-grid, .benefit-grid, .timeline, .contact-board).is-visible > :nth-child(2),
.motion-ready .archive-window.is-visible .archive-card:nth-child(2) { transition-delay: 80ms; }
.motion-ready :is(.program-grid, .visit-steps, .archive-window, .membership-grid, .benefit-grid, .timeline, .contact-board).is-visible > :nth-child(3),
.motion-ready .archive-window.is-visible .archive-card:nth-child(3) { transition-delay: 160ms; }
.motion-ready :is(.program-grid, .visit-steps, .archive-window, .membership-grid, .benefit-grid, .timeline, .contact-board).is-visible > :nth-child(4),
.motion-ready .archive-window.is-visible .archive-card:nth-child(4) { transition-delay: 240ms; }
.motion-ready .program-grid.is-visible > :nth-child(5),
.motion-ready .archive-window.is-visible .archive-card:nth-child(5) { transition-delay: 320ms; }
.motion-ready .program-grid.is-visible > :nth-child(6),
.motion-ready .archive-window.is-visible .archive-card:nth-child(6) { transition-delay: 400ms; }
.motion-ready .archive-window.is-visible .archive-card:nth-child(7) { transition-delay: 480ms; }

[data-spotlight] { --spot-x: 50%; --spot-y: 50%; }
.goal-rail a,
.visit-steps li,
.membership-grid article,
.benefit-grid article { position: relative; overflow: hidden; isolation: isolate; }
.goal-rail a::before,
.visit-steps li::after,
.membership-grid article::after,
.benefit-grid article::after,
.program-card::after,
.archive-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.16), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-base) ease;
}
.membership-grid article::after,
.benefit-grid article::after,
.archive-card::after { background: radial-gradient(380px circle at var(--spot-x) var(--spot-y), rgba(8,120,185,.15), transparent 60%); }
.goal-rail a > *,
.visit-steps li > *,
.membership-grid article > *,
.benefit-grid article > *,
.program-card > *,
.archive-card > * { position: relative; z-index: 1; }

.program-card,
.goal-rail a,
.archive-card,
.membership-grid article,
.benefit-grid article,
.visit-steps li { transition: translate var(--motion-base) var(--ease-premium), background-color var(--motion-base) ease, color var(--motion-base) ease; }
.program-card:focus-visible::before { transform: translateY(0); }
.program-card:focus-visible::after,
.goal-rail a:focus-visible::before,
.archive-card:focus-within::after { opacity: 1; }
.program-card:focus-visible,
.goal-rail a:focus-visible { outline-offset: -5px; }

.inside-shot img {
  filter: saturate(.88) contrast(1.04);
  transition: transform 680ms var(--ease-premium);
}
.inside-shot:hover img { filter: saturate(.88) contrast(1.04); }
.inside-shot.is-visible img { transform: scale(1.018); }
.facade-sheet.is-visible img { animation: innerPhotoSettle 1200ms var(--ease-premium) both; }

.archive-section { position: relative; overflow: hidden; }
.archive-section::before {
  content: "СИЛА";
  position: absolute;
  top: 7%;
  left: -5%;
  color: rgba(255, 253, 248, .075);
  font-family: var(--display);
  font-size: clamp(170px, 24vw, 460px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .7;
  transform: translate3d(calc(-70px + var(--page-shift)), 0, 0);
  pointer-events: none;
  user-select: none;
}
.archive-card {
  --card-rotate: -.38deg;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0) rotate(var(--card-rotate));
  box-shadow: 0 22px 48px rgba(61,38,9,.2), 0 3px 0 rgba(255,255,255,.32) inset;
}
.archive-card:nth-child(even) { --card-rotate: .38deg; transform: translateY(14px) rotate(var(--card-rotate)); }
.archive-card img { transition: transform 900ms var(--ease-premium); filter: saturate(.9) contrast(1.03); }

.inner-hero-copy > * { animation: heroMetaIn 620ms var(--ease-premium) both; }
.inner-hero-copy > :nth-child(1) { animation-delay: 40ms; }
.inner-hero-copy > :nth-child(2) { animation-delay: 90ms; }
.inner-hero-copy > :nth-child(3) { animation-delay: 140ms; }
.inner-hero-copy > :nth-child(4) { animation-delay: 210ms; }
.inner-hero-copy > :nth-child(5) { animation-delay: 280ms; }
.inner-hero-copy > :nth-child(6) { animation-delay: 350ms; }
.inner-hero-media { animation: innerMediaIn 1050ms 180ms var(--ease-premium) both; }
.inner-hero-media img { animation: innerPhotoSettle 1450ms 220ms var(--ease-premium) both; }

.faq-list details[open] > p { animation: detailsIn 420ms var(--ease-premium) both; }
.faq-list summary b,
.mobile-menu summary b { transition: transform var(--motion-base) var(--ease-premium); }
.faq-list details[open] summary b { transform: rotate(45deg); }
.mobile-menu[open] nav { animation: heroMetaIn 360ms var(--ease-premium) both; }

.cta-shell::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -160px;
  width: 470px;
  height: 470px;
  border: 1px dashed rgba(255,255,255,.26);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.cta-shell::after { opacity: 0; }
.cta-shell.is-visible::before { animation: ctaOrbit 4.4s .2s var(--ease-premium) both; }
.cta-shell.is-visible::after { animation: ctaPulse 3.8s var(--ease-premium) both; }
.cta-stamp { transition: translate var(--motion-slow) var(--ease-premium), rotate var(--motion-slow) var(--ease-premium); }
.cta-shell.is-visible .cta-stamp { translate: 0 -5px; rotate: 5deg; }
.button,
.text-link,
.related-nav a { position: relative; }
.button span,
.text-link span,
.related-nav a span { transition: transform var(--motion-base) var(--ease-premium); }

@media (hover: hover) and (pointer: fine) {
  .program-card:hover,
  .goal-rail a:hover,
  .membership-grid article:hover,
  .benefit-grid article:hover,
  .visit-steps li:hover { translate: 0 -6px; }
  .program-card:hover::after,
  .goal-rail a:hover::before,
  .membership-grid article:hover::after,
  .benefit-grid article:hover::after,
  .visit-steps li:hover::after,
  .archive-card:hover::after { opacity: 1; }
  .archive-card:hover { translate: 0 -10px; box-shadow: 0 34px 70px rgba(61,38,9,.25); }
  .archive-card:hover img { transform: scale(1.025); }
  .related-nav a:hover span { transform: translate(4px, -4px); }
}

@media (hover: none), (pointer: coarse), (update: slow) {
  .hero-ghost { display: none; }
  .hero-photo-frame img { animation: none; transform: scale(1.015); }
  .hero-media-stage { transform: none; }
  .program-card:hover::before { transform: translateY(101%); }
  .goal-rail a:hover { background: transparent; color: inherit; }
  .goal-rail a:hover > span,
  .goal-rail a:hover i { color: var(--orange); }
  .goal-rail a:hover small { color: rgba(255, 253, 248, .52); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }
  section[id] { scroll-margin-top: 78px; }
  .site-progress { height: 1px; }
  .mobile-menu summary { min-height: 44px; }
  .hero-media-stage { width: min(100%, 690px); justify-self: center; }
  .motion-ready [data-reveal] { translate: 0 24px; }
  .motion-ready [data-reveal].is-visible { translate: 0 0; }
  .motion-line { padding-right: 50px; }
  .motion-toggle { right: 10px; width: 34px; min-height: 34px; justify-content: center; padding: 6px; }
  .motion-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .goal-rail,
  .program-grid,
  .archive-window { scroll-snap-type: x proximity; }
  .archive-section::before { top: 5%; font-size: 48vw; opacity: .72; }
  .cta-shell::before { right: -250px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .hero-ghost { display: none !important; }
  .hero-copy,
  .hero-copy > *,
  .hero-word,
  .hero-stamp,
  .hero-photo-frame img,
  .hero-status i,
  .inner-hero-copy > *,
  .inner-hero-media,
  .inner-hero-media img,
  .facade-sheet img,
  .cta-shell::before,
  .cta-shell::after,
  .faq-list details[open] > p,
  .mobile-menu[open] nav,
  .motion-line-track,
  .reveal-block { animation: none !important; }
  .cta-shell::before,
  .cta-shell::after { opacity: 1 !important; }
  .motion-ready [data-reveal],
  .motion-ready [data-reveal] *,
  .motion-ready .program-grid[data-reveal] .program-card,
  .motion-ready .visit-steps[data-reveal] li,
  .motion-ready .archive-window[data-reveal] .archive-card,
  .motion-ready .membership-grid[data-reveal] article,
  .motion-ready .benefit-grid[data-reveal] article,
  .motion-ready .timeline[data-reveal] article,
  .motion-ready .contact-board[data-reveal] > div {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
    transition: none !important;
  }
  .hero-word { opacity: 1 !important; transform: none !important; }
  .hero-stamp { transform: rotate(.65deg) !important; }
  .hero-media-stage { transform: none !important; }
  .hero-photo-frame img { transform: none !important; }
  .inner-hero-media img { scale: 1 !important; }
  .section-label i { transform: scaleX(1) !important; transition: none !important; }
  .motion-line-track { transform: none !important; will-change: auto; }
  .motion-toggle { display: none; }
  .archive-section::before { transform: none; }
  .goal-rail,
  .program-grid,
  .archive-window { scroll-snap-type: none !important; }
}

/* Experience architecture: one goal-driven flow, chapter navigation and a controlled archive. */
@keyframes goalRouteIn {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}

.chapter-rail { display: none; }
@media (min-width: 1280px) {
  .chapter-rail {
    position: fixed;
    z-index: 88;
    top: 50%;
    right: 14px;
    width: 48px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 8px;
    overflow: hidden;
    background: rgba(11, 16, 24, .9);
    border: 1px solid rgba(255, 253, 248, .16);
    color: var(--white);
    box-shadow: 0 18px 54px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
    translate: 0 -50%;
    transition: width 460ms var(--ease-premium), background-color 300ms ease;
  }
  .chapter-rail:hover,
  .chapter-rail:focus-within { width: 166px; background: rgba(11, 16, 24, .97); }
  .chapter-rail-title {
    width: 130px;
    margin: 0 0 7px;
    padding: 0 6px 9px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255,255,255,.42);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .15em;
    white-space: nowrap;
  }
  .chapter-rail a {
    width: 148px;
    min-height: 34px;
    display: grid;
    grid-template-columns: 22px 1fr 14px;
    gap: 7px;
    align-items: center;
    padding: 5px 6px;
    color: rgba(255,255,255,.44);
    transition: color 260ms ease, background-color 260ms ease;
  }
  .chapter-rail a:hover,
  .chapter-rail a:focus-visible,
  .chapter-rail a.is-active { color: var(--white); background: rgba(255,255,255,.05); }
  .chapter-rail a > span { color: var(--orange); font-family: var(--serif); font-size: 11px; }
  .chapter-rail a b { opacity: 0; font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; transition: opacity 220ms 80ms ease; }
  .chapter-rail:hover a b,
  .chapter-rail:focus-within a b { opacity: 1; }
  .chapter-rail a i { width: 5px; height: 5px; justify-self: end; border: 1px solid currentColor; border-radius: 50%; transition: background-color 260ms ease, scale 260ms ease; }
  .chapter-rail a.is-active i { background: var(--orange); border-color: var(--orange); scale: 1.45; }
}

.training-navigator {
  --goal-accent: var(--blue);
  --goal-foreground: var(--white);
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.015);
}
.training-navigator--orange { --goal-accent: var(--orange); --goal-foreground: var(--ink); }
.training-navigator--ochre { --goal-accent: var(--ochre); --goal-foreground: var(--ink); }
.goal-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-light);
}
.goal-tabs button {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 154px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 23px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: background-color 360ms ease, color 360ms ease;
}
.goal-tabs button:last-child { border-right: 0; }
.goal-tabs button::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(360px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.15), transparent 60%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
}
.goal-tabs button::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--goal-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 520ms var(--ease-premium);
}
.goal-tabs button > * { position: relative; z-index: 1; }
.goal-tabs button > span:first-child { color: var(--orange); font-family: var(--serif); font-size: 18px; transition: color 360ms ease; }
.goal-tabs button > span:nth-child(2) { display: grid; gap: 8px; }
.goal-tabs button b { font-size: 15px; line-height: 1.05; text-transform: uppercase; }
.goal-tabs button small { color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.42; transition: color 360ms ease; }
.goal-tabs button i { color: rgba(255,255,255,.28); font-size: 10px; font-style: normal; }
.goal-tabs button.is-active { background: rgba(255,255,255,.055); }
.goal-tabs button.is-active::after { transform: scaleX(1); transform-origin: left center; }
.goal-tabs button.is-active i { color: var(--goal-accent); }

.goal-route {
  min-height: 252px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
  padding: clamp(28px, 3.3vw, 54px);
  background: var(--goal-accent);
  color: var(--goal-foreground);
  animation: goalRouteIn 560ms var(--ease-premium) both;
}
.goal-route-index {
  min-height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  rotate: -7deg;
}
.goal-route-index span { font-family: var(--serif); font-size: 66px; line-height: .9; }
.goal-route-index small { margin-top: 10px; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.goal-route-copy { max-width: 820px; display: grid; align-content: center; }
.goal-route-copy p { margin: 0 0 8px; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; opacity: .65; }
.goal-route-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(39px, 4vw, 72px); letter-spacing: -.065em; line-height: .9; text-transform: uppercase; }
.goal-route-copy b { margin-top: 12px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.goal-route-copy > span { max-width: 740px; margin-top: 14px; font-size: 14px; line-height: 1.5; opacity: .75; }
.goal-route > .button { min-width: 210px; }

.training-navigator .program-grid { border: 0; border-top: 1px solid var(--line-light); }
.training-navigator .program-card { opacity: .7; }
.training-navigator .program-card.is-recommended { opacity: 1; }
.training-navigator .program-card.is-recommended::before { transform: translateY(0); }
.training-navigator .program-card.is-recommended .program-copy p,
.training-navigator .program-card.is-recommended .program-meta small { color: rgba(255,255,255,.78); }
.program-match {
  position: absolute !important;
  z-index: 2 !important;
  top: 28px;
  right: 68px;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.44);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease;
}
.program-card.is-recommended .program-match { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.archive-console {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.archive-console > p { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.archive-console > p span { font-family: var(--serif); font-size: 38px; line-height: 1; }
.archive-console > p small { font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.archive-progress { height: 1px; overflow: hidden; background: rgba(11,16,24,.22); }
.archive-progress i { width: 100%; height: 100%; display: block; background: var(--ink); transform-origin: left center; transition: transform 520ms var(--ease-premium); }
.archive-buttons { display: flex; gap: 8px; }
.archive-buttons button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,16,24,.55);
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: background-color 260ms ease, color 260ms ease, opacity 260ms ease;
}
.archive-buttons button:hover:not(:disabled),
.archive-buttons button:focus-visible { background: var(--ink); color: var(--white); }
.archive-buttons button:disabled { opacity: .25; cursor: default; }
.archive-window:focus-visible { outline-offset: -5px; }

.membership-grid { grid-template-columns: .85fr .85fr 1.3fr; }
.membership-grid article:nth-child(3) { background: var(--ink); color: var(--white); }
.membership-grid article:nth-child(3) > span { color: var(--orange); }
.membership-grid article:nth-child(3) p { color: rgba(255,255,255,.62); }
.membership-grid article:nth-child(3)::after { background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(215,119,34,.2), transparent 62%); }
.visit-steps li:nth-child(4) { background: var(--ink); color: var(--white); }
.visit-steps li:nth-child(4) span { color: var(--orange); }
.visit-steps li:nth-child(4) p { color: rgba(255,255,255,.62); }

@media (hover: hover) and (pointer: fine) {
  .goal-tabs button:hover::before { opacity: 1; }
  .goal-tabs button:hover { background: rgba(255,255,255,.045); }
  .training-navigator .program-card:hover { opacity: 1; }
}

@media (max-width: 900px) {
  .goal-tabs { grid-template-columns: 1fr 1fr; }
  .goal-tabs button { min-height: 142px; padding: 18px; border-bottom: 1px solid var(--line-light); }
  .goal-tabs button:nth-child(2n) { border-right: 0; }
  .goal-tabs button:nth-last-child(-n+2) { border-bottom: 0; }
  .goal-tabs button { grid-template-columns: auto 1fr; }
  .goal-tabs button i { display: none; }
  .goal-tabs button b { font-size: 14px; }
  .goal-tabs button small { font-size: 11px; }
  .goal-route { grid-template-columns: 84px 1fr; gap: 20px; padding: 26px 20px; }
  .goal-route-index { min-height: 84px; }
  .goal-route-index span { font-size: 38px; }
  .goal-route-index small { display: none; }
  .goal-route-copy h3 { font-size: clamp(36px, 11vw, 58px); }
  .goal-route-copy b { font-size: 17px; }
  .goal-route-copy > span { font-size: 13px; }
  .goal-route > .button { grid-column: 1 / 3; width: 100%; min-width: 0; }
  .training-navigator .program-grid { margin-right: 0; padding: 12px; }
  .program-match { top: 24px; right: 60px; }
  .archive-console { grid-template-columns: 1fr auto; gap: 18px; margin-bottom: 20px; }
  .archive-progress { grid-column: 1 / 3; grid-row: 2; }
  .archive-buttons button { width: 46px; height: 46px; }
  .membership-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .goal-tabs { grid-template-columns: 1fr; }
  .goal-tabs button { min-height: 112px; border-right: 0; border-bottom: 1px solid var(--line-light) !important; }
  .goal-tabs button:last-child { border-bottom: 0 !important; }
  .goal-route { grid-template-columns: 64px 1fr; }
  .goal-route-index { min-height: 64px; }
  .goal-route-index span { font-size: 30px; }
  .goal-route-copy h3 { font-size: clamp(34px, 10vw, 48px); }
  .archive-console > p span { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .goal-route { animation: none !important; }
  .chapter-rail,
  .chapter-rail *,
  .goal-tabs button,
  .goal-tabs button::after,
  .archive-progress i { transition: none !important; }
}

/* Header brand specimen: readable wordmark at rest, collectible mark on hover/focus. */
.brand-mark-preview {
  position: absolute;
  z-index: 12;
  top: calc(100% + 17px);
  left: -4px;
  width: 224px;
  display: grid;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(23, 33, 41, .24);
  background:
    linear-gradient(rgba(248, 241, 229, .96), rgba(233, 222, 200, .98)),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(23,33,41,.04) 8px 9px);
  color: var(--ink);
  box-shadow: 0 28px 74px rgba(0, 0, 0, .28), 0 1px 0 rgba(255,255,255,.7) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -10px, 0) scale(.92) rotate(-1.8deg);
  transform-origin: top left;
  transition: opacity 260ms ease, visibility 260ms ease, transform 560ms var(--ease-premium);
}
.brand-mark-preview::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  background: radial-gradient(circle, transparent 3px, var(--cream) 3.6px) 0 0 / 12px 12px;
}
.brand-mark-preview > span {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 2px 2px 0;
  line-height: 1;
}
.brand-mark-preview > span b {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}
.brand-mark-preview > span small {
  margin: 0;
  color: rgba(23, 33, 41, .54);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.brand-mark-preview > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  filter: saturate(.88) sepia(.04) contrast(.98);
}

@media (hover: hover) and (pointer: fine) {
  .brand-lockup--compact:hover > img,
  .brand-lockup--compact:focus-visible > img,
  html[data-scrolled="true"] .brand-lockup--compact:hover > img,
  html[data-scrolled="true"] .brand-lockup--compact:focus-visible > img {
    position: relative;
    z-index: 13;
    transform: rotate(-2deg) scale(1.16);
    filter: saturate(.94) sepia(.02) contrast(1);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
  }
  .brand-lockup--compact:hover .brand-mark-preview,
  .brand-lockup--compact:focus-visible .brand-mark-preview {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1) rotate(-.55deg);
  }
}

@media (max-width: 900px) {
  .brand-lockup--compact { min-width: 0; gap: 10px; }
  .brand-lockup--compact > .brand-copy { display: grid; }
  .brand-lockup--compact .brand-copy b { font-size: 11px; letter-spacing: .09em; white-space: nowrap; }
  .brand-lockup--compact .brand-copy small,
  .brand-mark-preview { display: none; }
}

@media (max-width: 420px) {
  .brand-lockup--compact { gap: 8px; }
  .brand-lockup--compact > img { width: 44px; height: 44px; }
  .brand-lockup--compact .brand-copy b { font-size: 10px; }
}
