[hidden]{display:none !important;}
/*
  Sevhwarang live baseline stylesheet
  Baseline source: hosting export from 2026-04-07
  Maintenance scheme (comment structure only, CSS behavior unchanged):
  01. base / variables
  02. header / nav
  03. homepage sections
  04. trainers
  05. article / info
  06. utilities
  07. media queries
*/

/* ===== 01. base / variables ===== */
/* Reset, design tokens, global element defaults, container and section spacing */
*{box-sizing:border-box}
:root{
  --bg:#f7f5f2;
  --paper:#ffffff;
  --ink:#17273d;
  --muted:#63768b;
  --line:#e7dfd6;
  --primary:#b3201d;
  --primary-dark:#981b18;
  --blue:#15335c;
  --shadow:0 18px 48px rgba(21,51,92,.08);
  --radius:28px;
}
html{scroll-behavior:smooth}
@view-transition{navigation:auto}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
}
@media (prefers-reduced-motion:no-preference){
  ::view-transition-old(root){
    animation:sevhwarang-view-old .22s cubic-bezier(.22,1,.36,1) both;
  }
  ::view-transition-new(root){
    animation:sevhwarang-view-new .3s cubic-bezier(.22,1,.36,1) both;
  }
  @keyframes sevhwarang-view-old{
    from{opacity:1;transform:none;filter:none}
    to{opacity:0;transform:translateY(-8px);filter:blur(2px)}
  }
  @keyframes sevhwarang-view-new{
    from{opacity:0;transform:translateY(12px);filter:blur(2px)}
    to{opacity:1;transform:none;filter:none}
  }
}
@media (prefers-reduced-motion:reduce){
  ::view-transition-old(root),
  ::view-transition-new(root){
    animation-duration:.01ms;
    animation-timing-function:linear;
  }
}
@media (prefers-reduced-motion:no-preference){
  .motion-enhanced .scroll-reveal{
    opacity:0;
    transform:translate3d(0,24px,0) scale(.985);
    filter:blur(4px);
    transition:opacity .56s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms),transform .56s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms),filter .56s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms);
    will-change:opacity,transform,filter;
  }
  .motion-enhanced .scroll-reveal.is-revealed{
    opacity:1;
    transform:none;
    filter:none;
    will-change:auto;
  }
}
@media (prefers-reduced-motion:reduce){
  .scroll-reveal{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
    transition:none !important;
  }
}
@media (min-width:1024px) and (prefers-reduced-motion:no-preference){
  body::after{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(247,245,242,.72);
    opacity:0;
    pointer-events:none;
    transition:opacity .16s cubic-bezier(.22,1,.36,1);
    z-index:999;
  }
  body.page-transition-leaving{
    overflow:hidden;
  }
  body.page-transition-leaving::after{
    opacity:1;
  }
  body.page-transition-leaving .site-header,
  body.page-transition-leaving main,
  body.page-transition-leaving .site-footer,
  body.page-transition-leaving .sticky-lead-cta,
  body.page-transition-leaving .home-sticky-lead-cta{
    opacity:0;
    transform:translateY(-8px);
    filter:blur(2px);
    transition:opacity .16s cubic-bezier(.22,1,.36,1),transform .16s cubic-bezier(.22,1,.36,1),filter .16s cubic-bezier(.22,1,.36,1);
  }
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1200px,calc(100% - 40px));margin:0 auto}
.section{padding:84px 0;scroll-margin-top:118px}
.section-alt{background:#f1ece5}

/* ===== 02. header / nav ===== */
/* Primary desktop header, brand block and navigation dropdown */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(247,245,242,.95);
  backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid rgba(23,39,61,.06);
}
.header-shell{
  min-height:96px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:26px;
  align-items:center;
}
.brand{
  display:flex;align-items:center;gap:16px;
  text-decoration:none;min-width:0;
}
.brand-logo{
  width:68px;height:68px;flex:0 0 68px;border-radius:50%;
  object-fit:contain;
}
.brand-copy{min-width:0}
.brand-copy strong{
  display:block;
  font-size:1.48rem;
  line-height:1.04;
  letter-spacing:-0.015em;
}
.brand-copy small{
  display:block;color:var(--muted);font-size:.95rem;margin-top:3px;line-height:1.25
}
.main-nav{
  display:flex;justify-content:center;align-items:center;gap:28px;flex-wrap:nowrap;white-space:nowrap;min-width:0;
  padding:0 10px;
}
.main-nav > a,.nav-more__toggle{
  text-decoration:none;color:#425265;font-weight:650;font:inherit;font-size:1.22rem;line-height:1;background:none;border:none;cursor:pointer
}
.main-nav > a:hover,.nav-more__toggle:hover,.nav-more__menu a:hover{color:var(--primary)}
.nav-more{position:relative;z-index:170;padding-bottom:8px;margin-bottom:-8px}
.nav-more::after{content:"";position:absolute;left:-12px;right:-12px;top:100%;height:18px}
.nav-more__toggle{display:inline-flex;align-items:center;gap:8px;padding:8px 0}
.nav-more__toggle::after{content:"";width:9px;height:9px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-1px);transition:transform .18s ease}
.nav-more.is-open .nav-more__toggle::after{transform:rotate(225deg) translateY(-1px)}
.nav-more__menu{
  position:absolute;top:calc(100% + 2px);right:50%;min-width:220px;transform:translate(50%,8px);
  background:#fff;border:1px solid rgba(23,39,61,.08);
  border-radius:18px;box-shadow:var(--shadow);padding:10px;
  display:flex;flex-direction:column;gap:4px;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(8px);z-index:140;transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-more__menu a{
  display:block;padding:10px 12px;border-radius:12px;text-decoration:none;color:#425265
}
.nav-more__menu a:hover{background:#f4f6f9}
.nav-more.is-open .nav-more__menu,
.nav-more:hover .nav-more__menu,
.nav-more:focus-within .nav-more__menu{opacity:1;visibility:visible;pointer-events:auto;transform:translate(50%,0)}
.header-actions{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;justify-self:end;width:214px;text-align:center;align-self:center;padding:10px 12px;border-radius:24px;background:linear-gradient(180deg,#fbfcfe 0%,#fff 100%);box-shadow:0 16px 36px rgba(17,34,58,.08);border:1px solid rgba(21,51,92,.10)}
.phone-link{display:block;width:100%;text-align:center;text-decoration:none;font-weight:900;white-space:nowrap;line-height:1.05;font-size:1.12rem;letter-spacing:.01em;color:var(--blue)}

/* ===== 06. utilities ===== */
/* Shared buttons, CTA shells and reusable interaction primitives */
.btn{
  min-height:52px;padding:0 24px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;text-decoration:none;border:1px solid transparent;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(23,55,99,.14), 0 12px 26px rgba(18,36,62,.10);
}
.btn-solid{
  background:linear-gradient(180deg,#eef3f8 0%,#e6edf5 100%);
  color:var(--blue);
  border-color:#d7e0ea;
  box-shadow:0 12px 26px rgba(18,36,62,.08);
}
.btn-solid:hover{
  background:linear-gradient(180deg,#f4f7fb 0%,#edf2f7 100%);
  border-color:#cbd6e2;
  color:var(--blue);
  box-shadow:0 16px 32px rgba(18,36,62,.10);
  transform:translateY(-1px);
}
.btn-outline{
  background:#fff;
  color:var(--blue);
  border-color:#d7dce3;
  box-shadow:0 10px 22px rgba(18,36,62,.05);
}
.btn-outline:hover{
  background:#f7f9fc;
  border-color:#cdd5df;
  color:var(--blue);
  box-shadow:0 14px 28px rgba(18,36,62,.08);
  transform:translateY(-1px);
}
@media (prefers-reduced-motion:no-preference){
  .btn:not([href^="tel:"]):not([href*="#form"]):not(.btn-call):not(.sticky-lead-cta):not([type="submit"]):active,
  .btn:not([href^="tel:"]):not([href*="#form"]):not(.btn-call):not(.sticky-lead-cta):not([type="submit"]).is-pressed{
    transform:translateY(0) scale(.985);
    box-shadow:0 8px 18px rgba(18,36,62,.09);
  }
}
.btn[href^="tel:"],
.btn[href*="#form"],
.btn.btn-call,
.btn.sticky-lead-cta,
.btn.home-sticky-lead-cta,
button.btn-solid[type="submit"]{
  background:var(--primary);
  color:#fff;
  border-color:transparent;
  box-shadow:0 14px 30px rgba(179,32,29,.22);
}
.btn[href^="tel:"]:hover,
.btn[href*="#form"]:hover,
.btn.btn-call:hover,
.btn.sticky-lead-cta:hover,
.btn.home-sticky-lead-cta:hover,
button.btn-solid[type="submit"]:hover{
  background:var(--primary-dark);
  color:#fff;
  border-color:transparent;
  box-shadow:0 18px 36px rgba(179,32,29,.26);
  transform:translateY(-1px);
}
.review-submit-btn{
  background:linear-gradient(180deg,#eef3f8 0%,#e6edf5 100%) !important;
  color:var(--blue) !important;
  border-color:#d7e0ea !important;
  box-shadow:0 12px 26px rgba(18,36,62,.08) !important;
}
.review-submit-btn:hover{
  background:linear-gradient(180deg,#f4f7fb 0%,#edf2f7 100%) !important;
  color:var(--blue) !important;
  border-color:#cbd6e2 !important;
  box-shadow:0 16px 32px rgba(18,36,62,.10) !important;
}
.btn-call{min-height:48px;padding:0 24px;min-width:176px}
.btn-full{width:100%}


/* ===== 03. homepage sections ===== */
/* Hero section */
.hero{padding:20px 0 12px;scroll-margin-top:118px}
.hero-shell{
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);
  align-items:stretch;
  overflow:hidden;
  border-radius:32px;
  background:linear-gradient(180deg,#f7f9fc 0%,#f1f4f8 100%);
  box-shadow:0 24px 56px rgba(12,26,47,.08);
  border:1px solid #e0e7ef;
}
.hero-copy{
  padding:42px 42px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:linear-gradient(180deg,#f6f8fb 0%,#eef3f8 100%);
}
.hero-visual{
  position:relative;
  min-height:500px;
  background:#dfe5ed;
  overflow:hidden;
}
.hero-visual::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(9,23,43,.08) 0%,rgba(9,23,43,.12) 100%);
}
.hero-image{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 52%;
  filter:brightness(.96) contrast(1.02) saturate(.94);
}
.hero-overlay,.hero-kicker{display:none !important}
.hero-copy .eyebrow{display:none !important}
.hero-lead{max-width:38rem}
.dark-text{color:#35506e}
.hero-actions,.inline-actions{
  display:flex;gap:14px;flex-wrap:wrap;margin-top:26px
}
.hero-pills,.hero-link{display:none !important}
.hero-pill{display:inline-flex;align-items:center;justify-content:center}

/* ===== 07. media queries ===== */
/* Homepage hero desktop refinement */
@media (min-width:1024px){
  .hero-pills{display:flex !important;flex-wrap:wrap;gap:10px;margin-top:18px}
  .hero-pill{min-height:42px;padding:9px 14px;border-radius:999px;background:#fff;border:1px solid rgba(19,44,74,.10);box-shadow:0 8px 18px rgba(19,44,74,.06);font-size:.88rem;font-weight:800;line-height:1.1;color:#17324d;white-space:nowrap;text-align:center}
}


/* ===== 03. homepage sections ===== */
/* Shared homepage layout, media cards, about block and core landing sections */
.split-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:center
}
.media-card,.feature-card,.hall-card,.trainer-card,.faq-card,.form-card{
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow);
}
.media-card{overflow:hidden}
.media-card img{width:100%;height:100%;object-fit:cover}
.text-col p:first-of-type{margin-top:0}

.about-split-grid{align-items:start}
.about-media-stack{display:grid;gap:18px}

.about-text-col p{max-width:68ch;margin-left:0;margin-right:0;text-wrap:pretty}
.about-text-col .about-accent{max-width:68ch}
.about-team-photo{display:block}

.media-card--desktop{display:block}
.about-team-photo img{aspect-ratio:16/10;object-position:center 46%}
.about-main-photo img{aspect-ratio:4/3;object-position:center 36%}
.about-text-col{max-width:64ch}
.about-text-col h2,.about-text-col p{text-wrap:pretty}
.about-text-col p{margin:0 0 16px;text-align:left}
.about-text-col .eyebrow{margin-bottom:10px}
.about-accent{margin-top:20px;color:#173763}
.about-more-mobile{display:block}
.about-more-toggle{display:none;margin-top:8px}
.check-list{
  list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px
}
.check-list li{position:relative;padding-left:28px}
.check-list li::before{
  content:"✓";position:absolute;left:0;top:0;color:var(--primary);font-weight:900
}
.feature-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:28px
}
.feature-card{padding:26px}
.section-intro{max-width:860px;color:var(--muted);margin:0 0 26px}

/* ===== 04. trainers ===== */
/* Trainer cards on homepage plus nearby halls and schedule blocks used in the same landing flow */
.hall-grid,.trainer-grid,.faq-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:22px
}
.hall-card{padding:26px}
.hall-meta{
  list-style:none;padding:0;margin:0 0 18px;display:grid;gap:8px;color:#334961
}
.table-wrap{
  overflow:auto;background:#fff;border-radius:28px;border:1px solid var(--line);box-shadow:var(--shadow)
}
.schedule-table{width:100%;border-collapse:collapse;min-width:900px;background:#fff}
.schedule-table th,.schedule-table td{padding:18px 20px;text-align:left;border-bottom:1px solid #eee6dc}
.schedule-table th{font-size:.95rem;color:#43556c;background:#fbfaf8}
.schedule-table td a{color:var(--primary);font-weight:800;text-decoration:none}
.trainer-grid{align-items:stretch}
.trainer-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}
.trainer-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center 12%;
}
.trainer-card:first-child img{object-position:center 10%}
.trainer-card--secondary img{object-position:center 10%;transform:scale(1.10);transform-origin:center 18%}
.trainer-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.trainer-body h3{
  margin:0 0 14px;
  font-size:1.52rem;
  line-height:1.25;
}
.trainer-body p{
  margin:0;
  color:#3c5169;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:6.8em;
}
.mini-tags{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;min-height:52px;align-content:flex-start
}
.mini-tags span{
  background:#eef4ff;color:#173763;padding:10px 13px;border-radius:999px;font-size:.93rem;font-weight:800
}
.trainer-card .inline-actions{
  margin-top:auto;
  padding-top:18px;
}
.trainer-card .inline-actions .btn{min-width:164px}

.trainer-grid--initial{margin-bottom:0}

.faq-more-actions{
  display:none;
  justify-content:center;
  margin-top:22px;
}
.faq-toggle{min-width:220px}

.trainer-carousel--mobile{display:none}
.trainer-more{margin-top:18px}
.trainer-more-actions{display:flex;justify-content:center;margin-top:22px}
.trainer-toggle{min-width:220px}
.trainer-card--placeholder img{object-position:center center}
.trainer-card--placeholder .trainer-body p{display:block;overflow:visible;min-height:0}
.trainer-card--placeholder .mini-tags{min-height:0}
.trainer-card--mobile-reveal{display:none}
.trainer-more.is-open{display:block}

.hall-tags{margin:18px 0 0}
.hall-schedule{margin-top:18px;padding-top:18px;border-top:1px solid #e6e0d8}
.hall-schedule h4{margin:0 0 12px;font-size:1.02rem;color:#173763}
.hall-schedule ul{list-style:none;padding:0;margin:0;display:grid;gap:10px;color:#334961}
.hall-schedule li{margin:0}
.hall-note{margin:14px 0 0;color:#586b81}
.hall-card--info{background:linear-gradient(180deg,#fff 0%,#fbfaf8 100%)}
.hall-grid--compact{align-items:stretch}
.hall-card--compact{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.hall-card__media{
  aspect-ratio:16/10;
  background:#f3efe8;
}
.hall-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hall-card__body{
  padding:22px 24px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.hall-card__district{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef4ff;
  color:#173763;
  font-size:.84rem;
  font-weight:800;
}
.hall-card--compact h3{
  margin:14px 0 10px;
  font-size:1.4rem;
  line-height:1.2;
}
.hall-card__address{
  margin:0;
  font-size:1rem;
  font-weight:800;
  color:#173763;
}
.hall-card__summary{
  margin:14px 0 0;
  color:#40546d;
  text-wrap:pretty;
}
.hall-card__actions{
  margin-top:auto;
  padding-top:18px;
}
.hall-card__actions .btn{min-width:148px}
.trainer-more[hidden]{display:none !important}
.trainer-more-actions{display:flex;justify-content:center;margin-top:30px}
.trainer-toggle{min-width:220px;position:relative;z-index:2}


/* ===== 03. homepage sections ===== */
/* Trial form, FAQ and footer blocks */
.trial-grid{align-items:start}
.form-card{padding:28px}
.lead-form{display:grid;gap:16px;margin-top:18px}
.lead-form label span{display:block;margin-bottom:8px;font-weight:800;color:#16345d}
.lead-form input{
  width:100%;padding:16px 18px;border-radius:16px;border:1px solid #d8dee8;font:inherit;outline:none;background:#fff
}
.lead-form input:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(179,32,29,.08)}
.form-note{margin:14px 0 0;color:var(--muted)}
#form{scroll-margin-top:calc(var(--mobile-menu-top, 92px) + 18px);}
.faq-card{padding:26px}
.site-footer{
  background:#181613;color:#fff;padding:56px 0 24px
}
.site-footer h2,.site-footer h3{color:#fff}
.footer-grid{
  display:grid;grid-template-columns:1.05fr 1.1fr .9fr;gap:28px;align-items:start
}
.footer-grid--contact-hub{align-items:start}
.footer-lead p{margin:14px 0 0;color:rgba(255,255,255,.82);max-width:42ch}
.footer-actions{display:flex;gap:12px;flex-wrap:wrap}
.footer-actions--primary{margin-top:22px}
.footer-contact-hub,.footer-contact-details{display:grid;gap:16px}
.contact-channel-list{display:grid;gap:12px}
.contact-channel{
  width:100%;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);border-radius:24px;
  color:#fff;text-decoration:none;display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;
  padding:16px 18px;box-shadow:0 16px 32px rgba(7,13,22,.12);transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.contact-channel:hover,.contact-channel:focus-visible{
  transform:translateY(-2px);border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.09);box-shadow:0 18px 36px rgba(7,13,22,.18)
}
.contact-channel:focus-visible{outline:2px solid rgba(255,255,255,.38);outline-offset:2px}
.contact-channel--copy{font:inherit;text-align:left;cursor:pointer}
.contact-channel__icon{
  width:54px;height:54px;border-radius:18px;display:inline-flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0
}
.contact-channel__icon svg{width:26px;height:26px}
.contact-channel--telegram .contact-channel__icon{background:linear-gradient(135deg,#2aabee,#1682d6)}
.contact-channel--vk .contact-channel__icon{background:linear-gradient(135deg,#3b8cff,#1e6bdf)}
.contact-channel--max .contact-channel__icon{background:linear-gradient(135deg,#4d70ff,#3650cc)}
.contact-channel--mail .contact-channel__icon{background:linear-gradient(135deg,#dbe7f4,#bfcfe3);color:#16345d}
.contact-channel__copy{display:grid;gap:4px;min-width:0}
.contact-channel__copy strong{font-size:1rem;line-height:1.15}
.contact-channel__copy span{color:rgba(255,255,255,.72);font-size:.92rem;line-height:1.4}
.contact-channel__arrow{font-size:1.25rem;color:rgba(255,255,255,.68)}
.contact-channel--telegram .contact-channel__icon,
.contact-channel--vk .contact-channel__icon,
.contact-channel--max .contact-channel__icon,
.contact-channel--mail .contact-channel__icon{
  background:none;
  padding:0;
  overflow:hidden;
  border-radius:16px;
}
.contact-channel--telegram .contact-channel__icon img,
.contact-channel--vk .contact-channel__icon img,
.contact-channel--max .contact-channel__icon svg,
.contact-channel--mail .contact-channel__icon svg{
  display:none !important;
}
.contact-channel--telegram .contact-channel__icon::before,
.contact-channel--vk .contact-channel__icon::before,
.contact-channel--max .contact-channel__icon::before,
.contact-channel--mail .contact-channel__icon::before{
  content:"";
  width:42px;
  height:42px;
  border-radius:14px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
}
.contact-channel--telegram .contact-channel__icon::before{background-image:url("assets/telegram-logo.webp")}
.contact-channel--vk .contact-channel__icon::before{background-image:url("assets/vk-logo.webp")}
.contact-channel--max .contact-channel__icon::before{background-image:url("assets/max-logo.webp")}
.contact-channel--mail .contact-channel__icon::before{background-image:url("assets/mail-logo.webp")}
.contact-channel--mail .contact-channel__copy span{color:rgba(255,255,255,.74)}
.footer-list{list-style:none;padding:0;margin:0;display:grid;gap:14px}
.footer-list--contact li{display:grid;gap:4px}
.footer-list__label{font-size:.75rem;line-height:1.2;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.5)}
.footer-list a,.footer-links a{text-decoration:none;color:#fff}
.footer-list--contact span:not(.footer-list__label){color:rgba(255,255,255,.82);line-height:1.5}
.footer-bottom{
  margin-top:28px;padding-top:18px;border-top:1px solid rgba(255,255,255,.1);
  display:flex;justify-content:space-between;align-items:center;gap:18px
}
.footer-links{display:flex;gap:18px;flex-wrap:wrap
}
.inner-main{padding-top:6px}
.content-narrow{max-width:920px}

/* ===== 04. trainers ===== */
/* Stable trainer media system for current pages and future admin-managed trainers */
.trainer-card > img,

/* ===== 04. trainers ===== */
/* Internal trainer pages */
.trainer-photo > img{display:block}

.trainer-card > img{
  width:100%;
  aspect-ratio:4/5;
  height:auto;
  object-fit:cover;
  object-position:center 12%;
}

.trainer-card:first-child > img{object-position:center 10%}
.trainer-card--secondary > img{
  object-position:center 10%;
  transform:none;
}
.trainer-card--desktop-secondary{display:flex}
.trainer-more-actions--mobile{display:none}
.trainer-card--yulia > img,
.trainer-photo--yulia img{object-position:center 8%}

.trainer-grid-page{
  grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);
  align-items:start;
}
.trainer-grid-page .trainer-photo{
  align-self:start;
  aspect-ratio:4/5;
  max-height:min(70vh,760px);
}
.trainer-grid-page .trainer-photo img{
  width:100%;
  height:100%;
  aspect-ratio:auto;
  object-fit:cover;
  object-position:center 10%;
}
.trainer-grid-page .trainer-photo-secondary img{
  object-position:center 8%;
  transform:none;
}
.trainer-grid-page .text-col{align-self:start;min-width:0}
.trainer-grid-page .text-col h1{margin-top:0}

/* ===== 07. media queries ===== */
/* Trainer typography refinement */
@media (min-width:901px){
  .trainer-body h3{white-space:nowrap}
}


/* ===== 07. media queries ===== */
/* Internal trainer pages on narrower screens */
@media (max-width:980px){
  .trainer-grid-page{
    grid-template-columns:1fr;
    gap:22px;
    align-items:start;
  }
  .trainer-grid-page .trainer-photo{
    max-height:clamp(360px,54vh,690px);
  }
  .trainer-grid-page .trainer-photo-secondary img{
    object-position:center 12%;
  }
  .trainer-grid-page .text-col{
    padding-top:0;
    margin-top:0;
  }
  .trainer-grid-page .text-col h1{margin-top:0}
}

/* ===== 07. media queries ===== */
/* Global tablet/compact desktop adjustments */
@media (max-width:1180px){
  .header-shell{gap:20px}
  .main-nav{gap:18px;padding:0 6px}
  .brand-logo{width:64px;height:64px;flex-basis:64px}
  .brand-copy strong{font-size:1.34rem}
  .brand-topline{font-size:.7rem}
  .main-nav > a,.nav-more__toggle{font-size:1.08rem;padding:12px 12px}
  .header-actions{width:196px}
}
/* ===== 07. media queries ===== */
/* Landing layout collapse for tablet/mobile widths */
@media (max-width:980px){
  .split-grid,.feature-grid,.hall-grid,.trainer-grid,.faq-grid,.footer-grid,.hero-shell{grid-template-columns:1fr}
  .hero-shell{border-radius:30px}
  .hero-copy{padding:38px 34px 30px}
  .hero-visual{min-height:340px}
}

.brand-topline{font-size:.76rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase;color:var(--primary)}
.brand-copy strong{order:2}
.brand-copy small{order:3}
.brand-topline{order:1}
.header-kicker{font-size:.72rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:#53657a;line-height:1.2}
.btn-call::before{content:"☎";font-size:.95rem;line-height:1;margin-right:8px}


/* ===== 07. media queries ===== */
/* Mobile trainer reveal logic on homepage */
@media (max-width:1023px){
  .about-more-mobile{display:none}
  .about-more-mobile.is-expanded{display:block}
  .about-more-toggle{display:inline-flex}

  #faq .faq-more-actions{display:flex}
  #faq .faq-grid.is-collapsed .faq-card:nth-child(n+4){display:none}

  #trainers .trainer-carousel--mobile{
    display:flex;
    gap:16px;
    margin-top:24px;
    overflow-x:auto;
    padding:4px 2px 10px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
  }
  #trainers .trainer-carousel--mobile .trainer-card{
    flex:0 0 min(82vw,320px);
    scroll-snap-align:start;
  }
  #trainers .trainer-carousel--mobile .trainer-card:last-child{margin-right:2px}
  #trainers .trainer-grid--initial,
  #trainers .trainer-more,
  #trainers .trainer-more-actions{display:none !important}
  #trainers .trainer-carousel--mobile::-webkit-scrollbar{height:8px}
  #trainers .trainer-carousel--mobile::-webkit-scrollbar-thumb{background:rgba(23,55,99,.18);border-radius:999px}

  #trainers .trainer-card--desktop-secondary{display:none}
  #trainers .trainer-card--mobile-reveal{display:flex}
  #trainers .trainer-more-actions--mobile{display:flex;justify-content:center;margin-top:18px}
  #trainers .trainer-more-actions--desktop{display:none}
  #trainers .trainer-more-actions--mobile .trainer-toggle{width:100%;max-width:320px}

  .mobile-action-row .mobile-menu-toggle{width:54px;height:46px;border-radius:16px}
}
/* ===== 07. media queries ===== */
/* Landscape mobile header adjustments */
@media (max-width:1023px) and (orientation:landscape){
  .mobile-action-row{display:flex !important}
}


/* ===== 07. media queries ===== */
/* Landscape hero/header CTA adjustments */
@media (max-width:1023px) and (orientation:landscape){
  .hero-link{display:none}
  .mobile-header-cta{display:none !important}
}


/* ===== 03. homepage sections ===== */
/* Additional homepage sections: facts, reviews and directory/schedule variants */
.club-facts-section .facts-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:0 0 24px}
.fact-card{background:#fff;border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow);padding:22px 20px;display:flex;flex-direction:column;gap:8px}
.fact-card strong{font-size:1.8rem;line-height:1;color:var(--primary)}
.fact-card span{color:#425265}
.value-grid,.reviews-grid{margin-top:0}
.hall-grid--stacked{align-items:start}
.hall-card--directory .hall-directory{display:grid;gap:12px;margin:18px 0 0}
.hall-directory-item{padding:14px 16px;border-radius:18px;background:#f8f5f0;border:1px solid #ebe2d8;display:grid;gap:4px}
.hall-directory-item strong{color:#173763}
.hall-directory-item span{font-weight:700;color:#334961}
.hall-directory-item small{color:#63768b}
.schedule-groups{display:grid;gap:22px}
.schedule-group-card{background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow);padding:24px}
.schedule-group-head{margin-bottom:16px}
.schedule-group-head h3{margin:0 0 6px}
.schedule-group-head p{margin:0;color:var(--muted)}
.schedule-table--compact{min-width:760px}
.schedule-note{margin:16px 0 0;color:var(--muted)}
/* ===== 07. media queries ===== */
/* Homepage facts and schedule responsiveness */
@media (max-width:980px){.club-facts-section .facts-grid{grid-template-columns:1fr 1fr}}
@media (max-width:1023px){.schedule-group-card{padding:20px}.fact-card strong{font-size:1.55rem}}
@media (max-width:680px){.club-facts-section .facts-grid{grid-template-columns:1fr}.hall-directory-item{padding:12px 14px}.hall-card__body{padding:20px}.hall-card__actions .btn{width:100%}}


/* ===== 06. utilities ===== */
/* Shared support rules, review UI helpers and cleanup adjustments */
html,body{overflow-x:hidden}
.fact-card strong{color:var(--ink)}
.review-form-shell{max-width:760px}
.review-form-card{
  background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow);
  padding:28px;display:grid;gap:18px
}
.review-form-card label,.lead-form label{display:grid;gap:8px}
.review-form-card span,.lead-form span{font-weight:800;color:#183155}
.review-form-card input,
.review-form-card textarea,
.lead-form input{
  width:100%;padding:16px 18px;border:1px solid #d7dee7;border-radius:18px;
  background:#fff;color:var(--ink);font:inherit
}
.review-form-card textarea{resize:vertical;min-height:160px}

.reviews-summary{
  display:grid;
  gap:14px;
  margin:0 0 28px;
}
.reviews-summary__lead{
  margin:0;
  font-weight:800;
  color:#183155;
}
.reviews-tags{justify-content:flex-start}
.reviews-showcase{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-bottom:20px;
}
.review-card{
  background:#fff;
  border:1px solid rgba(16,36,66,.08);
  border-radius:20px;
  box-shadow:0 16px 40px rgba(12,35,64,.08);
  padding:22px;
  display:grid;
  gap:14px;
  align-content:start;
}
.review-card.is-hidden{display:none}
.review-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.review-card__top h3{
  margin:0 0 6px;
  font-size:1.02rem;
}
.review-card__rating{
  display:flex;
  gap:4px;
  align-items:center;
  color:#f4b400 !important;
  -webkit-text-fill-color:#f4b400 !important;
  font-size:1.08rem;
  letter-spacing:.02em;
}
.review-card__rating span{
  line-height:1;
  color:#f4b400 !important;
  -webkit-text-fill-color:#f4b400 !important;
  text-shadow:0 0 0 #f4b400;
}
.review-card__date{
  margin:0;
  color:var(--muted);
  font-size:.88rem;
  white-space:nowrap;
}
.review-card__meta{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.review-card__badge{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(179,32,29,.08);
  color:#8f1916;
  font-weight:800;
  font-size:.82rem;
}
.review-card__title{
  margin:0;
  font-weight:800;
  color:#183155;
}
.review-card__body{
  color:#31455f;
  line-height:1.72;
  max-height:8.8em;
  overflow:hidden;
  position:relative;
}
.review-card__body::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:38px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), #fff 88%);
}
.review-card__body.is-expanded{max-height:none}
.review-card__body.is-expanded::after{display:none}
.review-card__body p{margin:0}
.review-card__toggle{
  justify-self:flex-start;
  border:none;
  background:none;
  padding:0;
  color:#183155;
  font-weight:800;
  cursor:pointer;
}
.review-card__toggle:hover{text-decoration:underline}
.reviews-actions{
  display:flex;
  justify-content:center;
  margin:0 0 28px;
}
.review-form-shell{
  max-width:880px;
  margin:0 auto;
}
.review-form-header{
  background:#fff;
  border:1px solid rgba(16,36,66,.08);
  border-radius:20px;
  padding:22px 24px;
  margin:0 0 16px;
  box-shadow:0 16px 40px rgba(12,35,64,.06);
}
.review-form-header h3{
  margin:0 0 8px;
}
.review-form-header p{
  margin:0;
  color:var(--muted);
}
.rating-field{display:grid;gap:10px}
.rating-label{font-weight:800;color:#183155}
.rating-stars{
  display:inline-flex;flex-direction:row-reverse;justify-content:flex-end;gap:6px;
}
.rating-stars input{position:absolute;opacity:0;pointer-events:none}
.rating-stars label{
  font-size:2rem;line-height:1;color:#d4d9e0;cursor:pointer;transition:color .18s ease, transform .18s ease
}
.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label{color:#f0b429}
.rating-stars label:hover{transform:translateY(-1px)}

.trainer-schedule-snippet{margin-top:16px;padding-top:16px;border-top:1px solid rgba(23,39,61,.08)}
.trainer-schedule-snippet strong{display:block;margin-bottom:8px;color:#173763}
.trainer-schedule-snippet ul{margin:0;padding-left:18px;display:grid;gap:6px;color:#425265}
.trainer-card--placeholder .trainer-body{display:flex;flex-direction:column;gap:12px}

.schedule-table td:nth-child(4),
.schedule-table th:nth-child(4){white-space:nowrap}
.schedule-table td:last-child a{font-weight:800}
.schedule-group-card--secondary{display:none !important}

/* ===== 07. media queries ===== */
/* Desktop/mobile interaction refinements preserved from the live baseline */
@media (min-width:1024px){
  .site-header{position:sticky;top:0;z-index:100;}
}

/* ===== 02. header / nav ===== */
/* Mobile header system */

/* ===== 02. header / nav ===== */
/* Mobile header, menu and responsive controls */
.mobile-menu-toggle,.mobile-header-cta,.mobile-menu,.mobile-inline-call{display:none}
.mobile-action-row{display:flex;align-items:center;gap:12px}
.mobile-action-row .btn-full{flex:1}
.mobile-menu-toggle{
  width:46px;height:46px;border:1px solid rgba(21,51,92,.12);border-radius:14px;background:#fff;
  align-items:center;justify-content:center;gap:4px;flex-direction:column;cursor:pointer;
  box-shadow:0 10px 24px rgba(21,51,92,.08)
}
.mobile-menu-toggle span{display:block;width:18px;height:2px;border-radius:999px;background:var(--blue);transition:.18s ease}
.mobile-menu-toggle.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.mobile-menu-toggle.is-open span:nth-child(2){opacity:0}
.mobile-menu-toggle.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.mobile-menu{position:fixed;top:var(--mobile-menu-top,0);left:12px;right:12px;z-index:390;max-height:var(--mobile-menu-height,calc(100dvh - 12px));overflow:auto;border:1px solid rgba(23,39,61,.08);border-top:1px solid rgba(23,39,61,.06);border-radius:24px;background:rgba(247,245,242,.98);backdrop-filter:blur(14px) saturate(160%);box-shadow:0 20px 44px rgba(12,26,47,.16);overscroll-behavior:contain;-webkit-overflow-scrolling:touch}
.mobile-menu.is-open{display:block}

.site-header.mobile-menu-active{position:fixed !important;top:0;left:0;right:0;width:100%;z-index:400;transform:none !important}
.site-header.mobile-menu-active .mobile-menu{display:block}

.mobile-menu__inner{padding:8px 0 10px}
.mobile-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
.mobile-nav a{display:flex;align-items:center;text-decoration:none;min-height:56px;padding:12px 14px;border-radius:14px;background:#fff;color:#203754;font-weight:800;font-size:.97rem;line-height:1.16;border:1px solid rgba(21,51,92,.08);box-shadow:0 8px 18px rgba(21,51,92,.05)}
.mobile-nav a:active{transform:translateY(1px)}
.mobile-inline-call{min-height:40px;padding:0 14px;min-width:0;border-radius:14px;box-shadow:0 10px 22px rgba(179,32,29,.18);font-size:.96rem;white-space:nowrap}
.mobile-inline-call::before{margin-right:6px}

.mobile-header-cta{display:none}
.mobile-header-cta .btn-call{width:100%}


/* ===== 07. media queries ===== */
/* Mobile header and global mobile layout */
@media (max-width:1023px){
  .container{width:min(100% - 24px,1200px)}
  .section{padding:64px 0;scroll-margin-top:146px}
  .main-nav,.header-actions{display:none !important}
  .header-shell{
    min-height:auto;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:12px;
    align-items:center;
    padding:12px 0 10px;
  }
  .brand{gap:12px;align-items:center;min-width:0}
  .brand-logo{width:54px;height:54px;flex-basis:54px}
  .brand-copy{display:flex;flex-direction:column;justify-content:center;min-width:0}
  .brand-copy strong{font-size:1.18rem;line-height:1.06;max-width:none}
  .brand-copy small,.brand-topline{display:none}
  .mobile-menu-toggle{display:flex;justify-self:end;align-self:center}
  .header-shell > .mobile-menu-toggle{display:flex}
  .mobile-inline-call{display:none !important}
  .mobile-header-cta{display:block !important;padding:0 0 10px}
  .mobile-header-cta .btn-call{min-height:44px;min-width:0;font-size:1rem;box-shadow:0 10px 20px rgba(179,32,29,.16)}
  .mobile-menu.is-open{display:block}

.site-header.mobile-menu-active{position:fixed !important;top:0;left:0;right:0;width:100%;z-index:400;transform:none !important}
.site-header.mobile-menu-active .mobile-menu{display:block}
  .hero{padding:10px 0 14px}
  .hero-shell{
    grid-template-columns:1fr;
    border-radius:28px;
    background:#fff;
  }
  .hero-visual{order:0;min-height:226px;position:relative;inset:auto}
  .hero-visual::after{background:linear-gradient(180deg,rgba(7,20,37,.08) 0%,rgba(7,20,37,.16) 100%)}
  .hero-image{object-position:50% 42%}
  .hero-copy{
    position:relative;
    z-index:1;
    padding:18px 18px 14px;
    min-height:auto;
    justify-content:flex-start;
    color:inherit;
    background:linear-gradient(180deg,#f6f8fb 0%,#eef3f8 100%);
  }
  .hero-copy h1,
  .hero-copy .hero-lead{color:inherit}
  h1{font-size:clamp(1.8rem,7vw,2.3rem);max-width:none;letter-spacing:-0.048em;line-height:.96}
  .hero-lead{font-size:1.02rem;line-height:1.42;margin-top:12px;max-width:none;color:#304a68}
  .hero-pills{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:16px;padding-bottom:0;align-items:stretch}
  .hero-pill{min-height:42px;padding:8px 10px;border-radius:999px;background:#fff;border:1px solid rgba(19,44,74,.10);box-shadow:0 6px 18px rgba(19,44,74,.06);font-size:.76rem;font-weight:800;line-height:1.15;color:#17324d;white-space:normal;text-align:center}
  .hero-link{display:none !important}
.hero-pill{display:inline-flex;align-items:center;justify-content:center}
  .trainer-body h3{white-space:normal;font-size:1.34rem}
  .trainer-body p{-webkit-line-clamp:unset;min-height:0}
  .trainer-card .inline-actions .btn{min-width:0;flex:1}
  .footer-bottom{flex-direction:column;align-items:flex-start}

  /* remove duplicate CTAs across mobile */
  .hero-actions,
  #about .inline-actions,
  .inner-main .inline-actions,
  .footer-actions,
  .site-footer .btn,
  .schedule-table th:last-child,
  .schedule-table td:last-child{display:none !important}
  #halls .inline-actions a[href^="tel:"],
  #trainers .inline-actions a[href^="tel:"],
  #contacts .btn[href^="tel:"],
  #contacts .btn[href$="#form"],
  #contacts .btn[href="#form"]{display:none !important}
}

@media (max-width:1023px) and (orientation:landscape){
  .section{padding:44px 0;scroll-margin-top:98px}
  .header-shell{padding:10px 0 8px;gap:10px;grid-template-columns:auto minmax(0,1fr) auto auto;align-items:center}
  .brand{grid-column:1 / 3}
  .mobile-inline-call{grid-column:3;justify-self:end}
  .mobile-menu-toggle{grid-column:4}
  .header-shell > .mobile-menu-toggle{display:flex}
  .brand{gap:10px}
  .brand-logo{width:44px;height:44px;flex-basis:44px}
  .brand-copy strong{font-size:.96rem;line-height:1.02}
  .mobile-inline-call{display:none !important}
  .mobile-menu-toggle{display:flex}
  .mobile-inline-call{display:inline-flex !important;align-items:center;justify-content:center;min-height:36px;padding:0 14px;min-width:auto;width:auto;max-width:none;border-radius:13px;font-size:.84rem;box-shadow:0 8px 18px rgba(179,32,29,.16);justify-self:end}
  .mobile-inline-call.btn-call{min-width:128px}
  .mobile-header-cta{display:block !important;padding:0 0 8px !important}
  .mobile-menu__inner{padding:6px 0 10px}
  .mobile-nav{grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
  .mobile-nav a{min-height:52px;padding:10px 12px;font-size:.93rem;border-radius:13px}
  .hero{padding:8px 0 12px}
  .hero-shell{
    min-height:auto;
    grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
    border-radius:24px;
    background:linear-gradient(180deg,#f7f9fc 0%,#f1f4f8 100%);
  }
  .hero-visual{position:relative;inset:auto;order:2;min-height:100%;}
  .hero-visual::after{background:linear-gradient(180deg,rgba(7,20,37,.08) 0%,rgba(7,20,37,.14) 100%)}
  .hero-image{object-position:56% 42%}
  .hero-copy{
    position:relative;
    z-index:1;
    min-height:auto;
    padding:16px 16px 14px;
    justify-content:center;
    color:inherit;
    background:linear-gradient(180deg,#f6f8fb 0%,#eef3f8 100%);
  }
  .hero-copy h1,
  .hero-copy .hero-lead{color:inherit}
  h1{font-size:clamp(1.42rem,4vw,1.92rem);line-height:1.0}
  .hero-lead{font-size:.86rem;line-height:1.28;margin-top:8px;max-width:none;color:#304a68}
  .hero-pills{display:flex !important;flex-wrap:wrap;gap:8px;margin-top:12px}
  .hero-pill{min-height:38px;padding:7px 12px;border-radius:999px;background:#fff;border:1px solid rgba(19,44,74,.10);box-shadow:0 6px 16px rgba(19,44,74,.06);font-size:.74rem;font-weight:800;line-height:1.05;color:#17324d;white-space:nowrap;text-align:center}
  .hero-link{display:none !important}
  body{padding-bottom:0}
}

@media (max-width:1023px){
  .mobile-action-row .mobile-menu-toggle{width:54px;height:46px;border-radius:16px}
}
@media (max-width:1023px) and (orientation:landscape){
  .mobile-action-row{display:flex !important}
}


@media (max-width:1023px) and (orientation:landscape){
  .mobile-header-cta .btn-call{min-height:40px;font-size:.96rem;box-shadow:0 9px 18px rgba(179,32,29,.16)}
  .hero-link{display:none}
}


/* ===== 07. media queries ===== */
/* Portrait mobile header cleanup */
@media (max-width:1023px) and (orientation:portrait){
  html,body{overflow-x:hidden;}
  .site-header{
    position:sticky;
    top:0;
    left:auto;
    right:auto;
    width:auto;
    z-index:220;
    transform:none !important;
  }
  .header-shell{
    min-height:auto;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:12px;
    align-items:center;
    padding:12px 0 10px;
  }
  .brand{grid-column:auto;gap:12px;align-items:center;min-width:0;}
  .brand-logo{width:54px;height:54px;flex-basis:54px;}
  .brand-copy{display:flex;flex-direction:column;justify-content:center;min-width:0;}
  .brand-copy strong{font-size:1.18rem;line-height:1.06;max-width:none;}
  .brand-copy small,.brand-topline{display:none;}
  .mobile-menu-toggle{display:flex !important;justify-self:end;align-self:center;grid-column:auto;}
  .mobile-inline-call{display:none !important;}
  .mobile-header-cta{display:block !important;padding:0 0 10px !important;}
  .mobile-header-cta .btn-call{display:flex;width:100%;min-width:0;min-height:44px;font-size:1rem;}
  .mobile-action-row{display:flex;align-items:center;gap:12px;}
  .mobile-action-row .btn-full{flex:1 1 auto;}
  .section{scroll-margin-top:146px;}
}

/* ===== 07. media queries ===== */
/* Portrait width clamp for header and hero composition */
@media (max-width:1023px) and (orientation:portrait){
  html,body{
    width:100%;
    max-width:100%;
    overflow-x:clip;
    position:relative;
    overscroll-behavior-x:none;
  }
  body,main,.site-header,.site-header > .container,.header-shell,.mobile-header-cta,.hero,.hero-shell,.section,.section > .container{
    width:100%;
    max-width:100%;
    min-width:0;
  }
  .site-header,.hero,.section,main{overflow-x:clip;}
  .container{width:calc(100% - 24px) !important;max-width:calc(100% - 24px) !important;}
  .table-wrap,.schedule-group-card,.review-form-shell,.hall-directory-item,.media-card,.trainer-card,.faq-item{max-width:100%;}
  .reviews-showcase{grid-template-columns:repeat(2,minmax(0,1fr));}
}


.sticky-lead-cta,
.home-sticky-lead-cta{
  position:fixed;
  left:12px;
  right:12px;
  bottom:calc(env(safe-area-inset-bottom, 0px) + 10px);
  z-index:360;
  min-height:48px;
  display:none;
  align-items:center;
  justify-content:center;
  width:auto;
  padding:0 24px;
  border-radius:16px;
  box-shadow:0 14px 30px rgba(179,32,29,.22);
  transform:translate3d(0, calc(100% + env(safe-area-inset-bottom, 0px) + 20px), 0);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:transform .24s ease, opacity .18s ease, visibility .18s ease;
}
.sticky-lead-cta::before,.home-sticky-lead-cta::before{content:none;}
.sticky-lead-cta.is-visible,
.home-sticky-lead-cta.is-visible{
  transform:translate3d(0, 0, 0);
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* ===== 07. media queries ===== */
/* Review cards on small screens */
@media (max-width: 767px){
  .reviews-showcase{grid-template-columns:1fr;}
  .review-card{padding:18px;}
  .review-card__top{flex-direction:column; align-items:flex-start;}
  .review-card__date{white-space:normal;}
  .review-form-header{padding:18px;}
}

/* ===== 07. media queries ===== */
/* Sticky CTA visibility rules */
@media (max-width: 1023px){
  .sticky-lead-cta,
.home-sticky-lead-cta{display:flex;font-size:1rem;font-weight:800;}
}

@media (min-width: 1024px){
  .sticky-lead-cta,
.home-sticky-lead-cta{display:none !important;}
  .about-more-toggle{display:none !important;}
}


.form-feedback{font-size:14px;font-weight:600}


/* ===== 05. article / info ===== */
/* Homepage information cards */
.info-links{
  margin-top:24px;
  display:grid;
  gap:12px;
  max-width:880px;
}
.info-link{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  border:1px solid rgba(23,39,61,.10);
  border-radius:20px;
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(21,51,92,.05);
  color:var(--ink);
  font-weight:700;
  text-decoration:none;
  line-height:1.5;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.info-link::before{
  content:"";
  flex:0 0 10px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--primary);
  margin-top:.62em;
  box-shadow:0 0 0 6px rgba(179,32,29,.10);
}
.info-link:hover{
  color:var(--primary);
  border-color:rgba(179,32,29,.24);
  box-shadow:0 16px 32px rgba(21,51,92,.09);
  transform:translateY(-1px);
}
.info-link:focus-visible{
  outline:3px solid rgba(179,32,29,.28);
  outline-offset:3px;
}
/* ===== 07. media queries ===== */
/* Information card treatment on phones */
@media (max-width: 767px){
  .info-links{
    margin-top:18px;
    gap:10px;
  }
  .info-link{
    position:relative;
    display:block !important;
    align-items:center;
    min-height:72px;
    padding:16px 52px 16px 18px;
    border-radius:18px;
    border:1px solid rgba(23,39,61,.10);
    background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,250,253,.98) 100%);
    box-shadow:0 10px 24px rgba(21,51,92,.08);
    color:var(--ink) !important;
    text-decoration:none !important;
    font-size:1rem;
    font-weight:800;
    line-height:1.35;
    letter-spacing:-.01em;
    -webkit-tap-highlight-color:transparent;
  }
  .info-link::before{
    content:none;
    display:none;
  }
  .info-link::after{
    content:"›";
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(23,39,61,.42);
    font-size:1.35rem;
    font-weight:700;
    line-height:1;
  }
  .info-link:active{
    transform:scale(.995);
    box-shadow:0 8px 18px rgba(21,51,92,.10);
  }
}


/* ===== 05. article / info ===== */
/* Attestation article page refresh and internal page presentation */

/* ===== 05. article / info ===== */
/* Internal pages and attestation article */
.site-header--internal{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(14px);
  background:rgba(252,252,253,.92);
  border-bottom:1px solid rgba(23,39,61,.08);
}
.site-header--internal .header-shell{
  min-height:88px;
}
.site-header--internal .brand-topline,
.site-header--internal .brand-copy small,
.site-header--internal .header-actions,
.site-header--internal .mobile-inline-call,
.site-header--internal .mobile-header-cta{
  display:none !important;
}
.article-page-shell{
  background:linear-gradient(180deg,#f5f7fb 0%, #eff3f9 100%);
}
.article-page,
.article-page--attestation{
  padding:28px 0 72px;
}
.article-container{
  max-width:980px;
}
.article-heading-card,
.article-toc-card,
.article-section,
.article-more{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(23,39,61,.08);
  border-radius:28px;
  box-shadow:0 18px 48px rgba(21,51,92,.08);
}
.article-heading-card{
  padding:32px 34px;
  margin-bottom:18px;
}
.article-heading-card h1{
  margin:0;
  color:var(--ink);
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.08;
  letter-spacing:-.03em;
}
.article-lead{
  margin-top:18px;
  color:var(--muted);
}
.article-lead p{
  margin:0 0 12px;
}
.article-lead p:last-child{
  margin-bottom:0;
}
.article-toc-card{
  padding:28px 30px;
  margin-bottom:26px;
}
.article-toc-card h2,
.article-more h2{
  margin:0 0 18px;
  font-size:1.1rem;
  color:var(--ink);
}
.article-toc-list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0;
  padding:0;
}
.article-toc-list a{
  display:flex;
  min-height:56px;
  align-items:center;
  padding:14px 16px;
  border-radius:18px;
  background:#f6f8fc;
  border:1px solid rgba(23,39,61,.08);
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
  line-height:1.35;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.article-toc-list a:hover,
.article-toc-list a:focus-visible{
  color:var(--primary);
  border-color:rgba(179,32,29,.24);
  box-shadow:0 10px 22px rgba(21,51,92,.08);
  transform:translateY(-1px);
}
.article-content-section{
  margin-top:8px;
}
.article-section{
  padding:28px 30px;
  margin-bottom:18px;
}
.article-section h2{
  margin:0 0 18px;
  font-size:clamp(1.2rem,2.2vw,1.6rem);
  line-height:1.2;
  color:var(--ink);
}
.article-section__muted{
  color:rgba(23,39,61,.68);
  font-weight:600;
}
.article-body-rich{
  color:#42536a;
  font-size:1.02rem;
  line-height:1.85;
  overflow-wrap:anywhere;
}
.article-body-rich p{
  margin:0 0 1rem;
}
.article-body-rich b,
.article-body-rich strong{
  display:block;
  margin:1.2rem 0 .35rem;
  color:var(--ink);
  font-size:1.08em;
  line-height:1.45;
}
.article-body-rich b:first-child,
.article-body-rich strong:first-child{
  margin-top:0;
}
.article-body-rich br + br{
  display:block;
  content:"";
  margin-top:.5rem;
}
.article-body-rich ul,
.article-body-rich ol{
  margin:.5rem 0 1rem 1.2rem;
}
.article-body-rich hr{
  display:none;
}
.article-more{
  padding:26px 30px;
  margin-top:26px;
}
.article-more__links{
  margin-top:12px;
}
/* ===== 07. media queries ===== */
/* Internal pages and article at tablet widths */
@media (max-width: 1023px){
  .article-toc-list{
    grid-template-columns:1fr;
  }
}
/* ===== 07. media queries ===== */
/* Internal pages and article on phones */
@media (max-width: 767px){
  .article-page,
.article-page--attestation{
    padding:18px 0 56px;
  }
  .article-heading-card,
  .article-toc-card,
  .article-section,
  .article-more{
    border-radius:22px;
  }
  .article-heading-card{
    padding:24px 20px;
    margin-bottom:14px;
  }
  .article-heading-card h1{
    font-size:1.55rem;
    line-height:1.12;
  }
  .article-lead{margin-top:14px;}
  .article-lead p{margin-bottom:10px;}
  .article-toc-card{
    padding:20px 16px;
    margin-bottom:16px;
  }
  .article-toc-card h2,
  .article-more h2{
    font-size:1rem;
    margin-bottom:14px;
  }
  .article-toc-list a{
    position:relative;
    min-height:58px;
    padding:14px 42px 14px 14px;
    border-radius:16px;
    font-size:.98rem;
    line-height:1.3;
  }
  .article-toc-list a::after{
    content:"›";
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(23,39,61,.42);
    font-size:1.25rem;
    font-weight:700;
    line-height:1;
  }
  .article-section{
    padding:22px 16px;
    margin-bottom:14px;
  }
  .article-section h2{
    font-size:1.18rem;
    margin-bottom:14px;
  }
  .article-section__muted{
    display:block;
    margin-top:4px;
    font-size:.95rem;
    line-height:1.35;
  }
  .article-body-rich{
    font-size:1.04rem;
    line-height:1.75;
  }
  .article-body-rich b,
  .article-body-rich strong{
    margin:1rem 0 .3rem;
    font-size:1.05em;
    line-height:1.4;
  }
  .article-more{
    padding:20px 16px;
    margin-top:18px;
  }
}

/* ===== 07. media queries ===== */
/* Article page and fixed desktop header refinements */
/* ===== 07. media queries ===== */
/* Fixed desktop header baseline */
@media (min-width:1024px){
  body{padding-top:96px;}
  .site-header,
  .site-header--internal{
    position:fixed !important;
    top:0;left:0;right:0;width:100%;
    z-index:260;
  }
}
.site-header--internal{
  background:rgba(247,245,242,.95);
  border-bottom:1px solid rgba(23,39,61,.06);
}
.article-page-shell{
  background:var(--bg);
}
.article-page,
.article-page--attestation{
  padding:28px 0 72px;
}
.article-heading-card,
.article-toc-card,
.article-section,
.article-more{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.article-heading-card h1{
  font-size:clamp(1.9rem,4vw,3rem);
}
.article-toc-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.article-toc-list{
  list-style:none;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:0;
  padding:0;
}
.article-toc-link{
  display:flex;
  min-height:56px;
  align-items:center;
  padding:14px 18px;
  border-radius:18px;
  background:#f6f8fc;
  border:1px solid rgba(23,39,61,.08);
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
  line-height:1.35;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.article-toc-link:hover,
.article-toc-link:focus-visible{
  color:var(--primary);
  border-color:rgba(179,32,29,.24);
  box-shadow:0 10px 22px rgba(21,51,92,.08);
  transform:translateY(-1px);
}
.article-section[hidden]{display:none !important;}
.article-section.is-open{display:block;scroll-margin-top:124px;}
.article-body-rich{
  color:#42536a;
  font-size:1.02rem;
  line-height:1.82;
}
.article-body-rich .article-inline-heading,
.article-body-rich b,
.article-body-rich strong{
  display:block;
  margin:1.15rem 0 .35rem;
  color:var(--ink);
  font-size:1.08em;
  line-height:1.42;
  text-decoration:none;
}
.article-body-rich .article-inline-heading{
  font-weight:800;
}
.article-body-rich hr,
.article-body-rich iframe,
.article-body-rich video{display:none !important;}
.article-section-nav{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.article-nav-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  min-height:84px;
  padding:16px 18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(23,39,61,.10);
  box-shadow:0 10px 24px rgba(21,51,92,.06);
  color:var(--ink);
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.article-nav-card:hover,
.article-nav-card:focus-visible{
  color:var(--primary);
  border-color:rgba(179,32,29,.22);
  box-shadow:0 14px 28px rgba(21,51,92,.09);
  transform:translateY(-1px);
}
.article-nav-card__eyebrow{
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.01em;
  color:#6b7c90;
}
.article-nav-card strong{
  font-size:1rem;
  line-height:1.35;
}
.article-nav-card--secondary{background:#f8fafc;}
/* ===== 07. media queries ===== */
/* Article TOC responsiveness */
@media (max-width:1023px){
  .article-toc-columns{grid-template-columns:1fr;}
}
/* ===== 07. media queries ===== */
/* Article compact mobile refinements */
@media (max-width:767px){
  .article-page,
.article-page--attestation{padding:18px 0 56px;}
  .article-heading-card,
  .article-toc-card,
  .article-section,
  .article-more{border-radius:22px;}
  .article-heading-card{padding:24px 20px;margin-bottom:14px;}
  .article-heading-card h1{font-size:1.55rem;line-height:1.12;}
  .article-toc-card{padding:20px 16px;margin-bottom:16px;}
  .article-toc-link{
    position:relative;
    min-height:58px;
    padding:14px 42px 14px 16px;
    border-radius:16px;
    font-size:1.02rem;
    line-height:1.3;
  }
  .article-toc-link::after{
    content:"›";
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(23,39,61,.42);
    font-size:1.25rem;
    font-weight:700;
    line-height:1;
  }
  .article-section{padding:22px 16px;margin-bottom:14px;}
  .article-section h2{font-size:1.18rem;margin-bottom:14px;}
  .article-section__muted{display:block;margin-top:4px;font-size:.95rem;line-height:1.35;}
  .article-body-rich{font-size:1.04rem;line-height:1.75;}
  .article-section-nav{grid-template-columns:1fr;gap:10px;margin-top:20px;}
  .article-nav-card{min-height:76px;padding:14px 16px;border-radius:18px;}
  .article-nav-card strong{font-size:.98rem;}
}



/* ===== 04. halls ===== */
/* Internal hall pages — isolated styles for /zaly/*.html */
.hall-page{background:var(--bg)}
.hall-page .eyebrow{
  margin:0 0 12px;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--primary);
}
.hall-page h1,
.hall-page h2,
.hall-page h3{margin:0;color:var(--ink)}
.hall-page h1{font-size:clamp(2.15rem,4.2vw,3.55rem);line-height:1.05;letter-spacing:-.02em}
.hall-page h2{font-size:clamp(1.5rem,2.6vw,2.1rem);line-height:1.14}
.hall-page h3{font-size:1.15rem;line-height:1.3}
.hall-page p{margin:0;color:#40546d}
.hall-page-stack{display:grid;gap:28px}
.hall-section-heading{max-width:860px}
.hall-section-heading .section-intro{margin:14px 0 0}
.hall-hero{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(340px,.96fr);
  gap:32px;
  align-items:stretch;
}
.hall-hero__content,
.hall-page-card,
.hall-mini-trainer,
.hall-other-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hall-hero__content{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hall-hero__meta{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:grid;
  gap:10px;
  color:#30465f;
}
.hall-hero__meta li{margin:0}
.hall-hero__tags{margin-top:22px}
.hall-hero__actions{margin-top:28px}
.hall-hero__media{
  min-height:440px;
  overflow:hidden;
}
.hall-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 38%;
}
.hall-page-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.hall-page-grid--equal{align-items:stretch}
.hall-page-card{padding:30px}
.hall-page-card > * + *{margin-top:16px}
.hall-page-card__lead{font-size:1rem;line-height:1.65}
.hall-page-checklist{margin-top:18px}
.hall-age-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hall-age-tags span,
.hall-other-card p{
  color:#30465f;
}
.hall-age-tags span{
  display:inline-flex;
  align-items:center;
  min-height:46px;
  padding:10px 16px;
  border-radius:999px;
  background:#eef4ff;
  font-weight:800;
}
.hall-schedule-list{
  display:grid;
  gap:12px;
}
.hall-schedule-item{
  display:grid;
  gap:4px;
  padding:16px 18px;
  border-radius:20px;
  background:#f8fafc;
  border:1px solid rgba(21,51,92,.08);
}
.hall-schedule-item strong{color:#173763}
.hall-trainers-grid,
.hall-other-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.hall-mini-trainer,
.hall-other-card{
  padding:24px;
}
.hall-mini-trainer{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hall-mini-trainer p{min-height:3.3em}
.hall-mini-trainer a{
  color:var(--blue);
  text-decoration:none;
}
.hall-mini-trainer h3 a:hover,
.hall-mini-trainer h3 a:focus-visible,
.hall-mini-trainer__link:hover,
.hall-mini-trainer__link:focus-visible{color:var(--primary)}
.hall-mini-trainer__link{font-weight:800}
.hall-cta-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:20px;
  align-items:center;
}
.hall-cta-card__actions{justify-content:flex-end}
.hall-page-bottom-action{display:flex;justify-content:center}

@media (max-width:1100px){
  .hall-hero{grid-template-columns:1fr;gap:24px}
  .hall-hero__media{min-height:360px}
}

@media (max-width:980px){
  .hall-page-grid,
  .hall-trainers-grid,
  .hall-other-grid,
  .hall-cta-card{grid-template-columns:1fr}
  .hall-cta-card__actions{justify-content:flex-start}
}

@media (max-width:767px){
  .hall-page-stack{gap:20px}
  .hall-hero__content,
  .hall-page-card,
  .hall-mini-trainer,
  .hall-other-card{border-radius:24px}
  .hall-hero__content,
  .hall-page-card,
  .hall-mini-trainer,
  .hall-other-card{padding:22px}
  .hall-hero__media{min-height:280px;border-radius:24px}
  .hall-page .eyebrow{margin-bottom:10px;font-size:.76rem}
  .hall-page h1{font-size:1.9rem;line-height:1.06}
  .hall-page h2{font-size:1.34rem}
  .hall-age-tags{gap:10px}
  .hall-age-tags span{min-height:42px;padding:9px 14px;font-size:.96rem}
  .hall-schedule-item{padding:14px 15px;border-radius:18px}
}


/* ===== 03. homepage sections ===== */
/* Hall directory preview progressive reveal on main page */
.hall-directory-preview{position:relative}
.hall-grid--preview .hall-grid__toggle-wrap{
  display:none;
  justify-content:center;
  align-items:center;
  grid-column:1/-1;
}
.hall-grid__toggle-btn{
  min-width:220px;
  justify-content:center;
}
.hall-directory-preview--js .hall-grid--preview .hall-card--preview-desktop-base,
.hall-directory-preview--js .hall-grid--preview .hall-card--preview-extra{display:none}
.hall-directory-preview--js .hall-grid--preview .hall-grid__toggle-wrap--mobile{display:flex}
.hall-directory-preview--js.is-expanded .hall-grid--preview .hall-card--preview-extra{
  display:flex;
  animation:hall-preview-reveal .42s cubic-bezier(.22,1,.36,1) both;
}
.hall-directory-preview--js.is-expanded .hall-grid--preview .hall-grid__toggle-wrap{display:none !important}
@keyframes hall-preview-reveal{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:none}
}
@media (min-width:981px){
  .hall-directory-preview--js .hall-grid--preview .hall-card--preview-desktop-base{display:flex}
  .hall-directory-preview--js .hall-grid--preview .hall-grid__toggle-wrap--mobile{display:none}
  .hall-directory-preview--js .hall-grid--preview .hall-grid__toggle-wrap--desktop{display:flex}
}
@media (max-width:980px){
  .hall-grid__toggle-btn{width:100%;max-width:320px}
  .hall-directory-preview--js.is-expanded .hall-grid--preview .hall-card--preview-desktop-base{
    display:flex;
    animation:hall-preview-reveal .42s cubic-bezier(.22,1,.36,1) both;
  }
}


@media (max-width:1023px){
  .footer-grid--contact-hub{grid-template-columns:1fr;gap:20px}
  .footer-actions--primary{display:grid;grid-template-columns:1fr;gap:10px}
  .footer-actions--primary .btn{width:100%}
  .contact-channel{padding:15px 16px;border-radius:22px}
  .contact-channel__icon{width:50px;height:50px;border-radius:16px}
}
@media (max-width:767px){
  .contact-channel__copy strong{font-size:.98rem}
  .contact-channel__copy span{font-size:.88rem}
  .footer-bottom{align-items:flex-start}
}


/* ===== 17. safe photo viewer + mobile carousels fix ===== */
.photo-zoomable{
  cursor:zoom-in;
  -webkit-tap-highlight-color:transparent;
}
.hero-visual.photo-zoomable,.hall-hero__media.photo-zoomable,.trainer-photo.photo-zoomable,.trainer-photo-secondary.photo-zoomable,.media-card.photo-zoomable{cursor:zoom-in;}
.photo-viewer-open{
  overflow:hidden;
}
.photo-viewer{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.photo-viewer.is-open{
  opacity:1;
  pointer-events:auto;
}
.photo-viewer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(10,14,20,.94);
}
.photo-viewer__close{
  position:absolute;
  top:max(18px, env(safe-area-inset-top));
  right:max(18px, env(safe-area-inset-right));
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:1.9rem;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  z-index:4;
  backdrop-filter:blur(10px);
  transition:transform .18s ease;
}
.photo-viewer__stage{
  position:relative;
  z-index:1;
  width:min(100vw, 1400px);
  height:min(100vh, 100dvh);
  padding:max(78px, calc(env(safe-area-inset-top) + 78px)) max(16px, env(safe-area-inset-right)) max(26px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  touch-action:none;
  overscroll-behavior:contain;
  transition:transform .18s ease;
}
.photo-viewer__image{
  max-width:none;
  max-height:none;
  will-change:transform;
  user-select:none;
  -webkit-user-drag:none;
  transform-origin:center center;
  box-shadow:0 28px 60px rgba(0,0,0,.35);
  border-radius:22px;
}
.photo-viewer__caption{
  position:absolute;
  top:max(14px, env(safe-area-inset-top));
  left:max(16px, env(safe-area-inset-left));
  right:max(76px, calc(env(safe-area-inset-right) + 76px));
  z-index:3;
  color:rgba(255,255,255,.96);
  background:rgba(8,12,18,.88);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  border-radius:18px;
  padding:12px 16px;
  text-align:left;
  font-size:.95rem;
  font-weight:700;
  line-height:1.4;
  pointer-events:none;
  transition:transform .18s ease;
}
@media (max-width: 767px){
  .photo-viewer__caption{font-size:.88rem;padding:11px 14px;right:max(72px, calc(env(safe-area-inset-right) + 72px))}
}
@media (prefers-reduced-motion: reduce){
  .photo-viewer{transition:none}
}
@media (max-width:1023px){
  #trainers .trainer-carousel--mobile,
  #halls .hall-grid--preview{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding:4px 2px 10px;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
    touch-action:pan-x pan-y;
  }
  #trainers .trainer-carousel--mobile::-webkit-scrollbar,
  #halls .hall-grid--preview::-webkit-scrollbar{
    display:none;
  }
  #trainers .trainer-carousel--mobile .trainer-card{
    flex:0 0 min(82vw,320px);
  }
  #halls .hall-grid--preview .hall-card{
    flex:0 0 min(84vw,340px);
    display:block !important;
  }
  #halls .hall-grid--preview .hall-grid__toggle-wrap{
    display:none !important;
  }
  .hall-directory-preview--js .hall-grid--preview .hall-card--preview-desktop-base,
  .hall-directory-preview--js .hall-grid--preview .hall-card--preview-extra,
  .hall-directory-preview--js .hall-grid--preview .hall-card--preview-primary{
    display:block !important;
  }
  #halls .hall-grid--preview.is-dragging,
  #trainers .trainer-carousel--mobile.is-dragging{
    scroll-behavior:auto;
  }
}


/* ===== 07. media queries ===== */
/* Corrective pass: landscape fixed header and anchor offsets */
@media (max-width:1023px) and (orientation:landscape){
  .site-header,
  .site-header--internal{
    position:fixed !important;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:320;
    transform:none !important;
  }
  body{padding-top:var(--mobile-menu-top, 88px);}
  .section,
  .hero,
  .article-section.is-open{scroll-margin-top:calc(var(--mobile-menu-top, 88px) + 8px) !important;}
}


/* ===== 18. return navigation, loop carousels and unified anchor offsets ===== */
:root{
  --header-offset:118px;
  --header-anchor-gap:4px;
}
html{
  scroll-padding-top:calc(var(--header-offset, 118px) + var(--header-anchor-gap, 4px));
}
.section,
.hero,
#form,
.article-section.is-open,
[id]{
  scroll-margin-top:calc(var(--header-offset, 118px) + var(--header-anchor-gap, 4px)) !important;
}
.page-return-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:10px 16px;
  margin:10px 0 14px;
  border-radius:999px;
  text-decoration:none;
  color:#173763;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(23,55,99,.12);
  box-shadow:0 10px 24px rgba(12,26,47,.08);
  font-weight:800;
  line-height:1;
  width:max-content;
  max-width:100%;
  -webkit-tap-highlight-color:transparent;
  touch-action:pan-y;
}
.page-return-chip__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border-radius:999px;
  background:rgba(179,32,29,.08);
  color:var(--primary);
  flex:0 0 24px;
}
.page-return-chip__label{white-space:nowrap}
.page-return-chip::after{
  content:'Свайп или тап';
  margin-left:4px;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6f7f92;
}
.page-return-chip[href="../index.html#napravleniya"]::after{display:none}
.page-return-chip:hover{
  color:#102d4a;
  border-color:rgba(23,55,99,.18);
  transform:translateY(-1px);
}
.page-return-chip.is-swipe-armed{
  box-shadow:0 14px 32px rgba(12,26,47,.12);
}
.page-directory-cta{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:28px 30px;
  border-radius:28px;
  background:linear-gradient(180deg,#fbf8f4 0%, #f6f1ea 100%);
  border:1px solid #e8ddd1;
  box-shadow:0 22px 46px rgba(12,26,47,.08);
}
.page-directory-cta__content h2{margin:8px 0 10px}
.page-directory-cta__content p{margin:0;color:#506275;max-width:58ch}
.page-directory-cta__actions{display:flex;justify-content:flex-end}
@media (max-width:980px){
  .page-directory-cta{grid-template-columns:1fr;gap:18px;padding:24px 22px;border-radius:24px}
  .page-directory-cta__actions{justify-content:flex-start}
}
@media (max-width:767px){
  .page-return-chip{min-height:40px;padding:9px 14px;margin:8px 0 12px;font-size:.95rem}
  .page-return-chip::after{display:none}
}
@media (max-width:1023px) and (orientation:landscape){
  body{padding-top:var(--header-offset, 88px) !important;}
}


/* ===== 19. clean mobile carousel and anchor normalization ===== */
@media (max-width:1023px){
  #trainers .trainer-carousel--mobile,
  #halls .hall-grid--preview{
    display:flex;
    align-items:stretch;
    gap:14px;
    overflow:hidden;
    padding:4px 0 12px;
    margin-top:24px;
    scroll-snap-type:none;
    scroll-behavior:auto;
    scrollbar-width:none;
    touch-action:pan-y pinch-zoom;
    overscroll-behavior-x:none;
    -webkit-overflow-scrolling:auto;
  }
  #trainers .trainer-carousel--mobile::-webkit-scrollbar,
  #halls .hall-grid--preview::-webkit-scrollbar{display:none;}
  #trainers .trainer-carousel--mobile .trainer-card,
  #trainers .trainer-carousel--mobile [data-loop-clone="true"].trainer-card{
    flex:0 0 calc(100% - 42px);
    max-width:320px;
    min-width:0;
    margin:0;
  }
  #halls .hall-grid--preview .hall-card,
  #halls .hall-grid--preview [data-loop-clone="true"].hall-card{
    flex:0 0 calc(100% - 42px);
    max-width:340px;
    min-width:0;
    margin:0;
    display:block !important;
  }
  #trainers .trainer-carousel--mobile.is-dragging,
  #halls .hall-grid--preview.is-dragging{
    cursor:grabbing;
  }
}


/* ===== 10. schedule system ===== */
.schedule-entry-shell,.schedule-filter-shell,.schedule-results-shell,.schedule-hall-card,.schedule-result-card,.trainer-schedule-card,.trainer-schedule-snippet,.schedule-teaser-card{background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow)}
.schedule-entry-shell{padding:28px;display:grid;gap:24px}
.schedule-entry-shell__head{display:grid;gap:12px;max-width:64ch}
.schedule-entry-shell__metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.schedule-teaser-card{padding:18px 20px;background:#f8fafc;border-color:rgba(20,52,94,.08);box-shadow:none}
.schedule-teaser-card span{display:block;color:#5d6f84;font-weight:700;font-size:.95rem}
.schedule-teaser-card strong{display:block;margin-top:8px;color:#173763;font-size:1.2rem}
.schedule-entry-shell__actions{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,1fr) auto;gap:14px;align-items:end}
.schedule-inline-filter{display:grid;gap:8px}
.schedule-inline-filter span,.schedule-filter-form span{font-size:.95rem;font-weight:700;color:#41566d}
.schedule-inline-filter select,.schedule-filter-form select{width:100%;min-height:52px;padding:0 16px;border-radius:18px;border:1px solid rgba(19,53,94,.14);background:#fff;color:#13263d;font:600 .98rem/1.2 inherit;outline:none}
.schedule-inline-filter select:focus,.schedule-filter-form select:focus{border-color:rgba(190,27,47,.35);box-shadow:0 0 0 4px rgba(190,27,47,.08)}
.schedule-entry-shell__quick{display:flex;flex-wrap:wrap;gap:12px}
.schedule-chip-link,.schedule-hall-card__button{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 16px;border-radius:999px;border:1px solid rgba(19,53,94,.1);background:#f5f7fb;color:#173763;font-weight:800;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.schedule-chip-link:hover,.schedule-hall-card__button:hover{transform:translateY(-1px);border-color:rgba(190,27,47,.18);box-shadow:0 10px 22px rgba(16,35,58,.08)}
.schedule-page-stack{display:grid;gap:24px}
.schedule-page-intro{max-width:72ch}
.schedule-page-intro h1{margin-bottom:14px}
.schedule-hall-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.schedule-hall-card{padding:22px;display:grid;gap:14px}
.schedule-hall-card__meta{display:grid;gap:6px;color:#506275}
.schedule-hall-card__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:auto}
.schedule-hall-card__button{padding-inline:18px}
.schedule-filter-shell{padding:26px;display:grid;gap:22px}
.schedule-filter-shell__head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start}
.schedule-filter-shell__head p{margin:0;color:#506275;max-width:58ch}
.schedule-filter-form{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;align-items:end}
.schedule-filter-form label{display:grid;gap:8px}
.schedule-filter-actions{display:flex;gap:12px;align-items:center;justify-content:flex-end;grid-column:1/-1}
.schedule-results-shell{padding:28px;display:grid;gap:22px}
.schedule-results-meta p{margin:0;color:#506275}
.schedule-results-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.schedule-result-card,.trainer-schedule-card{padding:22px;display:grid;gap:16px}
.schedule-result-card__head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.schedule-result-card__head h3,.trainer-schedule-card__head h3{margin:6px 0 8px;font-size:1.2rem}
.schedule-result-card__head p,.trainer-schedule-card__head p{margin:0;color:#5b6d82}
.schedule-result-meta,.trainer-schedule-card__meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.schedule-meta-pill{padding:14px 16px;border-radius:18px;background:#f8fafc;border:1px solid rgba(19,53,94,.08);display:grid;gap:4px}
.schedule-meta-pill span{font-size:.88rem;color:#63768b;font-weight:700}
.schedule-meta-pill strong,.schedule-meta-pill a{color:#173763;text-decoration:none}
.schedule-result-actions,.trainer-schedule-card__actions{display:flex;flex-wrap:wrap;gap:12px}
.schedule-zero-state{padding:28px;display:grid;gap:14px;text-align:left;background:#fff7f6;border:1px solid rgba(190,27,47,.08);border-radius:24px}
.schedule-zero-state p{margin:0;color:#5a6c82}
.hall-schedule-list--dynamic{display:grid;gap:12px}
.hall-schedule-list--dynamic .hall-schedule-item{gap:8px}
.hall-schedule-item__meta{display:flex;flex-wrap:wrap;gap:10px 14px;color:#42556e;font-size:.96rem}
.hall-schedule-item__meta a{color:#173763;text-decoration:none;font-weight:800}
.hall-page-card__actions--stack{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
.trainer-schedule-snippet{margin-top:16px;padding:18px;border-top:0;background:#f8fafc;border:1px solid rgba(20,52,94,.08);display:grid;gap:10px}
.trainer-schedule-snippet strong{display:block;color:#173763}
.trainer-schedule-snippet p{margin:0;color:#4f6278}
.trainer-schedule-snippet__stats{display:flex;flex-wrap:wrap;gap:10px 12px}
.trainer-schedule-snippet__stats span{display:inline-flex;align-items:center;min-height:38px;padding:8px 12px;border-radius:999px;background:#eef4ff;color:#173763;font-weight:800}
.trainer-schedule-dynamic{display:grid;gap:16px;margin-top:16px}
.trainer-schedule-card{background:#fdfdfd}
.trainer-schedule-card__head{display:grid;gap:6px}
@media (max-width:1023px){.schedule-entry-shell,.schedule-filter-shell,.schedule-results-shell,.schedule-secondary-shell{padding:22px}.schedule-entry-shell__metrics,.schedule-results-grid,.schedule-hall-grid{grid-template-columns:1fr}.schedule-entry-shell__actions,.schedule-filter-form{grid-template-columns:1fr}.schedule-filter-shell__head,.schedule-result-card__head,.schedule-secondary-shell__head{display:grid}.schedule-result-meta,.trainer-schedule-card__meta{grid-template-columns:1fr}.schedule-filter-actions{justify-content:flex-start}.hall-page-card__actions--stack .btn,.schedule-filter-actions .btn{width:100%}.schedule-inline-filter select,.schedule-filter-form select{min-height:48px;padding:0 14px;font-size:.88rem}.schedule-filter-form select option,.schedule-inline-filter select option{font-size:.88rem}}
@media (max-width:680px){.schedule-entry-shell__quick,.schedule-result-actions,.trainer-schedule-card__actions{display:grid;grid-template-columns:1fr}.schedule-chip-link,.schedule-hall-card__button,.schedule-result-actions .btn,.trainer-schedule-card__actions .btn,.hall-page-card__actions--stack .btn{width:100%}.schedule-teaser-card{padding:16px 18px}}

.schedule-secondary-shell{padding:28px 30px;border-radius:28px;background:#fbf8f4;border:1px solid #e8ddd1;box-shadow:0 22px 46px rgba(12,26,47,.08)}
.schedule-secondary-shell__head{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;margin-bottom:18px}
.schedule-secondary-shell__head h2{margin-bottom:8px}
.schedule-filter-form select option,.schedule-inline-filter select option{font-size:.95rem;line-height:1.25}
@media (min-width:1024px){.page-return-chip[data-swipe-nav="true"]{display:none}}


/* ===== 20. schedule refinement pass ===== */
.schedule-page-top{padding:18px 0 34px;scroll-margin-top:118px}
.schedule-page-top .schedule-page-stack{gap:18px}
.schedule-page-top .schedule-filter-shell{padding:24px 26px;gap:18px}
.schedule-page-top .schedule-filter-shell__head--compact{display:block}
.schedule-page-top .schedule-filter-shell__head--compact .eyebrow{margin:0 0 10px}
.schedule-page-top .schedule-filter-shell__head--compact h1,
.schedule-entry-shell__head--compact h2{margin:0;color:var(--ink);line-height:1.08;letter-spacing:-.03em}
.schedule-page-top .schedule-filter-shell__head--compact h1{font-size:clamp(1.9rem,3.8vw,2.7rem)}
.schedule-filter-form--compact{grid-template-columns:minmax(0,1.2fr) minmax(0,1fr) auto;align-items:end}
.schedule-filter-form--compact .schedule-filter-actions--inline{display:flex;gap:14px;align-items:end;justify-content:flex-start}
.schedule-filter-form--compact .schedule-filter-actions--inline .btn{min-width:220px}
.schedule-entry-shell{padding:24px 26px;gap:18px}
.schedule-entry-shell__head--compact{gap:10px;max-width:none}
.schedule-entry-shell__head--compact .section-intro{display:none}
.schedule-entry-shell__actions--compact{grid-template-columns:minmax(0,1.2fr) minmax(0,1fr) auto auto;gap:14px;align-items:end}
.schedule-entry-shell__actions--compact .btn{white-space:nowrap}
.schedule-entry-shell__metrics,
.schedule-entry-shell__quick,
.schedule-secondary-shell,
.schedule-hall-directory-section{display:none !important}
#schedule .schedule-entry-shell{padding:28px}
.trial-benefits{grid-template-columns:repeat(3,minmax(0,1fr));align-items:stretch}
.trial-benefits .feature-card{height:100%}
@media (max-width:1023px){
  .schedule-page-top{padding:14px 0 28px}
  .schedule-page-top .schedule-filter-shell,
  .schedule-entry-shell{padding:20px}
  .schedule-filter-form--compact,
  .schedule-entry-shell__actions--compact{grid-template-columns:1fr}
  .schedule-filter-form--compact .schedule-filter-actions--inline{display:grid;grid-template-columns:1fr;gap:12px}
  .schedule-filter-form--compact .schedule-filter-actions--inline .btn,
  .schedule-entry-shell__actions--compact .btn{width:100%;min-width:0}
  .schedule-page-top .schedule-filter-shell__head--compact h1{font-size:clamp(1.55rem,6vw,2rem)}
  .trial-benefits{grid-template-columns:1fr}
}


/* ===== 20. compact schedule CTA + MAX label refinement ===== */
.btn-schedule-submit,
button.btn-solid[type="submit"].btn-schedule-submit{
  background:linear-gradient(180deg,#eef3f8 0%,#e4ecf4 100%);
  color:var(--blue);
  border-color:#d5dfea;
  box-shadow:0 12px 26px rgba(18,36,62,.08);
}
.btn-schedule-submit:hover,
button.btn-solid[type="submit"].btn-schedule-submit:hover{
  background:linear-gradient(180deg,#f4f7fb 0%,#ebf1f7 100%);
  color:var(--blue);
  border-color:#c9d5e2;
  box-shadow:0 16px 32px rgba(18,36,62,.1);
}
.contact-channel--max .contact-channel__copy strong{
  font-size:.96rem;
  line-height:1.18;
}
@media (max-width:767px){
  .contact-channel--max .contact-channel__copy strong{
    font-size:.92rem;
  }
}

/* SEO semantic intros */
.schedule-page-intro,
.schedule-entry-shell__seo-intro {
  margin-top: 12px;
  max-width: 72ch;
  color: rgba(37, 43, 58, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .schedule-page-intro,
  .schedule-entry-shell__seo-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


.partner-mini-card {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 0.5rem;
}

.partner-mini-card strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}

.partner-mini-card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.partner-mini-card .btn {
  justify-self: start;
}

.partner-mini-card .btn.btn-outline {
  border-color: rgba(255,255,255,0.16);
  color: #ffffff;
  background: rgba(255,255,255,0.02);
}

.partner-mini-card .btn.btn-outline:hover,
.partner-mini-card .btn.btn-outline:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}


/* contact channel light variant for contacts page */
.hall-page-card .contact-channel{
  border-color: rgba(18,36,62,.10);
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(7,13,22,.08);
}
.hall-page-card .contact-channel:hover,.hall-page-card .contact-channel:focus-visible{
  border-color: rgba(18,36,62,.16);
  background: #fbfdff;
  box-shadow: 0 18px 32px rgba(7,13,22,.12);
}
.hall-page-card .contact-channel:focus-visible{outline:2px solid rgba(18,36,62,.18);outline-offset:2px}
.hall-page-card .contact-channel__copy strong{color: var(--blue);}
.hall-page-card .contact-channel__copy span{color: rgba(37,43,58,.78);}
.hall-page-card .contact-channel__arrow{color: rgba(22,52,93,.65);}

/* partner card usable on light sections */
.hall-page-card .partner-mini-card{border-top-color: rgba(18,36,62,.10);}
.hall-page-card .partner-mini-card strong{color: var(--blue);}
.hall-page-card .partner-mini-card p{color: rgba(37,43,58,.78);}
.hall-page-card .partner-mini-card .btn.btn-outline{border-color: rgba(18,36,62,.12); color: var(--blue); background:#fff;}
.hall-page-card .partner-mini-card .btn.btn-outline:hover,.hall-page-card .partner-mini-card .btn.btn-outline:focus-visible{background:#f4f7fb;border-color: rgba(18,36,62,.18);}


.official-trust-card{margin-top:1.25rem;padding:1.2rem 1.25rem;border:1px solid rgba(17,24,39,.10);border-radius:24px;background:#fff;box-shadow:0 10px 30px rgba(15,23,42,.06)}
.official-trust-card h3,.official-trust-card h2{margin:0 0 .7rem;color:#13213a}
.official-trust-card p{margin:.6rem 0;color:#41506b}
.official-trust-links{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:.9rem}
.official-trust-card--about{margin-top:1rem}
.official-trust-card--schedule{margin-top:1rem}
.official-trust-card--news-index{margin-bottom:1.25rem}
.partner-mini-card--official{margin-top:1rem}
@media (max-width:768px){.official-trust-card{padding:1rem;border-radius:20px}}

/* === SEVHWARANG patch 2026-04-14: show upper part of people photos in cards ===
   Purpose: trainer/person photos in compact cards were cropped by vertical centering.
   Keep halls/interior photos unchanged. */
.trainer-card:not(.trainer-card--placeholder) > img,
#trainers .trainer-card:not(.trainer-card--placeholder) > img,
#trainers .trainer-card:not(.trainer-card--placeholder) img {
  object-position: 50% 0% !important;
}

.trainer-card--secondary > img,
.trainer-card--yulia > img {
  object-position: 50% 0% !important;
  transform-origin: 50% 0% !important;
}

/* Internal trainer listing/detail media that uses the same portrait assets. */
.trainer-grid-page .trainer-photo img,
.trainer-grid-page .trainer-photo-secondary img,
.trainer-photo--yulia img {
  object-position: 50% 0% !important;
}


/* === SEVHWARANG Wave 7E: clean About block + 4 hero pills === */
@media (min-width:1024px){
  .hero-pills{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:8px !important;
    align-items:center;
  }
  .hero-pill{
    min-height:40px;
    padding:8px 11px;
    font-size:.80rem;
    line-height:1.05;
    flex:0 0 auto;
  }
}

.about-split-grid{
  align-items:start;
  gap:34px;
}
.about-text-col{
  max-width:58ch;
}
.about-text-col h2{
  margin-bottom:14px;
  line-height:1.12;
}
.about-text-col p{
  max-width:58ch;
  margin:0 0 13px;
  line-height:1.58;
}
.about-benefits{
  margin-top:16px;
}
.about-benefits h3,
.about-official-note h3{
  margin:0 0 10px;
  color:#173763;
  font-size:1.02rem;
  line-height:1.25;
}
.about-benefit-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.about-benefit-list li{
  position:relative;
  padding-left:22px;
  color:#3f536b;
  line-height:1.45;
}
.about-benefit-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#bd1f2d;
  box-shadow:0 0 0 4px rgba(189,31,45,.08);
}
.about-official-note{
  margin-top:17px;
  padding-top:15px;
  border-top:1px solid rgba(19,44,74,.10);
}
.about-official-note p{
  margin-bottom:0;
}
.about-accent,
.official-trust-card--about{
  display:none !important;
}

/* Preserve halls top-crop behavior if hall photos are replaced from admin. */
.hall-card__media img,
.hall-directory-preview .hall-card__media img,
#hallDirectoryGrid .hall-card__media img,
.hall-hero__media img,
.hall-hero .hall-hero__media img,
.zaly .hall-hero__media img{
  object-fit:cover !important;
  object-position:50% 0% !important;
}

@media (max-width:1023px){
  .about-text-col{
    max-width:100%;
  }
  .about-text-col p{
    max-width:100%;
  }
  .about-benefit-list{
    gap:9px;
  }
  .about-official-note{
    margin-top:16px;
  }
}


/* === SEVHWARANG final: mobile hero price pill centered and wider ===
   The homepage has several older hero media queries. This block is intentionally
   appended at the end and uses a 6-column mobile grid so the fourth pill can
   sit centered on its own row without disturbing the first three pills. */
@media (max-width: 767px){
  .hero-pills{
    display:grid !important;
    grid-template-columns:repeat(6,minmax(0,1fr)) !important;
    gap:8px !important;
    align-items:stretch !important;
  }
  .hero-pills .hero-pill{
    min-width:0 !important;
    width:auto !important;
    max-width:none !important;
    justify-self:stretch !important;
  }
  .hero-pills .hero-pill:nth-child(1){grid-column:1 / span 2 !important;}
  .hero-pills .hero-pill:nth-child(2){grid-column:3 / span 2 !important;}
  .hero-pills .hero-pill:nth-child(3){grid-column:5 / span 2 !important;}
  .hero-pills .hero-pill:nth-child(4),
  .hero-pills .hero-pill:last-child{
    grid-column:2 / span 4 !important;
    justify-self:stretch !important;
    padding-left:16px !important;
    padding-right:16px !important;
    white-space:normal !important;
  }
}


/* === SEVHWARANG Wave 7E.2: compact mobile portrait hero ===
   Desktop and landscape are intentionally not changed. Goal: keep the price
   pill visible on the first smartphone screen by tightening vertical rhythm. */
@media (max-width: 767px) and (orientation: portrait){
  .hero{
    padding-top:6px !important;
    padding-bottom:8px !important;
  }
  .hero-shell{
    border-radius:24px !important;
  }
  .hero-visual{
    min-height:194px !important;
  }
  .hero-copy{
    padding:14px 18px 12px !important;
  }
  .hero-copy h1{
    font-size:clamp(1.64rem, 8.8vw, 2.05rem) !important;
    line-height:.98 !important;
    letter-spacing:-.045em !important;
    margin-bottom:0 !important;
  }
  .hero-lead{
    font-size:.94rem !important;
    line-height:1.32 !important;
    margin-top:10px !important;
  }
  .hero-pills{
    display:grid !important;
    grid-template-columns:repeat(6,minmax(0,1fr)) !important;
    gap:7px !important;
    margin-top:11px !important;
    align-items:stretch !important;
  }
  .hero-pills .hero-pill{
    min-height:36px !important;
    padding:6px 8px !important;
    font-size:.72rem !important;
    line-height:1.05 !important;
    min-width:0 !important;
    width:auto !important;
    max-width:none !important;
    justify-self:stretch !important;
  }
  .hero-pills .hero-pill:nth-child(1){grid-column:1 / span 2 !important;}
  .hero-pills .hero-pill:nth-child(2){grid-column:3 / span 2 !important;}
  .hero-pills .hero-pill:nth-child(3){grid-column:5 / span 2 !important;}
  .hero-pills .hero-pill:nth-child(4),
  .hero-pills .hero-pill:last-child{
    grid-column:2 / span 4 !important;
    min-height:38px !important;
    padding-left:16px !important;
    padding-right:16px !important;
    white-space:normal !important;
  }
}

/* === SEVHWARANG Wave 7E.3: mobile about + carousel swipe hint ===
   Mobile portrait only. Desktop and landscape are intentionally unchanged. */
@media (max-width: 767px) and (orientation: portrait){
  /* О клубе: no more Подробнее/Свернуть button, content is readable immediately. */
  #about .about-more-toggle{
    display:none !important;
  }
  #about .about-more-mobile,
  #about .about-more-mobile.is-expanded{
    display:block !important;
  }

  /* Simple text hint, not a badge/pill. */
  #halls .section-intro::after,
  #trainers h2::after{
    content:"Листай →";
    display:block;
    margin-top:8px;
    color:#53657a;
    font-size:.86rem;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.01em;
  }

  /* Peek effect: main card stays wide, next card edge is visible. */
  #trainers .trainer-carousel--mobile,
  #halls .hall-grid--preview{
    gap:8px !important;
    padding:4px 18px 12px 0 !important;
    margin-top:16px !important;
    overflow:hidden !important;
    align-items:stretch !important;
  }

  #trainers .trainer-carousel--mobile .trainer-card,
  #trainers .trainer-carousel--mobile [data-loop-clone="true"].trainer-card,
  #halls .hall-grid--preview .hall-card,
  #halls .hall-grid--preview [data-loop-clone="true"].hall-card{
    flex:0 0 calc(100% - 44px) !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
  }
}


/* === SEVHWARANG Wave 7F: stable hall photo cropping ===
   Hall images must use one predictable frame: fill the container, keep the
   upper part visible, crop extra from the bottom. Applies to homepage hall
   cards and internal hall pages without changing desktop layout width. */
#halls .hall-card__media img,
.hall-card__media img,
.hall-page .hall-hero__media img,
.hall-hero__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 0% !important;
}
#halls .hall-card__media,
.hall-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hall-page .hall-hero__media,
.hall-hero__media {
  overflow: hidden;
}


/* Wave 7H.5 — hall reviews Yandex widget */
.hall-reviews-card{
  padding:30px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,560px);
  gap:24px;
  align-items:stretch;
}
.hall-reviews-card__content{display:flex;flex-direction:column;justify-content:center;gap:14px}
.hall-reviews-card__content h2{margin:0}
.hall-reviews-card__content p{margin:0;color:#40546d}
.hall-reviews-card__actions{margin-top:6px}
.hall-reviews-widget{
  border-radius:24px;
  overflow:hidden;
  min-height:400px;
  background:#f4f6fa;
  border:1px solid rgba(19,44,74,.08);
}
.hall-reviews-widget iframe{display:block;width:100%;height:100%;min-height:400px;border:0;background:#fff}
@media (max-width:1023px){
  .hall-reviews-card{grid-template-columns:1fr;padding:22px;gap:18px}
  .hall-reviews-widget,.hall-reviews-widget iframe{min-height:360px}
}
@media (max-width:680px){
  .hall-reviews-card{padding:18px;gap:14px}
  .hall-reviews-widget,.hall-reviews-widget iframe{min-height:320px}
  .hall-reviews-card__actions .btn{width:100%}
}


/* Wave 7H.6 — restore mobile call button on internal trainer/hall pages */
@media (max-width:1023px){
  .site-header--internal.site-header--mobile-cta-visible .mobile-inline-call{display:none !important;}
  .site-header--internal.site-header--mobile-cta-visible .mobile-header-cta{display:block !important;padding:0 0 10px !important;}
  .site-header--internal.site-header--mobile-cta-visible .mobile-header-cta .btn-call{display:flex;width:100%;min-width:0;min-height:44px;font-size:1rem;box-shadow:0 10px 20px rgba(179,32,29,.16);}
}


/* === SEVHWARANG hall pages: in-page Yandex reviews without map === */
.hall-reviews-card--stacked{
  grid-template-columns:1fr;
  gap:18px;
}
.hall-reviews-card--stacked .hall-reviews-card__content{
  max-width:860px;
}
.hall-reviews-card--stacked .hall-reviews-card__content p{
  max-width:840px;
}
.hall-reviews-widget--tall{
  min-height:920px;
}
.hall-reviews-widget--tall iframe{
  min-height:920px;
  height:920px;
}
.hall-reviews-embed{
  width:100%;
  height:100%;
  min-height:920px;
  overflow:hidden;
  position:relative;
  background:#fff;
}
.hall-reviews-embed a{
  box-sizing:border-box;
  text-decoration:none;
  color:#8a97a6;
  font-size:10px;
  font-family:YS Text,sans-serif;
  position:absolute;
  bottom:8px;
  left:0;
  width:100%;
  text-align:center;
  overflow:hidden;
  text-overflow:ellipsis;
  display:block;
  max-height:14px;
  white-space:nowrap;
  padding:0 16px;
}
@media (max-width:1023px){
  .hall-reviews-widget--tall,
  .hall-reviews-widget--tall iframe,
  .hall-reviews-embed{
    min-height:820px;
    height:820px;
  }
}
@media (max-width:680px){
  .hall-reviews-card--stacked{
    gap:12px;
  }
  .hall-reviews-widget--tall,
  .hall-reviews-widget--tall iframe,
  .hall-reviews-embed{
    min-height:760px;
    height:760px;
  }
  .hall-reviews-card--stacked .hall-reviews-card__content p{
    font-size:.96rem;
    line-height:1.6;
  }
}


/* === GRANDMASTER patch 2026-04-21c: homepage hero final layout + content cleanup === */
.hero .hero-image{
  object-position:50% 18% !important;
}
.hero-pill--link{
  text-decoration:none !important;
}
.hero-copy .hero-desktop-copy{
  width:100%;
}
.hero-copy .hero-pills--primary,
.hero-copy .hero-pills--secondary{
  width:100% !important;
  max-width:none !important;
  justify-content:stretch !important;
  align-items:stretch !important;
}
.hero-copy .hero-pills--primary{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:12px !important;
  margin-top:18px !important;
}
.hero-copy .hero-pills--secondary{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:12px !important;
  margin-top:12px !important;
}
.hero-copy .hero-pills--primary .hero-pill,
.hero-copy .hero-pills--secondary .hero-pill{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  min-height:50px !important;
  padding:10px 14px !important;
  white-space:normal !important;
  text-align:center !important;
  justify-content:center !important;
  justify-self:stretch !important;
  align-self:stretch !important;
  line-height:1.15 !important;
}
@media (max-width:1023px){
  .hero .hero-image{
    object-position:50% 16% !important;
  }
  .hero-copy .hero-pills--primary{
    gap:10px !important;
    margin-top:16px !important;
  }
  .hero-copy .hero-pills--secondary{
    gap:10px !important;
    margin-top:10px !important;
  }
  .hero-copy .hero-pills--primary .hero-pill,
  .hero-copy .hero-pills--secondary .hero-pill{
    min-height:48px !important;
    padding:9px 10px !important;
    font-size:.80rem !important;
  }
}
@media (max-width:767px){
  .hero-copy .hero-pills--primary{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:8px !important;
    margin-top:14px !important;
  }
  .hero-copy .hero-pills--secondary{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
    margin-top:8px !important;
  }
  .hero-copy .hero-pills--primary .hero-pill,
  .hero-copy .hero-pills--secondary .hero-pill{
    min-height:46px !important;
    padding:8px 8px !important;
    font-size:.74rem !important;
    line-height:1.12 !important;
    border-radius:999px !important;
  }
}


/* === GRANDMASTER patch 2026-04-21c: center hall pills and button labels === */
#halls .hall-card__district,
.hall-card__district{
  align-self:center !important;
  justify-content:center !important;
  text-align:center !important;
  max-width:100%;
}

#halls .hall-card__actions,
.hall-card__actions{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;
}

#halls .hall-card__actions .btn,
.hall-card__actions .btn,
#halls .hall-card__body > div[style] .btn,
.hall-card__body > div[style] .btn{
  justify-content:center !important;
  text-align:center !important;
}

#halls .hall-card__body > div[style],
.hall-card__body > div[style]{
  display:flex !important;
  justify-content:center !important;
}


/* === GRANDMASTER patch 2026-04-21d: rent bento section === */
.rent-bento-section{
  padding:58px 0 74px;
}
.rent-bento-shell{
  background:linear-gradient(180deg,#f5f6f8 0%,#eef2f6 100%);
  border:1px solid rgba(16,40,74,.06);
  border-radius:32px;
  box-shadow:0 20px 54px rgba(16,40,74,.08);
  padding:24px;
}
.rent-bento-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:22px;
  align-items:stretch;
}
.rent-bento-gallery-shell,
.rent-bento-card,
.rent-bento-cta-card{
  background:#fff;
  border:1px solid rgba(16,40,74,.08);
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  border-radius:24px;
}
.rent-bento-gallery-shell{
  padding:14px;
}
.rent-bento-gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-template-rows:minmax(270px,1.05fr) minmax(182px,.78fr);
  gap:12px;
  height:100%;
}
.rent-bento-photo{
  margin:0;
  overflow:hidden;
  border-radius:18px;
  background:#dfe5ec;
}
.rent-bento-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.rent-bento-photo--hero{
  grid-column:1 / -1;
}
.rent-bento-info{
  display:grid;
  grid-template-rows:auto auto auto 1fr auto;
  gap:14px;
  min-height:100%;
}
.rent-bento-head{
  padding:2px 4px 0;
}
.rent-bento-eyebrow{
  margin:0 0 8px;
  color:#b3201d;
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.rent-bento-head h2{
  margin:0;
  color:#10284a;
  font-size:clamp(2.25rem,3.65vw,3.35rem);
  line-height:.95;
  letter-spacing:-.045em;
  font-weight:900;
  text-wrap:balance;
}
.rent-bento-card,
.rent-bento-cta-card{
  padding:18px 20px;
}
.rent-bento-card--desc p{
  margin:0;
  color:#40546d;
  font-size:1.02rem;
  line-height:1.58;
  text-wrap:pretty;
}
.rent-bento-price-grid,
.rent-bento-list-grid,
.rent-bento-cta-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.rent-bento-card--price{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:128px;
}
.rent-bento-card--price h3,
.rent-bento-card--list h3{
  margin:0 0 12px;
  color:#10284a;
  font-size:1.02rem;
  line-height:1.24;
  font-weight:900;
}
.rent-bento-price{
  margin:0;
  color:#b3201d;
  font-size:clamp(2rem,3vw,2.55rem);
  line-height:.94;
  letter-spacing:-.04em;
  font-weight:900;
}
.rent-bento-check-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.rent-bento-check-list li{
  position:relative;
  padding-left:24px;
  color:#40546d;
  line-height:1.38;
}
.rent-bento-check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  color:#b3201d;
  font-size:1.06rem;
  font-weight:900;
}
.rent-bento-card--list{
  min-height:100%;
}
.rent-bento-cta-card{
  padding:14px;
}
.rent-bento-cta-grid{
  gap:12px;
}
.rent-bento-cta-btn,
.rent-bento-cta-btn--secondary{
  width:100%;
  min-height:58px;
  font-size:1rem;
  font-weight:900;
  box-shadow:0 12px 28px rgba(179,32,29,.22);
}
.rent-bento-cta-btn--secondary{
  background:#b3201d;
  color:#fff;
  border-color:transparent;
}
.rent-bento-cta-btn--secondary:hover{
  background:#981b18;
  color:#fff;
  border-color:transparent;
}
@media (max-width:1180px){
  .rent-bento-grid{
    grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);
  }
  .rent-bento-gallery{
    grid-template-rows:minmax(246px,1fr) minmax(170px,.72fr);
  }
  .rent-bento-head h2{
    font-size:clamp(2rem,3.3vw,2.9rem);
  }
  .rent-bento-price{
    font-size:clamp(1.85rem,2.6vw,2.25rem);
  }
}
@media (max-width:1023px){
  .rent-bento-section{
    padding:42px 0 54px;
  }
  .rent-bento-shell{
    padding:18px;
    border-radius:28px;
  }
  .rent-bento-grid{
    grid-template-columns:1fr;
  }
  .rent-bento-info{
    order:1;
  }
  .rent-bento-gallery-shell{
    order:2;
  }
  .rent-bento-head h2{
    font-size:clamp(2rem,6vw,2.7rem);
    line-height:1;
  }
}
@media (max-width:767px){
  .rent-bento-shell{
    padding:14px;
    border-radius:24px;
  }
  .rent-bento-gallery-shell,
  .rent-bento-card,
  .rent-bento-cta-card{
    border-radius:20px;
  }
  .rent-bento-gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:minmax(210px,1fr) minmax(148px,.8fr) minmax(148px,.8fr);
  }
  .rent-bento-photo--hero{
    grid-column:1 / -1;
  }
  .rent-bento-photo--small:last-child{
    grid-column:1 / -1;
  }
  .rent-bento-price-grid,
  .rent-bento-list-grid,
  .rent-bento-cta-grid{
    grid-template-columns:1fr;
  }
  .rent-bento-card,
  .rent-bento-cta-card{
    padding:16px 16px;
  }
  .rent-bento-card--desc p,
  .rent-bento-check-list li{
    font-size:.96rem;
  }
  .rent-bento-price{
    font-size:2.1rem;
  }
  .rent-bento-cta-btn,
  .rent-bento-cta-btn--secondary{
    min-height:54px;
    font-size:.96rem;
  }
}


/* === GRANDMASTER patch 2026-04-21d: compact about bento section === */
.about-bento-section{
  padding:28px 0 18px;
  scroll-margin-top:118px;
}
.about-bento-wrap{
  display:grid;
  gap:14px;
}
.about-bento-head{
  display:grid;
  gap:4px;
}
.about-bento-eyebrow{
  margin:0;
  letter-spacing:.08em;
}
.about-bento-head h2{
  margin:0;
  font-size:clamp(2.1rem,4vw,3.3rem);
  line-height:.96;
  letter-spacing:-.045em;
  color:#10284a;
  text-wrap:balance;
}
.about-bento-card{
  display:grid;
  gap:14px;
  padding:14px;
  border-radius:30px;
  background:linear-gradient(180deg,#f6f8fc 0%,#eef3f8 100%);
  border:1px solid rgba(16,40,74,.07);
  box-shadow:0 18px 42px rgba(16,40,74,.08);
}
.about-bento-card--top{
  grid-template-columns:minmax(0,1.6fr) minmax(300px,.94fr);
  align-items:stretch;
}
.about-bento-card--bottom{
  grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);
  align-items:stretch;
}
.about-bento-media{
  overflow:hidden;
  border-radius:24px;
  background:#dfe7ef;
  min-height:0;
}
.about-bento-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.about-bento-media--hero{
  min-height:290px;
}
.about-bento-media--hero img{
  object-position:50% 30%;
}
.about-bento-media--coach{
  min-height:250px;
}
.about-bento-media--coach img{
  object-position:50% 18%;
}
.about-bento-panel{
  background:#fff;
  border-radius:24px;
  border:1px solid rgba(16,40,74,.06);
  box-shadow:0 12px 28px rgba(16,40,74,.06);
}
.about-bento-panel--directions{
  padding:22px 22px 18px;
  display:grid;
  gap:16px;
  align-content:start;
}
.about-bento-panel--directions h3{
  margin:0;
  font-size:1.56rem;
  line-height:1.05;
  letter-spacing:-.03em;
  text-transform:uppercase;
  color:#10284a;
}
.about-bento-tags{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.about-bento-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:10px 14px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid rgba(16,40,74,.08);
  color:#10284a;
  font-weight:800;
  line-height:1.12;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.about-bento-tag--wide{
  grid-column:1 / -1;
}
.about-bento-note{
  margin:0;
  color:#55657c;
  font-size:.98rem;
  line-height:1.35;
  font-weight:700;
}
.about-bento-panel--details{
  padding:18px 20px;
  display:grid;
  gap:14px;
}
.about-bento-subtitle{
  margin:0 0 10px;
  color:#10284a;
  font-size:1rem;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.02em;
}
.about-bento-location-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.about-bento-location-card{
  min-height:92px;
  padding:12px 12px 11px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid rgba(16,40,74,.08);
  display:grid;
  gap:6px;
  align-content:start;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}
.about-bento-location-icon,
.about-bento-benefit-icon{
  width:22px;
  height:22px;
  color:#c71f25;
  display:inline-flex;
}
.about-bento-location-icon svg,
.about-bento-benefit-icon svg{
  width:100%;
  height:100%;
}
.about-bento-location-card strong{
  color:#10284a;
  font-size:1rem;
  line-height:1.1;
}
.about-bento-location-card small{
  color:#53657d;
  font-size:.86rem;
  line-height:1.2;
}
.about-bento-benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.about-bento-benefit-item{
  min-height:74px;
  padding:12px 12px 11px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid rgba(16,40,74,.08);
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  gap:10px;
  align-items:start;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}
.about-bento-benefit-item span:last-child{
  color:#10284a;
  font-size:.94rem;
  line-height:1.18;
  font-weight:800;
  text-wrap:pretty;
}
.about-bento-cta{
  display:flex;
  justify-content:center;
}
.about-bento-cta-btn{
  min-height:58px;
  padding:0 30px;
  border-radius:999px;
  letter-spacing:.01em;
  text-align:center;
  box-shadow:0 16px 34px rgba(179,32,29,.24);
}
.about-bento-cta-btn:hover{
  box-shadow:0 20px 40px rgba(179,32,29,.28);
}
@media (min-width:1024px){
  .about-bento-wrap{min-height:min(85vh,760px);align-content:start;}
}
@media (max-width:1023px){
  .about-bento-section{padding:22px 0 16px;}
  .about-bento-head h2{font-size:clamp(1.9rem,5vw,2.6rem);line-height:1.02;}
  .about-bento-card--top,
  .about-bento-card--bottom{grid-template-columns:1fr;}
  .about-bento-media--hero{min-height:240px;}
  .about-bento-media--coach{min-height:220px;}
}
@media (max-width:767px){
  .about-bento-section{padding:18px 0 12px;}
  .about-bento-wrap{gap:12px;}
  .about-bento-card{padding:12px;border-radius:24px;gap:12px;}
  .about-bento-media,.about-bento-panel{border-radius:20px;}
  .about-bento-head h2{font-size:clamp(1.78rem,8.5vw,2.25rem);line-height:1.02;}
  .about-bento-panel--directions{padding:16px;gap:12px;}
  .about-bento-panel--directions h3{font-size:1.28rem;}
  .about-bento-tags{grid-template-columns:1fr 1fr;gap:8px;}
  .about-bento-tag{min-height:44px;padding:8px 10px;border-radius:16px;font-size:.92rem;}
  .about-bento-note{font-size:.92rem;}
  .about-bento-panel--details{padding:16px;gap:12px;}
  .about-bento-location-grid,
  .about-bento-benefit-grid{grid-template-columns:1fr;}
  .about-bento-location-card{min-height:auto;}
  .about-bento-benefit-item{min-height:auto;}
  .about-bento-cta-btn{width:100%;padding:14px 18px;line-height:1.2;min-height:0;}
}


/* === GRANDMASTER about section compact rebuild 2026-04-21 === */
.about-bento-section{
  padding:18px 0 12px !important;
}
.about-bento-wrap{
  display:grid;
  gap:12px;
  max-width:1100px;
  margin:0 auto;
  min-height:min(82vh,760px);
  align-content:start;
}
.about-bento-head{
  display:grid;
  gap:6px;
}
.about-bento-eyebrow{
  margin:0;
  font-size:.78rem;
  letter-spacing:.10em;
}
.about-bento-head h2{
  margin:0;
  font-size:clamp(2rem,3.1vw,3.25rem);
  line-height:.98;
  color:#16335b;
  text-wrap:balance;
}
.about-bento-lead{
  margin:0;
  max-width:1020px;
  font-size:1rem;
  line-height:1.45;
  color:#4a5d74;
  text-wrap:pretty;
}
.about-bento-card{
  display:grid;
  background:linear-gradient(180deg,#f7fbff 0%,#eff5fb 100%);
  border:1px solid rgba(18,51,91,.08);
  border-radius:26px;
  box-shadow:0 12px 30px rgba(16,40,74,.08);
  overflow:hidden;
  gap:12px;
  padding:12px;
}
.about-bento-card--hero{
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.95fr);
  align-items:stretch;
}
.about-bento-card--bottom{
  grid-template-columns:minmax(260px,.85fr) minmax(0,1.65fr);
  align-items:stretch;
}
.about-bento-media,
.about-bento-panel{
  border-radius:20px;
  overflow:hidden;
}
.about-bento-media{
  background:#d9e6f3;
}
.about-bento-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.about-bento-media--hero{
  min-height:250px;
}
.about-bento-media--hero img{
  object-position:center center;
}
.about-bento-media--coach{
  min-height:260px;
}
.about-bento-media--coach img{
  object-position:center top;
}
.about-bento-panel{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(22,51,91,.06);
  padding:18px;
}
.about-bento-panel--summary{
  display:grid;
  gap:10px;
  align-content:start;
}
.about-bento-subtitle{
  margin:0;
  color:#c52228;
  font-size:.82rem;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.about-bento-panel--summary h3{
  margin:0;
  font-size:1.5rem;
  line-height:1.05;
  color:#16335b;
}
.about-bento-panel--summary p,
.about-bento-row-text,
.about-bento-note{
  margin:0;
  font-size:.94rem;
  line-height:1.42;
  color:#4a5d74;
  text-wrap:pretty;
}
.about-bento-summary-points{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.about-bento-summary-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  background:#f3f7fb;
  border:1px solid rgba(22,51,91,.08);
  color:#16335b;
  font-size:.88rem;
  font-weight:800;
}
.about-bento-panel--details{
  display:grid;
  gap:12px;
  align-content:start;
}
.about-bento-locations,
.about-bento-benefits{
  display:grid;
  gap:8px;
}
.about-bento-row-head{
  display:grid;
  gap:4px;
}
.about-bento-location-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.about-bento-location-card{
  min-height:84px;
  display:grid;
  align-content:start;
  gap:5px;
  padding:12px;
  background:#f8fbff;
  border:1px solid rgba(22,51,91,.08);
  border-radius:16px;
}
.about-bento-location-icon,
.about-bento-benefit-icon{
  color:#c52228;
  width:18px;
  height:18px;
  display:inline-flex;
}
.about-bento-location-icon svg,
.about-bento-benefit-icon svg{
  width:100%;
  height:100%;
}
.about-bento-location-card strong{
  font-size:.98rem;
  line-height:1.1;
  color:#16335b;
}
.about-bento-location-card small{
  font-size:.78rem;
  line-height:1.22;
  color:#5b6e84;
}
.about-bento-benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.about-bento-benefit-item{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  background:#f8fbff;
  border:1px solid rgba(22,51,91,.08);
  border-radius:16px;
}
.about-bento-benefit-item span:last-child{
  font-size:.9rem;
  line-height:1.22;
  font-weight:700;
  color:#16335b;
}
.about-bento-cta{
  display:flex;
  justify-content:center;
}
.about-bento-cta-btn{
  min-height:56px;
  padding:16px 28px;
  border-radius:999px;
  box-shadow:0 12px 28px rgba(197,34,40,.28);
  letter-spacing:-.01em;
}
.about-bento-cta-btn:hover{
  transform:translateY(-1px);
}
@media (max-width:1024px){
  .about-bento-wrap{min-height:auto;}
  .about-bento-card--hero,
  .about-bento-card--bottom{grid-template-columns:1fr;}
}
@media (max-width:767px){
  .about-bento-section{padding:16px 0 10px !important;}
  .about-bento-wrap{gap:10px;}
  .about-bento-head h2{font-size:clamp(1.78rem,8.2vw,2.2rem);}
  .about-bento-lead{font-size:.95rem;line-height:1.4;}
  .about-bento-card{padding:10px;border-radius:22px;gap:10px;}
  .about-bento-media,.about-bento-panel{border-radius:18px;}
  .about-bento-media--hero{min-height:180px;}
  .about-bento-media--coach{min-height:180px;}
  .about-bento-panel{padding:14px;}
  .about-bento-panel--summary h3{font-size:1.25rem;}
  .about-bento-location-grid,
  .about-bento-benefit-grid{grid-template-columns:1fr;}
  .about-bento-cta-btn{width:100%;padding:14px 18px;line-height:1.2;}
}


/* === GRANDMASTER about compact fix v2 2026-04-21 === */
.about-bento-wrap{
  max-width:none !important;
  width:100% !important;
}
.about-bento-head h2{
  max-width:980px;
}
.about-bento-lead{
  max-width:960px;
}
.about-bento-card--hero{
  grid-template-columns:minmax(0,1.7fr) minmax(260px,.9fr) !important;
}
.about-bento-media--hero{
  min-height:220px !important;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#eef4fb 0%,#e7f0fa 100%) !important;
  padding:8px;
}
.about-bento-media--hero img{
  width:100%;
  height:100%;
  object-fit:contain !important;
  object-position:center center !important;
}
.about-bento-panel--summary{
  gap:8px !important;
}
.about-bento-panel--summary h3{
  font-size:1.38rem !important;
}
.about-bento-panel--summary p,
.about-bento-row-text,
.about-bento-note{
  font-size:.9rem !important;
  line-height:1.38 !important;
}
.about-bento-summary-points,
.about-bento-summary-pill{
  display:none !important;
}
.about-bento-card--bottom{
  grid-template-columns:minmax(250px,.78fr) minmax(0,1.32fr) !important;
}
.about-bento-media-grid--bottom{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:10px;
  min-height:286px;
}
.about-bento-media--bottom-tile{
  min-height:138px;
  height:100%;
}
.about-bento-media--bottom-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.about-bento-location-card{
  min-height:76px !important;
}
.about-bento-benefit-item{
  min-height:64px !important;
}
.about-bento-benefit-item span:last-child{
  font-size:.86rem !important;
}
@media (max-width:1024px){
  .about-bento-card--hero,
  .about-bento-card--bottom{grid-template-columns:1fr !important;}
  .about-bento-media-grid--bottom{grid-template-columns:1fr 1fr; grid-template-rows:none; min-height:0;}
  .about-bento-media--bottom-tile{min-height:180px;}
}
@media (max-width:767px){
  .about-bento-media--hero{min-height:150px !important; padding:6px;}
  .about-bento-media-grid--bottom{grid-template-columns:1fr; grid-template-rows:1fr 1fr;}
  .about-bento-media--bottom-tile{min-height:140px;}
}


/* === GRANDMASTER emergency about fix 2026-04-21 === */
.about-bento-section{
  padding:16px 0 10px !important;
}
.about-bento-section .container.about-bento-wrap{
  width:min(1200px,calc(100% - 40px)) !important;
  max-width:none !important;
  margin:0 auto !important;
  min-height:auto !important;
  display:grid !important;
  gap:10px !important;
  align-content:start !important;
}
.about-bento-head{
  gap:4px !important;
}
.about-bento-head h2{
  max-width:none !important;
  font-size:clamp(2rem,3vw,2.95rem) !important;
  line-height:1.0 !important;
}
.about-bento-lead{
  max-width:980px !important;
  font-size:.96rem !important;
  line-height:1.4 !important;
}
.about-bento-card{
  padding:10px !important;
  gap:10px !important;
  border-radius:24px !important;
}
.about-bento-card--hero{
  grid-template-columns:minmax(0,1.48fr) minmax(300px,.82fr) !important;
  align-items:stretch !important;
}
.about-bento-card--bottom{
  grid-template-columns:300px minmax(0,1fr) !important;
  align-items:stretch !important;
}
.about-bento-media,
.about-bento-panel{
  border-radius:18px !important;
}
.about-bento-media--hero{
  height:300px !important;
  min-height:300px !important;
  padding:10px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:linear-gradient(180deg,#eef4fb 0%,#e6eef8 100%) !important;
}
.about-bento-media--hero img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
}
.about-bento-panel{
  padding:16px !important;
}
.about-bento-panel--summary{
  gap:8px !important;
}
.about-bento-panel--summary h3{
  font-size:1.25rem !important;
  line-height:1.1 !important;
}
.about-bento-panel--summary p,
.about-bento-row-text,
.about-bento-note{
  font-size:.88rem !important;
  line-height:1.38 !important;
}
.about-bento-summary-points,
.about-bento-summary-pill{
  display:none !important;
}
.about-bento-media-grid--bottom{
  display:grid !important;
  grid-template-rows:1fr 1fr !important;
  gap:10px !important;
  height:300px !important;
  min-height:300px !important;
}
.about-bento-media--bottom-tile{
  height:145px !important;
  min-height:145px !important;
}
.about-bento-media--bottom-tile img,
.about-bento-media--coach img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}
.about-bento-location-grid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:8px !important;
}
.about-bento-benefit-grid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:8px !important;
}
.about-bento-location-card{
  min-height:72px !important;
  padding:10px !important;
}
.about-bento-location-card strong{
  font-size:.92rem !important;
}
.about-bento-location-card small{
  font-size:.74rem !important;
}
.about-bento-benefit-item{
  min-height:58px !important;
  padding:10px !important;
  gap:8px !important;
}
.about-bento-benefit-item span:last-child{
  font-size:.82rem !important;
  line-height:1.18 !important;
}
.about-bento-cta{
  margin-top:2px !important;
}
.about-bento-cta-btn{
  min-height:52px !important;
  padding:14px 24px !important;
}
@media (max-width:1024px){
  .about-bento-section .container.about-bento-wrap{
    width:min(1200px,calc(100% - 28px)) !important;
  }
  .about-bento-card--hero,
  .about-bento-card--bottom{
    grid-template-columns:1fr !important;
  }
  .about-bento-media--hero,
  .about-bento-media-grid--bottom{
    height:auto !important;
    min-height:0 !important;
  }
  .about-bento-media-grid--bottom{
    grid-template-columns:1fr 1fr !important;
    grid-template-rows:none !important;
  }
  .about-bento-media--bottom-tile{
    height:180px !important;
    min-height:180px !important;
  }
}
@media (max-width:767px){
  .about-bento-section .container.about-bento-wrap{
    width:calc(100% - 24px) !important;
  }
  .about-bento-head h2{
    font-size:clamp(1.75rem,8.3vw,2.2rem) !important;
  }
  .about-bento-lead{
    font-size:.93rem !important;
  }
  .about-bento-location-grid,
  .about-bento-benefit-grid,
  .about-bento-media-grid--bottom{
    grid-template-columns:1fr !important;
  }
  .about-bento-media--hero{
    height:190px !important;
    min-height:190px !important;
  }
  .about-bento-media--bottom-tile{
    height:150px !important;
    min-height:150px !important;
  }
}


/* === GRANDMASTER about bottom gallery final fix 2026-04-21 === */
.about-bento-card--bottom{
  grid-template-columns:280px minmax(0,1fr) !important;
  align-items:stretch !important;
}
.about-bento-media-grid--bottom{
  display:grid !important;
  grid-template-columns:1fr !important;
  grid-template-rows:repeat(2,minmax(0,1fr)) !important;
  gap:10px !important;
  height:300px !important;
  min-height:300px !important;
  align-content:stretch !important;
}
.about-bento-media-grid--bottom > *:nth-child(n+3){
  display:none !important;
}
.about-bento-media--bottom-tile{
  display:block !important;
  width:100% !important;
  height:145px !important;
  min-height:145px !important;
  max-height:145px !important;
  overflow:hidden !important;
}
.about-bento-media--bottom-tile img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}
@media (max-width:1024px){
  .about-bento-card--bottom{
    grid-template-columns:1fr !important;
  }
  .about-bento-media-grid--bottom{
    grid-template-columns:1fr 1fr !important;
    grid-template-rows:none !important;
    height:auto !important;
    min-height:0 !important;
  }
  .about-bento-media--bottom-tile{
    height:170px !important;
    min-height:170px !important;
    max-height:170px !important;
  }
}
@media (max-width:767px){
  .about-bento-media-grid--bottom{
    grid-template-columns:1fr !important;
    grid-template-rows:repeat(2,minmax(0,1fr)) !important;
  }
  .about-bento-media--bottom-tile{
    height:150px !important;
    min-height:150px !important;
    max-height:150px !important;
  }
}


/* === GRANDMASTER final about left photo stack fix 2026-04-21 === */
.about-bento-card--bottom{
  grid-template-columns:280px minmax(0,1fr) !important;
}
.about-bento-photo-stack{
  display:grid !important;
  grid-template-columns:1fr !important;
  grid-template-rows:repeat(2,minmax(0,1fr)) !important;
  gap:10px !important;
  height:300px !important;
  min-height:300px !important;
}
.about-bento-photo-card{
  margin:0 !important;
  width:100% !important;
  height:145px !important;
  min-height:145px !important;
  max-height:145px !important;
  overflow:hidden !important;
  border-radius:18px !important;
  background:#e8eef5 !important;
  border:1px solid rgba(22,51,91,.08) !important;
}
.about-bento-photo-card img{
  display:block !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}
/* hide any legacy duplicated tiles if browser cached old html/css fragments */
.about-bento-media-grid--bottom,
.about-bento-media--bottom-tile{
  display:none !important;
}
@media (max-width:1024px){
  .about-bento-card--bottom{
    grid-template-columns:1fr !important;
  }
  .about-bento-photo-stack{
    grid-template-columns:1fr 1fr !important;
    grid-template-rows:none !important;
    height:auto !important;
    min-height:0 !important;
  }
  .about-bento-photo-card{
    height:170px !important;
    min-height:170px !important;
    max-height:170px !important;
  }
}
@media (max-width:767px){
  .about-bento-photo-stack{
    grid-template-columns:1fr !important;
    grid-template-rows:repeat(2,minmax(0,1fr)) !important;
    height:auto !important;
  }
  .about-bento-photo-card{
    height:150px !important;
    min-height:150px !important;
    max-height:150px !important;
  }
}


/* === GRANDMASTER final two-photo equal-size fix 2026-04-21 === */
.about-bento-card--bottom{
  grid-template-columns: 230px minmax(0,1fr) !important;
  align-items: stretch !important;
  min-height: 278px;
}
.about-bento-photo-stack{
  display: grid !important;
  grid-template-rows: minmax(0,1fr) minmax(0,1fr) !important;
  gap: 12px !important;
  height: 100% !important;
  min-height: 100% !important;
  align-self: stretch !important;
}
.about-bento-photo-card{
  margin: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #f4f8fd !important;
}
.about-bento-photo-card img{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #f4f8fd !important;
}
.about-bento-panel--details{
  min-width: 0;
}
@media (max-width: 960px){
  .about-bento-card--bottom{
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .about-bento-photo-stack{
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: none !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .about-bento-photo-card{
    min-height: 160px !important;
  }
}
@media (max-width: 640px){
  .about-bento-photo-stack{
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(2, minmax(0,1fr)) !important;
  }
  .about-bento-photo-card{
    min-height: 150px !important;
  }
}


/* === Trial Gemini section patch === */
.trial-gemini-section{
  background:#f4eee6;
  padding:72px 0 84px;
}
.trial-gemini-shell{
  display:grid;
  gap:22px;
}
.trial-gemini-top{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.trial-mini-card,
.trial-intro-card,
.trial-note-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.trial-mini-card{
  display:grid;
  grid-template-columns:82px 1fr;
  gap:18px;
  align-items:start;
  padding:18px 20px;
}
.trial-mini-card__icon,
.trial-note-card__icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#f4efe8;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#b24a43;
  box-shadow:inset 0 0 0 1px rgba(24,49,85,.06);
}
.trial-mini-card__icon svg,
.trial-note-card__icon svg{
  width:34px;
  height:34px;
}
.trial-mini-card__eyebrow{
  margin:0 0 4px;
  color:#1b2d4f;
  font-size:.88rem;
  font-weight:900;
  line-height:1.1;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.trial-mini-card h3,
.trial-note-card h3,
.trial-gemini-form h3,
.trial-intro-card h2{
  margin:0;
  color:#152c4c;
  font-weight:900;
  line-height:1.1;
}
.trial-mini-card h3{
  font-size:clamp(1.05rem,1.3vw,1.28rem);
  margin-bottom:8px;
}
.trial-mini-card p{
  margin:0;
  color:#334961;
  line-height:1.42;
}
.trial-mini-card .btn{
  margin-top:14px;
}
.trial-gemini-main{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:22px;
  align-items:stretch;
}
.trial-intro-card{
  display:grid;
  grid-template-columns:minmax(280px,.62fr) minmax(200px,.38fr);
  align-items:stretch;
  overflow:hidden;
}
.trial-intro-card__photo{
  padding:18px 0 18px 18px;
}
.trial-intro-card__photo img{
  width:100%;
  height:100%;
  min-height:348px;
  object-fit:cover;
  border-radius:26px;
}
.trial-intro-card__copy{
  padding:28px 24px 28px 22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.trial-intro-card__eyebrow{
  margin:0 0 10px;
  color:#263952;
  font-size:1rem;
  line-height:1.3;
}
.trial-intro-card h2{
  font-size:clamp(2rem,3vw,3.15rem);
  max-width:10ch;
}
.trial-gemini-form{
  padding:26px 34px 26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.trial-gemini-form h3{
  font-size:clamp(1.9rem,2.2vw,2.7rem);
  margin-bottom:22px;
}
.trial-gemini-form label{
  display:grid;
  gap:8px;
  margin-bottom:14px;
}
.trial-gemini-form span{
  color:#1d2d4f;
  font-weight:800;
  font-size:1.16rem;
}
.trial-gemini-form input{
  height:48px;
  border:1px solid #d8dbe2;
  border-radius:18px;
  padding:0 18px;
  font-size:1rem;
}
.trial-gemini-form .btn-full{
  margin-top:6px;
  min-height:54px;
  font-size:1.08rem;
  letter-spacing:.01em;
}
.trial-gemini-form .form-note{
  margin-top:16px;
  color:#2d3d56;
  font-size:1rem;
  line-height:1.45;
}
.trial-gemini-bottom{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.trial-note-card{
  padding:22px 24px;
  display:grid;
  grid-template-columns:86px 1fr;
  gap:18px;
  align-items:start;
}
.trial-note-card h3{
  font-size:clamp(1.3rem,1.6vw,1.65rem);
  margin-bottom:10px;
  text-transform:uppercase;
}
.trial-note-card p{
  margin:0;
  color:#2f4057;
  line-height:1.45;
  font-size:1rem;
}
.trial-note-card__emoji{
  display:flex;
  gap:8px;
  font-size:1.35rem;
  margin-top:10px;
}
@media (max-width:1140px){
  .trial-gemini-top,
  .trial-gemini-bottom,
  .trial-gemini-main{
    grid-template-columns:1fr;
  }
  .trial-intro-card{
    grid-template-columns:1fr;
  }
  .trial-intro-card__photo{
    padding:18px 18px 0;
  }
  .trial-intro-card__photo img{
    min-height:280px;
  }
  .trial-intro-card__copy{
    padding:22px 22px 28px;
  }
  .trial-intro-card h2{
    max-width:none;
  }
}
@media (max-width:720px){
  .trial-mini-card,
  .trial-note-card{
    grid-template-columns:1fr;
  }
  .trial-mini-card__icon,
  .trial-note-card__icon{
    width:56px;
    height:56px;
  }
  .trial-gemini-form{
    padding:22px 20px;
  }
}


/* === Stable patch: about + directions + trial 2026-04-22 === */
.about-stable-section{padding:44px 0 30px;background:var(--bg);}
.about-stable-wrap{display:grid;gap:18px;}
.about-stable-head{display:grid;gap:8px;max-width:1000px;}
.about-stable-head h2{margin:0;color:var(--blue);font-size:clamp(2rem,3.4vw,3rem);line-height:1.02;font-weight:900;letter-spacing:-.03em;}
.about-stable-lead{margin:0;max-width:1000px;color:#5b6e84;font-size:1rem;line-height:1.5;}
.about-stable-card{background:#f8fbff;border:1px solid rgba(21,51,92,.08);border-radius:28px;box-shadow:var(--shadow);padding:12px;display:grid;gap:12px;}
.about-stable-card--top{grid-template-columns:minmax(0,1.75fr) minmax(290px,1fr);align-items:stretch;}
.about-stable-card--bottom{grid-template-columns:minmax(0,1fr) 280px;align-items:stretch;}
.about-stable-hero-media,.about-stable-summary,.about-stable-details,.about-stable-side-photo{border-radius:22px;overflow:hidden;}
.about-stable-hero-media{background:#dfe8f2;min-height:220px;display:flex;align-items:center;justify-content:center;padding:10px;}
.about-stable-hero-media img{width:100%;height:100%;object-fit:contain;object-position:center center;display:block;}
.about-stable-summary{background:#fff;padding:20px 20px 18px;border:1px solid rgba(21,51,92,.08);display:grid;align-content:start;gap:10px;}
.about-stable-kicker{margin:0;color:#596c82;font-size:.92rem;line-height:1.25;font-weight:800;text-transform:uppercase;letter-spacing:.08em;}
.about-stable-summary h3{margin:0;color:var(--blue);font-size:clamp(1.45rem,2vw,2rem);line-height:1.1;font-weight:900;}
.about-stable-summary p{margin:0;color:#506378;font-size:.98rem;line-height:1.48;}
.about-stable-summary-note{font-weight:700;color:#30455f;}
.about-stable-details{background:#fff;padding:14px 16px;border:1px solid rgba(21,51,92,.08);display:grid;align-content:start;gap:12px;}
.about-stable-block h3{margin:0 0 6px;color:var(--primary);font-size:1.05rem;line-height:1.2;font-weight:900;text-transform:uppercase;letter-spacing:.04em;}
.about-stable-block p{margin:0;color:#5b6e84;font-size:.93rem;line-height:1.45;}
.about-stable-halls{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:10px;}
.about-stable-hall,.about-stable-benefits span{background:#f8fbff;border:1px solid rgba(21,51,92,.1);border-radius:14px;min-height:58px;padding:10px 12px;display:flex;flex-direction:column;justify-content:center;}
.about-stable-hall strong{color:var(--blue);font-size:.95rem;line-height:1.1;}
.about-stable-hall small{margin-top:4px;color:#687b90;font-size:.8rem;line-height:1.2;}
.about-stable-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:10px;}
.about-stable-benefits span{font-size:.9rem;line-height:1.25;color:var(--blue);font-weight:700;position:relative;padding-left:30px;}
.about-stable-benefits span::before{content:'✓';position:absolute;left:12px;top:50%;transform:translateY(-50%);color:var(--primary);font-weight:900;}
.about-stable-cta{display:flex;justify-content:center;}
.about-stable-cta .btn{min-height:56px;padding:16px 28px;border-radius:999px;}

.directions-stable-section{padding:34px 0 42px;background:#f1ece5;}
.directions-stable-head{margin-bottom:18px;max-width:900px;}
.directions-stable-head h2{margin:0;color:var(--blue);font-size:clamp(1.95rem,3vw,2.8rem);line-height:1.05;font-weight:900;letter-spacing:-.03em;}
.directions-stable-head .section-intro{margin:12px 0 0;color:#5b6e84;max-width:760px;}
.directions-stable-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;align-items:stretch;}
.directions-stable-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow);overflow:hidden;min-height:100%;}
.directions-stable-card__media{display:block;aspect-ratio:16/9;overflow:hidden;}
.directions-stable-card__media img{width:100%;height:100%;object-fit:cover;display:block;}
.directions-stable-card__body{padding:16px 16px 18px;display:flex;flex-direction:column;flex:1;}
.directions-stable-card__body h3{margin:0 0 8px;color:var(--blue);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;font-size:clamp(1.35rem,1.6vw,1.65rem);line-height:1.08;font-weight:900;letter-spacing:-.02em;}
.directions-stable-card__body p{margin:0 0 16px;color:#485a70;font-size:.96rem;line-height:1.42;flex:1;}
.directions-stable-card__body .btn{align-self:flex-start;min-width:154px;}

.trial-stable-section{padding:56px 0 72px;background:#f4eee6;}
.trial-stable-shell{display:grid;gap:22px;}
.trial-stable-top{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.trial-stable-mini,.trial-stable-intro,.trial-stable-note{background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow);}
.trial-stable-mini{display:grid;grid-template-columns:54px 1fr;gap:14px;padding:16px 18px;align-items:start;}
.trial-stable-mini__icon,.trial-stable-note__icon{width:40px;height:40px;border-radius:50%;background:#f3ede7;display:flex;align-items:center;justify-content:center;font-size:1.15rem;}
.trial-stable-mini__eyebrow{margin:0 0 2px;color:#5c6f84;font-size:.82rem;line-height:1.2;font-weight:800;text-transform:uppercase;letter-spacing:.04em;}
.trial-stable-mini h3,.trial-stable-note h3,.trial-stable-form h3,.trial-stable-intro h2{margin:0;color:var(--blue);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;font-weight:900;}
.trial-stable-mini h3{font-size:clamp(1.15rem,1.45vw,1.45rem);line-height:1.12;margin-bottom:6px;}
.trial-stable-mini p{margin:0;color:#53657a;font-size:.94rem;line-height:1.4;}
.trial-stable-main{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:16px;align-items:stretch;}
.trial-stable-intro{display:grid;grid-template-columns:260px minmax(0,1fr);overflow:hidden;}
.trial-stable-intro__photo{padding:10px 0 10px 10px;display:flex;align-items:stretch;}
.trial-stable-intro__photo img{width:100%;height:100%;min-height:300px;object-fit:contain;object-position:center center;border-radius:22px;background:#eef2f7;}
.trial-stable-intro__copy{padding:18px 18px 18px 12px;display:flex;flex-direction:column;justify-content:center;}
.trial-stable-intro__eyebrow{margin:0 0 8px;color:#607386;font-size:.96rem;line-height:1.25;}
.trial-stable-intro h2{font-size:clamp(1.8rem,2.6vw,2.8rem);line-height:1.08;letter-spacing:-.03em;max-width:12ch;}
.trial-stable-intro__copy p:last-child{margin:12px 0 0;color:#516478;font-size:.98rem;line-height:1.5;}
.trial-stable-form{padding:24px 26px;display:flex;flex-direction:column;justify-content:center;}
.trial-stable-form h3{font-size:clamp(1.7rem,2.35vw,2.5rem);line-height:1.08;margin-bottom:18px;max-width:12ch;}
.trial-stable-form label{display:grid;gap:8px;margin-bottom:12px;}
.trial-stable-form span{color:var(--blue);font-size:1rem;font-weight:800;line-height:1.2;}
.trial-stable-form input{height:50px;border:1px solid #d5dde6;border-radius:16px;padding:0 16px;font-size:1rem;}
.trial-stable-form .btn-full{margin-top:8px;min-height:54px;font-size:1rem;}
.trial-stable-form .form-note{margin-top:12px;color:#53657a;font-size:.95rem;line-height:1.45;}
.trial-stable-bottom{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.trial-stable-note{display:grid;grid-template-columns:54px 1fr;gap:14px;padding:18px;align-items:start;}
.trial-stable-note h3{font-size:clamp(1.12rem,1.45vw,1.4rem);line-height:1.12;margin-bottom:6px;}
.trial-stable-note p{margin:0;color:#53657a;font-size:.95rem;line-height:1.45;}

@media (max-width:1100px){
  .about-stable-card--top,.about-stable-card--bottom,.trial-stable-main,.trial-stable-top,.trial-stable-bottom,.directions-stable-grid{grid-template-columns:1fr 1fr;}
  .trial-stable-main{grid-template-columns:1fr;}
  .trial-stable-intro{grid-template-columns:220px 1fr;}
}
@media (max-width:860px){
  .about-stable-card--top,.about-stable-card--bottom,.trial-stable-top,.trial-stable-bottom,.directions-stable-grid,.about-stable-halls,.about-stable-benefits{grid-template-columns:1fr;}
  .trial-stable-intro{grid-template-columns:1fr;}
  .trial-stable-intro__photo{padding:10px 10px 0;}
  .trial-stable-intro__photo img{min-height:220px;}
  .trial-stable-intro h2,.trial-stable-form h3{max-width:none;}
}
@media (max-width:640px){
  .about-stable-section,.trial-stable-section,.directions-stable-section{padding:22px 0 26px;}
  .about-stable-head h2,.directions-stable-head h2{font-size:clamp(1.8rem,8vw,2.2rem);}
  .about-stable-card,.trial-stable-mini,.trial-stable-intro,.trial-stable-note{border-radius:22px;}
  .trial-stable-mini,.trial-stable-note{grid-template-columns:1fr;}
}

@media (max-width:860px){
  .about-stable-side-photo{max-height:420px;}
}

/* === GRANDMASTER patch 2026-04-22a: centered mobile hero first-screen layout ===
   Mobile portrait only. Desktop and landscape remain unchanged.
   Goal: remove the extra paragraph on phones, center the pill composition,
   and keep the full hero readable on the first smartphone screen. */
@media (max-width: 767px) and (orientation: portrait){
  .hero{
    padding-top:4px !important;
    padding-bottom:8px !important;
  }
  .hero-shell{
    border-radius:24px !important;
  }
  .hero-visual{
    min-height:172px !important;
  }
  .hero .hero-image{
    object-position:50% 20% !important;
  }
  .hero-copy{
    padding:14px 16px 14px !important;
    align-items:center !important;
    text-align:center !important;
  }
  .hero-copy .hero-desktop-copy{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    width:100% !important;
    text-align:center !important;
  }
  .hero-copy h1{
    font-size:clamp(1.54rem,8.2vw,1.95rem) !important;
    line-height:.95 !important;
    letter-spacing:-.048em !important;
    max-width:10ch !important;
    margin:0 auto !important;
    text-wrap:balance;
  }
  .hero-copy .hero-subtitle{
    margin:10px auto 0 !important;
    max-width:13ch !important;
    font-size:clamp(1.05rem,5.2vw,1.22rem) !important;
    line-height:1.1 !important;
    letter-spacing:-.03em !important;
    color:#17324d !important;
    text-wrap:balance;
  }
  .hero-copy .hero-lead{
    display:none !important;
  }
  .hero-copy .hero-pills--primary,
  .hero-copy .hero-pills--secondary{
    width:100% !important;
    max-width:320px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
  .hero-copy .hero-pills--primary{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
    margin-top:14px !important;
  }
  .hero-copy .hero-pills--secondary{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
    margin-top:8px !important;
  }
  .hero-copy .hero-pills--primary .hero-pill,
  .hero-copy .hero-pills--secondary .hero-pill{
    min-height:38px !important;
    padding:8px 10px !important;
    font-size:.76rem !important;
    line-height:1.08 !important;
    border-radius:999px !important;
  }
  .hero-copy .hero-pills--primary .hero-pill:nth-child(3){
    grid-column:1 / -1 !important;
    max-width:72% !important;
    justify-self:center !important;
  }
  .hero-copy .hero-pills--secondary .hero-pill:last-child{
    box-shadow:0 10px 22px rgba(19,44,74,.08) !important;
  }
}

@media (max-width: 389px) and (orientation: portrait){
  .hero-visual{
    min-height:164px !important;
  }
  .hero-copy{
    padding:12px 14px 12px !important;
  }
  .hero-copy h1{
    font-size:clamp(1.46rem,8vw,1.82rem) !important;
  }
  .hero-copy .hero-subtitle{
    font-size:1rem !important;
  }
  .hero-copy .hero-pills--primary,
  .hero-copy .hero-pills--secondary{
    max-width:304px !important;
  }
  .hero-copy .hero-pills--primary .hero-pill,
  .hero-copy .hero-pills--secondary .hero-pill{
    min-height:36px !important;
    font-size:.72rem !important;
  }
}

/* === GRANDMASTER patch 2026-04-22a: restore halls section on homepage === */
#halls{
  scroll-margin-top:calc(var(--header-offset, 96px) + 18px);
}
.halls-home-section .hall-home-shell{
  display:grid;
  gap:22px;
}
.halls-home-section .section-intro{
  max-width:760px;
  margin:0;
}
#halls .hall-grid--preview{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  margin-top:0;
}
#halls .hall-card{
  height:100%;
}
#halls .hall-card__body{
  gap:0;
}
#halls .hall-card__summary{
  min-height:4.8em;
}
#halls .hall-card__actions{
  margin-top:auto;
}
@media (max-width:1023px){
  .halls-home-section .hall-home-shell{
    gap:18px;
  }
  #halls .hall-grid--preview{
    margin-top:2px;
  }
}
@media (max-width:767px){
  .halls-home-section{
    padding-top:34px;
    padding-bottom:34px;
  }
  .halls-home-section .section-intro{
    font-size:.98rem;
    line-height:1.58;
  }
  #halls .hall-card__summary{
    min-height:0;
  }
}


/* === GRANDMASTER patch 2026-04-22b: mobile hero match reference layout exactly === */
.hero-mobile-copy{display:none;}

@media (max-width: 767px) and (orientation: portrait){
  .hero-copy .hero-desktop-copy{display:none !important;}
  .hero-mobile-copy{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    width:100% !important;
    text-align:center !important;
  }
  .hero{
    padding-top:4px !important;
    padding-bottom:6px !important;
  }
  .hero-shell{
    border-radius:24px !important;
    overflow:hidden !important;
  }
  .hero-visual{
    min-height:140px !important;
  }
  .hero .hero-image{
    object-position:50% 18% !important;
  }
  .hero-copy{
    padding:8px 12px 12px !important;
    align-items:center !important;
    text-align:center !important;
  }
  .hero-mobile-copy h1{
    margin:0 auto !important;
    font-size:clamp(1.42rem, 5.9vw, 1.72rem) !important;
    line-height:.90 !important;
    letter-spacing:-.045em !important;
    color:#10284a !important;
  }
  .hero-mobile-copy h1 span,
  .hero-mobile-copy .hero-subtitle span,
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill span,
  .hero-mobile-btn span{
    display:block !important;
    width:100% !important;
    text-align:center !important;
  }
  .hero-mobile-copy .hero-subtitle{
    margin:8px auto 0 !important;
    max-width:17.6ch !important;
    font-size:clamp(.86rem, 3.9vw, 1rem) !important;
    line-height:1.05 !important;
    letter-spacing:-.018em !important;
    color:#10284a !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    width:100% !important;
    max-width:318px !important;
    gap:8px !important;
    margin:10px auto 0 !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill{
    width:100% !important;
    min-width:0 !important;
    min-height:42px !important;
    padding:6px 8px !important;
    border-radius:999px !important;
    border:1px solid rgba(19,44,74,.08) !important;
    background:#fff !important;
    box-shadow:0 8px 18px rgba(18,36,62,.06) !important;
    font-size:.75rem !important;
    font-weight:800 !important;
    line-height:1.02 !important;
    color:#17324d !important;
    text-align:center !important;
    white-space:normal !important;
    justify-content:center !important;
    align-items:center !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:first-child{font-size:.67rem !important;}
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:last-child{font-size:.73rem !important;}
  .hero-mobile-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    max-width:318px !important;
    gap:8px !important;
    margin:10px auto 0 !important;
  }
  .hero-mobile-btn{
    width:100% !important;
    min-height:46px !important;
    padding:0 14px !important;
    border-radius:999px !important;
    border:2px solid rgba(47,93,130,.55) !important;
    background:#fff !important;
    color:#2d6088 !important;
    box-shadow:0 10px 20px rgba(18,36,62,.05) !important;
    font-size:.80rem !important;
    font-weight:800 !important;
    line-height:1.05 !important;
    text-align:center !important;
    text-wrap:balance !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
}

@media (max-width: 389px) and (orientation: portrait){
  .hero-visual{
    min-height:136px !important;
  }
  .hero-copy{
    padding:8px 10px 11px !important;
  }
  .hero-mobile-copy h1{
    font-size:clamp(1.34rem, 5.55vw, 1.58rem) !important;
  }
  .hero-mobile-copy .hero-subtitle{
    margin-top:7px !important;
    font-size:clamp(.82rem, 3.65vw, .94rem) !important;
    max-width:17.2ch !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid,
  .hero-mobile-actions{
    max-width:308px !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill{
    min-height:40px !important;
    font-size:.72rem !important;
    padding:5px 7px !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:first-child{font-size:.65rem !important;}
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:last-child{font-size:.70rem !important;}
  .hero-mobile-btn{
    min-height:44px !important;
    font-size:.76rem !important;
    padding:0 12px !important;
  }
}

/* === GRANDMASTER patch 2026-04-22c: mobile halls section without intro text and empty space === */
@media (max-width: 767px){
  .halls-home-section{
    padding-top:22px !important;
    padding-bottom:18px !important;
  }

  .halls-home-section .hall-home-shell{
    gap:12px !important;
  }

  #halls .section-intro,
  .halls-home-section .section-intro{
    display:none !important;
  }

  #halls .section-intro::after,
  .halls-home-section .section-intro::after{
    content:none !important;
    display:none !important;
  }

  #halls .hall-grid--preview{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
    overflow:visible !important;
    padding:0 !important;
    margin-top:0 !important;
    scroll-behavior:auto !important;
  }

  #halls .hall-grid--preview .hall-card,
  #halls .hall-grid--preview [data-loop-clone="true"].hall-card{
    flex:none !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
  }

  #halls .hall-grid--preview [data-loop-clone="true"]{
    display:none !important;
  }

  #halls .hall-card{
    height:auto !important;
  }

  #halls .hall-card__body{
    gap:0 !important;
  }

  #halls .hall-card__actions{
    margin-top:14px !important;
    padding-top:0 !important;
  }

  #halls + .section,
  .halls-home-section + .section{
    padding-top:18px !important;
  }
}


/* === GRANDMASTER patch 2026-04-22e: halls section back to normal vertical flow on mobile === */
#halls .hall-grid--homepage{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px !important;
  margin-top:0 !important;
  padding:0 !important;
  overflow:visible !important;
  scroll-behavior:auto !important;
}
#halls .hall-grid--homepage .hall-card{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  margin:0 !important;
  height:100% !important;
  flex:none !important;
}
#halls .hall-grid--homepage .hall-card__summary{
  min-height:0 !important;
}
#halls .hall-grid--homepage .hall-card__actions{
  margin-top:14px !important;
  padding-top:0 !important;
}
@media (max-width:1023px){
  #halls .hall-grid--homepage{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
}
@media (max-width:767px){
  .halls-home-section{
    padding-top:22px !important;
    padding-bottom:18px !important;
  }
  .halls-home-section .hall-home-shell{
    gap:12px !important;
  }
  #halls .hall-grid--homepage{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
  #halls + .section,
  .halls-home-section + .section{
    padding-top:18px !important;
  }
}

/* === GRANDMASTER patch 2026-04-22 final mobile hero: reference layout fitted to one screen === */
@media (max-width: 767px) and (orientation: portrait){
  .hero-copy .hero-desktop-copy{display:none !important;}
  .hero-mobile-copy{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    width:100% !important;
    text-align:center !important;
  }
  .hero{
    padding-top:4px !important;
    padding-bottom:8px !important;
  }
  .hero-shell{
    border-radius:24px !important;
    overflow:hidden !important;
  }
  .hero-visual{
    min-height:150px !important;
  }
  .hero .hero-image{
    object-position:50% 18% !important;
  }
  .hero-copy{
    padding:10px 16px 14px !important;
    align-items:center !important;
    text-align:center !important;
  }

  .hero-mobile-copy h1{
    width:100% !important;
    margin:0 auto !important;
    max-width:306px !important;
    font-size:clamp(2.26rem, 9.9vw, 2.60rem) !important;
    line-height:.90 !important;
    letter-spacing:-.045em !important;
    color:#10284a !important;
    font-weight:900 !important;
    text-wrap:initial !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
  }
  .hero-mobile-copy h1 span{
    display:block !important;
    white-space:nowrap !important;
  }

  .hero-mobile-copy .hero-subtitle{
    width:100% !important;
    margin:10px auto 0 !important;
    max-width:304px !important;
    font-size:clamp(.97rem, 4.25vw, 1.08rem) !important;
    line-height:1.10 !important;
    letter-spacing:-.02em !important;
    color:#10284a !important;
    font-weight:800 !important;
    text-wrap:initial !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
  }
  .hero-mobile-copy .hero-subtitle span{
    display:block !important;
    width:100% !important;
    white-space:nowrap !important;
    text-align:center !important;
  }

  .hero-mobile-copy .hero-pills--mobile-grid{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    width:100% !important;
    max-width:318px !important;
    gap:10px !important;
    margin:14px auto 0 !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill,
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(1),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(2),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(3),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(4),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:last-child{
    grid-column:auto !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    min-height:48px !important;
    padding:7px 10px !important;
    border-radius:999px !important;
    border:1px solid rgba(19,44,74,.08) !important;
    background:#fff !important;
    box-shadow:0 8px 18px rgba(18,36,62,.06) !important;
    color:#17324d !important;
    font-size:.80rem !important;
    font-weight:800 !important;
    line-height:1.05 !important;
    text-align:center !important;
    white-space:normal !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(1){
    font-size:.72rem !important;
    line-height:1.02 !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(4),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:last-child{
    flex-direction:column !important;
    gap:1px !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill span{
    display:block !important;
    width:100% !important;
    text-align:center !important;
  }

  .hero-mobile-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    max-width:318px !important;
    gap:10px !important;
    margin:14px auto 0 !important;
  }
  .hero-mobile-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    min-height:52px !important;
    padding:0 14px !important;
    border-radius:999px !important;
    border:2px solid rgba(47,93,130,.55) !important;
    background:#fff !important;
    color:#2d6088 !important;
    box-shadow:0 10px 20px rgba(18,36,62,.05) !important;
    font-size:.84rem !important;
    font-weight:800 !important;
    line-height:1.08 !important;
    text-align:center !important;
    white-space:normal !important;
  }
  .hero-mobile-btn span{
    display:block !important;
    width:100% !important;
    text-align:center !important;
  }
}

@media (max-width: 389px) and (orientation: portrait){
  .hero-visual{
    min-height:144px !important;
  }
  .hero-copy{
    padding:9px 14px 12px !important;
  }
  .hero-mobile-copy h1{
    max-width:296px !important;
    font-size:clamp(2.10rem, 9.15vw, 2.42rem) !important;
  }
  .hero-mobile-copy .hero-subtitle{
    max-width:292px !important;
    margin-top:9px !important;
    font-size:clamp(.92rem, 4.0vw, 1.00rem) !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid,
  .hero-mobile-actions{
    max-width:312px !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill,
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(1),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(2),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(3),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(4),
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:last-child{
    min-height:46px !important;
    padding:6px 9px !important;
    font-size:.77rem !important;
  }
  .hero-mobile-copy .hero-pills--mobile-grid .hero-pill:nth-child(1){
    font-size:.70rem !important;
  }
  .hero-mobile-btn{
    min-height:50px !important;
    font-size:.82rem !important;
    padding:0 12px !important;
  }
}
