/* Custom fonts via jsDelivr CDN: https://github.com/i1-D/bodywise-fonts */
@font-face {
  font-family: 'Edosz';
  src: url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/edosz.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/edosz.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moon_walk';
  src: url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/moon_walk.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/moon_walk.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DejaVuSans';
  src: url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/DejaVuSans-Bold.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/DejaVuSans-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dortmund';
  src: url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/Dortmund-ExtraBold.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/i1-D/Bodywise@main/fonts/Dortmund-ExtraBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #299B8E;
  --color-bg: rgb(2 8 1);
  --color-bg-elevated: #111;
  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;
  --color-accent: #e63946;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-gradient-primary: linear-gradient(120deg, #1a3d38 0%, #0f2926 35%, var(--color-bg) 60%, var(--color-bg) 100%);
  --features-border: #299B8E;
  --features-text: #FFFFFF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-edosz: 'Edosz', sans-serif;
  --font-moonwalk: 'Moon_walk', sans-serif;
  --font-dejavu: 'DejaVuSans', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --container-max: 20.625vw;
  --header-height: 72px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-reveal: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  /* Responsive breakpoints (use in media queries) */
  --bp-480: 480px;
  --bp-600: 600px;
  --bp-900: 900px;
  --bp-1200: 1200px;
  --bp-1360: 1360px;
  --bp-1920: 1920px;

  --tagline-second-line-top: 28vh;
  --tagline-third-line-top: 46vh;
  --tagline-follow-top: 34vh;
  --tagline-wrap-margin-bottom: 14.815vh;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  cursor: url('images/cursor.svg') 12 12, auto;
}

@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}

main {
  max-width: 100%;
  /* Do not set overflow on main: it breaks position:sticky in .clubs__pin */
}

/* Use custom cursor on interactive elements (fallback: pointer) */
a,
button,
[role="button"],
.header__icon-btn,
.header__nav-link,
.header__menu-btn,
.footer__social-btn,
.clubs__link,
.logo {
  cursor: url('images/cursor.svg') 12 12, pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  opacity: 0.85;
}

/* Header — floating bar + dropdown nav */
.header {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.header--menu-open {
  pointer-events: auto;
}

.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.header--menu-open .header__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}

.header__wrap {
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: clamp(360px, var(--container-max), 420px);
  pointer-events: auto;
}

.header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 var(--space-sm);
  background: rgba(2, 8, 1, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #08201d;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.scrolled .header__bar {
  background: rgba(41, 155, 142, 0.95);
  border-color: #269085;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
}

.header__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.header__icon-btn svg {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: inherit;
}

.logo__img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.logo__title {
  color: inherit;
}


/* Menu button: show hamburger or close */
.header__menu-btn {
  position: relative;
}

.header__menu-btn .header__close-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
}

.header--menu-open .header__menu-btn .header__menu-icon {
  opacity: 0;
  pointer-events: none;
}

.header--menu-open .header__menu-btn .header__close-icon {
  opacity: 1;
  pointer-events: auto;
}

/* Nav dropdown — same width as bar, slides up from bar */
.header__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, visibility 0s linear 0.3s;
}

.header.scrolled .header__nav {
  background: var(--color-primary);
}

.header--menu-open .header__nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, visibility 0s;
}

.header__nav-link {
  font-family: var(--font-moonwalk);
  font-size: 1.2rem;
  letter-spacing: -1px;
  text-align: center;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.header__nav-link:hover {
  letter-spacing: -0.028em;
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.header.scrolled .header__nav-link:hover {
  color: #fff;
}

.header__nav-link--cta {
  margin-top: var(--space-xs);
  color: var(--color-primary);
  font-weight: 500;
}

.header__nav-link--cta:hover {
  color: #fff;
  background: var(--color-primary);
}

/* Hero: video background */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee */
.marquee {
  padding: var(--space-lg) 0;
  background: var(--color-gradient-primary);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee__track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
}

.marquee__text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
  opacity: 0.9;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Activate: uses shared .tagline-* styles below */
.activate {
  position: relative;
  background: var(--color-bg);
  padding: var(--space-xl) var(--space-lg) 0;
  text-align: center;
  min-height: 50vh;
}

/* Clubs: pinned section, images move to stacked center on scroll */
.clubs {
  position: relative;
  height: 400vh;
  background: var(--color-bg);
}

.clubs__pin {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clubs__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clubs__grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
  padding: var(--space-md);
}

.clubs__cell {
  position: relative;
  min-height: 0;
}

.clubs__cell--img {
  will-change: transform;
  transform-origin: center center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.clubs__cell--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clubs__content {
  position: relative;
  z-index: 20;
  text-align: center;
  pointer-events: auto;
}

.clubs__logo-wrap {
  margin: 0 0 var(--space-xl) 0;
}

.clubs__logo {
  display: block;
  width: auto;
  height: clamp(10rem, 24vw, 30rem);
  margin: 0 auto;
  object-fit: contain;
}

.clubs__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.clubs__link, .about-hero__cta {
  font-family: var(--font-moonwalk);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-primary);
  color: #fff;
  border: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.clubs__link:hover, .about-hero__cta:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.features {
  padding: var(--space-3xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-bg);
}

.features__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--features-border);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--features-text);
}

.features__table th,
.features__table td {
  border: 1px solid var(--features-border);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  vertical-align: middle;
}

.features__table thead th {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.08em;
  font-weight: 400;
}

.features__table tbody td {
  font-size: clamp(0.75rem, 1.5vw, 1.5rem);
  line-height: 1.3;
}

/* Footer — Figma design: tagline, 3 social circles, CTA */
.footer {
  position: relative;
  background: var(--color-bg);
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Shared tagline + line (footer + activate) */
.tagline-line-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(140px, 70vh, 90vh);
  min-height: 80px;
  color: var(--color-primary);
  pointer-events: none;
  z-index: 0;
}

.footer--in-view .tagline-line-svg,
.activate--in-view .tagline-line-svg {
  animation: taglineLineDrift 6s ease-in-out infinite;
}

.tagline-line-svg .tagline-line {
  stroke: var(--color-primary);
  stroke-dasharray: var(--tagline-line-length, 3000);
  stroke-dashoffset: var(--tagline-line-length, 3000);
}

.footer--in-view .tagline-line,
.activate--in-view .tagline-line {
  animation: taglineLineDraw 1.6s ease-out forwards, taglineLineFloat 9s ease-in-out 1.6s infinite;
}

@keyframes taglineLineDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes taglineLineDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}

@keyframes taglineLineFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, -6px); }
  66% { transform: translate(-6px, 4px); }
}

@media (prefers-reduced-motion: reduce) {
  .tagline-line-svg .tagline-line {
    stroke-dashoffset: 0;
  }
  .footer--in-view .tagline-line,
  .activate--in-view .tagline-line {
    animation: taglineLineFloat 9s ease-in-out infinite;
  }
  .footer--in-view .tagline-line-svg,
  .activate--in-view .tagline-line-svg {
    animation: taglineLineDrift 6s ease-in-out infinite;
  }
}

.tagline-wrap {
  position: relative;
  z-index: 1;
}

.footer.footer--in-view .tagline-wrap { 
  margin-bottom: var(--tagline-wrap-margin-bottom);
}

.tagline {
  position: relative;
  z-index: 1;
  min-height: calc(32vw + 8rem);
  height: calc(32vw + 8rem);
}

.tagline-item {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tagline-item--listen {
  top: 0;
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  animation: none;
}

.tagline-item--to-your {
  top: 0;
  z-index: 2;
  opacity: 0;
  animation: none;
}

.tagline-item--body {
  top: 0;
  z-index: 1;
  transform-origin: center top;
  opacity: 0;
  transform: scaleY(0.2);
  animation: none;
}

.tagline-wrap--in-view .tagline-item--listen {
  animation: taglineListen 0.6s ease-out forwards;
}

.tagline-wrap--in-view .tagline-item--body {
  animation: taglineBody 1.5s ease-out 0.7s forwards;
}

.tagline-wrap--in-view .tagline-item--to-your {
  animation: taglineToYour 0.5s ease-out 1.5s forwards;
}


.tagline-item--body .tagline-img {
  transform-origin: center top;
}

@keyframes taglineListen {
  0% { transform: scale(0); opacity: 0; }
  15% { opacity: 1; }
  40% { transform: scaleX(1.8) scaleY(1.5); }
  70% { transform: scaleX(1.8) scaleY(1.5); }
  100% { transform: scaleX(1) scaleY(1); opacity: 1; }
}

@keyframes taglineToYour {
  0% { top: 0; opacity: 0; }
  1% { opacity: 1; }
  100% { top: var(--tagline-second-line-top); transform: translateY(-50%); opacity: 1; }
}

@keyframes taglineBody {
  0% { top: 0; transform: scaleY(0.2); opacity: 0; }
  50% { top: var(--tagline-second-line-top); transform: translateY(-50%) scaleY(1.8); opacity: 1; }
  100% { top: var(--tagline-third-line-top); transform: translateY(-50%) scaleY(1); opacity: 1; }
}


.tagline-img {
  display: block;
  width: auto;
  height: clamp(10rem, 20vh, 15rem);
  min-height: 80px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
}

.tagline-follow {
  position: absolute;
  left: 50%;
  top: var(--tagline-follow-top);
  transform: translate(-50%, -50%) rotate(-6.583deg);
  margin: 0;
  font-family: 'Edosz', cursive;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: normal;
  font-style: normal;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.tagline-follow-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  animation: none;
}

.tagline-follow-char--space {
  min-width: 0.35em;
}

.tagline-wrap--in-view .tagline-follow-char {
  animation: taglineFollowChar 0.4s ease-out forwards;
}

@keyframes taglineFollowChar {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .tagline-item--listen,
  .tagline-item--to-your,
  .tagline-item--body {
    animation: none;
  }
  .tagline-item--listen {
    opacity: 1;
    transform: scale(1);
  }
  .tagline-item--to-your {
    top: 30%;
    transform: translateY(-50%);
    opacity: 1;
  }
  .tagline-item--body {
    top: 58%;
    opacity: 1;
    transform: translateY(-50%) scaleY(1);
  }
  .tagline-follow-char {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__social {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2xl);
  margin: -48px 0 5.208vw 0;
}

.footer__social-btn {
  display: flex;
  align-items: end;
  padding-bottom: 32px;
  justify-content: center;
  width: 20.833vw;
  height: 20.833vw;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  transition: transform var(--transition-smooth);
  overflow: hidden;
}

.footer__social-btn:hover {
  transform: scale(1.06) rotate(20deg);
  border: 6px solid var(--color-primary);
}

.footer__social-label {
  font-family: var(--font-edosz);
  font-size: 8vw;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: transform var(--transition-smooth);
}

.footer__social-btn:hover .footer__social-label {
  transform: rotate(-20deg);
}

.footer__social-btn--insta {
  background-image: url('images/insta.avif');
  margin-top: 72px;
}

.footer__social-btn--fb {
  background-image: url('images/fb.avif');
}

.footer__cta {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 4vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* Inner pages (about, contact, blog, how) */
.page-hero {
  padding: calc(var(--header-height, 72px) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  text-align: center;
  background: var(--color-bg);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
}

.page-hero__lead {
  font-size: 1.125rem;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.8));
  margin: 0;
}

.page-content {
  padding: var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-content p {
  margin: 0 0 var(--space-md);
  line-height: 1.6;
}

/* About Us page — hero: title, description, CTA left; model image right */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--color-gradient-primary);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-sm) var(--space-3xl);
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 560px;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.about-hero__title-word-with-underline {
  position: relative;
  display: inline-block;
}

.about-hero__underline-svg {
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 0.35em;
  color: var(--color-primary);
  pointer-events: none;
}

.about-hero__underline-path {
  stroke-dasharray: var(--about-hero-underline-length, 1000);
  stroke-dashoffset: var(--about-hero-underline-length, 1000);
}

.about-hero__underline-svg--draw .about-hero__underline-path {
  animation: aboutHeroUnderlineDraw 0.9s ease-out forwards;
}

@keyframes aboutHeroUnderlineDraw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__underline-path {
    stroke-dashoffset: 0;
  }
  .about-hero__underline-svg--draw .about-hero__underline-path {
    animation: none;
  }
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-hero__text p {
  font-family: var(--font-dejavu);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.about-hero__media {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-hero__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* Blog page — hero (Empower / Nourish) + Latest Articles grid */
.blog-hero {
  padding: calc(var(--header-height, 72px) + var(--space-2xl))  var(--space-3xl);
  background: var(--color-bg);
  overflow: hidden;
}

.blog-hero__wrap {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 0.4em;
}

.blog-hero__word {
  font-family: var(--font-display);
  font-size: clamp(16rem, 22vw, 32rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.blog-hero__word--back {
  color: var(--color-text);
  opacity: 0.6;
  position: relative;
  z-index: 0;
  animation: blogHeroEmpowerLand 1s ease-out both, blogHeroEmpowerFade 0.5s ease-out 1s forwards;
}

@keyframes blogHeroEmpowerLand {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes blogHeroEmpowerFade {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}

.blog-hero__word--front {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(0.35em);
}

.blog-hero__char {
  opacity: 0;
  animation: blogHeroNourishChar 0.2s ease-out forwards;
}

@keyframes blogHeroNourishChar {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-hero__word--back {
    animation: none;
    opacity: 0.6;
  }
  .blog-hero__char {
    animation: none;
    opacity: 1;
  }
}

.blog-articles {
  padding: var(--space-2xl) var(--space-3xl);
  background: var(--color-bg);
}

.blog-articles__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
  padding: 0 var(--space-sm);
}

.blog-articles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-2xl);
}

.blog-card {
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-elevated);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.blog-card__link:hover {
  opacity: 0.92;
}

.blog-card__img-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  max-height: 300px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin: 0;
  padding: var(--space-sm) var(--space-md) 0;
  line-height: 1.5;
}

.blog-card__accent {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-family: var(--font-dejavu);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  padding: var(--space-xs) var(--space-md) var(--space-md);
  line-height: 1.85;
}

/* Contact page — 3-row layout */
.contact-section {
  min-height: 100vh;
  background: linear-gradient(130deg, #269085 7.68%, #08201D 29.34%, rgba(0, 1, 1, 0.60) 48.83%, rgba(0, 1, 1, 0.60) 68.99%, #195E56 94.78%);
  padding: calc(var(--header-height, 72px) + var(--space-2xl)) var(--space-3xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.contact-section__header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact-section__title {
  font-family: var(--font-dortmund);
  font-size: clamp(3rem, 6vw, 8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
}

/* Branch cards grid */
.contact-section__branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact-branch {
  background: #0b1f1c;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-branch__map {
  width: 100%;
  height: 16.667vw;
  flex-shrink: 0;
}

.contact-branch__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-branch__body {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.contact-branch__label {
  font-family: var(--font-dejavu);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.contact-branch__name {
  font-family: var(--font-dortmund);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--space-xs);
  line-height: 1.1;
}

.contact-branch__address {
  font-family: var(--font-dejavu);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
  border-left: 2px solid var(--color-primary);
  padding-left: var(--space-sm);
}

.contact-branch__phone {
  margin: var(--space-xs) 0 0;
}

.contact-branch__phone a {
  font-family: var(--font-dejavu);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

.contact-branch__phone a:hover {
  color: #fff;
}

.contact-branch__directions {
  display: inline-block;
  margin-top: var(--space-md);
  align-self: flex-start;
  font-family: var(--font-moonwalk);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: #fff;
  border: none;
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.contact-branch__directions:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

/* Row 3: email + follow us */
.contact-section__footer-row {
  display: flex;
  gap: var(--space-3xl);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
}

.contact-section__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-section__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-section__icon svg {
  width: 100%;
  height: 100%;
}

.contact-section__detail {
  flex: 1;
  min-width: 0;
}

.contact-section__label {
  display: block;
  font-family: var(--font-dortmund);
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 var(--space-xs);
}

.contact-section__text {
  font-family: var(--font-dejavu);
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.contact-section__text a {
  color: #fff;
  text-decoration: none;
}

.contact-section__text a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.contact-section__social {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.contact-section__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.contact-section__social-link:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.contact-section__social-link svg {
  width: 22px;
  height: 22px;
}

/* How page — hero, slider, tagline */
.how-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a url('images/how.avif') center / cover no-repeat;
}

.how-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.how-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-edosz);
  font-size: clamp(5rem, 8vw, 12rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transform: rotate(-6.583deg);
}

.how-slider-section {
  background: #0a0a0a;
  padding: var(--space-3xl) 0;
  overflow-x: hidden;
}

.how-swiper {
  overflow: hidden;
  padding: var(--space-md) var(--space-2xl);
}

.how-swiper .swiper-wrapper {
  align-items: stretch;
}

.how-swiper .swiper-slide {
  width: 85%;
  max-width: 600px;
  height: auto;
}


.how-card {
  height: 100%;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.how-card--content {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(130deg, #269085 7.68%, #08201D 29.34%, rgba(0, 1, 1, 0.60) 48.83%, rgba(0, 1, 1, 0.60) 68.99%, #195E56 94.78%);
  color: #fff;
}


.how-card__header {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-md);
}

.how-card__text {
  font-family: var(--font-dejavu);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.how-card--image {
  background: #1a1a1a;
}

.how-card--image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}


.how-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  margin: var(--space-2xl) var(--space-lg) 0;
}

.how-tagline__accent {
  font-family: var(--font-edosz);
  font-weight: 300;
  color: var(--color-primary);
  font-style: italic;
}

/* How page — scroll-pin wrapper */
.how-pin-wrap {
  position: relative;
}

.how-pin-wrap .how-slider-section {
  position: sticky;
  top: 0;
  z-index: 1;
  overflow-x: clip;
}

/* ========== Responsive — breakpoints: 480, 600, 900, 1200, 1360, 1920 ========== */

/* 1920px and up — full HD and larger */
@media (min-width: 1920px) {

  :root {
    --tagline-second-line-top: 32vh;
    --tagline-third-line-top: 54vh;
    --tagline-follow-top: 40vh;
  }

  .header__wrap {
    max-width: 380px;
  }

  .hero__content {
    padding: var(--space-2xl);
  }

  .hero__title {
    font-size: clamp(4rem, 5vw, 6rem);
  }

  .marquee__text {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .clubs__grid {
    gap: 12px;
    padding: var(--space-lg);
  }

  .clubs__logo {
    height: clamp(14rem, 20vw, 30rem);
  }

  .features {
    max-width: 1400px;
    padding: var(--space-3xl) var(--space-2xl);
  }

  .about-hero__inner {
    max-width: 1600px;
    padding: var(--space-3xl) var(--space-3xl);
    gap: var(--space-3xl);
  }

  .about-hero__content {
    max-width: 620px;
  }

  .about-hero__title {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .about-hero__img {
    max-width: 580px;
  }

  .blog-hero__word {
    font-size: clamp(18rem, 20vw, 32rem);
  }

  .blog-articles {
    padding: var(--space-3xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-articles__grid {
    gap: var(--space-2xl);
    max-width: 1200px;
  }

  .contact-section {
    padding: calc(var(--header-height, 72px) + var(--space-3xl)) var(--space-3xl) var(--space-3xl);
  }

  .contact-section__title {
    font-size: clamp(4rem, 5vw, 8rem);
  }

  .how-swiper .swiper-slide {
    width: 420px;
  }

  .how-tagline {
    font-size: clamp(4rem, 10vw, 8rem);
  }

  .tagline,
  .tagline-line-svg {
    height: clamp(280px, 72vh, 90vh);
    min-height: 200px;
  }

  .tagline-img {
    height: clamp(6rem, 24vh, 16rem);
  }
}

/* 1360px — large desktop */
@media (max-width: 1360px) {

  :root {
    --tagline-second-line-top: 28vh;
    --tagline-third-line-top: 46vh;
    --tagline-follow-top: 36vh;
  }

  .about-hero__inner {
    padding: var(--space-2xl) var(--space-2xl);
  }

  .tagline,
  .tagline-line-svg {
    height: clamp(200px, 70vh, 88vh);
  }

  .tagline-follow {
    font-size: clamp(2rem, 8vw, 6rem);
  }

  .tagline-img {
    height: clamp(5rem, 20vh, 10rem);
  }

  .contact-section {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }

  .contact-section__branches {
    gap: var(--space-lg);
  }
}

/* 1200px — desktop */
@media (max-width: 1200px) {

  :root {
    --tagline-second-line-top: 26vh;
    --tagline-third-line-top: 42vh;
    --tagline-follow-top: 34vh;
    --tagline-wrap-margin-bottom: 10vh;
  }

  .clubs__grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .about-hero__inner {
    max-width: 100%;
    padding: var(--space-2xl) var(--space-xl);
  }

  .about-hero__img {
    max-width: 460px;
  }

  .blog-hero__word {
    font-size: clamp(12rem, 22vw, 18rem);
  }

  .blog-articles__grid {
    max-width: 100%;
  }

  .contact-section__title {
    font-size: clamp(2.75rem, 5vw, 6rem);
  }

  .contact-branch__name {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }

  .how-swiper .swiper-slide {
    width: 360px;
  }

  .tagline,
  .tagline-line-svg {
    height: clamp(180px, 68vh, 85vh);
  }

  .tagline-follow {
    font-size: clamp(2rem, 8vw, 6rem);
  }

  .tagline-img {
    height: clamp(8rem, 18vh, 13rem);
  }
}

/* 900px — tablets / small laptops */
@media (max-width: 900px) {

  :root {
    --tagline-second-line-top: 26vh;
    --tagline-third-line-top: 42vh;
    --tagline-follow-top: 34vh;
    --tagline-wrap-margin-bottom: 8vh;
  }

  .header__wrap {
    max-width: 380px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .clubs__grid {
    gap: 8px;
    padding: var(--space-sm);
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .clubs__logo {
    height: clamp(9rem, 20vw, 18rem);
  }

  .features {
    padding: var(--space-2xl) var(--space-md);
  }

  .features__table thead th {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }

  .about-hero__inner {
    padding: var(--space-2xl) var(--space-lg);
  }

  .blog-hero__word {
    font-size: clamp(8rem, 22vw, 18rem);
  }

  .blog-hero {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .blog-hero__wrap {
    width: 85vw;
  }

  .blog-articles {
    padding: var(--space-2xl) var(--space-lg);
  }

  .blog-articles__grid {
    max-width: 100%;
  }

  .contact-section {
    padding: calc(var(--header-height, 72px) + var(--space-2xl)) var(--space-2xl) var(--space-2xl);
    gap: var(--space-2xl);
  }

  .how-swiper {
    padding: var(--space-md) var(--space-lg);
  }

  .how-swiper .swiper-slide {
    width: 380px;
  }
  
  .tagline-follow {
    font-size: clamp(2rem, 10vw, 6rem);
  }

  .tagline,
  .tagline-line-svg {
    height: clamp(160px, 65vh, 82vh);
  }

  .tagline-img {
    height: clamp(8rem, 18vh, 14rem);
  }

  .how-tagline {
    font-size: clamp(2rem, 12vw, 5rem);
  }
}

/* 600px — phones */
@media (max-width: 600px) {

  :root {
    --tagline-second-line-top: 22vh;
    --tagline-third-line-top: 36vh;
    --tagline-follow-top: 28vh;
    --tagline-wrap-margin-bottom: 4vh;
  }

  .header {
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    top: auto;
  }

  .header__wrap {
    max-width: 320px;
  }

  .header__bar {
    height: 56px;
    padding: 0 var(--space-xs);
  }

  .header__icon-btn {
    width: 40px;
    height: 40px;
  }

  .logo__img {
    height: 24px;
    max-width: 140px;
  }

  .hero {
    min-height: 560px;
  }

  .clubs__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .clubs__grid .clubs__cell:nth-child(n+31) {
    display: none;
  }

  .clubs__cta {
    flex-direction: column;
  }

  .clubs__link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }

  .features {
    overflow-x: visible;
    padding: var(--space-2xl) var(--space-md);
  }

  .features__table {
    min-width: 0;
    display: block;
  }

  .features__table thead {
    display: block;
  }

  .features__table thead tr {
    display: block;
    color: var(--color-primary);
  }

  .features__table thead th {
    display: block;
    width: 100%;
    padding: var(--space-md) var(--space-sm);
    font-size: clamp(1rem, 4vw, 1.35rem);
    border-bottom: 1px solid var(--features-border);
  }

  .features__table tbody {
    display: block;
  }

  .features__table tbody tr {
    display: block;
  }

  .features__table tbody td {
    display: block;
    width: 100%;
    padding: var(--space-md) var(--space-sm);
    font-size: clamp(1rem, 4vw, 2rem);
    text-align: center;
    border-left: 1px solid var(--features-border);
    border-right: 1px solid var(--features-border);
    border-bottom: 1px solid var(--features-border);
    box-sizing: border-box;
  }

  .features__table tbody td:first-child {
    border-top: 1px solid var(--features-border);
  }

  .footer__social-btn {
    width: 28vw;
    height: 28vw;
  }

  .footer__social-btn--yt,
  .footer__social-btn--insta {
    margin-top: 0;
  }

  .tagline,
  .tagline-line-svg {
    height: clamp(140px, 60vh, 75vh);
  }

  .tagline-follow {
    font-size: clamp(2rem, 13vw, 5rem);
  }

  .tagline-img {
    height: clamp(6rem, 16vh, 12rem);
  }

  .about-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .about-hero__content {
    max-width: none;
  }

  .about-hero__title-word-with-underline {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }

  .about-hero__cta {
    margin: 0 auto;
  }

  .about-hero__media {
    justify-content: center;
    min-height: 320px;
  }

  .about-hero__img {
    max-width: 100%;
  }

  .blog-hero__word {
    font-size: clamp(5rem, 20vw, 10rem);
  }

  .blog-hero {
    padding: var(--space-3xl) var(--space-md);
  }

  .blog-hero__wrap {
    width: 90vw;
  }

  .blog-articles__grid {
    grid-template-columns: 1fr;
  }

  .blog-card__img-wrap {
    min-height: 200px;
  }

  .contact-section__branches {
    grid-template-columns: 1fr;
  }

  .contact-section__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .contact-section__footer-row {
    gap: var(--space-2xl);
  }

  .how-swiper .swiper-slide {
    width: 85%;
    max-width: 340px;
  }

  .how-pin-wrap .how-slider-section {
    position: static;
  }
}

/* 480px — extra small phones */
@media (max-width: 480px) {


  :root {
    --tagline-second-line-top: 16vh;
    --tagline-third-line-top: 26vh;
    --tagline-follow-top: 20vh;
    --tagline-wrap-margin-bottom: 2vh;
  }

  body {
    font-size: 15px;
  }

  .header {
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
  }

  .header__bar {
    height: 56px;
    padding: 0 var(--space-xs);
  }

  .header__icon-btn {
    width: 36px;
    height: 36px;
  }

  .logo__img {
    height: 22px;
    max-width: 120px;
  }

  .marquee {
    padding: var(--space-sm) 0;
  }

  .hero {
    min-height: 480px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
  }

  .marquee__text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .clubs__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 4px;
    padding: var(--space-xs);
  }

  .clubs__grid .clubs__cell:nth-child(n+25) {
    display: none;
  }

  .clubs__logo {
    height: clamp(8rem, 20vw, 12rem);
  }

  .clubs__link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
  }

  .features {
    padding: var(--space-xl) var(--space-sm);
  }

  .features__table thead th {
    padding: var(--space-sm) var(--space-xs);
    font-size: clamp(1rem, 4vw, 2rem);
  }

  .features__table tbody td {
    padding: var(--space-sm) var(--space-xs);
    font-size: clamp(1rem, 3.5vw, 2rem);
  }

  .tagline-img {
    min-height: 60px;
    height: clamp(4rem, 12vh, 8rem);
  }

  .tagline,
  .tagline-line-svg {
    min-height: 120px;
    height: clamp(120px, 45vh, 65vh);
  }

  .activate .tagline-follow {
    font-size: clamp(1.5rem, 10vw, 4rem);
  }

  .footer .tagline-follow {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .footer__social-btn--yt,
  .footer__social-btn--insta {
    margin-top: 0;
  }

  .footer__social {
    gap: var(--space-xl);
  }

  .footer__social-btn {
    width: 28vw;
    height: 28vw;
  }

  .footer__social-label {
    font-size: 10vw;
  }

  .footer__cta {
    font-size: clamp(0.9rem, 5vw, 2.5rem);
  }

  .page-hero {
    padding: calc(var(--header-height, 72px) + var(--space-lg)) var(--space-sm) var(--space-lg);
  }

  .page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .about-hero__inner {
    padding: var(--space-lg) var(--space-md);
    gap: 0;
  }

  .about-hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about-hero__text p {
    font-size: 0.8125rem;
  }

  .about-hero__cta {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }

  .about-hero__media {
    min-height: 280px;
  }

  .blog-hero {
    padding: var(--space-2xl) var(--space-md);
  }

  .blog-hero__word {
    font-size: clamp(4rem, 24vw, 10rem);
    letter-spacing: 0.06em;
  }

  .blog-articles {
    padding: var(--space-lg) var(--space-md);
  }

  .blog-articles__title {
    font-size: 1.25rem;
  }

  .blog-articles__grid {
    gap: var(--space-md);
  }

  .blog-card__title {
    font-size: 1.5rem;
  }

  .blog-card__excerpt {
    font-size: 0.8125rem;
  }

  .contact-section {
    padding: calc(var(--header-height, 72px) + var(--space-lg)) var(--space-md) var(--space-lg);
    gap: var(--space-xl);
  }

  .contact-section__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-section__label {
    font-size: 1.25rem;
  }

  .contact-section__text {
    font-size: 1rem;
  }

  .contact-section__social-link {
    width: 40px;
    height: 40px;
  }

  .contact-branch__map {
    height: 180px;
  }

  .how-hero {
    min-height: 50vh;
  }

  .how-hero__title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .how-swiper {
    padding: var(--space-sm) var(--space-md);
  }

  .how-swiper .swiper-slide {
    width: 90%;
    max-width: 100%;
  }

  .how-card {
    min-height: 200px;
  }

  .how-card--content {
    padding: var(--space-lg);
  }

  .how-tagline {
    font-size: clamp(1.5rem, 12vw, 4rem);
    margin: var(--space-lg) var(--space-md) 0;
  }
}

/* ============================================================
   Article pages — shared styles for all 4 article pages
   ============================================================ */

/* --- Hero --- */
.article-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.article-hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 8, 1, 0.18) 0%,
    rgba(2, 8, 1, 0.45) 40%,
    rgba(2, 8, 1, 0.88) 75%,
    var(--color-bg) 100%
  );
}

.article-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
}

.article-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  background-color: var(--color-primary);
  color: var(--color-text);
  border-radius: 2px;
  padding: 0.2em 0.75em 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin: var(--space-xs) 0 0;
}

.article-hero__subtitle {
  font-family: var(--font-dejavu);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.4;
  max-width: 600px;
}

.article-meta {
  display: flex;
  gap: var(--space-md);
  font-family: var(--font-dejavu);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-top: var(--space-xs);
}

/* --- Reading column --- */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
}

.article-back {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  transition: opacity var(--transition-fast);
}

.article-back:hover {
  opacity: 0.7;
}

/* --- Body typography --- */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: var(--space-2xl) 0 var(--space-sm);
  line-height: 1;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-transform: uppercase;
  margin: var(--space-lg) 0 var(--space-xs);
  line-height: 1.1;
}

.article-body p {
  font-family: var(--font-dejavu);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body ul {
  list-style: none;
  margin: var(--space-sm) 0 var(--space-md);
  padding: 0;
}

.article-body li {
  font-family: var(--font-dejavu);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: var(--color-text);
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.4em;
}

.article-body li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 1.1em;
  line-height: 1.8;
}

.article-body strong {
  color: var(--color-primary);
  font-weight: normal;
}

.article-body em {
  color: var(--color-text-muted);
  font-style: italic;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-xl) 0;
}

/* --- Image layout blocks --- */
.article-img-layout {
  position: relative;
  width: calc(100% + var(--space-xl) * 2);
  margin-left: calc(var(--space-xl) * -1);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  overflow: hidden;
  border-radius: 4px;
}

.article-img-layout--wide {
  aspect-ratio: 16 / 7;
}

.article-img-layout--medium {
  aspect-ratio: 16 / 9;
}

.article-img-layout--square {
  aspect-ratio: 4 / 3;
}

.article-img-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-img-layout--gradient {
  background: linear-gradient(135deg, #1a3d38 0%, #0f2926 45%, #020801 100%);
}

.article-img-layout__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.article-img-layout__label--visible {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.article-img-layout__caption {
  text-align: center;
  font-family: var(--font-dejavu);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  padding-top: var(--space-xs);
  letter-spacing: 0.04em;
  margin: 0 var(--space-xl);
}

/* --- Pull quote --- */
.article-quote {
  border-left: 4px solid var(--color-primary);
  margin: var(--space-2xl) 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-elevated);
  border-radius: 0 8px 8px 0;
}

.article-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.article-quote cite {
  display: block;
  font-family: var(--font-dejavu);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* --- Comparison table (article 4) --- */
.article-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-dejavu);
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
}

.article-table th {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: rgba(41, 155, 142, 0.1);
  border-bottom: 2px solid var(--color-primary);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  line-height: 1.6;
  vertical-align: top;
}

.article-table td:first-child {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.article-table tr:last-child td {
  border-bottom: none;
}

.article-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* --- Weekly schedule cards (article 1) --- */
.article-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.article-schedule__card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-md);
}

.article-schedule__card--highlight {
  border-color: var(--color-primary);
}

.article-schedule__label {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-xs);
}

.article-schedule__text {
  font-family: var(--font-dejavu);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- Yoga pose blocks (article 3) --- */
.article-pose {
  margin: var(--space-xl) 0;
}

.article-pose__img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}

.article-pose__img--gradient {
  background: linear-gradient(120deg, #1a3d38 0%, #0f2926 50%, #020801 100%);
}

.article-pose__img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.article-pose__img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.article-pose__name-en {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  text-align: center;
}

.article-pose__name-sa {
  font-family: var(--font-dejavu);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .article-hero__content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .article-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .article-img-layout {
    width: calc(100% + var(--space-lg) * 2);
    margin-left: calc(var(--space-lg) * -1);
  }

  .article-img-layout__caption {
    margin: 0 var(--space-lg);
  }

  .article-schedule {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .article-hero {
    min-height: 55vh;
  }

  .article-hero__content {
    padding: var(--space-xl) var(--space-md);
  }

  .article-content {
    padding: var(--space-xl) var(--space-md);
  }

  .article-img-layout {
    width: calc(100% + var(--space-md) * 2);
    margin-left: calc(var(--space-md) * -1);
  }

  .article-img-layout__caption {
    margin: 0 var(--space-md);
  }

  .article-table th,
  .article-table td {
    padding: var(--space-xs) var(--space-sm);
  }

  .article-pose__img {
    aspect-ratio: 2 / 2;
  }
}
