@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/oswald-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/oswald-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/montserrat-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --orange: #F4521E;
  --orange-light: #FF6B35;
  --yellow: #FFD43B;
  --green: #3DCC7E;
  --blue: #3B9EFF;
  --ink: #342C4A;
  --black: #342C4A;
  --cream: #FFFBF4;
  --sand: #F7F1E8;
  --lilac: #F2EDFF;
  --mint: #E9F8EF;
  --peach: #FFEFE7;
  --butter: #FFF6DC;
  --gray-bg: #F7F1E8;
  --gray-dark: #5A5070;
  --gray-mid: #8A82A0;
  --error: #B32617;
  --white: #FFFFFF;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; overflow-x: hidden; }
a { color: var(--orange); }
a:hover { color: var(--orange-light); }
body { font-family: var(--font-body); background: var(--gray-bg); color: var(--black); overflow-x: hidden; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: var(--cream);
  border-bottom: 2px solid var(--orange);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; letter-spacing: 3px;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.nav-logo-badge {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: white; line-height: 1; text-align: center;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(52,44,74,0.7); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange); color: white;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: 10px 22px; border-radius: 30px;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--orange-light); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 10px; gap: 5px; flex-direction: column;
}
.nav-toggle-bar {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--orange);
    padding: 8px 24px 20px;
    transform: translateY(-120%);
    transition: transform 0.28s ease;
    visibility: hidden;
  }
  .nav-links.is-open { transform: translateY(0); visibility: visible; }
  .nav-links a { display: block; padding: 14px 0; font-size: 15px; }
}

.hero {
  min-height: 100vh; padding-top: 64px;
  background: linear-gradient(115deg, var(--lilac) 0%, var(--peach) 50%, var(--butter) 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 80px 60px;
  position: relative; z-index: 2;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 40% 50% at 78% 28%, rgba(244,82,30,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 34% 40% at 12% 78%, rgba(255,212,59,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 28% 34% at 92% 76%, rgba(61,204,126,0.14) 0%, transparent 60%);
}

.hero-season {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero-season::before {
  content: ''; width: 32px; height: 2px; background: var(--orange);
}

.hero-title { margin-bottom: 12px; }

.hero-title-brand {
  display: block;
  font-family: var(--font-display); font-size: clamp(60px, 8vw, 110px);
  font-weight: 700; line-height: 0.9; letter-spacing: -1px;
  color: var(--ink); text-transform: uppercase;

  padding-bottom: 0.16em;
}

.hero-title .hl-o, .hero-title .hl-o span { color: var(--orange); }
.hero-title .hl-y, .hero-title .hl-y span { color: #F2A100; }
.hero-title .hl-g, .hero-title .hl-g span { color: var(--green); }

.hero-title-sub {
  display: block;
  font-family: var(--font-body); font-size: clamp(18px, 2vw, 26px); font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.3px; text-transform: none;
  color: var(--gray-dark);
  margin-top: 18px;
}

.hero-wave {
  margin: 20px 0 28px;
}

.hero-lead { max-width: 460px; font-size: 16px; line-height: 1.6; color: rgba(52,44,74,0.75); margin-bottom: 24px; text-wrap: pretty; }
.hero-styles {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px;
}
.hero-style-item {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  letter-spacing: 1px; color: rgba(52,44,74,0.62);
  text-transform: lowercase; transition: color 0.2s;
}

.hero-style-item.is-active { color: var(--ink); }

.hero-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange); color: white;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: 16px 36px; border-radius: 40px;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: inline-block; white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1.5px solid rgba(52,44,74,0.25); padding: 15px 28px; border-radius: 40px;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-phone {
  margin-top: 48px; display: flex; align-items: center; gap: 12px;
}
.hero-phone-arrow {
  color: var(--orange); font-size: 22px;
}
.hero-phone-num {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  letter-spacing: 1px; color: var(--ink);
}
.hero-phone-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(52,44,74,0.5);
}

.hero-right {
  position: relative; overflow: hidden;
}

.hero-img-placeholder {
  position: absolute; inset: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}

.hero-big-text {
  font-family: var(--font-display); font-size: clamp(120px, 14vw, 200px);
  font-weight: 700; letter-spacing: -4px; text-transform: uppercase;
  color: rgba(52,44,74,0.06); user-select: none;
  position: absolute; right: -20px; bottom: 40px;
  line-height: 0.85; text-align: right;
}

.hero-badge {
  position: absolute; z-index: 5; bottom: 24px; right: 24px;
  background: var(--orange); border-radius: 50px;
  padding: 14px 24px; text-align: center;
  transform: rotate(-6deg);
  box-shadow: 0 8px 32px rgba(244,82,30,0.45);
}
.hero-badge-line1 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; color: white; text-transform: lowercase;
  font-style: italic; line-height: 1.2;
}

.hero-grid-deco {
  position: absolute; top: 60px; right: 40px;
  display: grid; grid-template-columns: repeat(5, 8px); grid-template-rows: repeat(5, 8px);
  gap: 8px; opacity: 0.15;
}
.hero-grid-deco span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

.hero-blob { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; }
.hero-blob.b1 { width: 380px; height: 380px; background: rgba(244,82,30,0.26); top: 2%; right: -6%; animation: float1 11s ease-in-out infinite; }
.hero-blob.b2 { width: 300px; height: 300px; background: rgba(255,212,59,0.42); bottom: 8%; left: -8%; animation: float2 14s ease-in-out infinite; }
.hero-blob.b3 { width: 260px; height: 260px; background: rgba(61,204,126,0.26); bottom: -6%; left: 38%; animation: float1 17s ease-in-out infinite reverse; }
.hero-blob.b4 { width: 240px; height: 240px; background: rgba(59,158,255,0.22); top: 14%; left: 22%; animation: float2 19s ease-in-out infinite 1s; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(-26px,32px) scale(1.12) } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(30px,-24px) scale(1.08) } }

.hero-photo { position: absolute; top: 6%; left: 0; right: 0; bottom: 6%; display: grid; place-items: center; }

.hero-figures { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; filter: brightness(1.03); }
.fig { transform-box: fill-box; transform-origin: 50% 100%; }

.hero-disc { position: absolute; z-index: 4; top: 8%; right: 6%; width: 104px; height: 104px; }
.hero-disc svg { width: 100%; height: 100%; animation: spin 16s linear infinite; }
@keyframes spin { to { transform: rotate(360deg) } }

.hero-pill { position: absolute; z-index: 4; font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); border-radius: 30px; padding: 7px 16px; box-shadow: 0 8px 20px rgba(52,44,74,0.18); }
.hero-pill.p1 { background: var(--yellow); top: 18%; left: 40%; transform: rotate(-8deg); animation: bob 5s ease-in-out infinite; }
.hero-pill.p2 { background: var(--green); bottom: 26%; right: 4%; transform: rotate(7deg); animation: bob 6.5s ease-in-out infinite 0.6s; }
.hero-pill.p3 { background: var(--blue); color: #fff; bottom: 12%; left: 44%; transform: rotate(5deg); animation: bob 7.5s ease-in-out infinite 1.2s; }
@keyframes bob { 0%,100% { translate: 0 0 } 50% { translate: 0 -12px } }

section { padding: 96px 60px; }

.section-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--orange); }

.section-title {
  font-family: var(--font-display); font-size: clamp(42px, 5vw, 64px);
  font-weight: 700; letter-spacing: -1px; text-transform: uppercase;
  line-height: 0.95; margin-bottom: 48px;
}

.directions-section, .branches-section { padding: 96px 0; }

.directions-section {
  background: var(--cream); color: var(--ink);
}

.directions-section .section-title { color: var(--ink); }
.directions-section .section-title span { color: var(--ink); }
.directions-section .section-label { color: var(--orange); }

.directions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 24px;
}

.direction-card {
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: filter 0.25s, transform 0.25s;
  cursor: default; position: relative; overflow: hidden;
}

.direction-card:nth-child(1) { background: var(--peach); }
.direction-card:nth-child(2) { background: var(--mint); }
.direction-card:nth-child(3) { background: var(--butter); }

.direction-card::after {
  content: ''; position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  top: -60px; right: -60px; opacity: 0.18;
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.direction-card:nth-child(1)::after { background: var(--orange); }
.direction-card:nth-child(2)::after { background: var(--green); }
.direction-card:nth-child(3)::after { background: var(--yellow); }

.direction-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  transition: width 0.35s ease;
  z-index: 1;
}
.direction-card:nth-child(1)::before { background: var(--orange); }
.direction-card:nth-child(2)::before { background: var(--green); }
.direction-card:nth-child(3)::before { background: var(--yellow); }

.direction-card:hover::after { opacity: 0.22; transform: scale(1.15); }
.direction-card:hover::before { width: 100%; }

.dir-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; color: rgba(52,44,74,0.65); position: relative; z-index: 1;
}

.dir-name {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  letter-spacing: 0px; text-transform: lowercase; color: var(--ink);
  line-height: 1; position: relative; z-index: 1;
}

.dir-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
  position: relative; z-index: 1;
}
.dir-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px; padding: 4px 12px;
}
.direction-card:nth-child(1) .dir-tag, .direction-card:nth-child(1) .dir-tag span { color: #A32E08; border-color: rgba(163,46,8,0.4); border-width: 1px; border-style: solid; }
.direction-card:nth-child(2) .dir-tag, .direction-card:nth-child(2) .dir-tag span { color: #14713C; border-color: rgba(20,113,60,0.4); border-width: 1px; border-style: solid; }
.direction-card:nth-child(3) .dir-tag, .direction-card:nth-child(3) .dir-tag span { color: #7A5A00; border-color: rgba(122,90,0,0.45); border-width: 1px; border-style: solid; }

.dir-desc {
  font-size: 13px; color: rgba(52,44,74,0.78); line-height: 1.6;
  margin-top: auto; position: relative; z-index: 1;
}

.dir-ages {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 1px;
  position: relative; z-index: 1;
}
.direction-card:nth-child(1) .dir-ages, .direction-card:nth-child(1) .dir-ages span { color: #A32E08; }
.direction-card:nth-child(2) .dir-ages, .direction-card:nth-child(2) .dir-ages span { color: #14713C; }
.direction-card:nth-child(3) .dir-ages, .direction-card:nth-child(3) .dir-ages span { color: #7A5A00; }

.ticker { background: var(--sand); border-top: 3px solid var(--orange); border-bottom: 3px solid var(--orange); overflow: hidden; padding: 16px 0; }
.ticker-track { display: flex; gap: 0; width: max-content; animation: tick 270s linear infinite; }
.ticker-group { display: flex; gap: 40px; padding-right: 40px; flex-shrink: 0; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.ticker-item { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 40px; }
.ticker-item i { font-style: normal; width: 12px; height: 12px; border-radius: 50%; display: inline-block; }

.insta-section { background: var(--white); position: relative; overflow: hidden; padding: 110px 60px; }
.insta-section::before { content:''; position:absolute; top:-140px; left:-100px; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(255,212,59,0.22) 0%, transparent 70%); }
.insta-section::after { content:''; position:absolute; bottom:-160px; right:-120px; width:460px; height:460px; border-radius:50%; background: radial-gradient(circle, rgba(59,158,255,0.16) 0%, transparent 70%); }
.insta-inner { position: relative; z-index: 1; max-width: 680px; }
.insta-text { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: rgba(52,44,74,0.72); text-wrap: pretty; margin: 0 0 32px; }
.insta-link { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; color: var(--ink); text-decoration: none; padding: 16px 28px; border: 2px solid var(--ink); border-radius: 999px; transition: background .22s, color .22s, transform .22s; }
.insta-link svg { display: block; }
.insta-link .insta-arrow { transition: transform .22s; }
.insta-link:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.insta-link:hover .insta-arrow { transform: translateX(5px); }

.free-banner {
  background: linear-gradient(100deg, var(--orange) 0%, #e83c6a 45%, #a03cd6 100%);
  padding: 96px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.free-banner-text {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -1px; text-transform: uppercase;
  color: white; line-height: 0.95;
}
.free-banner-text em {
  font-style: italic; display: block;
  font-size: 0.65em; font-weight: 400; letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
}

.btn-white {
  background: white; color: #C43C10;
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; padding: 24px 54px; border-radius: 50px;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
  text-decoration: none; display: inline-block;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28), 0 0 0 0 rgba(255,255,255,0.55);
  animation: pulseBtn 2.4s ease-out infinite;
}
.btn-white:hover { background: var(--ink); color: white; transform: translateY(-3px) scale(1.03); animation: none; box-shadow: 0 18px 40px rgba(0,0,0,0.32); }
@keyframes pulseBtn {
  0% { box-shadow: 0 14px 34px rgba(0,0,0,0.28), 0 0 0 0 rgba(255,255,255,0.55) }
  70% { box-shadow: 0 14px 34px rgba(0,0,0,0.28), 0 0 0 18px rgba(255,255,255,0) }
  100% { box-shadow: 0 14px 34px rgba(0,0,0,0.28), 0 0 0 0 rgba(255,255,255,0) }
}

.schedule-section {
  background: var(--gray-bg);
  position: relative; overflow: hidden;
}
.schedule-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,82,30,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.schedule-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,204,126,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.schedule-tabs {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.sched-tab {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  background: white; color: var(--ink);
  border: 1.5px solid rgba(52,44,74,0.18); border-radius: 30px;
  padding: 8px 20px; cursor: pointer; transition: all 0.2s;
}
.sched-tab:hover { border-color: var(--orange); color: var(--orange); }

.sched-tab.is-active { color: white; border-color: transparent; }
.sched-tab.is-active[data-branch-tab="sportivnaya"] { background: var(--orange); }
.sched-tab.is-active[data-branch-tab="malinovka"]   { background: var(--green); }
.sched-tab.is-active[data-branch-tab="dzerzhinsk"]  { background: #c9a800; }
.sched-tab.is-active[data-branch-tab="turgeneva"]   { background: var(--blue); }
.sched-tab.is-active[data-branch-tab="instkult"]    { background: #8B5CD6; }

.sched-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

[data-branch-panel][hidden] { display: none; }

.sched-day-block {
  background: white; border-radius: 4px; overflow: hidden;
}
.sched-day-header {
  background: var(--orange); padding: 14px 20px;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: white;
  display: flex; align-items: center; justify-content: space-between;
}
.sched-day-header span, .sched-day-header span span { color: rgba(255,255,255,0.8); font-size: 12px; }
.sched-day-block:nth-child(2) .sched-day-header { background: #1E9757; }

.sched-rows { padding: 4px 0; }
.sched-note { padding: 22px 20px; font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }
.sched-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sched-row:last-child { border-bottom: none; }

.sched-time {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--black); min-width: 60px; letter-spacing: 0.5px;
}
.sched-info { flex: 1; }
.sched-style {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  letter-spacing: 1px; color: var(--black); text-transform: lowercase;
}
.sched-age {
  font-size: 11px; color: var(--gray-mid); letter-spacing: 1px;
  text-transform: uppercase;
}
.sched-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  flex-shrink: 0;
}
.sched-dot.green  { background: var(--green); }
.sched-dot.yellow { background: var(--yellow); }
.sched-dot.blue   { background: var(--blue); }

.branches-section { background: white; }
.branches-section > div:first-child .section-title, .directions-section > div:first-child .section-title { margin-bottom: 0; }
.branches-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
}

.branch-card {
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  padding: 40px 40px;
  display: flex; flex-direction: column; gap: 10px;
  transition: filter 0.2s; position: relative; overflow: hidden;
  background: var(--sand);
}
.branch-card:nth-child(1) { background: var(--peach); }
.branch-card:nth-child(2) { background: var(--mint); }
.branch-card:nth-child(3) { background: var(--butter); }
.branch-card:nth-child(4) { background: var(--lilac); }
.branch-card:nth-child(5) { background: var(--peach); }
.branch-card::before {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  bottom: -60px; right: -40px; opacity: 0.12;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.branch-card:nth-child(1)::before { background: var(--orange); }
.branch-card:nth-child(2)::before { background: var(--green); }
.branch-card:nth-child(3)::before { background: var(--yellow); }
.branch-card:nth-child(4)::before { background: var(--blue); }
.branch-card:nth-child(5)::before { background: var(--orange); }
.branch-card:hover::before { opacity: 0.22; transform: scale(1.2); }

.branch-arrow:focus-visible { outline: 3px solid var(--ink); outline-offset: -6px; }
.branch-card:hover .branch-arrow { gap: 14px; }

.branch-arrow {
  background: none; border: none; font: inherit; cursor: pointer; text-align: left; padding: 0;
  margin-top: auto; padding-top: 20px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
  transition: gap 0.25s ease;
}

.branch-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
}

.branch-card:nth-child(1) .branch-location-label { color: var(--orange); }
.branch-card:nth-child(2) .branch-location-label { color: var(--green); }
.branch-card:nth-child(3) .branch-location-label { color: #A47C00; }
.branch-card:nth-child(4) .branch-location-label { color: var(--blue); }
.branch-card:nth-child(5) .branch-location-label { color: var(--orange); }

.branch-card:nth-child(1) .branch-divider { background: var(--orange); }
.branch-card:nth-child(2) .branch-divider { background: var(--green); }
.branch-card:nth-child(3) .branch-divider { background: var(--yellow); }
.branch-card:nth-child(4) .branch-divider { background: var(--blue); }
.branch-card:nth-child(5) .branch-divider { background: var(--orange); }

.branch-card:nth-child(1) .branch-arrow { color: var(--orange); }
.branch-card:nth-child(2) .branch-arrow { color: var(--green); }
.branch-card:nth-child(3) .branch-arrow { color: #c9a800; }
.branch-card:nth-child(4) .branch-arrow { color: var(--blue); }
.branch-card:nth-child(5) .branch-arrow { color: var(--orange); }
.branch-location-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
}
.branch-name {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  letter-spacing: -1px; text-transform: uppercase; line-height: 0.95;
  color: var(--black);
}
.branch-address {
  font-family: var(--font-display); font-size: 14px; letter-spacing: 1px;
  color: var(--gray-mid); text-transform: uppercase;
}
.branch-divider {
  width: 40px; height: 2px; background: var(--orange); margin: 8px 0;
}
.branch-styles {
  display: flex; flex-direction: column; gap: 3px;
}
.branch-style {
  font-family: var(--font-display); font-size: 17px; font-weight: 400;
  letter-spacing: 0.5px; color: rgba(52,44,74,0.65); text-transform: lowercase;
}
.branch-days {
  margin-top: 8px; font-size: 12px; color: var(--gray-mid);
  letter-spacing: 1px; text-transform: uppercase; line-height: 1.7;
}
.branch-extra { font-family: var(--font-body); font-size: 12px; line-height: 1.6; color: rgba(52,44,74,0.55); margin-top: 4px; }

.signup-section {
  background: linear-gradient(160deg, var(--lilac) 0%, var(--cream) 100%); color: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.signup-section .section-label { color: var(--orange); }
.signup-section .section-title { color: var(--ink); }

.signup-info-list {
  display: flex; flex-direction: column; gap: 20px; margin-top: 16px;
}
.signup-info-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.signup-info-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--orange); letter-spacing: 1px; min-width: 24px; padding-top: 2px;
}
.signup-info-item:nth-child(2) .signup-info-num { color: var(--green); }
.signup-info-item:nth-child(3) .signup-info-num { color: #A47C00; }
.signup-info-text {
  font-size: 14px; line-height: 1.6; color: rgba(52,44,74,0.7);
}
.signup-info-text strong { color: var(--ink); font-weight: 700; }

.form-wrap {
  background: white; border-radius: 14px; padding: 40px;
  box-shadow: 0 20px 50px rgba(52,44,74,0.10);
}
.form-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(52,44,74,0.5); margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%; padding: 14px 18px;
  background: var(--sand);
  border: 1.5px solid rgba(52,44,74,0.14);
  border-radius: 8px; color: var(--ink);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.2s; outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus { border-color: var(--orange); }
.form-input.is-invalid { border-color: var(--error); background: #FDF2F0; }
.form-error {
  margin-top: 6px; font-size: 12px; line-height: 1.4;
  color: var(--error);
}
.form-input::placeholder { color: rgba(52,44,74,0.35); }
.form-select option { background: #fff; color: var(--ink); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-form {
  width: 100%; background: var(--orange); color: white;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: 18px; border-radius: 40px;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.btn-form:hover { background: var(--orange-light); transform: translateY(-1px); }

.form-note {
  font-size: 11px; color: rgba(52,44,74,0.62); text-align: center;
  margin-top: 14px; line-height: 1.5;
}

footer {
  background: var(--sand); color: var(--ink);
  border-top: 3px solid var(--orange);
  padding: 96px 60px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  letter-spacing: 3px; color: var(--ink); margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(52,44,74,0.6); line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.footer-top > div:nth-child(2) .footer-col-title { color: var(--green); }
.footer-top > div:nth-child(3) .footer-col-title { color: #A47C00; }
.footer-top > div:nth-child(4) .footer-col-title { color: var(--blue); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(52,44,74,0.65); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--orange); }
.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.social-btn svg { display: block; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(52,44,74,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(52,44,74,0.65); font-size: 14px; text-decoration: none;
  transition: all 0.2s;
}
.social-btn:nth-child(1):hover { border-color: var(--orange); color: var(--orange); }
.social-btn:nth-child(2):hover { border-color: var(--blue); color: var(--blue); }
.social-btn:nth-child(3):hover { border-color: var(--green); color: var(--green); }

.footer-legal { font-size: 12px; line-height: 1.7; color: rgba(52,44,74,0.45); margin-bottom: 24px; }
.footer-legal br { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(52,44,74,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 12px; color: rgba(52,44,74,0.62); letter-spacing: 1px;
}

.form-success {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; text-align: center;
  min-height: 200px; padding: 20px;
}
.form-success-icon {
  width: 60px; height: 60px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.form-success-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  letter-spacing: 1px; color: var(--ink);
}
.form-success-sub {
  font-size: 13px; color: rgba(52,44,74,0.6); line-height: 1.6;
}

.wave-deco { color: var(--orange); }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

html:not(.js) [data-branch-panel][hidden] { display: grid !important; }
html:not(.js) .schedule-tabs { display: none !important; }
html:not(.js) [data-branch-panel]::before {
  content: attr(data-branch-title);
  grid-column: 1 / -1;
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--orange);
  margin-top: 24px;
}

.form-nojs { display: none; }
html:not(.js) #signup-form { display: none; }
html:not(.js) .form-nojs { display: block; }
.form-nojs-text { font-size: 15px; line-height: 1.6; color: var(--gray-dark); margin-bottom: 20px; }
.form-nojs-phone {
  display: inline-block; font-family: var(--font-display);
  font-size: 26px; letter-spacing: 1px; color: var(--ink); text-decoration: none;
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }

  section { padding: 40px 24px; }
  .directions-section, .branches-section { padding: 40px 0; }
  .form-wrap { padding: 16px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }

  .hero-pill, .hero-disc, .hero-badge { display: none; }
  .hero-left { padding: 60px 24px; }
  .directions-grid { grid-template-columns: 1fr; }
  .sched-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .signup-section { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .free-banner { padding: 40px 24px; }
  footer { padding: 40px 24px 32px; }
  .insta-section { padding: 40px 24px; }
  .insta-text { font-size: 16px; }
  .ticker-item { font-size: 22px; }

  .btn-primary { white-space: normal; }
}

@media (max-width: 480px) {
  nav { padding: 0 14px; }
  .nav-logo { font-size: 18px; letter-spacing: 1px; gap: 6px; }
  .nav-cta { font-size: 11px; letter-spacing: 0.5px; padding: 9px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-blob, .hero-pill, .hero-disc svg, .ticker-track, .btn-white { animation: none !important; }
}
