

:root {
  
  --chalk: #FFFFFF;         
  --chalk-dim: #F4F5F7;     
  --navy: #323338;          
  --navy-mid: #F4F5F7;      
  --green: #36BD47;         
  --green-hover: #2EA83D;   
  --green-deep: #17812A;    
  --green-dark: #12691F;
  --green-tint: #EDFAEF;    
  --lime: #36BD47;          
  --lime-dark: #2EA83D;
  --coral: #36BD47;
  --line: #E3E5E9;          
  --line-dark: #E3E5E9;
  --ink: #323338;
  --ink-soft: #56585F;      
  --cream-soft: #6B6D75;    

  
  --f-display: 'GrtskPeta', 'Manrope', Arial, sans-serif;
  --f-body: 'GrtskPeta', 'Manrope', Arial, sans-serif;
  --f-mono: 'GrtskPeta', 'Manrope', Arial, sans-serif;

  
  --radius: 30px;
  --radius-sm: 14px;
  --gap-section: clamp(56px, 7vw, 104px);
  --container: 94vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  font-size: 15px; font-weight: 500;
}
.skip-link:focus { left: 0; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--chalk);
  color: var(--ink);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

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

h1, h2, h3 {
  font-family: var(--f-display);
  overflow-wrap: break-word;
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-weight: 600; }
h2 { font-weight: 500; }
h3 { font-weight: 600; }

p { margin: 0; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 18px;
  padding: 16px 34px;
  min-height: 58px;
  border-radius: 30px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--green); color: var(--ink); font-weight: 500; }
.btn-primary:hover { background: var(--green-hover); }

.btn-lime { background: var(--green); color: var(--ink); font-weight: 500; }
.btn-lime:hover { background: var(--green-hover); }

.btn-ghost-light { background: var(--ink); color: #fff; border-color: transparent; }
.btn-ghost-light:hover { background: #1F2024; }

.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--chalk-dim); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--chalk);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 30px;
  padding-top: 8px; padding-bottom: 6px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; grid-row: 1 / span 2; }
.brand-logo { height: 84px; width: 227px; flex-shrink: 0; display: block; }
.footer-logo { height: 52px; width: auto; margin-bottom: 18px; }

.header-info {
  display: flex; align-items: center; gap: 26px;
  grid-column: 2; grid-row: 1;
  padding-left: 30px; border-left: 1px solid var(--line);
  align-self: stretch;
}

.hi-hours { margin-left: auto; }
.hi-item { display: flex; align-items: baseline; gap: 9px; }
.hi-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); flex-shrink: 0;
}
.hi-value { font-size: 17px; font-weight: 400; color: var(--ink); white-space: nowrap; }
.hi-address .hi-value { position: relative; padding-left: 17px; }
.hi-address .hi-value::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 11px; height: 14px; background: var(--green-deep);
  clip-path: path("M5.5 0C2.5 0 0 2.5 0 5.5C0 9.6 5.5 14 5.5 14S11 9.6 11 5.5C11 2.5 8.5 0 5.5 0ZM5.5 7.6C4.3 7.6 3.4 6.7 3.4 5.5S4.3 3.4 5.5 3.4S7.6 4.3 7.6 5.5S6.7 7.6 5.5 7.6Z");
}
.hi-hours .hi-value { position: relative; padding-left: 15px; }
.hi-hours .hi-value::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}

.header-actions { display: flex; align-items: center; gap: 22px; grid-column: 3; grid-row: 1 / span 2; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.header-phone .hp-num {
  font-family: var(--f-body); font-weight: 600; font-size: 21px;
  letter-spacing: -0.01em; white-space: nowrap; color: var(--ink);
}
.header-actions .btn-primary { min-height: 46px; padding: 11px 26px; font-size: 16px; }

nav.main-nav {
  display: flex; gap: 0; justify-content: space-between;
  font-size: 17px; font-weight: 500;
  grid-column: 2; grid-row: 2;
  margin-top: 0; padding-top: 2px; padding-left: 30px;
  border-left: 1px solid var(--line);
  align-self: stretch; align-items: center;
}
nav.main-nav a { flex: 1; text-align: center; }
nav.main-nav a:first-child { text-align: left; }
nav.main-nav a:last-child { text-align: right; }
nav.main-nav a { position: relative; padding: 3px 22px; }

nav.main-nav a + a { border-left: 1px solid var(--line); }
nav.main-nav a::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: -10px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}

nav.main-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.nav-phone-mobile { display: none; }

@media (max-width: 1700px) {
  .brand-logo { height: 70px; width: 189px; }
  .hi-value { font-size: 16px; }
  nav.main-nav { font-size: 16px; }
}
@media (max-width: 1520px) { .hi-hours { display: none; } }
@media (max-width: 1340px) {
  .brand-logo { height: 62px; width: 168px; }
  .hi-value { font-size: 15.5px; }
  .header-info, nav.main-nav { padding-left: 22px; }
  .site-header .wrap { gap: 2px 20px; }
  .header-actions { gap: 16px; }
}
@media (max-width: 1180px) {
  
  .site-header .wrap { grid-template-columns: auto 1fr; grid-template-rows: auto; }
  .brand { grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; justify-content: flex-end; }
  nav.main-nav {
    grid-column: 1 / -1; grid-row: 2;
    padding-left: 0; border-left: none;
    margin-top: 8px; padding-top: 9px; border-top: 1px solid var(--line);
    justify-content: center;
  }
}
@media (max-width: 1080px) {
  .header-phone { display: none; }
  .header-actions .btn-primary { display: none; }
  .header-actions { justify-content: flex-end; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 52px; width: 141px; }

  nav.main-nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--chalk); border-top: none;
    border-bottom: 1px solid var(--line);
    padding: 8px 28px 22px; margin-top: 0;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 49; box-shadow: 0 18px 30px rgba(50,51,56,0.08);
  }
  nav.main-nav a { padding: 13px 0; border-left: none; border-bottom: 1px solid var(--line); font-size: 17px; }
  nav.main-nav a:last-child { border-bottom: none; }
  nav.main-nav a::after { display: none; }
  nav.main-nav.nav-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav-phone-mobile { display: block; font-weight: 600; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 520px) { .brand-logo { height: 42px; width: 114px; } }

section { padding: var(--gap-section) 0; }

@media (max-width: 620px) {
  #korty-preview, #infra-preview, #akcii, #faq {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

section[id], [id="turniry"], [id="karta"] { scroll-margin-top: 96px; }
@media (max-width: 1080px) { section[id] { scroll-margin-top: 78px; } }

.section-navy { background: var(--chalk-dim); color: var(--ink); }
.section-navy .eyebrow { color: var(--ink-soft); }
.section-navy .eyebrow::before { background: var(--green); }

.section-head { max-width: 70ch; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(27px, 3.2vw, 48px); letter-spacing: -0.025em; }
.section-head p.lede { margin-top: 18px; font-size: 17px; font-weight: 300; color: var(--ink-soft); }
.section-navy .section-head p.lede { color: var(--ink-soft); }

.tag {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  display: inline-block;
}
.section-navy .tag { border-color: #D8DBE0; }

footer.site-footer {
  background: var(--chalk-dim);
  color: var(--ink-soft);
  padding: 64px 0 36px;
  border-top: 1px solid var(--line);
}
footer.site-footer .cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
footer.site-footer h4 {
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  color: var(--ink); margin-bottom: 16px; letter-spacing: 0;
}
footer.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
footer.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 13.5px; color: var(--ink-soft);
  flex-wrap: wrap; gap: 10px;
}
@media (max-width: 760px) {
  footer.site-footer .cols { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  footer.site-footer { padding: 32px 0 20px; }
  footer.site-footer .cols { gap: 26px; padding-bottom: 26px; }
  footer.site-footer h4 { margin-bottom: 10px; font-size: 14px; }
  footer.site-footer ul { gap: 8px; font-size: 14px; }
  .footer-legal { padding: 16px 0 4px; gap: 12px; }
  .footer-legal .btn { min-height: 40px; padding: 9px 18px; font-size: 13.5px; }
  .footer-legal p { font-size: 12.5px; }
  footer.site-footer .bottom { padding-top: 14px; font-size: 12px; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--chalk-dim);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}

.card-navy { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.card-navy p { color: var(--ink-soft); }
a.card-navy { transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
a.card-navy:hover, a.card-navy:focus-visible {
  transform: translateY(-4px); border-color: var(--green);
  box-shadow: 0 14px 28px rgba(50,51,56,0.07);
}

.num { font-family: var(--f-body); font-weight: 600; }

[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal="stagger"].is-in > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].is-in > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal="stagger"].is-in > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal="stagger"].is-in > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal="stagger"].is-in > *:nth-child(4) { transition-delay: 0.26s; }

.hero {
  background: var(--chalk);
  color: var(--ink);
  padding: 48px 0 0;
  overflow: hidden;
}
@media (max-width: 620px) {
  
  .hero { padding-top: 20px; }
}
.hero-top {
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(340px, 26vw, 460px);
  align-items: start; gap: 48px; margin-bottom: 30px;
}
@media (max-width: 1080px) {
  .hero-top { grid-template-columns: 1fr; }
}
.hero-callback {
  background: var(--chalk-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  width: 100%;
}
.hero-callback .eyebrow { color: var(--ink); }
.hero-callback p { margin: 14px 0 18px; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.hero-callback .form-fields { flex-direction: row; gap: 10px; }
.hero-callback input { flex: 1; min-width: 0; }
.hero-callback .btn { white-space: nowrap; }
.hero-callback .form-success { font-size: 15px; }
@media (max-width: 620px) {
  .hero-callback .form-fields { flex-direction: column; }
}

.hero-title {
  font-size: clamp(32px, 3.9vw, 60px);
  font-weight: 600;
  max-width: 22ch;
  line-height: 1.1;
}

.hero-title .lime-underline {
  background: linear-gradient(transparent 62%, var(--green) 62%);
  padding: 0 2px;
}

.hero-title--split { display: flex; flex-direction: column; max-width: none; }
.ht-line { display: block; }
.ht-line--accent { color: var(--green); }
.ht-sub {
  display: block; margin-top: 10px;
  font-size: clamp(15px, 1.3vw, 19px); font-weight: 400; line-height: 1.4;
  color: var(--ink-soft);
}
.hero-sub {
  max-width: 56ch;
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 22px;
}
.hero-cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 34px; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta-item { font-size: 15px; color: var(--ink-soft); }
.hero-meta-item strong { display: block; font-weight: 600; color: var(--ink); font-size: 16px; margin-bottom: 4px; }

.promo-strip { height: 12px; background: var(--ink); }

.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.usp-card:hover {
  transform: translateY(-4px); border-color: var(--green);
  box-shadow: 0 14px 28px rgba(50,51,56,0.07);
}
.usp-card .usp-icon { width: 40px; height: 40px; margin-bottom: 18px; }
.usp-card h3 { font-size: 20px; margin-bottom: 10px; }
.usp-card p { font-size: 15.5px; color: var(--ink-soft); }
@media (max-width: 900px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .usp-grid { grid-template-columns: 1fr; } }

.booking-panel {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.booking-info { background: #fff; padding: 44px; }
.booking-visual { background: var(--chalk-dim); color: var(--ink); padding: 44px; }
.price-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.booking-info .price-row { border-color: var(--line); }
.price-row .num { font-size: 16px; font-weight: 600; }
.status-note {
  margin-top: 22px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--green-tint); border: 1px solid #BEE7C4;
  font-size: 14.5px; color: #14601F; line-height: 1.55;
}
@media (max-width: 860px) { .booking-panel { grid-template-columns: 1fr; } }

.booking-subhead { font-size: 19px; font-weight: 500; margin-bottom: 18px; }
.service-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.service-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 15.5px; font-weight: 300;
}
.service-list li:last-child { border-bottom: none; }
.service-list .svc-note { color: var(--ink-soft); font-size: 14.5px; white-space: nowrap; }
.service-list .svc-note a { color: var(--green-deep); font-weight: 500; }
.svc-schedule-note {
  margin-top: 18px; font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--ink-soft);
}

.price-cancel {
  margin-top: 16px; font-size: 14.5px; font-weight: 300; line-height: 1.55; color: var(--ink-soft);
}
.price-cancel a { color: var(--green-deep); font-weight: 500; text-decoration: underline; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-size: 13px; font-weight: 600; letter-spacing: 0; text-transform: none;
  background: var(--green-deep); color: #fff; padding: 6px 13px; border-radius: 999px;
}

.lead-block {
  background: var(--chalk-dim); color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 46px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.lead-block p { color: var(--ink-soft); }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.form-fields input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--ink);
  font-family: var(--f-body); font-size: 16px;
}
.form-fields input::placeholder { color: #9A9CA3; }
.form-fields input:focus-visible { outline: 2px solid var(--green); outline-offset: 1px; }

.form-consent { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.form-consent a { text-decoration: underline; }
.form-success {
  display: none; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 600;
}
.form-success .check {
  width: 32px; height: 32px; border-radius: 50%; background: var(--green-deep); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700;
}
@media (max-width: 800px) { .lead-block { grid-template-columns: 1fr; } }

.quiz-block {
  background: var(--chalk-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .quiz-block { grid-template-columns: 1fr; } }
.quiz-includes h3 { font-size: 20px; margin-bottom: 14px; }
.quiz-includes ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.quiz-includes li { position: relative; padding-left: 30px; font-size: 16px; color: var(--ink-soft); }
.quiz-includes li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-deep); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.quiz-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
.quiz-step { display: none; }
.quiz-step.is-current { display: block; }
.quiz-question { font-family: var(--f-display); font-size: clamp(20px, 2.4vw, 27px); font-weight: 600; line-height: 1.2; margin-bottom: 22px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 17px 20px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; font-size: 16.5px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.quiz-option:hover { border-color: #C9CCD2; background: #FAFBFC; }
.quiz-option input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-option .mark {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #C9CCD2; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.18s ease;
}
.quiz-option .mark::after {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: var(--green); transform: scale(0); transition: transform 0.18s ease;
}
.quiz-option.is-picked { border-color: var(--green); background: var(--green-tint); }
.quiz-option.is-picked .mark { border-color: var(--green); }
.quiz-option.is-picked .mark::after { transform: scale(1); }
.quiz-nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.quiz-counter { margin-left: auto; font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.quiz-back {
  background: #E8E9EB; color: #5C5E64; border: none;
  border-radius: 999px; padding: 15px 28px;
  font-family: var(--f-body); font-size: 17px; font-weight: 500; cursor: pointer;
  transition: background 0.18s ease;
}
.quiz-back:hover { background: #D2D2D2; }
.quiz-done { display: none; }
.quiz-done.is-current { display: block; }
.quiz-summary {
  background: var(--chalk-dim); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 20px; font-size: 15px; color: var(--ink-soft);
}
.quiz-summary strong { color: var(--ink); font-weight: 600; }

.zone-section { padding: clamp(52px, 6vw, 96px) 0; }
.zone {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
.zone--reverse .zone-media { order: 2; }
@media (max-width: 980px) {
  .zone { grid-template-columns: 1fr; }
  .zone--reverse .zone-media { order: 0; }
}
.zone-text h2 { font-size: clamp(26px, 3vw, 44px); margin: 16px 0 22px; }
.zone-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.zone-list li {
  position: relative; padding-left: 34px;
  font-size: 16.5px; font-weight: 300; line-height: 1.5; color: var(--ink-soft);
}
.zone-list li strong { font-weight: 500; color: var(--ink); }
.zone-list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-deep); color: #fff;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.section-navy .zone-list li strong { color: var(--ink); }
.zone-note {
  font-size: 15px; font-weight: 300; line-height: 1.55; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm); padding: 15px 18px; margin-bottom: 24px;
}
.zone-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.zone-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.photo-slot {
  position: relative; overflow: hidden;
  background: #F1F3F0; border: none; border-radius: var(--radius);
  min-height: 150px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px 18px; text-align: left;
  color: #5C5E64; font-size: 13px;
}

.photo-slot::before {
  content: ""; position: absolute; inset: 14% 12%;
  border: 2px solid rgba(54,189,71,0.55); border-radius: 4px;
  background:
    linear-gradient(to right, rgba(54,189,71,0.5) 0 2px, transparent 2px) center/50% 100% no-repeat,
    linear-gradient(to bottom, rgba(54,189,71,0.32) 0 2px, transparent 2px) center/100% 50% no-repeat;
}
.photo-slot::after {
  content: ""; position: absolute; right: -18%; top: -34%;
  width: 58%; height: 150%; transform: rotate(-19deg);
  background: rgba(54,189,71,0.09);
}
.photo-slot > * { position: relative; z-index: 1; }
.photo-slot--big { grid-column: 1 / -1; min-height: 280px; }
.photo-slot span { display: block; font-weight: 500; background: rgba(255,255,255,0.86); border-radius: 8px; padding: 7px 11px; }
.photo-slot small { display: block; margin-top: 5px; font-weight: 300; font-size: 12.5px; opacity: 0.85; }
.section-navy .photo-slot { background: #FFFFFF; }

.map-section { padding: clamp(52px, 6vw, 96px) 0; }
.map-more-link {
  display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 500;
  color: var(--green-deep);
}

@media (max-width: 620px) {
  .map-section { padding: 28px 0; }
  .map-section .lede { margin-top: 8px; font-size: 14px; line-height: 1.5; }
  .map-wrap iframe { height: 220px !important; }
  .map-actions { margin-top: 14px; }
}
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); line-height: 0;
}
.map-wrap iframe { display: block; border: 0; }
.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.book-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 130;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px; padding: 16px 32px;
  background: var(--green); color: var(--ink);
  font-family: var(--f-body); font-size: 18px; font-weight: 500;
  border-radius: 30px;
  box-shadow: 0 14px 30px rgba(50,51,56,0.22);
  transition: background 0.2s ease, transform 0.18s ease;
}
.book-float:hover { background: var(--green-hover); transform: translateY(-2px); }

@media (max-width: 1080px) { .book-float { display: none; } }

.footer-legal {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 24px 0 4px; flex-wrap: wrap;
}
.footer-legal p {
  font-size: 13.5px; font-weight: 300; line-height: 1.6; color: var(--ink-soft);
  max-width: 720px; margin: 0;
}
.footer-legal .btn { min-height: 46px; padding: 11px 26px; font-size: 15px; }

.hero-meta-line {
  margin-top: 28px; font-size: 15px; font-weight: 300; color: var(--ink-soft);
}
.hero-meta-line a { font-weight: 500; color: var(--ink); }

@media (max-width: 620px) {
  .btn {
    white-space: normal; text-align: center;
    font-size: 16px; padding: 14px 22px; min-height: 52px;
    max-width: 100%;
  }
  .map-actions, .zone-cta, .hero-cta-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .map-actions .btn, .zone-cta .btn, .hero-cta-row .btn { width: 100%; }
  .zone-media { grid-template-columns: 1fr; }
  .promo-banners, .booking-panel, .grid-2, .grid-3, .usp-grid { grid-template-columns: 1fr; }
  .promo-banner, .booking-info, .booking-visual { padding: 26px 20px; }
  .promo-figure { font-size: 46px; }
  .footer-legal { gap: 14px; }
  .footer-legal .btn { width: auto; }
}

.promo-banners, .booking-panel, .zone, .zone-media, .grid-2, .grid-3, .usp-grid, .map-actions { min-width: 0; }
.promo-banners > *, .booking-panel > *, .zone > *, .zone-media > * { min-width: 0; }

.mobile-cta { display: none; }
@media (max-width: 1080px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(8px);
  }
  
  .mobile-cta a, .mobile-cta button {
    display: flex; align-items: center; justify-content: center;
    height: 46px; border-radius: 999px;
    font-family: var(--f-body); font-size: 16px; font-weight: 600;
    cursor: pointer; border: 1.5px solid var(--ink);
  }
  .mobile-cta__call { background: #fff; color: var(--ink); }
  .mobile-cta__book { background: var(--green); color: var(--ink); border-color: var(--green); }
  
  footer.site-footer { padding-bottom: 94px; }
}

.hero-action {
  display: flex; align-items: center; gap: clamp(22px, 3vw, 46px);
  margin-top: 32px; flex-wrap: wrap;
}

.hero-cta-row2 { display: flex; gap: 10px; flex-wrap: nowrap; }
.hero-cta-row2 .btn {
  flex: 1 1 0; min-width: 0; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 620px) {
  .hero-cta-row2 .btn {
    font-size: 13.5px; padding: 12px 6px; min-height: 46px;
  }
}
.hero-perks {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: clamp(18px, 2.2vw, 34px); flex-wrap: wrap;
}
.hero-perks li { display: flex; align-items: center; gap: 14px; max-width: 260px; }
.perk-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; background: var(--green-tint); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.perk-icon svg { width: 30px; height: 30px; }
.perk-text { display: block; font-size: 13.5px; font-weight: 300; line-height: 1.4; color: var(--ink-soft); }
.perk-text b { display: block; font-size: 15.5px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
@media (max-width: 620px) {
  
  .hero-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-perks li { flex-direction: column; align-items: center; text-align: center; gap: 6px; max-width: none; }
  .perk-icon svg { width: 26px; height: 26px; }
  .perk-text { font-size: 11px; line-height: 1.25; }
  .perk-text b { font-size: 12.5px; margin-bottom: 1px; }
}

.hero-banner-rotator { position: relative; margin: 44px 0 0; }
.hero-banner-rotator .hero-banner { margin-top: 0; display: none; }
.hero-banner-rotator .hero-banner.is-active { display: block; }
.hero-banner-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 10px;
}
.hero-banner-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--line);
  transition: background 0.2s ease;
}
.hero-banner-dots span.is-active { background: var(--green); }

.hero-banner {
  position: relative; overflow: hidden; display: block;
  border-radius: 10px;
  background: #1D1E22; color: #fff;
  min-height: 300px;
  padding: clamp(26px, 3vw, 44px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 620px) {
  .hero-banner { min-height: 0; aspect-ratio: 1.91 / 1; padding: 16px 18px; display: flex; align-items: center; }
  .hero-banner .hb-kicker, .hero-banner .hb-note { display: none; }
  .hero-banner .hb-title { font-size: 19px; }
  .hero-banner .hb-sub { margin-top: 8px; font-size: 12px; }
}
.hero-banner:hover { transform: translateY(-3px); box-shadow: 0 20px 38px rgba(50,51,56,0.2); }
.hero-banner::after {
  content: ""; position: absolute; right: -14%; top: -30%;
  width: 62%; height: 170%; background: var(--green);
  transform: rotate(-19deg); z-index: 0;
}
.hero-banner__text { position: relative; z-index: 2; display: block; max-width: 58%; }
@media (max-width: 700px) { .hero-banner__text { max-width: 100%; } .hero-banner::after { opacity: 0.3; } }
.hb-kicker {
  display: inline-block; margin-bottom: 16px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green);
}
.hb-title {
  display: block; font-size: clamp(26px, 3.4vw, 46px); font-weight: 500; font-style: italic;
  line-height: 1.05; letter-spacing: -0.03em;
}
.hb-title b { font-weight: 600; color: var(--green); font-style: italic; }
.hb-sub {
  display: block; margin-top: 18px; font-size: clamp(13px, 1.1vw, 16px); font-weight: 500;
  line-height: 1.35; letter-spacing: 0.01em; color: rgba(255,255,255,0.9);
}
.hb-sub i { font-weight: 300; font-style: italic; color: rgba(255,255,255,0.72); }
.hb-note { display: block; margin-top: 20px; font-size: 14px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.6); }

.hero-banner__photo {
  position: absolute; z-index: 1; right: 5%; bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-align: right;
}
.hero-banner__photo em { font-style: normal; font-size: 12px; font-weight: 500; }
.hero-banner__photo small { display: none; }
@media (max-width: 700px) { .hero-banner__photo { display: none; } }

.section-head--wide { max-width: none; margin-bottom: 34px; }
.h2-split { font-size: clamp(28px, 3.6vw, 52px); font-weight: 500; letter-spacing: -0.03em; }
.h2-split span { color: var(--green-deep); }

.promo-banners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1200px) { .promo-banners { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .promo-banners { grid-template-columns: 1fr; } }

.promo-banners { grid-template-columns: minmax(0, 1fr); max-width: 420px; }

.promo-flips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
@media (max-width: 760px) { .promo-flips { grid-template-columns: 1fr; } }
.promo-flip {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  background: var(--chalk-dim);
  display: flex; flex-direction: column;
}
.promo-flip__media {
  aspect-ratio: 16 / 9;
  background: #1D1E22; color: rgba(255,255,255,0.42);
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
}
.promo-flip__body { padding: 18px 20px 20px; }
.promo-flip__toggle {
  display: flex; width: 100%; align-items: flex-start; justify-content: space-between;
  gap: 12px; background: none; border: none; padding: 0; margin: 0;
  text-align: left; cursor: pointer; font-family: var(--f-body); color: inherit;
}
.pf-title { display: block; font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.pf-short { display: block; margin-top: 4px; font-size: 13.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.35; }
.promo-flip__toggle .plus {
  font-size: 20px; font-weight: 400; color: var(--ink-soft); flex-shrink: 0;
  transition: transform 0.25s ease;
}
.promo-flip.is-open .promo-flip__toggle .plus { transform: rotate(45deg); }

.promo-flip__more { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.promo-flip.is-open .promo-flip__more { max-height: 400px; }
.promo-flip__more p { margin: 12px 0 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.promo-flip__cta { margin-top: 14px; width: 100%; }

.price-lead {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; margin-bottom: 20px;
  background: var(--chalk-dim); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); transition: border-color 0.2s ease, transform 0.18s ease;
}
.price-lead:hover { border-color: var(--green); transform: translateY(-2px); }
.price-lead__text { font-size: 18px; font-weight: 500; }
.price-lead__text b { color: var(--green-deep); font-weight: 700; }
.price-lead__arrow { font-size: 20px; color: var(--green); flex-shrink: 0; }
@media (max-width: 620px) {
  .price-lead { padding: 16px 18px; }
  .price-lead__text { font-size: 15px; }
}

.promo-flip--price { margin-bottom: 20px; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13.5px; }
.price-table td { padding: 7px 0; border-bottom: 1px solid var(--line); }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.price-table tr:last-child td { border-bottom: none; }

@media (max-width: 620px) {
  .promo-flip__body { padding: 14px 16px 16px; }
  .pf-title { font-size: 15.5px; }
  .pf-short { font-size: 12.5px; }
  .promo-flip__cta { min-height: 42px; font-size: 14.5px; padding: 10px 16px; }
}

.promo-card {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
  border: none; border-radius: 10px;
  padding: clamp(22px, 2.4vw, 34px);
  display: flex; flex-direction: column; justify-content: flex-end;
  text-align: left; cursor: pointer;
  font-family: var(--f-body);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(50,51,56,0.16); }
.promo-card:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.promo-card::after {
  content: ""; position: absolute; right: -22%; bottom: -32%;
  width: 92%; height: 118%;
  transform: rotate(-19deg);
  z-index: 0;
}
.promo-card__logo { position: relative; z-index: 2; height: 26px; width: auto; margin-bottom: auto; }
.promo-card__body { position: relative; z-index: 2; display: block; }

.promo-card__slot {
  position: absolute; z-index: 1; top: 16px; right: 18px;
  font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
  opacity: 0.42; white-space: nowrap;
}

.pc-title {
  display: block; font-size: clamp(20px, 2vw, 28px); font-weight: 500;
  line-height: 1.08; letter-spacing: -0.02em; font-style: italic;
}
.pc-title b { font-weight: 600; font-style: italic; }
.pc-title--sm { font-size: clamp(18px, 1.7vw, 24px); margin-top: 18px; }
.pc-sub {
  display: block; margin-top: 14px; font-size: 14px; font-weight: 500;
  line-height: 1.35; letter-spacing: 0.01em;
}
.pc-sub i { font-weight: 300; font-style: italic; }
.pc-note { display: block; margin-top: 16px; font-size: 13.5px; font-weight: 300; font-style: italic; }
.pc-list { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; align-items: baseline; }
.pc-list em { font-size: 15px; font-weight: 600; font-style: normal; letter-spacing: -0.01em; }
.pc-list span { font-size: 13px; font-weight: 300; }

.promo-card--dark { background: #1D1E22; color: #fff; }
.promo-card--dark::after { background: var(--green); opacity: 0.9; }
.promo-card--dark .pc-title b { color: var(--green); }
.promo-card--dark .pc-sub { color: rgba(255,255,255,0.86); }
.promo-card--dark .pc-note { color: rgba(255,255,255,0.6); }

.promo-card--light { background: #F1F3F0; color: var(--ink); }
.promo-card--light::after { background: rgba(54,189,71,0.14); }
.promo-card--light .pc-list em { color: #12691F; }
.promo-card--light .pc-list span { color: var(--ink-soft); }

.promo-card--green { background: var(--green); color: var(--ink); }
.promo-card--green::after { background: rgba(29,30,34,0.12); }
.promo-card--green .pc-sub { color: rgba(50,51,56,0.85); }
.promo-card--green .pc-note { color: rgba(50,51,56,0.7); }

.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(50,51,56,0.55); }
.modal__box {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  width: 100%; max-width: 480px;
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 30px 60px rgba(50,51,56,0.22);
}
.modal__box h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 12px; }
.modal__box > p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 22px; line-height: 1.55; }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  font-size: 20px; line-height: 1; color: var(--ink-soft);
  cursor: pointer;
}
.modal__close:hover { background: var(--chalk-dim); color: var(--ink); }
body.modal-lock { overflow: hidden; }

.cookie-bar[hidden] { display: none !important; }
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 18px clamp(16px, 3vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -10px 30px rgba(50,51,56,0.18);
}
.cookie-bar__text { max-width: 760px; }
.cookie-bar__text p { font-size: 14.5px; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.86); }
.cookie-bar__text b { font-weight: 500; color: #fff; }
.cookie-bar__link { margin-top: 6px; }
.cookie-bar__link a { color: var(--green); text-decoration: underline; }
.cookie-bar__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cookie-toggle {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,0.86); cursor: pointer;
}
.cookie-toggle input { width: 18px; height: 18px; accent-color: var(--green); }
.cookie-bar .btn { min-height: 46px; padding: 11px 24px; font-size: 15.5px; }
.cookie-bar .btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,0.4); background: transparent; }
.cookie-bar .btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.cookie-bar:not([hidden]) ~ .book-float { bottom: 130px; }
@media (max-width: 900px) {
  .cookie-bar { flex-direction: column; align-items: stretch; gap: 14px; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .cookie-bar__actions { justify-content: space-between; }
}

.header-cab {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  white-space: nowrap; transition: border-color 0.2s ease, background 0.2s ease;
}
.header-cab:hover { border-color: var(--green); background: var(--green-tint); }
.nav-cab-mobile { display: none; }
@media (max-width: 1700px) {
  .header-cab { display: none; }
  .nav-cab-mobile { display: block; font-weight: 500; }
}
@media (max-width: 1080px) {
  .header-cab { display: none; }
  .nav-cab-mobile { display: block; font-weight: 500; }
}

.cab-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .cab-grid { grid-template-columns: 1fr; } }
.cab-login {
  background: var(--chalk-dim); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.cab-hint { font-size: 15px; font-weight: 300; line-height: 1.55; color: var(--ink-soft); margin-bottom: 20px; }
.cab-msg { font-size: 14.5px; color: var(--ink-soft); min-height: 20px; }
.cab-msg--bad { color: #8E2B20; }

.cab-area[hidden] { display: none !important; }
.cab-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.cab-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
@media (max-width: 700px) { .cab-stats { grid-template-columns: 1fr; } }
.cab-stat {
  background: var(--chalk-dim); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; font-size: 14px; font-weight: 300; color: var(--ink-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.cab-stat b { font-size: 26px; font-weight: 500; color: var(--ink); }
.cab-subhead { font-size: 19px; font-weight: 500; margin: 0 0 16px; }
.cab-item {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 12px; flex-wrap: wrap;
}
.cab-when { font-size: 17.5px; font-weight: 500; margin-bottom: 6px; }
.cab-meta { font-size: 14.5px; font-weight: 300; color: var(--ink-soft); margin-bottom: 3px; }
.cab-meta b { font-weight: 500; color: var(--ink); font-family: var(--f-body); }
.cab-badge {
  display: inline-block; margin-left: 8px; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500; background: #FFF6DF; color: #6B5B12;
}
.cab-badge--ok { background: var(--green-tint); color: #14601F; }
.cab-badge--off { background: #F4F5F7; color: var(--ink-soft); }
.cab-cancel { min-height: 46px; padding: 11px 24px; font-size: 15px; }
.cab-empty { font-size: 15px; font-weight: 300; color: var(--ink-soft); }
.cab-empty a { color: var(--green-deep); font-weight: 500; }

.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .news-list { grid-template-columns: 1fr; } }
.news-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.news-date {
  font-size: 13px; font-weight: 500; color: var(--green-deep);
  letter-spacing: 0.02em; margin-bottom: 12px;
}
.news-item h3 { font-size: 19px; margin-bottom: 10px; }
.news-item p { font-size: 15px; font-weight: 300; line-height: 1.55; color: var(--ink-soft); }

.faq-a > p { margin: 0 0 14px; }
.faq-a > p:last-child { margin-bottom: 0; }
.blog-note {
  margin-top: 28px; font-size: 15px; color: var(--ink-soft);
  font-family: var(--f-body);
}

.faq-list { display: flex; flex-direction: column; }

.faq-topics { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 8px; max-width: 420px; }
.faq-topic-btn { width: 100%; text-align: left; }

.faq-topic-btn {
  padding: 12px 18px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--chalk-dim); font-family: var(--f-body); font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.faq-topic-btn.active { background: var(--navy); color: var(--chalk); border-color: var(--navy); }
.faq-topic-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-topic-panel.is-open { max-height: 3000px; margin-top: 10px; }

.faq-topic-panel .faq-q { font-size: 13.5px; font-weight: 400; padding: 14px 0; }
.faq-topic-panel .faq-q .plus { font-size: 18px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 24px 0; cursor: pointer; font-weight: 600; font-size: 18px;
  background: none; border: none; text-align: left; font-family: var(--f-body); color: var(--ink);
}
.faq-q:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; border-radius: 4px; }
.faq-q .plus { font-size: 22px; font-weight: 400; color: var(--ink-soft); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  font-size: 16px; color: var(--ink-soft); line-height: 1.65;
}
.faq-item.is-open .faq-a { max-height: 1600px; padding-bottom: 26px; }

.breadcrumbs { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumbs a { color: var(--green-deep); }
.geo-hero {
  background: var(--chalk-dim); color: var(--ink); padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.route-list { display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.route-item {
  display: flex; align-items: baseline; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.route-item .num { color: var(--green-deep); font-size: 16px; min-width: 26px; font-weight: 600; }

.day-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.day-picker .dnum { font-weight: 600; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.legend { font-size: 14px; color: var(--ink-soft); }
.sel-info { font-size: 16px; }
.code { font-family: 'Manrope', monospace; font-weight: 600; }
.msg { font-size: 15px; }
.err { color: #C4362A; }
.done { color: var(--green); }
.chk { flex-shrink: 0; }
.pr { font-weight: 600; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.bform { display: flex; flex-direction: column; gap: 14px; }
.grid-wrap { display: grid; gap: 20px; }

@media (max-width: 1180px) {
  
  .site-header .wrap {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto auto;
    row-gap: 2px;
    padding-top: 6px; padding-bottom: 5px;
  }
  .brand { grid-column: 1; grid-row: 1; align-self: center; }

  .header-info { display: contents; }
  .header-actions { display: contents; }

  .nav-toggle { grid-column: 2; grid-row: 1; justify-self: end; align-self: center; }

  .hi-hours {
    grid-column: 2; grid-row: 2; justify-self: end; margin-left: 0;
    display: flex; text-align: right;
  }
  .hi-item { gap: 5px; }
  .hi-label { font-size: 9.5px; }
  .hi-value { font-size: 12px; white-space: normal; line-height: 1.3; }

  .header-phone {
    grid-column: 2; grid-row: 3; justify-self: end;
    display: flex; flex-direction: column; align-items: flex-end; gap: 0;
  }
  
  .header-phone .hi-label { display: none; }
  .header-phone .hp-num { font-size: 14.5px; }

  .header-cab {
    grid-column: 2; grid-row: 4; justify-self: end;
    display: inline-flex; margin-top: 3px;
    padding: 4px 11px; font-size: 12px;
  }
  
  .header-actions .btn-primary { display: none; }

  .hi-address {
    grid-column: 1 / -1; grid-row: 5; margin-top: 4px;
  }

  nav.main-nav { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .hero .wrap { display: flex; flex-direction: column; }
  .hero-top { display: contents; }
  .hero-banner { order: 1; }
  .hero-callback { order: 2; margin-top: 30px; }
}

@media (max-width: 1180px) {
  
  .site-header .wrap {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 2px;
    padding-top: 5px; padding-bottom: 5px;
  }
  .brand { grid-column: 1; grid-row: 1; align-self: center; }
  .nav-toggle { grid-column: 2; grid-row: 1; justify-self: end; align-self: center; }

  
  .hi-hours { display: none; }
  .header-cab { display: none; }

  
  .hi-address {
    grid-column: 1 / -1; grid-row: 2;
    margin-top: 2px;
  }
  .hi-address .hi-label { display: none; }
  .hi-address .hi-value { font-size: 12.5px; line-height: 1.25; }

  .header-phone {
    grid-column: 2; grid-row: 1; justify-self: end;
    align-self: center; margin-right: 46px;
    display: flex; flex-direction: row; align-items: center; gap: 0;
  }
  .header-phone .hp-num { font-size: 14px; }
}

.hero-callback { display: none !important; }

.hero-top { grid-template-columns: 1fr; }

@media (min-width: 1181px) {
  .hero-title {
    max-width: none;
    white-space: nowrap;
    font-size: min(2.8vw, 44px);
  }
}

@media (max-width: 1080px) {
  .hero-action { order: 2; margin-top: 26px; }
}
@media (max-width: 620px) {
  
  .hero-banner-rotator { margin-top: 22px; }
  .hero-action { flex-direction: column; align-items: stretch; margin-top: 16px; gap: 12px; }
  .hero-cta-row2 { width: 100%; }
  .hero-perks { margin-top: 0; width: 100%; }
}

.site-header { transition: transform 0.28s ease; will-change: transform; }
.site-header.hdr-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}

@media (max-width: 620px) {
  .hero-title { font-size: 27px; }
}

a[href^="tel:"] {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
a[href^="tel:"]:hover { text-decoration-thickness: 2px; }

.header-phone { text-decoration: none; }
.header-phone .hp-num {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.header-phone .hp-num::before {
  content: ""; flex-shrink: 0;
  width: 15px; height: 15px;
  background: var(--green-deep);
  clip-path: path("M4.2 1C3 1 2 2 2 3.2c0 5.4 4.4 9.8 9.8 9.8 1.2 0 2.2-1 2.2-2.2 0-.5-.2-.9-.5-1.2l-1.9-1.4c-.4-.3-1-.2-1.3.2l-.7.9c-1.4-.7-2.6-1.9-3.3-3.3l.9-.7c.4-.3.5-.9.2-1.3L5.4 1.5C5.1 1.2 4.7 1 4.2 1Z");
}
.header-phone:hover .hp-num { text-decoration-color: var(--green-deep); }

@media (max-width: 1180px) {
  .header-phone .hp-num::before { width: 13px; height: 13px; }
}

.promo-flips--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1000px) { .promo-flips--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .promo-flips--3 { grid-template-columns: 1fr; } }

.promo-banners--2 { grid-template-columns: 1fr 1fr; max-width: 860px; }
@media (max-width: 760px) { .promo-banners--2 { grid-template-columns: 1fr; max-width: 420px; } }

.hero-banner--image { padding: 0; min-height: 0; aspect-ratio: 16 / 9; background: #1D1E22; }
.hero-banner--image::after { display: none; }
.hero-banner--image img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 620px) { .hero-banner--image { aspect-ratio: 16 / 9; } }

.hero-cta-row2 .btn { font-size: 15px; padding: 13px 26px; letter-spacing: 0; }
@media (max-width: 620px) {
  .hero-cta-row2 .btn { font-size: 14px; padding: 12px 20px; }
}

.pf-subhead { margin: 14px 0 0; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pf-bullets { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 7px; }
.pf-bullets li {
  position: relative; padding-left: 18px;
  font-size: 13.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.4;
}
.pf-bullets li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.pf-short--extra { margin-top: 6px; font-size: 12.5px; }

.promo-flip.is-open .promo-flip__more { max-height: 1200px; }

.promo-banners--2 .pc-title { font-size: clamp(30px, 3.6vw, 46px); }
.promo-banners--2 .pc-sub { font-size: clamp(14px, 1.3vw, 18px); }
.promo-banners--2 .promo-card { justify-content: center; }

.faq-topic-btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-plus { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform 0.25s ease; }
.faq-topic-btn.active .faq-plus { transform: rotate(45deg); }

.site-header.hdr-hidden { transform: none; }

.brand-logo { height: 96px; width: 260px; }
.header-phone .hp-num { font-size: 18px; }
.hi-value { font-size: 15px; }
@media (max-width: 1180px) {
  .brand-logo { height: 68px; width: 184px; }
  .hi-value { font-size: 11px; }
  .hi-address { justify-self: end; text-align: right; }
  .header-phone .hp-num { font-size: 15px; }
}
@media (max-width: 620px) {
  .brand-logo { height: 60px; width: 162px; }
}
@media (max-width: 520px) {
  .brand-logo { height: 54px; width: 146px; }
}

.tour-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .tour-list { grid-template-columns: 1fr; } }
.tour-card {
  display: grid; grid-template-columns: 96px 1fr; gap: 0 18px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--chalk-dim);
  padding: 20px;
}
.tour-card__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--green); border-radius: 8px; padding: 12px 6px; text-align: center;
}
.tc-day { font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1; }
.tc-mon { margin-top: 6px; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(50,51,56,0.75); }
.tc-level { display: inline-block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green-deep); font-weight: 600; }
.tc-title { margin: 6px 0 0; font-size: 18px; font-weight: 600; }
.tc-desc { margin: 6px 0 0; font-size: 13.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.45; }
.tc-price { display: block; margin-top: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.tour-card__cta { grid-column: 1 / -1; display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.tour-card__cta .btn { flex: 1 1 140px; }

.coach-slider { position: relative; padding: 0 46px; }
@media (max-width: 620px) { .coach-slider { padding: 0 34px; } }
.coach-track { display: flex; gap: 18px; overflow: hidden; scroll-behavior: smooth; }
.coach-card {
  flex: 0 0 calc((100% - 36px) / 3);
  display: flex; flex-direction: column; text-align: left;
  border: 1px solid var(--line); border-radius: 10px; background: var(--chalk-dim);
  padding: 0 0 18px; overflow: hidden; cursor: pointer;
  font-family: var(--f-body); color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 1000px) { .coach-card { flex: 0 0 calc((100% - 18px) / 2); } }
@media (max-width: 700px) { .coach-card { flex: 0 0 100%; } }
.coach-card:hover { transform: translateY(-3px); border-color: var(--green); }
.coach-photo {
  aspect-ratio: 4 / 5; background: #1D1E22; color: rgba(255,255,255,0.42);
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
}
.coach-name { margin: 16px 20px 0; font-size: 17px; font-weight: 600; }
.coach-desc { margin: 6px 20px 0; font-size: 13.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.45; }
.coach-cta { margin: 14px 20px 0; font-size: 13.5px; font-weight: 600; color: var(--green-deep); }
.coach-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--chalk); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer; z-index: 3;
}
.coach-arrow:hover { border-color: var(--green); }
.coach-arrow--prev { left: 0; }
.coach-arrow--next { right: 0; }
.coach-dots { display: flex; gap: 7px; justify-content: center; margin-top: 18px; }
.coach-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.coach-dots span.is-active { background: var(--green); }

.first-game { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; max-width: 760px; }
.first-game li {
  position: relative; padding-left: 30px;
  font-size: 15px; font-weight: 300; color: var(--ink-soft); line-height: 1.5;
}
.first-game li b { font-weight: 600; color: var(--ink); }
.first-game li::before {
  content: ""; position: absolute; left: 2px; top: 5px;
  width: 14px; height: 8px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.first-game__note { margin: 20px 0 16px; font-size: 14px; font-weight: 300; color: var(--ink-soft); max-width: 760px; }
#pervaya-igra .btn { max-width: 340px; }

.modal-coach { margin: 8px 0 0; font-size: 13.5px; font-weight: 600; color: var(--green-deep); }

.nav-toggle, .coach-arrow, .mobile-cta__book, .modal__close { font-family: var(--f-body); }

.site-header .wrap { gap: 2px 22px; padding-top: 4px; padding-bottom: 4px; }
.brand-logo { height: 100px; width: 270px; }
.header-phone .hp-num { font-size: 16px; }
.header-actions .btn-primary { min-height: 42px; padding: 10px 20px; font-size: 15px; }
.site-header .hi-address .hi-value { font-size: 14px; white-space: nowrap; }
.hi-address .hi-label { display: none; }
.hi-hours { display: none; }
.header-info { justify-self: stretch; }
@media (max-width: 1180px) {
  .brand-logo { height: 76px; width: 205px; }
  .site-header .hi-address .hi-value { font-size: 11.5px; white-space: normal; }
  
  .site-header .hi-address { min-width: 0; max-width: 100%; }
  .site-header .hi-address .hi-value { min-width: 0; overflow-wrap: break-word; }
  .site-header .wrap { grid-template-columns: auto minmax(0, 1fr); }
}
@media (max-width: 620px) {
  .brand-logo { height: 56px; width: 151px; }
}
@media (max-width: 520px) {
  .brand-logo { height: 50px; width: 135px; }
}

.promo-strip { display: none; }
.site-header { border-bottom: 12px solid var(--ink); }

.hero-banner { aspect-ratio: 16 / 9; min-height: 0; }
@media (max-width: 620px) { .hero-banner { aspect-ratio: 16 / 9; } }
.hero-banner-rotator { position: relative; }
.hero-banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; z-index: 4;
  border: none; background: rgba(255,255,255,0.88); color: var(--ink);
  font-family: var(--f-body); font-size: 24px; line-height: 1; cursor: pointer;
  box-shadow: 0 4px 14px rgba(50,51,56,0.18);
}
.hero-banner-arrow:hover { background: #fff; }
.hero-banner-arrow--prev { left: 10px; }
.hero-banner-arrow--next { right: 10px; }
@media (max-width: 620px) {
  .hero-banner-arrow { width: 32px; height: 32px; font-size: 20px; }
  .hero-banner-arrow--prev { left: 6px; }
  .hero-banner-arrow--next { right: 6px; }
}

.hero-cta-row2 .btn { flex: 1 1 0; min-width: 0; text-align: center; justify-content: center; }

.coach-cta.btn { display: block; margin: 14px 20px 0; padding: 11px 18px; font-size: 14px; text-align: center; }

.faq-topic-btn { font-size: 15px; font-weight: 600; }
.faq-topic-panel .faq-q { font-size: 15px; font-weight: 500; padding: 16px 0; }
.faq-topic-panel .faq-q .plus { font-size: 20px; }
.faq-a { font-size: 14.5px; line-height: 1.6; }

.modal__box--wide { max-width: 620px; }
.info-body p { margin: 0 0 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.info-body ul { list-style: none; margin: 4px 0 14px; padding: 0; display: grid; gap: 9px; }
.info-body li { position: relative; padding-left: 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.info-body li b { color: var(--ink); font-weight: 600; }
.info-body li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.info-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.info-cta .btn { flex: 1 1 180px; justify-content: center; text-align: center; }

.is-hidden-0309 { display: none !important; }

@media (max-width: 1180px) {
  .site-header .wrap { padding-top: 3px; padding-bottom: 0; }
  .brand { grid-row: 1 / -1; align-self: center; }
  .site-header .brand-logo { height: 58px; width: auto; max-width: 58vw; }
  .nav-toggle { grid-column: 2; grid-row: 1; align-self: center; }
  .header-phone { grid-column: 2; grid-row: 1; margin-right: 44px; align-self: center; }
  .site-header .header-phone .hp-num { font-size: 12.5px; }
  .hi-address { grid-column: 2; grid-row: 2; justify-self: end; margin: 0 0 4px; }
  
  .site-header .hi-address .hi-value { font-size: 10px; line-height: 1.2; text-align: right; white-space: nowrap; }
}
@media (max-width: 520px) {
  .site-header .brand-logo { height: 56px; max-width: 56vw; }
  .site-header .header-phone .hp-num { font-size: 11.5px; }
  .site-header .hi-address .hi-value { font-size: 9px; }
}

.hi-value--short { display: none; }
@media (max-width: 1180px) {
  .hi-value--full { display: none; }
  .hi-value--short { display: inline; }
}

.promo-flip__media { position: relative; overflow: hidden; }
.promo-flip__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

.tour-photo { border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.tour-photo img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.promo-card--photo { justify-content: flex-end; }
.promo-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.promo-card--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(29,30,34,0.15) 0%, rgba(29,30,34,0.78) 100%);
}
.promo-card--photo::after { display: none; }
.promo-card--photo .promo-card__body { position: relative; z-index: 2; }
.promo-card--photo.promo-card--green .pc-title,
.promo-card--photo.promo-card--green .pc-sub,
.promo-card--photo.promo-card--green .pc-note { color: #fff; }
.promo-card--photo.promo-card--green .pc-title b { color: var(--green); }
.promo-card--photo .pc-sub i, .promo-card--photo .pc-note { color: rgba(255,255,255,0.78); }

@media (max-width: 1180px) {
  .site-header .wrap { padding-left: 0; column-gap: 10px; }
  .site-header .brand { margin-left: 0; padding-left: 0; }
  .site-header .hi-address { padding-right: 0; }
  .site-header nav.main-nav { padding-left: 18px; padding-right: 18px; }
}

.tour-photo img { height: auto; aspect-ratio: 16 / 9; object-fit: cover; }

@media (max-width: 1180px) {
  .site-header .wrap { width: 100%; max-width: none; margin: 0; padding-left: 0; padding-right: 14px; }
}

@media (max-width: 1180px) {
  .site-header .wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
    column-gap: 8px;
    padding-top: 0; padding-bottom: 0;
  }
  .site-header .brand {
    grid-column: 1; grid-row: 1 / -1;
    display: flex; align-items: center; justify-content: flex-start;
  }
  .site-header .nav-toggle {
    grid-column: 3; grid-row: 1 / -1;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    align-self: stretch; justify-self: end;
    width: 40px; height: auto; margin: 0;
  }
  .site-header .header-phone {
    grid-column: 2; grid-row: 1;
    align-self: end; justify-self: center;
    margin: 0; padding-bottom: 2px;
  }
  .site-header .hi-address {
    grid-column: 2; grid-row: 2;
    align-self: start; justify-self: center;
    margin: 0; padding-top: 2px; max-width: 100%;
  }
  .site-header .hi-address .hi-value { white-space: normal; word-break: break-word; }
  .site-header .hi-address .hi-value { text-align: center; }
  .site-header .header-cab { display: none; }
  .site-header .hi-hours { display: none; }
}

@media (max-width: 340px) {
  .site-header .wrap { column-gap: 4px; padding-right: 6px; }
  .site-header .nav-toggle { width: 30px; }
  .site-header .brand-logo { max-width: 46vw; }
}

@media (max-width: 1180px) {
  .site-header .nav-toggle { width: 42px; gap: 5px; }
  .site-header .nav-toggle span { height: 2.5px; }

  .site-header .header-phone {
    align-self: center;
    padding-bottom: 0;
  }
  .site-header .header-phone .hp-num { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }

  .site-header .hi-address {
    align-self: center;
    padding-top: 0;
  }
  .site-header .hi-address .hi-value { font-size: 11px; font-weight: 500; }
}
@media (max-width: 340px) {
  .site-header .nav-toggle { width: 36px; }
  .site-header .header-phone .hp-num { font-size: 12.5px; }
  .site-header .hi-address .hi-value { font-size: 9.5px; }
}

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

.hero-banner-rotator { padding: 0 46px; }
@media (max-width: 620px) { .hero-banner-rotator { padding: 0 34px; } }
.hero-banner-arrow {
  background: var(--chalk); border: 1px solid var(--line); box-shadow: none;
  width: 38px; height: 38px; font-size: 22px; color: var(--ink);
}
.hero-banner-arrow:hover { border-color: var(--green); background: var(--chalk); }
.hero-banner-arrow--prev { left: 0; }
.hero-banner-arrow--next { right: 0; }
@media (max-width: 620px) {
  .hero-banner-arrow { width: 30px; height: 30px; font-size: 19px; }
  .hero-banner-arrow--prev { left: 0; }
  .hero-banner-arrow--next { right: 0; }
}

.h2-split, .h2-split span { color: var(--green-deep); }

@media (min-width: 1181px) {
  nav.main-nav { font-size: 15px; gap: 0; padding-left: 18px; }
  nav.main-nav a { white-space: nowrap; padding: 3px 12px; }
}
@media (min-width: 1181px) and (max-width: 1500px) {
  nav.main-nav { font-size: 13.5px; padding-left: 12px; }
  nav.main-nav a { padding: 3px 8px; }
}
