:root {
  --bg: #0c0d10;
  --surface: #15171d;
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5efe5;
  --text-soft: rgba(245, 239, 229, 0.72);
  --accent: #ff6b2c;
  --accent-soft: #ffb36a;
  --spot: #ffd38a;
  --max-width: 1240px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 211, 138, 0.11), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 44, 0.12), transparent 20%),
    linear-gradient(180deg, #0c0d10 0%, #111319 42%, #0b0c10 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
}

.site-header,
.hero,
.about-grid,
.voices-grid,
.space-layout,
.gallery-grid,
.coach-layout,
.cta-panel,
.site-footer {
  min-width: 0;
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 17, 22, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-name,
.brand-subtitle,
.site-nav a,
.button,
.eyebrow,
.fact-value,
.timeline-number,
.voice-index,
.video-badge,
.momentum-track span {
  font-family: "Unbounded", sans-serif;
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.62rem;
  opacity: 0.58;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 229, 0.8);
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: stretch;
  padding: 44px 0 38px;
  min-height: calc(100vh - 126px);
}

.hero-copy,
.hero-media {
  min-height: 720px;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0 36px 6px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.hero-text,
.section-heading p,
.story-card p,
.timeline-item p,
.voice-card p,
.space-copy p,
.space-point span,
.coach-copy p,
.cta-panel p,
.site-footer {
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-text {
  max-width: 50ch;
  margin: 24px 0 0;
  font-size: 1rem;
}

.hero-note {
  max-width: 42ch;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 179, 106, 0.45);
  color: rgba(245, 239, 229, 0.82);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #120f0a;
  background: linear-gradient(135deg, var(--spot), var(--accent-soft));
  box-shadow: 0 18px 40px rgba(255, 157, 83, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  max-width: 640px;
}

.fact-card,
.story-card,
.timeline-item,
.voice-card,
.space-point,
.cta-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.fact-card {
  padding: 20px;
  border-radius: 22px;
  min-width: 0;
}

.fact-value {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 8px;
  color: #fff;
}

.fact-label {
  color: var(--text-soft);
  line-height: 1.5;
}

.hero-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1014;
  box-shadow: var(--shadow);
}

.video-card {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.12), rgba(8, 9, 12, 0.6)),
    radial-gradient(circle at top left, rgba(255, 211, 138, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 107, 44, 0.12), transparent 48%);
}

.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-logo-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 11, 14, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.hero-logo-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}

.hero-logo-card span {
  font-family: "Unbounded", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 88px 0;
}

.momentum-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.momentum-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: drift 26s linear infinite;
}

.momentum-track span {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245, 239, 229, 0.76);
}

.momentum-track span::before {
  content: "•";
  margin-right: 26px;
  color: var(--accent);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.about-grid,
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card,
.voice-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  min-width: 0;
}

.story-card-accent,
.voice-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.story-card h3,
.timeline-item h3 {
  margin-bottom: 14px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 28px;
  border-radius: 28px;
  min-width: 0;
}

.timeline-number {
  font-size: 1.1rem;
  color: var(--accent-soft);
}

.voice-index {
  font-size: 0.78rem;
  color: var(--accent-soft);
}

.space-layout,
.coach-layout,
.cta-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.space-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.space-point {
  padding: 18px 20px;
  border-radius: 20px;
  min-width: 0;
}

.space-point strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.88rem;
}

.space-media {
  position: relative;
  min-height: 620px;
}

.space-main-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.space-main-photo {
  inset: 0;
}

.space-side-photo {
  position: absolute;
  right: -14px;
  width: 220px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.space-side-photo-top {
  top: 28px;
  height: 220px;
}

.space-side-photo-bottom {
  right: 18px;
  bottom: 26px;
  width: 240px;
  height: 190px;
}

.space-main-photo img,
.space-side-photo img,
.coach-visual img,
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-card {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-card img,
.gallery-card video {
  transition: transform 0.45s ease;
}

.gallery-card:hover img,
.gallery-card:hover video {
  transform: scale(1.04);
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-video {
  position: relative;
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-card-portrait {
  aspect-ratio: 4 / 5;
}

.gallery-card-portrait img {
  object-fit: cover;
  object-position: center 20%;
}

.gallery-card-feature {
  aspect-ratio: 4 / 5;
}

.gallery-card-feature img {
  object-fit: cover;
  object-position: center 18%;
}

.gallery-card-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.gallery-card-wide img {
  object-position: center 38%;
}

.gallery-card-coach img {
  object-position: center top;
}

.gallery-card-video::after {
  content: "видео";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 11, 14, 0.62);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-visual {
  min-height: 620px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.coach-copy p {
  margin-top: 16px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-pills a,
.contact-pills span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.cta-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 34px;
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: none;
}

.mobile-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--spot), var(--accent-soft));
  color: #111;
  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1280px) {
  .hero {
    min-height: auto;
    gap: 28px;
  }

  .hero-copy,
  .hero-media {
    min-height: 660px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .gallery-grid {
    grid-template-columns: 1.15fr 0.95fr 0.9fr;
  }
}

@media (max-width: 1080px) {
  .hero,
  .space-layout,
  .coach-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media,
  .coach-visual {
    min-height: auto;
  }

  .hero-copy {
    padding: 6px 0 0;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 7vw, 4.7rem);
  }

  .hero-media {
    min-height: 620px;
  }

  .space-media,
  .coach-visual {
    min-height: 560px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-video,
  .gallery-card-portrait,
  .gallery-card-tall,
  .gallery-card-wide,
  .gallery-card-feature {
    grid-column: span 1;
  }
}

@media (max-width: 840px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(15, 17, 22, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-facts,
  .about-grid,
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    gap: 12px;
  }

  .button {
    min-height: 54px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .space-media {
    min-height: 520px;
  }

  .coach-visual {
    min-height: 520px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .brand-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 26px;
    gap: 22px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.8rem);
    letter-spacing: -0.05em;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-note {
    padding-left: 12px;
    font-size: 0.93rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .fact-card,
  .story-card,
  .voice-card,
  .timeline-item,
  .space-point,
  .cta-panel {
    border-radius: 22px;
  }

  .hero-logo-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    padding: 12px 14px;
  }

  .space-media {
    min-height: 420px;
  }

  .coach-visual {
    min-height: 420px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-video,
  .gallery-card-portrait,
  .gallery-card-wide {
    grid-column: auto;
  }

  .gallery-card-video {
    aspect-ratio: 16 / 10;
  }

  .gallery-card-portrait,
  .gallery-card-feature,
  .gallery-card-wide {
    aspect-ratio: 16 / 10;
  }

  .coach-copy p {
    font-size: 0.95rem;
  }

  .contact-pills {
    gap: 8px;
  }

  .contact-pills a,
  .contact-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .site-header {
    margin-top: 10px;
    padding: 12px;
    border-radius: 20px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .brand-subtitle {
    font-size: 0.48rem;
  }

  .hero {
    padding: 18px 0 20px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .button,
  .mobile-cta a {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.68rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
    border-radius: 24px;
  }

  .video-badge {
    top: 12px;
    left: 12px;
    padding: 8px 10px;
    font-size: 0.54rem;
  }

  .hero-logo-card {
    gap: 10px;
    border-radius: 16px;
  }

  .hero-logo-card img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero-logo-card span {
    font-size: 0.64rem;
  }

  .fact-card {
    padding: 16px;
  }

  .fact-value {
    font-size: 1.35rem;
  }

  .story-card,
  .voice-card,
  .timeline-item,
  .space-point,
  .cta-panel {
    padding: 20px 18px;
  }

  .space-media,
  .coach-visual {
    min-height: 320px;
  }

  .gallery-card-video {
    aspect-ratio: 16 / 10;
  }

  .gallery-card-portrait,
  .gallery-card-feature,
  .gallery-card-wide {
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    padding-bottom: 92px;
    font-size: 0.92rem;
  }
}
