/* =====================================================================
   SPORTTR - hlavní stylesheet
   Paleta: #0A0A0F (black) / #12224A (navy) / #2F4E9C (blue)
           / #7FA0E6 (sky) / #D3DFF7 (pale)
   Typografie: Bodoni Moda (editorial Didone) + Jost (geometric humanist)
   ===================================================================== */

:root{
  --black:#0A0A0F;
  --navy:#12224A;
  --navy-2:#0c1936;
  --blue:#2F4E9C;
  --blue-dark:#233c7a;
  --sky:#7FA0E6;
  --pale:#D3DFF7;
  --ink:#161629;
  --muted:#5f6785;
  --cream:#F6F8FD;
  --paper:#FFFFFF;
  --line:#e4e8f5;
  --line-soft:#eef1fa;
  --shadow-sm:0 2px 16px rgba(18,34,74,.08);
  --shadow-md:0 18px 40px rgba(18,34,74,.13);
  --shadow-lg:0 32px 76px rgba(18,34,74,.22);

  --display:'Bodoni Moda', Georgia, serif;
  --body:'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:22px;
  --radius-sm:13px;
  --header-h:84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0; font-family:var(--body); color:var(--ink); background:var(--paper);
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:500; line-height:1.14; margin:0 0 .5em; color:var(--navy); letter-spacing:.003em; }
p{ margin:0 0 1em; }
.wrap{ max-width:1240px; margin:0 auto; padding:0 24px; }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
::selection{ background:var(--sky); color:var(--navy); }

.icon-sprite{ position:absolute; width:0; height:0; overflow:hidden; }
.icon{ width:22px; height:22px; fill:currentColor; flex-shrink:0; display:inline-block; }

/* ===================================================================
   PRELOADER - breathing circle (inhale / exhale)
   =================================================================== */
#preloader{ position:fixed; inset:0; z-index:9999; background:var(--navy); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:22px; }
.breath-circle{ width:88px; height:88px; border-radius:50%; border:1.5px solid rgba(255,255,255,.35); position:relative; animation:breathe 3.6s ease-in-out infinite; }
.breath-circle::before{ content:''; position:absolute; inset:14px; border-radius:50%; background:radial-gradient(circle, var(--sky) 0%, transparent 72%); opacity:.8; }
@keyframes breathe{ 0%,100%{ transform:scale(.72); } 50%{ transform:scale(1); } }
.breath-label{ font-family:var(--body); font-size:11px; letter-spacing:.32em; text-transform:uppercase; color:rgba(255,255,255,.6); animation:labelFade 3.6s ease-in-out infinite; }
@keyframes labelFade{ 0%,100%{ opacity:.4; } 50%{ opacity:1; } }
.preload-curtain{ position:fixed; inset:0; z-index:9998; pointer-events:none; display:flex; }
.preload-curtain .panel{ flex:1; background:var(--navy); }
body.loaded #preloader{ display:none; }
body.loaded .preload-curtain .panel:first-child{ animation:curtainL 1s cubic-bezier(.7,0,.2,1) forwards; }
body.loaded .preload-curtain .panel:last-child{ animation:curtainR 1s cubic-bezier(.7,0,.2,1) forwards; }
@keyframes curtainL{ to{ transform:translateX(-100%); } }
@keyframes curtainR{ to{ transform:translateX(100%); } }
body:not(.loaded){ overflow:hidden; height:100vh; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(30px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 80ms); }
.reveal-l{ opacity:0; transform:translateX(-40px); transition:opacity .95s ease, transform .95s ease; }
.reveal-l.is-visible{ opacity:1; transform:translateX(0); }
.reveal-r{ opacity:0; transform:translateX(40px); transition:opacity .95s ease, transform .95s ease; }
.reveal-r.is-visible{ opacity:1; transform:translateX(0); }

/* wipe reveal - sliding overlay technique (not clip-path on observed el) */
.wipe{ position:relative; overflow:hidden; }
.wipe::after{ content:''; position:absolute; inset:0; background:var(--cream); transform-origin:bottom center; transform:scaleY(1); transition:transform 1.1s cubic-bezier(.6,0,.15,1); z-index:2; pointer-events:none; }
.wipe.is-visible::after{ transform:scaleY(0); }

/* split-text word stagger reveal */
.split-text .word{ display:inline-block; overflow:hidden; }
.split-text .word span{ display:inline-block; transform:translateY(115%); transition:transform .9s cubic-bezier(.2,.8,.2,1); }
.split-text.is-visible .word span{ transform:translateY(0); }

/* gradient text-mask scroll reveal - headline fills with color as you scroll */
.mask-text{
  font-family:var(--display); background-image:linear-gradient(90deg, var(--navy) 0%, var(--navy) var(--fill,0%), #cdd3e4 var(--fill,0%), #cdd3e4 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent; transition:background-image .1s linear;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:16px 32px; border-radius:999px; border:1.5px solid transparent;
  font-family:var(--body); font-weight:500; font-size:14.5px; letter-spacing:.04em; text-transform:uppercase;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
  white-space:nowrap; cursor:pointer;
}
.btn-primary{ background:var(--navy); color:#fff; box-shadow:0 10px 26px rgba(18,34,74,.28); }
.btn-primary:hover{ background:var(--blue); transform:translateY(-3px); box-shadow:0 18px 34px rgba(18,34,74,.34); }
.btn-outline{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline:hover{ background:var(--navy); color:#fff; transform:translateY(-3px); }
.btn-light{ background:#fff; color:var(--navy); box-shadow:var(--shadow-sm); }
.btn-light:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn-block{ width:100%; }
.btn-sm{ padding:12px 22px; font-size:12.5px; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none !important; }

/* ===================================================================
   TOPBAR
   =================================================================== */
.topbar{ background:var(--black); color:rgba(255,255,255,.68); overflow:hidden; font-size:12px; letter-spacing:.05em; }
.topbar-track{ display:flex; width:max-content; animation:marquee 34s linear infinite; padding:9px 0; }
.topbar-track span{ display:flex; align-items:center; gap:8px; padding:0 28px; white-space:nowrap; text-transform:uppercase; }
.topbar-track span .icon{ width:13px; height:13px; color:var(--sky); }
.topbar-track span::after{ content:'\2022'; opacity:.4; margin-left:28px; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ===================================================================
   HEADER
   =================================================================== */
header{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92); backdrop-filter:blur(10px) saturate(160%); border-bottom:1px solid var(--line-soft); }
.headrow{ display:flex; align-items:center; gap:32px; height:var(--header-h); }
.logo{ display:flex; align-items:center; gap:0; font-family:var(--display); font-weight:500; font-size:26px; color:var(--navy); flex-shrink:0; letter-spacing:.02em; }
.logo small{ display:block; font-family:var(--body); font-weight:400; font-size:9px; letter-spacing:.24em; color:var(--muted); text-transform:uppercase; margin-top:1px; }

.main-nav{ display:flex; align-items:center; gap:30px; margin-left:12px; }
.main-nav a{ font-size:13.5px; letter-spacing:.05em; text-transform:uppercase; font-weight:500; color:var(--ink); position:relative; padding:8px 0; }
.main-nav a::after{ content:''; position:absolute; left:0; right:0; bottom:2px; height:1px; background:var(--navy); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.main-nav a:hover::after, .main-nav a.active::after{ transform:scaleX(1); }

.head-actions{ margin-left:auto; display:flex; align-items:center; gap:14px; }
.head-phone{ display:flex; align-items:center; gap:8px; font-size:13px; }
.head-phone b{ display:block; font-family:var(--display); font-size:16px; color:var(--navy); }
.head-phone span{ color:var(--muted); font-size:10.5px; text-transform:uppercase; letter-spacing:.05em; }
.head-phone .icon{ color:var(--blue); width:18px; height:18px; }
.burger{ display:none; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--line); background:#fff; align-items:center; justify-content:center; }
.burger .icon{ width:19px; height:19px; }

.mobile-nav{ display:none; position:fixed; inset:var(--header-h) 0 0 0; background:var(--cream); z-index:55; padding:30px 24px; overflow:auto; }
.mobile-nav.open{ display:block; }
.mobile-nav a{ display:block; padding:17px 0; font-family:var(--display); font-size:26px; color:var(--navy); border-bottom:1px solid var(--line); }
.mobile-nav .mn-cta{ margin-top:26px; }

/* ===================================================================
   HERO - dark navy, soft breathing aura, editorial serif
   =================================================================== */
.hero{ position:relative; min-height:88vh; display:flex; align-items:center; overflow:hidden; background:var(--navy); isolation:isolate; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; opacity:.4; }
.hero-bg::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(12,25,54,.5) 0%, rgba(12,25,54,.78) 60%, var(--navy-2) 100%); }
.hero-aura{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(520px circle at var(--mx,50%) var(--my,35%), rgba(127,160,230,.28), transparent 65%);
  transition:background .15s ease;
  animation:auraPulse 6s ease-in-out infinite;
}
@keyframes auraPulse{ 0%,100%{ opacity:.75; } 50%{ opacity:1; } }
.hero-content{ position:relative; z-index:2; padding:150px 0 110px; width:100%; text-align:center; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:#fff; padding:9px 20px 9px 14px; border-radius:999px; font-size:11.5px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; margin-bottom:34px; backdrop-filter:blur(6px); }
.hero-eyebrow .icon{ width:14px; height:14px; color:var(--sky); }
.hero h1{ color:#fff; font-size:clamp(46px,7.4vw,104px); font-style:italic; font-weight:400; max-width:980px; margin:0 auto 26px; }
.hero .lead{ color:rgba(255,255,255,.78); font-size:18px; max-width:560px; margin:0 auto 44px; font-family:var(--body); font-weight:300; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; margin-bottom:64px; }

.hero-stats{ display:flex; gap:0; flex-wrap:wrap; justify-content:center; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); backdrop-filter:blur(8px); border-radius:var(--radius); padding:28px 10px; max-width:760px; margin:0 auto; }
.hero-stats div{ flex:1; min-width:150px; text-align:center; padding:0 14px; border-right:1px solid rgba(255,255,255,.13); }
.hero-stats div:last-child{ border-right:none; }
.hero-stats b{ display:block; font-family:var(--display); font-size:clamp(24px,2.8vw,32px); color:#fff; }
.hero-stats span{ font-size:10.5px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.08em; }

/* ===================================================================
   BREATH-WAVE SVG DIVIDER
   =================================================================== */
.breath-wave{ display:block; width:100%; height:64px; }
.breath-wave path{ fill:none; stroke:var(--pale); stroke-width:1.5; stroke-dasharray:6 10; animation:waveFlow 5s linear infinite; }
@keyframes waveFlow{ to{ stroke-dashoffset:-160; } }

/* ===================================================================
   SECTION SHELL
   =================================================================== */
section{ padding:112px 0; position:relative; }
.section-tight{ padding:76px 0; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:26px; margin-bottom:56px; flex-wrap:wrap; }
.section-head .eyebrow{ display:inline-flex; align-items:center; gap:9px; font-size:11.5px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--blue); margin-bottom:16px; }
.section-head .eyebrow .icon{ width:15px; height:15px; }
.section-head h2{ font-size:clamp(32px,4.2vw,54px); max-width:680px; }
.section-head p{ color:var(--muted); max-width:440px; margin:0; font-size:15.5px; font-weight:300; }
.see-all{ font-weight:500; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--navy); border-bottom:1px solid var(--navy); padding-bottom:4px; white-space:nowrap; display:inline-flex; align-items:center; gap:6px; }
.bg-cream{ background:var(--cream); }
.bg-navy{ background:var(--navy); color:rgba(255,255,255,.82); }
.bg-navy h2, .bg-navy h3{ color:#fff; }
.bg-navy .section-head p{ color:rgba(255,255,255,.55); }
.bg-pale-tint{ background:#f2f5fc; }
.center{ text-align:center; }
.center .section-head{ justify-content:center; }
.center .section-head > div{ margin:0 auto; }

/* ===================================================================
   MARQUEE ribbon
   =================================================================== */
.ribbon{ background:var(--pale); color:var(--navy); overflow:hidden; padding:0; }
.ribbon-track{ display:flex; width:max-content; animation:marquee2 30s linear infinite; }
.ribbon-track span{ display:flex; align-items:center; gap:13px; padding:20px 38px; font-family:var(--display); font-style:italic; font-size:21px; white-space:nowrap; }
.ribbon-track span .icon{ width:17px; height:17px; }
@keyframes marquee2{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ===================================================================
   CLASS CARDS (Jóga / Strečink / Trénink)
   =================================================================== */
.class-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.class-card{
  position:relative; background:#fff; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line-soft);
  transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; display:flex; flex-direction:column;
}
.class-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.class-media{ position:relative; aspect-ratio:5/4; overflow:hidden; background:var(--cream); }
.class-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.class-card:hover .class-media img{ transform:scale(1.06); }
.class-icon-badge{ position:absolute; top:18px; left:18px; width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,.92); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-sm); z-index:2; }
.class-icon-badge .icon{ width:22px; height:22px; color:var(--navy); }
.class-body{ padding:26px 26px 30px; display:flex; flex-direction:column; gap:10px; flex:1; }
.class-body h3{ font-size:26px; margin:0; }
.class-tagline{ font-size:13.5px; color:var(--blue); font-weight:500; margin:0; }
.class-desc{ font-size:14px; color:var(--muted); margin:6px 0 10px; font-weight:300; line-height:1.7; }
.class-benefits{ display:grid; gap:9px; margin-top:auto; padding-top:16px; border-top:1px solid var(--line-soft); }
.class-benefits div{ display:flex; align-items:flex-start; gap:9px; font-size:13px; color:var(--ink); }
.class-benefits .icon{ width:15px; height:15px; color:var(--blue); flex-shrink:0; margin-top:2px; }

/* ===================================================================
   INTERACTIVE WEEKLY SCHEDULE (rozvrh)
   =================================================================== */
.schedule-days{ display:flex; gap:8px; overflow-x:auto; margin-bottom:32px; padding-bottom:4px; }
.schedule-day-btn{ padding:12px 22px; border-radius:999px; border:1.5px solid var(--line); background:#fff; font-weight:500; font-size:13.5px; color:var(--navy); white-space:nowrap; transition:all .3s ease; }
.schedule-day-btn:hover{ border-color:var(--blue); }
.schedule-day-btn.active{ background:var(--navy); border-color:var(--navy); color:#fff; }
.schedule-grid{ display:none; grid-template-columns:1fr; gap:14px; }
.schedule-grid.active{ display:grid; }
.schedule-row{
  display:grid; grid-template-columns:140px 1fr 130px; align-items:center; gap:20px;
  background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius-sm); padding:20px 24px;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.schedule-row:hover{ box-shadow:var(--shadow-sm); border-color:var(--pale); }
.schedule-time{ font-family:var(--display); font-size:19px; color:var(--navy); }
.schedule-info{ display:flex; align-items:center; gap:14px; }
.schedule-icon{ width:42px; height:42px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.schedule-icon .icon{ width:20px; height:20px; color:var(--blue); }
.schedule-info b{ display:block; font-size:15.5px; color:var(--ink); font-weight:500; }
.schedule-info span{ font-size:12.5px; color:var(--muted); }
.schedule-lector{ text-align:right; font-size:12.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; }
.schedule-empty{ text-align:center; padding:50px 20px; color:var(--muted); font-size:14px; }

/* ===================================================================
   PRICING TABLE
   =================================================================== */
.pricing-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.price-card{ background:#fff; border:1.5px solid var(--line-soft); border-radius:var(--radius); padding:30px 24px; text-align:center; transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease; position:relative; }
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.price-card.featured{ border-color:var(--navy); box-shadow:var(--shadow-md); }
.price-card .badge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--navy); color:#fff; font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; padding:6px 16px; border-radius:999px; white-space:nowrap; }
.price-card h4{ font-family:var(--body); font-weight:500; font-size:14.5px; text-transform:uppercase; letter-spacing:.03em; color:var(--muted); margin:8px 0 18px; }
.price-card .amount{ font-family:var(--display); font-size:40px; color:var(--navy); margin-bottom:4px; }
.price-card .unit{ font-size:12px; color:var(--muted); margin-bottom:16px; }
.price-card .note{ font-size:12.5px; color:var(--muted); border-top:1px solid var(--line-soft); padding-top:16px; margin:0; }

/* ===================================================================
   USP / VALUES
   =================================================================== */
.usp-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.usp-card{ text-align:center; padding:10px; }
.usp-card .icon-wrap{ width:66px; height:66px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.usp-card .icon-wrap .icon{ width:28px; height:28px; color:var(--navy); }
.usp-card h4{ font-family:var(--body); font-weight:500; font-size:16.5px; margin:0 0 9px; }
.usp-card p{ font-size:13.5px; color:var(--muted); margin:0; font-weight:300; }

/* ===================================================================
   SPOTLIGHT SPLIT
   =================================================================== */
.spotlight{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.spotlight.reverse .spotlight-media{ order:2; }
.spotlight.reverse .spotlight-text{ order:1; }
.spotlight-media{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:5/4; }
.spotlight-media img{ width:100%; height:100%; object-fit:cover; }
.spotlight-badge{ position:absolute; top:22px; left:22px; background:rgba(255,255,255,.95); padding:11px 18px; border-radius:12px; display:flex; align-items:center; gap:9px; font-weight:500; font-size:12.5px; color:var(--navy); box-shadow:var(--shadow-sm); }
.spotlight-badge .icon{ width:16px; height:16px; color:var(--blue); }
.spotlight-text .eyebrow{ display:inline-flex; align-items:center; gap:9px; font-size:11.5px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--blue); margin-bottom:16px; }
.spotlight-list{ display:grid; gap:18px; margin:28px 0; }
.spotlight-list-item{ display:flex; gap:15px; align-items:flex-start; }
.spotlight-list-item .icon-wrap{ width:40px; height:40px; border-radius:11px; background:var(--cream); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.spotlight-list-item .icon-wrap .icon{ width:19px; height:19px; color:var(--blue); }
.spotlight-list-item b{ display:block; font-size:15px; margin-bottom:2px; font-weight:500; }
.spotlight-list-item span{ font-size:13px; color:var(--muted); font-weight:300; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:180px; gap:16px; }
.gallery-grid a{ position:relative; border-radius:18px; overflow:hidden; display:block; }
.gallery-grid a img{ width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.gallery-grid a:hover img{ transform:scale(1.1); }
.gallery-grid a:nth-child(1){ grid-column:span 2; grid-row:span 2; }
.gallery-grid a:nth-child(4){ grid-column:span 2; }
.gallery-overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(12,25,54,.75), transparent 55%); opacity:0; transition:opacity .35s ease; display:flex; align-items:flex-end; padding:18px; color:#fff; font-weight:500; font-size:14px; }
.gallery-grid a:hover .gallery-overlay{ opacity:1; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.review-scroll{ display:flex; gap:22px; overflow-x:auto; padding-bottom:14px; margin:0 -24px; padding-left:24px; padding-right:24px; }
.review-card{ flex:0 0 auto; width:350px; background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius); padding:30px; scroll-snap-align:start; }
.review-card .quote-icon{ width:28px; height:28px; color:var(--sky); margin-bottom:12px; }
.review-top{ display:flex; align-items:center; gap:13px; margin-bottom:8px; }
.avatar-initial{ width:46px; height:46px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:500; font-size:18px; flex-shrink:0; }
.review-name{ font-weight:500; font-size:15px; }
.review-age{ font-size:12px; color:var(--muted); }
.review-stars{ display:flex; gap:2px; color:var(--blue); margin-bottom:11px; }
.review-stars .icon{ width:14px; height:14px; }
.review-text{ font-size:14px; color:var(--muted); margin:0; font-weight:300; line-height:1.7; }
.review-cls{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:11px; font-weight:500; letter-spacing:.05em; text-transform:uppercase; color:var(--blue); background:var(--pale); padding:6px 13px; border-radius:999px; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:26px 4px; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:var(--display); font-size:19px; color:var(--navy); }
.faq-q .icon{ width:20px; height:20px; color:var(--blue); transition:transform .35s ease; flex-shrink:0; }
.faq-item.open .faq-q .icon{ transform:rotate(135deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s ease; }
.faq-a p{ padding:0 4px 26px; color:var(--muted); font-size:14.5px; max-width:700px; font-weight:300; }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner{ position:relative; border-radius:30px; overflow:hidden; background:var(--navy); padding:88px 50px; text-align:center; }
.cta-banner h2{ color:#fff; font-size:clamp(30px,4.4vw,48px); max-width:680px; margin:0 auto 18px; font-style:italic; }
.cta-banner p{ color:rgba(255,255,255,.65); max-width:480px; margin:0 auto 34px; font-size:15.5px; font-weight:300; }

/* ===================================================================
   RESERVE / SIGNUP FORM
   =================================================================== */
.reserve-box{ background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-md); }
.reserve-box h3{ font-size:23px; margin-bottom:6px; }
.field{ margin-bottom:17px; }
.field label{ display:block; font-size:11.5px; font-weight:500; margin-bottom:7px; color:var(--navy); text-transform:uppercase; letter-spacing:.06em; }
.field input, .field select, .field textarea{
  width:100%; border:1.5px solid var(--line); border-radius:var(--radius-sm); padding:13px 15px; font-family:var(--body); font-size:14.5px; background:#fff;
  transition:border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--blue); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:12.5px; color:var(--muted); margin-bottom:18px; }
.checkbox-row input{ margin-top:3px; }
.reserve-note{ display:flex; gap:11px; align-items:flex-start; background:var(--cream); border-radius:var(--radius-sm); padding:15px; font-size:12.5px; color:var(--muted); margin-top:18px; }
.reserve-note .icon{ width:18px; height:18px; color:var(--blue); flex-shrink:0; margin-top:1px; }

/* ===================================================================
   PAGE HEADER / BREADCRUMBS
   =================================================================== */
.page-hero{ position:relative; padding:76px 0 60px; overflow:hidden; }
.page-hero.has-bg{ padding:160px 0 80px; }
.page-hero.has-bg .hero-bg img{ opacity:.32; }
.page-hero.has-bg h1, .page-hero.has-bg p{ color:#fff; }
.page-hero:not(.has-bg){ background:var(--cream); }
.breadcrumbs{ font-size:12px; color:var(--muted); margin-bottom:18px; position:relative; z-index:2; display:flex; align-items:center; gap:6px; text-transform:uppercase; letter-spacing:.05em; }
.page-hero.has-bg .breadcrumbs{ color:rgba(255,255,255,.65); }
.breadcrumbs a:hover{ text-decoration:underline; }
.page-hero h1{ font-size:clamp(38px,5vw,64px); margin:0; position:relative; z-index:2; max-width:800px; font-style:italic; }
.page-hero p{ color:var(--muted); max-width:600px; margin:16px 0 0; position:relative; z-index:2; font-size:16px; font-weight:300; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer{ background:var(--black); color:rgba(255,255,255,.68); padding:80px 0 0; }
.foot-top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:54px; border-bottom:1px solid rgba(255,255,255,.1); }
.foot-brand{ font-family:var(--display); font-size:26px; color:#fff; margin-bottom:18px; }
footer p{ color:rgba(255,255,255,.48); font-size:13.5px; font-weight:300; }
footer h4{ font-family:var(--body); font-size:11.5px; font-weight:500; text-transform:uppercase; letter-spacing:.14em; color:#fff; margin-bottom:20px; }
footer ul li{ margin-bottom:12px; }
footer ul a{ color:rgba(255,255,255,.55); font-size:14px; transition:color .25s ease; display:flex; align-items:center; gap:8px; }
footer ul a .icon{ width:14px; height:14px; color:var(--sky); flex-shrink:0; }
footer ul a:hover{ color:#fff; }
.foot-social{ display:flex; gap:10px; margin-top:20px; }
.foot-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; }
.foot-social a .icon{ width:15px; height:15px; color:#fff; }
.foot-social a:hover{ background:rgba(255,255,255,.1); }
.legal-bar{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:12px; color:rgba(255,255,255,.4); flex-wrap:wrap; gap:10px; }
.legal-bar a{ color:rgba(255,255,255,.4); }
.legal-bar a:hover{ color:#fff; }

/* ===================================================================
   COOKIE BAR / TOAST
   =================================================================== */
.cookie-bar{
  position:fixed; left:16px; right:16px; bottom:16px; max-width:560px; margin:0 auto; background:var(--navy); color:rgba(255,255,255,.85);
  border-radius:22px; padding:24px 26px; z-index:90; box-shadow:var(--shadow-lg); display:none; gap:16px; flex-direction:column;
}
.cookie-bar.show{ display:flex; animation:cookieUp .45s ease; }
@keyframes cookieUp{ from{ transform:translateY(30px); opacity:0;} to{ transform:translateY(0); opacity:1;} }
.cookie-bar p{ font-size:13px; color:rgba(255,255,255,.6); margin:0; font-weight:300; }
.cookie-bar .row{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie-bar .btn-outline{ border-color:rgba(255,255,255,.35); color:#fff; }

.toast{
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--navy); color:#fff;
  padding:16px 26px; border-radius:999px; font-size:14px; font-weight:500; z-index:100; opacity:0; pointer-events:none;
  transition:all .45s cubic-bezier(.2,.8,.2,1); display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.toast .icon{ width:18px; height:18px; color:var(--sky); }

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.legal-body{ max-width:820px; }
.legal-body h2{ font-size:23px; margin-top:48px; font-style:normal; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color:var(--muted); font-size:15px; line-height:1.8; font-weight:300; }
.legal-body ul{ margin:0 0 1em; padding-left:22px; list-style:disc; }
.legal-body .placeholder{ background:var(--pale); padding:2px 8px; border-radius:5px; font-weight:500; color:var(--navy); }
.legal-toc{ border:1px solid var(--line-soft); border-radius:var(--radius); padding:24px 28px; margin-bottom:42px; background:var(--cream); }
.legal-toc h4{ font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; color:var(--navy); }
.legal-toc li{ margin-bottom:10px; font-size:14px; }
.legal-toc a:hover{ text-decoration:underline; }

/* ===================================================================
   CONTACT / MAP
   =================================================================== */
.contact-shell{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.contact-card{ display:flex; gap:17px; padding:20px 0; border-bottom:1px solid var(--line-soft); }
.contact-card .ic{ width:46px; height:46px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card .ic .icon{ width:22px; height:22px; color:var(--blue); }
.contact-card b{ display:block; margin-bottom:3px; color:var(--navy); font-weight:500; }
.contact-card span, .contact-card a{ font-size:14px; color:var(--muted); }
.map-frame{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line-soft); height:370px; margin-top:30px; }
.map-frame iframe{ width:100%; height:100%; border:0; }
.hours-table{ width:100%; border-collapse:collapse; margin-top:10px; }
.hours-table td{ padding:9px 0; font-size:14px; border-bottom:1px solid var(--line-soft); }
.hours-table td:last-child{ text-align:right; font-weight:500; color:var(--navy); }

/* ===================================================================
   STATS BAND
   =================================================================== */
.stat-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; }
.stat-cell{ background:#fff; padding:36px 26px; text-align:center; }
.stat-cell b{ display:block; font-family:var(--display); font-size:clamp(28px,3vw,40px); color:var(--navy); }
.stat-cell span{ font-size:11.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.07em; }

/* ===================================================================
   STICKY MOBILE CTA
   =================================================================== */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:70; display:none; gap:10px; padding:13px 16px;
  background:rgba(255,255,255,.96); backdrop-filter:blur(8px); border-top:1px solid var(--line);
  box-shadow:0 -8px 26px rgba(0,0,0,.08);
}
.sticky-cta a{ flex:1; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width:1080px){
  .class-grid{ grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .usp-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-top{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .pricing-grid{ grid-template-columns:repeat(3,1fr); }
  .contact-shell{ gap:40px; }
}
@media (max-width:920px){
  .main-nav{ display:none; }
  .burger{ display:flex; }
  .head-phone{ display:none; }
  .hero-content{ padding:130px 0 70px; }
  .hero-stats{ max-width:100%; }
  .hero-stats div{ min-width:44%; margin-bottom:16px; }
  .spotlight, .spotlight.reverse{ grid-template-columns:1fr; gap:36px; }
  .spotlight.reverse .spotlight-media, .spotlight.reverse .spotlight-text{ order:0; }
  .contact-shell{ grid-template-columns:1fr; gap:38px; }
  .foot-top{ grid-template-columns:1fr 1fr; }
  .sticky-cta{ display:flex; }
  section{ padding:68px 0; }
  .pricing-grid{ grid-template-columns:1fr 1fr; }
  .schedule-row{ grid-template-columns:1fr; gap:10px; text-align:left; }
  .schedule-lector{ text-align:left; }
}
@media (max-width:640px){
  .usp-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
  .gallery-grid a:nth-child(1){ grid-column:span 2; grid-row:span 1; }
  .foot-top{ grid-template-columns:1fr; gap:30px; }
  .field-row{ grid-template-columns:1fr; }
  .cta-banner{ padding:54px 26px; }
  .hero-cta{ flex-direction:column; width:100%; }
  .hero-cta .btn{ width:100%; }
  .hero-stats div{ min-width:100%; border-right:none; border-bottom:1px solid rgba(255,255,255,.13); padding-bottom:16px; }
  .hero-stats div:last-child{ border-bottom:none; padding-bottom:0; }
  .pricing-grid{ grid-template-columns:1fr; }
  body{ padding-bottom:80px; }
}
