/* =========================================================
   Легіон — карате-клуб. Стилі лендинга.
   Шрифти: Bebas Neue (заголовки), IBM Plex Sans (текст), JetBrains Mono (цифри/ціни)
   ========================================================= */

:root {
  --black: #0b0a08;
  --black2: #0b0b0c;
  --gold: #c8a03f;
  --gold2: #c9a527;
  --gold-light: #eecb74;
  --cream: #f2ece0;
  --warm-gray: #a89d87;
  --warm-gray-dim: #75695a;
  --ink: #1a1a1f;
  --gray: #737378;
  --gray-light: #99999e;
  --white: #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-w: 1280px;
  --header-h: 76px;
  --topbar-h: 36px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Reusable ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: opacity .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { opacity: .88; }
.btn--gold { background: var(--gold); color: var(--black); }
.btn--outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline-gold { background: #1f1b14; color: var(--gold); border: 1px solid var(--gold); }
.btn--lg { padding: 17px 24px; font-size: 15px; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--gold);
  margin-bottom: 8px;
}
.eyebrow--gold2 { color: var(--gold2); }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .01em;
}
.h2--dark { color: var(--ink); }
.h2--light { color: var(--cream); }
.h2--light2 { color: var(--cream); }
.h2--xl { font-size: 40px; }
.h2--sm { font-size: 30px; }

.section-head { max-width: 700px; margin-bottom: 32px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { font-size: 15px; color: var(--gray); line-height: 1.5; margin-top: 12px; }
.section-lead--center { margin-left: auto; margin-right: auto; }
.section-lead--light { color: var(--warm-gray); }

.badge {
  display: inline-block;
  background: #f5f0db;
  color: #8c701a;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
}

.multichannel { display: flex; align-items: center; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.multichannel--center { justify-content: center; }
.mc-icon {
  width: 40px; height: 40px; border-radius: 20px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.mc-icon:hover { background: rgba(200,160,63,.15); }
.mc-icon img { width: 17px; height: 17px; }
.mc-phone { font-weight: 500; font-size: 15px; color: var(--cream); margin-left: 8px; }
.mc-phone--light { color: var(--cream); }
.mc-phone--dark { color: var(--ink); }

/* =============== 00 TOP BAR =============== */
.topbar { background: var(--black); height: var(--topbar-h); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; position: relative; }
.topbar__founded { color: var(--gold); font-weight: 600; font-size: 13px; white-space: nowrap; }
.topbar__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 24px; font-size: 13px; white-space: nowrap;
}
.topbar__phone-block { display: flex; align-items: center; gap: 7px; color: var(--cream); }
.topbar__phone-icon { width: 14px; height: 14px; }
.topbar__phone-text { margin-left: 3px; }
.topbar__address { color: var(--warm-gray); }
.topbar__socials { display: flex; gap: 16px; transform: translateX(-71.65px); }
.social-icon {
  width: 17.6px; height: 17.6px; background: var(--gold2); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.social-icon img { width: 11px; height: 11px; }

/* =============== 01 HEADER =============== */
.header {
  background: var(--black);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s ease, margin-top .2s ease, border-radius .2s ease;
}
.header.is-stuck {
  margin-top: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  max-width: calc(var(--container-w) + 80px);
  margin-left: auto;
  margin-right: auto;
}
.header__inner { display: flex; align-items: center; height: 100%; gap: 32px; }
.header__logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.header__logo-img { width: 48px; height: 48px; border-radius: 8px; object-fit: contain; }
.header__logo-text { display: flex; flex-direction: column; }
.header__logo-title { font-family: var(--font-display); font-size: 22px; color: var(--gold-light); line-height: 1; }
.header__logo-sub { font-size: 11px; color: var(--warm-gray); margin-top: 4px; }
.header__nav { display: flex; gap: 24px; font-size: 14px; font-weight: 500; color: var(--cream); }
.header__nav a:hover { color: var(--gold); }
.header__cta { flex-shrink: 0; }
.header__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.header__burger span { width: 24px; height: 2px; background: var(--cream); }

/* =============== 02 HERO =============== */
.hero { position: relative; min-height: 653px; display: flex; align-items: center; overflow: hidden; background: #262629; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__tint { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.hero__content { position: relative; z-index: 1; max-width: 700px; padding-top: 60px; padding-bottom: 60px; }
.hero__eyebrow {
  display: inline-block; border: 1px solid var(--gold); border-radius: 20px;
  padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 16px;
}
.hero__badge {
  display: inline-block; background: var(--gold); color: var(--black);
  border-radius: 20px; padding: 8px 16px; font-size: 13px; font-weight: 600; margin: 12px 0;
}
.hero__title { font-family: var(--font-display); font-size: 56px; color: var(--cream); line-height: 1.05; margin: 16px 0; }
.hero__desc { font-size: 16px; color: var(--cream); max-width: 560px; line-height: 1.5; margin-bottom: 28px; }

/* =============== 03 ВІДЕО =============== */
.video-section { background: var(--white); padding: 64px 0 96px; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.video-card {
  background: var(--black2); border-radius: 12px; aspect-ratio: 280/498;
  position: relative; overflow: hidden; cursor: pointer;
}
.video-card__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card__label { position: absolute; left: 16px; bottom: 52px; color: var(--gold2); font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.video-card__title { position: absolute; left: 16px; bottom: 32px; right: 16px; color: var(--white); font-size: 13px; }

/* =============== 04 ПОРІВНЯННЯ =============== */
.compare-section { background: #f6f6f6; padding: 80px 0; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1224px; margin: 64px auto 0; }
.compare-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 12px; padding: 31px; }
.compare-card--gold { border-color: var(--gold2); }
.compare-card__title { font-size: 20px; font-weight: 700; margin-bottom: 32px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; padding: 8px 0; color: var(--ink); }
.mark { font-weight: 600; flex-shrink: 0; }
.mark--bad { color: #bf2e2e; }
.mark--good { color: var(--gold); }

/* =============== 05 ЧОМУ МИ =============== */
.why-us { position: relative; background: #242426; padding: 100px 0; overflow: hidden; }
.why-us__bg-photo { position: absolute; inset: 0; background: var(--black); }
.why-us__inner { position: relative; display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.why-us__stats { display: flex; flex-direction: column; gap: 18px; }
.stat-card { background: #17140f; border-radius: 12px; padding: 20px; }
.stat-card__num { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--gold-light); margin-bottom: 12px; }
.stat-card__desc { font-size: 13px; color: var(--warm-gray); line-height: 1.5; }
.why-us__desc { font-size: 15px; color: var(--warm-gray); line-height: 1.6; margin: 20px 0 24px; max-width: 520px; }

/* =============== 06 ПРОГРАМИ =============== */
.programs { background: var(--white); padding: 90px 0; }
.programs__head-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.stat-badge { background: var(--white); border: 1px solid #e6e6e6; border-radius: 8px; padding: 15px 19px; flex-shrink: 0; min-width: 160px; }
.stat-badge__num { font-family: var(--font-mono); font-weight: 700; font-size: 28px; color: var(--gold2); }
.stat-badge__label { font-size: 12px; color: var(--gray); margin-top: 6px; }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.program-card { background: var(--white); border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; padding-bottom: 24px; }
.program-card__media { position: relative; aspect-ratio: 296/360; overflow: hidden; cursor: pointer; }
.program-card__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.program-card__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.program-card .badge { margin: 16px 19px 0; }
.program-card__title { font-size: 19px; font-weight: 700; margin: 12px 19px 0; }
.program-card__desc { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 8px 19px 0; }

/* =============== 07 АБОНЕМЕНТИ =============== */
.pricing { background: var(--black); padding: 90px 0 70px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.price-card { background: #17140f; border: 1px solid #332c1f; border-radius: 12px; padding: 27px; display: flex; flex-direction: column; }
.price-card--featured { background: #1f1b14; border: 2px solid var(--gold); }
.price-card__title { font-size: 17px; font-weight: 600; color: var(--cream); }
.price-card__price { font-family: var(--font-mono); font-weight: 700; font-size: 30px; color: var(--gold-light); margin-top: 18px; }
.price-card__note { font-size: 12px; color: var(--warm-gray); margin-top: 4px; }
.price-card__features { margin: 20px 0 24px; flex-grow: 1; }
.price-card__features li { font-size: 13px; color: var(--warm-gray); padding: 4px 0; }
.price-card__features li::before { content: "• "; }
.price-card .btn { width: 100%; }
.pricing__footnote { text-align: center; font-size: 12px; color: var(--warm-gray-dim); margin-top: 40px; }

/* =============== 08 БАНЕР =============== */
.banner-cta { position: relative; background: var(--black); padding: 100px 0; text-align: center; overflow: hidden; }
.banner-cta__bg-photo { position: absolute; inset: 0; background: #212124; }
.banner-cta__tint { position: absolute; inset: 0; background: rgba(0,0,0,.3); }
.banner-cta__content { position: relative; max-width: 700px; margin: 0 auto; }
.banner-cta__desc { font-size: 15px; color: var(--warm-gray); margin-top: 20px; line-height: 1.5; }

/* =============== 09 ЗНАЙОМСТВО =============== */
.coach { background: var(--white); padding: 100px 0; }
.coach__inner { display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; }
.coach__bio { font-size: 15px; color: var(--gray); line-height: 1.7; margin: 24px 0 28px; }
.coach__photo { border-radius: 8px; overflow: hidden; aspect-ratio: 500/420; background: #eee; }
.coach__photo img { width: 100%; height: 100%; object-fit: contain; }

/* =============== 10 ЖИВА СТІНА / ЗАЛ СЛАВИ =============== */
.achievements { background: var(--black); padding: 90px 0 100px; }
.age-tabs { display: flex; justify-content: center; gap: 0; margin: 40px 0 48px; }
.age-tab {
  background: none; border: 1px solid #332c1f; color: var(--warm-gray);
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  padding: 10px 24px; border-radius: 20px; margin: 0 4px;
  transition: background .15s ease, color .15s ease;
}
.age-tab--active, .age-tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.achievement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.kid-card, .hof-card { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.kid-card.is-visible, .hof-card.is-visible { opacity: 1; transform: translateY(0); }
.kid-card { background: #1f1b14; border: 1px solid #332c1f; border-radius: 10px; overflow: hidden; padding-bottom: 20px; }
.kid-card__photo { aspect-ratio: 280/350; background: #333; }
.kid-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.kid-card__name { font-size: 15px; font-weight: 600; color: var(--cream); margin: 15px 19px 0; }
.kid-card__meta { font-size: 12px; color: var(--warm-gray); margin: 8px 19px 0; line-height: 1.4; }

.hof { margin-top: 96px; }
.hof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.hof-card {
  background: #1f1b14; border: 1.5px solid var(--gold); border-radius: 14px; padding: 18.5px;
  box-shadow: 0 0 24px rgba(200,160,63,.2);
}
.hof-card__photo { aspect-ratio: 28/33; border-radius: 8px; overflow: hidden; background: #333; }
.hof-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hof-card__name { text-align: center; font-size: 18px; font-weight: 600; color: var(--gold-light); margin-top: 18px; }
.hof-card__desc { text-align: center; font-size: 13px; color: var(--warm-gray); margin-top: 10px; line-height: 1.5; }
.hof-card__note { text-align: center; font-size: 11px; color: var(--warm-gray-dim); margin-top: 12px; }

.achievements__final-cta { margin-top: 96px; max-width: 800px; }
.achievements__final-cta .h2 { margin-bottom: 8px; }

/* =============== 11 ВІДГУКИ (ORBIT) =============== */
.testimonials { background: #f6f6f6; padding: 90px 0 20px; }
.orbit-wrap { position: relative; max-width: var(--container-w); margin: 0 auto; padding: 0 40px 80px; overflow: hidden; }
.orbit { position: relative; height: 460px; }
.orbit__line { position: absolute; left: 80px; top: 80px; width: 1120px; height: 300px; pointer-events: none; z-index: 0; }
.orbit-hit {
  position: absolute; cursor: pointer; z-index: 1;
}
.orbit-card__photo {
  position: absolute; overflow: hidden; background: #d9d9de; border-radius: 50%;
  display: flex; transition: transform .2s ease;
}
.orbit-hit:hover .orbit-card__photo { transform: scale(1.06); }
.orbit-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.orbit-card__photo--placeholder { display: flex; align-items: center; justify-content: center; font-size: 10px; color: #8c8c8f; text-align: center; }
.orbit-card__name {
  position: absolute; transform: translateX(-50%); width: 160px;
  font-size: 13px; font-weight: 600; color: var(--ink); text-align: center;
}
.orbit-card__meta {
  position: absolute; transform: translateX(-50%); width: 160px;
  font-size: 11px; color: var(--gray-light); text-align: center;
}

.orbit-overlay {
  display: none; position: fixed; inset: 0; background: rgba(10,10,12,.7); z-index: 1000;
  align-items: center; justify-content: center; padding: 24px;
}
.orbit-overlay.is-open { display: flex; }
.orbit-overlay__card {
  position: relative; background: rgba(26,26,31,.97); border-radius: 16px; max-width: 900px; width: 100%;
  padding: 48px; display: flex; gap: 40px; align-items: center; max-height: 86vh; overflow-y: auto;
}
.orbit-overlay__close {
  position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 13px; font-family: var(--font-body);
}
.orbit-overlay__photo { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #333; }
.orbit-overlay__photo img { width: 100%; height: 100%; object-fit: cover; }
.orbit-overlay__body h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.orbit-overlay__body p { font-size: 14px; color: rgba(255,255,255,.92); line-height: 1.6; }
.orbit-overlay__author { color: var(--gold2) !important; font-weight: 600; font-size: 13px !important; margin-top: 16px !important; }

.orbit-mobile { display: none; gap: 16px; overflow-x: auto; padding: 0 40px 48px; scroll-snap-type: x proximity; }
.orbit-mobile__card { scroll-snap-align: start; flex: 0 0 120px; text-align: center; cursor: pointer; }
.orbit-mobile__photo { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin: 0 auto; background: #d9d9de; display: flex; align-items: center; justify-content: center; }
.orbit-mobile__photo img { width: 100%; height: 100%; object-fit: cover; }
.orbit-mobile__name { font-size: 13px; font-weight: 600; margin-top: 8px; }
.orbit-mobile__meta { font-size: 11px; color: var(--gray-light); }

/* =============== 12 БЛОГ =============== */
.blog { background: var(--white); padding: 90px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card { border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; padding-bottom: 24px; }
.blog-card__media {
  aspect-ratio: 392/160; background: #d1d1d4; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #8c8c8f; font-weight: 500;
}
.blog-card__title { font-size: 15px; font-weight: 600; margin: 23px 23px 0; line-height: 1.4; }
.blog-card__btn {
  display: inline-block; margin: 24px 23px 0; background: var(--black2); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 12px 20px; border-radius: 4px;
}
.blog__devnote { text-align: center; font-size: 12px; color: var(--warm-gray-dim); margin-top: 32px; }

/* =============== 13 ФІНАЛЬНИЙ CTA =============== */
.final-cta { position: relative; background: #1f1f21; padding: 70px 0; text-align: center; overflow: hidden; }
.final-cta__tint { position: absolute; inset: 0; background: rgba(5,5,8,.55); }
.final-cta__inner { position: relative; max-width: 700px; margin: 0 auto; }
.final-cta__desc { font-size: 15px; color: #c7c7c9; margin-top: 16px; line-height: 1.5; }

/* =============== 14 КОНТАКТИ =============== */
.contact { background: #242426; padding: 100px 0; }
.contact__inner { display: grid; grid-template-columns: 620px 1fr; gap: 120px; }
.contact-form { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label { font-size: 13px; color: var(--warm-gray); }
.field input {
  background: #1a1a1c; border: 1px solid #404042; border-radius: 4px; height: 44px; padding: 0 14px;
  color: var(--cream); font-family: var(--font-body); font-size: 14px;
}
.field input:focus { outline: none; border-color: var(--gold); }
.contact-form__submit { grid-column: 1 / -1; height: 52px; margin-top: 12px; }
.contact__right h3 { font-family: var(--font-body); font-weight: 700; font-size: 20px; color: var(--white); margin-top: 44px; }
.contact__right p { font-size: 14px; color: var(--warm-gray); margin-top: 16px; line-height: 1.5; }
.contact__right .eyebrow { margin-top: 32px; }
.contact__phone { display: block; font-size: 18px; font-weight: 500; color: var(--cream); margin-top: 8px; }
.contact__address { font-size: 14px; color: var(--warm-gray); margin-top: 8px; }
.contact__right .multichannel { margin-top: 24px; }

/* =============== 15 ФУТЕР =============== */
.footer { background: #0f0f11; padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 260px 1fr 1fr 260px; gap: 40px; }
.footer__logo { display: flex; align-items: center; gap: 12px; }
.footer__logo img { width: 40px; height: 40px; border-radius: 6px; }
.footer__logo span { font-family: var(--font-display); font-size: 18px; color: var(--gold2); }
.footer__desc { font-size: 12px; color: #737378; margin-top: 12px; line-height: 1.5; }
.footer__address { font-size: 13px; color: var(--warm-gray); margin-top: 20px; }
.footer__phone { display: block; font-size: 13px; color: var(--cream); font-weight: 500; margin-top: 6px; }
.footer__col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 13px; color: #737378; padding: 6px 0; }
.footer__col a:hover { color: var(--gold2); }
.footer__socials { display: flex; gap: 8px; margin-top: 16px; }
.social-sq { width: 32px; height: 32px; background: var(--gold2); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.social-sq img { width: 18px; height: 18px; }
.footer__bottom {
  display: flex; justify-content: space-between; font-size: 12px; color: #737378;
  border-top: 1px solid #333336; margin-top: 48px; padding: 24px 40px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .video-grid, .program-grid, .pricing-grid, .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner, .coach__inner, .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .hof-grid, .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .programs__head-row { flex-direction: column; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .topbar__address, .topbar__socials { display: none; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__cta { display: none; }
  .hero__title { font-size: 38px; }
  .video-grid, .program-grid, .pricing-grid, .achievement-grid, .footer__inner { grid-template-columns: 1fr; }
  .h2--xl { font-size: 28px; }
  .orbit-overlay__card { flex-direction: column; padding: 32px 24px; text-align: center; }
  .contact-form { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .orbit-wrap { display: none; }
  .orbit-mobile { display: flex; }
}

/* Header mobile menu open state */
.header__nav.is-open {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--black); padding: 16px 24px; gap: 4px;
}
