/* ============================================================
   Fusion Academy
   Tokens measured from target computed styles.
   ============================================================ */
:root{
  --accent:#3fe0c0;          /* mint, as used on the flyer headings */
  --gold:#e4b43c;            /* sampled from the supplied logo */
  --gold-hi:#f0cc54;
  --bg-body:#000;
  --bg-dark:#070707;
  --bg-black:#090909;
  --bg-footer:#0b0b0b;
  --surface:#111;
  --surface-2:#161616;
  --ghost:#0e0e0e;
  --txt:#fff;
  --txt-mute:#ccc;
  --txt-dim:#b6b6b6;
  --border:#bebebe;
  --nav-w:150px;
  --switch-w:60px;
  --font-head:'Montserrat',sans-serif;
  --font-body:'Open Sans',sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg-body);color:var(--txt-mute);
  font-family:var(--font-body);font-size:16px;line-height:1.6;
  overflow-x:hidden;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;border:0}
a{text-decoration:none;color:inherit}
h1,h2,h3,h4,h5,h6{margin:0;font-family:var(--font-head);font-weight:500}
p{margin:0}
ul{margin:0;padding:0}
.list-unstyled{list-style:none;margin:0;padding:0}
svg{width:100%;height:100%;display:block}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
::selection{background:var(--accent);color:#fff}

/* ---------- grid ---------- */
.container{width:100%;max-width:1140px;margin:0 auto;padding:0 12px}
.row{display:flex;flex-wrap:wrap;margin:0 -12px}
[class*="col-"]{position:relative;width:100%;padding:0 12px}
.h-100{height:100%}
.d-flex{display:flex}
.align-items-center{align-items:center}
.justify-content-md-center{justify-content:center}
.text-left{text-align:left}
.text-right{text-align:right}

.col-md-6{flex:0 0 100%;max-width:100%}
@media(min-width:768px){
  .col-md-5{flex:0 0 41.6667%;max-width:41.6667%}
  .col-md-6{flex:0 0 50%;max-width:50%}
  .col-md-7{flex:0 0 58.3333%;max-width:58.3333%}
  .col-md-12{flex:0 0 100%;max-width:100%}
}
@media(min-width:992px){
  .col-lg-3{flex:0 0 25%;max-width:25%}
  .col-lg-4{flex:0 0 33.3333%;max-width:33.3333%}
  .col-lg-5{flex:0 0 41.6667%;max-width:41.6667%}
  .col-lg-6{flex:0 0 50%;max-width:50%}
  .col-lg-7{flex:0 0 58.3333%;max-width:58.3333%}
  .col-lg-9{flex:0 0 75%;max-width:75%}
  .col-lg-12{flex:0 0 100%;max-width:100%}
}
@media(min-width:1200px){
  .col-xl-4{flex:0 0 33.3333%;max-width:33.3333%}
}

/* ---------- preloader ---------- */
#preloader{position:fixed;inset:0;z-index:2147483647;pointer-events:none}
#preloader.loaded{pointer-events:none}
.preloader-top,.preloader-bottom{
  position:fixed;left:0;width:100%;height:50%;background:var(--surface);
  transition:transform .8s cubic-bezier(.77,0,.18,1);
}
.preloader-top{top:0}
.preloader-bottom{bottom:0}
#preloader.loaded .preloader-top{transform:translateY(-100%)}
#preloader.loaded .preloader-bottom{transform:translateY(100%)}
#preloader.loaded .lds-ellipsis{opacity:0}
#preloader.done{display:none}
.lds-ellipsis{
  position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);
  width:80px;height:13px;z-index:2;transition:opacity .3s;
}
.lds-ellipsis div{
  position:absolute;top:0;width:13px;height:13px;border-radius:50%;
  background:var(--accent);animation:lds 1.2s infinite ease-in-out;
}
.lds-ellipsis div:nth-child(1){left:8px;animation-delay:-.24s}
.lds-ellipsis div:nth-child(2){left:32px;animation-delay:-.12s}
.lds-ellipsis div:nth-child(3){left:56px;animation-delay:0s}
@keyframes lds{0%,80%,100%{transform:scale(.4);opacity:.5}40%{transform:scale(1);opacity:1}}

/* ---------- shell ---------- */
.parent{padding-left:var(--switch-w);position:relative;height:100vh;overflow:hidden}
/* the target scrolls this inner pane, not the window, so the sidebar strip
   stays put and the scrollbar sits inside the content column */
.basic-section{width:100%;position:relative;height:100vh;overflow-y:scroll;overflow-x:hidden;
  scrollbar-width:thin;scrollbar-color:#2a2a2a transparent}
.basic-section::-webkit-scrollbar{width:4px}
.basic-section::-webkit-scrollbar-track{background:transparent}
.basic-section::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:2px}

/* ---------- sidebar nav ---------- */
.terse-navigation-menu{
  position:fixed;top:0;left:calc(var(--nav-w) * -1);
  width:var(--nav-w);height:100vh;background:var(--surface);
  z-index:2147483647;display:flex;flex-direction:column;
  transition:transform .5s cubic-bezier(.77,0,.18,1);
}
body.nav-open .terse-navigation-menu{transform:translateX(var(--nav-w))}

.nav-switch{
  position:absolute;top:0;left:var(--nav-w);
  width:var(--switch-w);height:100vh;background:var(--surface);
}
/* brand mark stays visible while the panel is collapsed */
.switch-brand{
  position:absolute;top:16px;left:50%;transform:translateX(-50%);
  width:36px;height:40px;display:block;
}
.switch-brand img{width:100%;height:100%;object-fit:contain}
.switch-brand svg{width:100%;height:100%;color:var(--gold);display:block}
.switch-content{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:22px;height:16px;cursor:pointer;
}
.switch-content span{
  display:block;height:2px;background:#fff;margin-bottom:5px;border-radius:2px;
  transition:width .3s,transform .3s,opacity .3s;
}
.switch-content span:nth-child(1){width:22px}
.switch-content span:nth-child(2){width:14px}
.switch-content span:nth-child(3){width:18px;margin-bottom:0}
.switch-content:hover span{width:22px}
body.nav-open .switch-content span:nth-child(1){transform:translateY(7px) rotate(45deg);width:22px}
body.nav-open .switch-content span:nth-child(2){opacity:0}
body.nav-open .switch-content span:nth-child(3){transform:translateY(-7px) rotate(-45deg);width:22px}

.nav-icon{position:absolute;bottom:25px;left:22px;width:15px}
.nav-icon li{margin-top:12px}
.nav-icon li a{display:block;width:15px;height:15px;color:#8a8a8a;transition:color .3s}
.nav-icon li a:hover{color:var(--accent)}

.nav-head{padding:22px 25px 0;flex:0 0 auto}
.nav-head img{width:112px;height:auto}

.nav-body{flex:1 1 auto;display:flex;align-items:center;padding:0 25px}
.terse-navbar li{margin-bottom:14px}
.terse-navbar li:empty{margin:0}
.terse-navbar a{
  font-family:var(--font-head);font-size:12px;font-weight:400;line-height:12px;
  letter-spacing:1px;color:#fff;text-transform:capitalize;
  display:inline-block;position:relative;transition:color .3s;
}
.terse-navbar a::after{
  content:'';position:absolute;left:0;bottom:-4px;width:0;height:1px;
  background:var(--accent);transition:width .3s;
}
.terse-navbar a:hover,.terse-navbar a.active{color:var(--accent)}
.terse-navbar a:hover::after,.terse-navbar a.active::after{width:100%}

.nav-footer{padding:0 25px 25px}
.nav-footer li a{
  font-family:var(--font-head);font-size:11px;letter-spacing:1px;
  color:#6f6f6f;line-height:22px;transition:color .3s;
}
.nav-footer li a:hover{color:#fff}

/* rotated page label on right edge */
.lower-title-block{
  position:fixed;right:14px;top:50%;
  transform:translateY(-50%) rotate(-90deg);transform-origin:center;
  font-family:var(--font-head);font-size:12px;letter-spacing:3px;
  text-transform:uppercase;color:#5c5c5c;z-index:99;pointer-events:none;
  white-space:nowrap;
}

/* ---------- hero slider ---------- */
.home-slider,.glide__track{height:100vh;overflow:hidden;position:relative}
.glide__slides{display:flex;height:100%;margin:0;padding:0;list-style:none;
  transition:transform .9s cubic-bezier(.77,0,.18,1)}
.glide__slide{flex:0 0 100%;height:100%;position:relative}
.bg-half,.home-section{height:100%}
.background{background-size:cover;background-position:center;background-repeat:no-repeat}
.home-section{position:relative;display:flex;align-items:center}
.home-section::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.42) 55%,rgba(0,0,0,.6) 100%);
}
.home-section .container{position:relative;z-index:2;display:flex;align-items:center}
.text-content-block{width:100%}
.text-content{will-change:transform;transition:transform .45s cubic-bezier(.2,.7,.3,1)}
.title-home{
  display:block;font-family:var(--font-head);font-size:75px;font-weight:700;
  line-height:80px;letter-spacing:2px;color:#fff;text-transform:capitalize;
  margin-bottom:40px;backface-visibility:hidden;
}
.title-home .active{color:var(--accent)}
/* titles are visible by default; JS opts in to the reveal so a script
   failure can never leave the hero blank */
.js .glide__slide .title-home{opacity:0;transform:translateY(38px);
  transition:opacity .9s .25s ease,transform .9s .25s cubic-bezier(.2,.7,.3,1)}
.js .glide__slide.is-active .title-home{opacity:1;transform:none}

.full-control{position:absolute;left:0;right:0;bottom:0;margin:0 auto;z-index:5}
.home-slider-controls{position:relative;height:0}
.glide__arrow{
  position:absolute;bottom:60px;width:43px;height:43px;border-radius:50%;
  background:var(--surface);color:#fff;display:flex;align-items:center;
  justify-content:center;transition:background .3s,color .3s,transform .3s;
}
.glide__arrow svg{width:16px;height:16px}
.glide__arrow--left{left:5px}
.glide__arrow--right{left:58px}
.glide__arrow:hover{background:var(--accent);transform:translateY(-2px)}

/* ---------- section shells ---------- */
.section-block-2{padding:60px 0 30px}
.section-bg-dark{background:var(--bg-dark)}
.section-bg-black{background:var(--bg-black)}
.section-bg-footer{background:var(--bg-footer)}
.section-block-footer{padding:100px 0 70px;position:relative;overflow:hidden}

.section-title-block{position:relative;margin-bottom:40px;text-align:center}
.section-title-block:empty{margin:0}
.section-title{
  display:block;position:relative;
  font-family:var(--font-head);font-size:100px;font-weight:1000;line-height:80px;
  letter-spacing:3px;color:var(--ghost);text-transform:uppercase;
  margin:0;user-select:none;
}
/* the readable heading sits centred on top of the oversized ghost word */
.section-title .section-title-primary{
  position:absolute;top:53%;left:50%;transform:translate(-50%,-50%);
  font-family:var(--font-head);font-size:25px;line-height:25px;
  color:#fff;text-transform:capitalize;letter-spacing:normal;white-space:nowrap;
}
.section-title-line{
  display:block;position:relative;width:13px;height:4px;
  background:var(--accent);margin:32px auto 25px;
}
.section-title-line::before{
  content:'';position:absolute;left:-3px;top:0;width:4px;height:4px;
  background:var(--accent);border-radius:50%;
}
.section-info{
  display:block;text-align:center;padding:0 25%;
  font-family:var(--font-body);font-size:18px;font-weight:400;line-height:30px;
  letter-spacing:1px;color:var(--txt-mute);margin-top:10px;
}
.section-sub-title{
  font-family:var(--font-head);font-size:30px;font-weight:500;line-height:35px;
  letter-spacing:1px;color:#fff;position:relative;
  margin:0 0 20px;
}

.widget-block{margin-bottom:30px;position:relative}

/* ---------- 3D tilt hover ---------- */
.threeD{transform-style:preserve-3d;transition:transform .5s cubic-bezier(.2,.7,.3,1)}

/* ---------- banner cards ---------- */
.widget-block.banner{
  background:var(--surface);border-radius:10px;overflow:hidden;position:relative;
}
.widget-block.banner img{
  width:100%;height:249px;object-fit:cover;
  transition:transform .8s cubic-bezier(.2,.7,.3,1),opacity .5s;opacity:.72;
}
.widget-block.banner:hover img{transform:scale(1.07);opacity:1}
.banner-content{
  position:absolute;left:0;bottom:0;width:100%;padding:26px 28px;
  background:linear-gradient(to top,rgba(0,0,0,.88),transparent);
}
.banner-content .w-title{margin:0}

.w-title{
  font-family:var(--font-head);font-size:18px;font-weight:500;line-height:20px;
  letter-spacing:1px;color:#fff;text-transform:capitalize;
}
.w-info{
  font-family:var(--font-body);font-size:14px;font-weight:400;line-height:25px;
  letter-spacing:1px;color:var(--txt-mute);
}
.w-sub-title{
  font-family:var(--font-head);font-size:12px;font-weight:500;line-height:14.4px;
  letter-spacing:1px;color:var(--txt-dim);text-transform:uppercase;
}

/* ---------- button ---------- */
.btn-default{
  display:inline-block;font-family:var(--font-head);font-size:13px;font-weight:400;
  line-height:13px;letter-spacing:1px;color:#fff;text-transform:uppercase;
  background:transparent;border:1px solid var(--border);border-radius:23px;
  padding:12px 23px;transition:background .35s,color .35s,border-color .35s;
}
.btn-default:hover{background:var(--accent);border-color:var(--accent);color:#fff}
.btn-default.active{background:var(--accent);border-color:var(--accent)}
.btn-default.right-space{margin-right:10px}

/* ---------- before/after comparison ---------- */
.widget-block.comparison{border-radius:10px;overflow:hidden}
.bal-container{position:relative;width:100%;overflow:hidden;user-select:none;
  border-radius:10px;line-height:0;cursor:ew-resize}
.bal-after,.bal-before{width:100%}
.bal-after img,.bal-before img{width:100%;height:375px;object-fit:cover}
.bal-before{position:absolute;inset:0;width:50%;overflow:hidden}
.bal-before-inset{position:absolute;top:0;left:0;height:100%}
.bal-handle{
  position:absolute;top:0;left:50%;width:2px;height:100%;
  background:rgba(255,255,255,.9);transform:translateX(-1px);pointer-events:none;
}
.bal-handle::after{
  content:'';position:absolute;top:50%;left:50%;width:44px;height:44px;
  margin:-22px 0 0 -22px;border-radius:50%;background:var(--surface);
  border:2px solid rgba(255,255,255,.9);
}
.handle-left-arrow,.handle-right-arrow{
  position:absolute;top:50%;width:0;height:0;z-index:2;
  border-top:5px solid transparent;border-bottom:5px solid transparent;
}
.handle-left-arrow{left:-11px;margin-top:-5px;border-right:7px solid #fff}
.handle-right-arrow{right:-11px;margin-top:-5px;border-left:7px solid #fff}

/* ---------- about feature card ---------- */
.widget-block.about-feture{
  background:var(--surface);border-radius:10px;padding:30px;height:375px;
  display:flex;flex-direction:column;
}
.about-feture > img{width:86px;margin-bottom:18px;opacity:.95}
.experence-block{display:flex;align-items:flex-end;gap:12px;margin-bottom:14px}
.experence{
  font-family:var(--font-head);font-size:150px;font-weight:400;line-height:110px;
  letter-spacing:2px;color:var(--gold);
}
.experence-text{
  font-family:var(--font-head);font-size:13px;line-height:16px;letter-spacing:1px;
  color:var(--txt-dim);text-transform:capitalize;padding-bottom:12px;
}
.about-feture .w-info{flex:1 1 auto;margin-bottom:18px}
.about-feture .btn-default{align-self:flex-start}

/* ---------- workout grid ---------- */
.workout-row{margin-top:0}
.widget-block.workout{
  background:var(--surface);border-radius:10px;padding:30px;
  height:275px;transition:background .4s;
}
.widget-block.workout:hover{background:var(--surface-2)}
.workout-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.workout-ic{width:34px;height:34px;color:var(--gold);flex:0 0 34px;transition:color .4s}
.widget-block.workout:hover .workout-ic{color:var(--accent)}
.workout-num{
  display:inline-block;font-family:var(--font-head);font-size:34px;font-weight:700;
  line-height:34px;letter-spacing:2px;color:#232323;
  transition:color .4s;
}
.widget-block.workout:hover .workout-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.workout-ic{width:34px;height:34px;color:var(--gold);flex:0 0 34px;transition:color .4s}
.widget-block.workout:hover .workout-ic{color:var(--accent)}
.workout-num{color:var(--accent)}
.workout-item .w-title{display:block;margin-bottom:12px}
.workout-item .w-info{margin-bottom:14px}

/* ---------- big team ---------- */
.widget-block.big-team{background:var(--surface);border-radius:10px;padding:30px 30px 0}
.big-team > .row{align-items:center}
.big-team img{width:100%;height:336px;object-fit:cover;border-radius:10px}
.big-team-content{padding:0 10px}
.big-team-content .section-sub-title{margin-bottom:16px}
.trainer-rating{display:flex;gap:6px;margin-bottom:22px}
.trainer-rating li{width:12px;height:12px;border-radius:50%;background:var(--gold)}
.trainer-rating li:nth-child(n+5){background:#333}
.trainer-info{background:var(--surface-2);border-radius:10px;padding:30px}
.trainer-info .w-title{margin-bottom:6px}
.trainer-info .w-sub-title{margin-bottom:16px}
.team-social{display:flex;gap:14px}
.team-social a{display:block;width:16px;height:16px;color:#8a8a8a;transition:color .3s}
.team-social a:hover{color:var(--accent)}

.trainer-mini-rating{width:100%;padding:0 10px}
.mini-rating-item{margin-bottom:26px}
.mini-rating-item:last-child{margin-bottom:0}
.mini-rating-item .w-title{font-size:13px;letter-spacing:1px;text-transform:uppercase;
  color:var(--txt-dim);margin-bottom:10px}
.mini-ratings{display:flex;gap:6px}
.mini-ratings li{height:4px;flex:1 1 auto;border-radius:2px;background:#242424}
.mini-ratings li:nth-child(-n+2){background:var(--accent)}

/* ---------- price (empty on target) ---------- */
.widget-block.price{
  padding:30px;background:var(--surface);border-radius:10px;height:100%;
  border:1px solid #1c1c1c;transition:border-color .4s,background .4s;
}
.widget-block.price:hover{border-color:var(--gold);background:var(--surface-2)}
.price-ic{width:32px;height:32px;color:var(--gold);margin-bottom:14px;display:block;transition:color .4s}
.widget-block.price:hover .price-ic{color:var(--accent)}
.price-head{
  font-family:var(--font-head);font-size:18px;line-height:22px;letter-spacing:1px;
  color:#fff;text-transform:capitalize;margin-bottom:4px;
}
.price-meta{
  font-family:var(--font-body);font-size:12px;line-height:18px;letter-spacing:1px;
  color:var(--txt-dim);margin-bottom:18px;
}
.price-fee{
  font-family:var(--font-head);font-size:44px;line-height:44px;letter-spacing:1px;
  color:var(--gold);margin-bottom:2px;
}
.price-fee small{font-size:13px;letter-spacing:1px;color:var(--txt-dim)}
.price-list{margin:16px 0 0;border-top:1px solid #1e1e1e;padding-top:14px}
.price-list li{
  font-family:var(--font-body);font-size:13px;line-height:26px;letter-spacing:1px;
  color:var(--txt-mute);display:flex;justify-content:space-between;gap:12px;
}
.price-list li span{color:var(--gold-hi);white-space:nowrap}
.price-note{
  display:inline-block;margin-top:14px;font-family:var(--font-head);font-size:11px;
  letter-spacing:1px;text-transform:uppercase;color:#0a0a0a;background:var(--accent);
  border-radius:20px;padding:6px 14px;
}
/* schedule lists reused inside the two programme panels */
.sched li{
  font-family:var(--font-body);font-size:13px;line-height:24px;letter-spacing:1px;
  color:var(--txt-mute);
}
.sched li b{color:#fff;font-weight:400;font-family:var(--font-head);letter-spacing:1px}
.offer-tag{
  display:inline-block;margin-top:12px;font-family:var(--font-head);font-size:11px;
  letter-spacing:1px;text-transform:uppercase;color:var(--gold);
  border:1px solid var(--gold);border-radius:20px;padding:6px 14px;
}

/* ---------- discipline tiles ---------- */
.discipline-row{margin:0 -12px}
.col-disc{position:relative;width:100%;padding:0 12px;flex:0 0 100%;max-width:100%}
@media(min-width:576px){.col-disc{flex:0 0 50%;max-width:50%}}
@media(min-width:992px){.col-disc{flex:0 0 20%;max-width:20%}}
.widget-block.discipline{
  background:var(--surface);border-radius:10px;padding:34px 18px 30px;text-align:center;
  border:1px solid #1a1a1a;transition:border-color .4s,background .4s,transform .4s;
}
.widget-block.discipline:hover{border-color:var(--gold);background:var(--surface-2)}
.widget-block.discipline svg{
  width:56px;height:56px;margin:0 auto 18px;display:block;
  color:var(--gold);transition:color .4s,transform .4s;
}
.widget-block.discipline:hover svg{color:var(--accent);transform:translateY(-3px)}
.disc-label{
  font-family:var(--font-head);font-size:15px;line-height:20px;letter-spacing:1px;
  color:#fff;text-transform:capitalize;margin-bottom:5px;
}
.disc-meta{
  font-family:var(--font-body);font-size:12px;line-height:18px;letter-spacing:1px;
  color:var(--txt-dim);
}

/* ---------- footer CTA ---------- */
.section-block-footer .row{align-items:center}
.get-in-touch{margin-bottom:0;min-height:100px;display:flex;align-items:center}
.get-in-touch.left .section-sub-title{max-width:620px}
.get-in-touch.right{text-align:right;justify-content:flex-end}
.bg-character{
  position:absolute;top:0;left:-60px;width:340px;height:100%;
  background:radial-gradient(circle at 30% 50%,rgba(239,87,68,.13),transparent 62%);
  pointer-events:none;
}
.bg-character.ch-right{left:auto;right:-60px;
  background:radial-gradient(circle at 70% 50%,rgba(239,87,68,.09),transparent 62%)}

/* ---------- footer bottom ---------- */
.footer-item{margin-bottom:30px}
.phone-numbers{display:flex;flex-wrap:wrap;gap:14px;align-items:center;line-height:16px}
.phone-numbers li,.footer-item a{
  font-family:var(--font-head);font-size:12px;letter-spacing:1px;
  color:#6f6f6f;text-transform:capitalize;line-height:16px;
}
.footer-item a{transition:color .3s}
.footer-item a:hover{color:var(--accent)}

/* ---------- scroll reveal ---------- */
.inview-element{opacity:0;transform:translateY(46px);
  transition:opacity .9s cubic-bezier(.2,.7,.3,1),transform .9s cubic-bezier(.2,.7,.3,1)}
.inview-element.in-view{opacity:1;transform:none}

/* ============================================================
   RESPONSIVE — breakpoints mirrored from the target's responsive.css
   Only the overrides the target actually declares, plus the minimum
   needed to stop fixed heights breaking on small screens.
   ============================================================ */
@media (max-width:991px){
  .section-info{padding:0 15%}
  .big-team-content{margin-top:26px}
  .trainer-mini-rating{margin-top:28px}
  .get-in-touch.right{text-align:left;margin-top:24px}
}
@media (max-width:767px){
  .title-home{font-size:55px;line-height:60px}
  .widget-block.about-feture{height:auto}
  .widget-block.workout{height:auto}
  .widget-block.client-logo{height:180px}
  .glide__arrow{bottom:36px;transform:translateX(-50%)}
  .glide__arrow--left{left:43%}
  .glide__arrow--right{left:58%}
  .glide__arrow:hover{transform:translateX(-50%) translateY(-2px)}
  .lower-title-block{display:none}
}
@media (max-width:600px){
  .section-info{padding:0 5%}
  .section-title{font-size:64px;line-height:56px}
  .section-title .section-title-primary{font-size:21px;line-height:21px}
  .big-team img{height:280px}
}
@media (max-width:450px){
  .title-home{font-size:35px;line-height:40px}
  .section-title{font-size:44px;line-height:40px;letter-spacing:2px}
  .section-title .section-title-primary{font-size:18px;line-height:18px}
  .experence{font-size:110px;line-height:84px}
  .widget-block.banner img{height:200px}
  .phone-numbers{gap:8px}
}
@media (max-width:425px){
  :root{--switch-w:46px}
  .nav-icon{left:15px}
}
@media (max-width:350px){
  .section-title{font-size:36px;line-height:33px}
  .experence{font-size:88px;line-height:68px}
}



/* ============================================================
   SUBPAGE COMPONENTS
   ============================================================ */
.page-banner{
  position:relative;min-height:560px;display:flex;align-items:flex-end;
  background-size:cover;background-position:center;
}
.page-banner::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.94) 0%,rgba(0,0,0,.55) 45%,rgba(0,0,0,.35) 100%);
}
.page-banner .container{position:relative;z-index:2}
.page-banner-inner{padding:0 0 54px}
.page-ic{width:56px;height:56px;color:var(--gold);display:block;margin-bottom:18px}
.page-title{
  font-family:var(--font-head);font-size:66px;line-height:70px;letter-spacing:2px;
  color:#fff;text-transform:capitalize;margin:0 0 10px;text-wrap:balance;
}
.page-tag{
  font-family:var(--font-body);font-size:18px;line-height:28px;letter-spacing:1px;
  color:var(--accent);margin:0 0 18px;
}
.crumb{
  font-family:var(--font-head);font-size:11px;letter-spacing:2px;
  color:#8a8a8a;text-transform:uppercase;
}
.crumb a{color:#8a8a8a;transition:color .3s}
.crumb a:hover{color:var(--gold)}
.crumb span{margin:0 8px;color:#4a4a4a}

.widget-block.prose{padding-right:20px}
.prose .section-sub-title{margin-bottom:18px}
.w-info.big{font-size:16px;line-height:29px}
/* prose is real sentences: never title-case it */
.prose .w-info,.prose p,.ticks li,.sched-table td,.credit-list li{text-transform:none}
.block-head{
  font-family:var(--font-head);font-size:15px;line-height:20px;letter-spacing:1px;
  color:var(--gold);text-transform:uppercase;margin:30px 0 14px;
}
.ticks li{
  position:relative;padding-left:26px;margin-bottom:11px;
  font-family:var(--font-body);font-size:14px;line-height:24px;letter-spacing:1px;color:var(--txt-mute);
}
.ticks li::before{
  content:'';position:absolute;left:0;top:9px;width:9px;height:9px;
  border-radius:50%;background:var(--accent);
}

.widget-block.side-card{
  background:var(--surface);border-radius:10px;overflow:hidden;border:1px solid #1a1a1a;
}
.side-card > img{width:100%;height:250px;object-fit:cover;display:block}
.side-card-body{padding:26px 28px 30px}
.side-card-body .block-head{margin-top:0}
.sched-table{width:100%;border-collapse:collapse;margin-bottom:22px}
.sched-table th,.sched-table td{
  font-family:var(--font-body);font-size:13px;line-height:21px;letter-spacing:1px;
  text-align:left;vertical-align:top;padding:10px 0;border-bottom:1px solid #1e1e1e;
}
.sched-table th{color:var(--txt-dim);font-weight:400;width:38%;padding-right:14px}
.sched-table td{color:#fff}
.sched-table tr:last-child th,.sched-table tr:last-child td{border-bottom:0}

/* credits page */
.credit-list li{
  display:flex;flex-wrap:wrap;gap:6px 14px;padding:14px 0;border-bottom:1px solid #191919;
  font-family:var(--font-body);font-size:13px;line-height:22px;letter-spacing:1px;color:var(--txt-mute);
}
.credit-list li b{color:#fff;font-weight:400;font-family:var(--font-head);letter-spacing:1px}
.credit-list li a{color:var(--gold);word-break:break-all}
.credit-list li a:hover{color:var(--accent)}
.credit-lic{color:var(--txt-dim)}

@media (max-width:991px){
  .page-banner{min-height:420px}
  .page-title{font-size:48px;line-height:52px}
  .widget-block.prose{padding-right:0}
  .side-card{margin-top:10px}
}
@media (max-width:600px){
  .page-banner{min-height:340px}
  .page-banner-inner{padding-bottom:38px}
  .page-title{font-size:34px;line-height:38px}
  .page-tag{font-size:15px;line-height:24px}
  .page-ic{width:44px;height:44px}
  .sched-table th{width:44%}
}

.banner-link{
  display:block;margin-top:8px;font-family:var(--font-head);font-size:11px;
  letter-spacing:2px;text-transform:uppercase;color:var(--accent);
}
a.widget-block.banner{display:block;color:inherit}
.disc-label a,.price-head a,.w-title a{color:inherit;transition:color .3s}
.disc-label a:hover,.price-head a:hover,.w-title a:hover{color:var(--gold)}

.widget-block.shot{
  display:block;position:relative;border-radius:10px;overflow:hidden;
  background:var(--surface);border:1px solid #1a1a1a;
}
.widget-block.shot img{
  width:100%;height:260px;object-fit:cover;display:block;
  transition:transform .7s cubic-bezier(.2,.7,.3,1),opacity .4s;opacity:.9;
}
.widget-block.shot:hover img{transform:scale(1.06);opacity:1}
.shot-cap{
  position:absolute;left:0;bottom:0;width:100%;padding:16px 18px;
  font-family:var(--font-head);font-size:13px;letter-spacing:1px;
  text-transform:capitalize;color:#fff;
  background:linear-gradient(to top,rgba(0,0,0,.86),transparent);
}


/* ============================================================
   NAV VISIBILITY
   9 pages behind an unlabelled hamburger is not navigation.
   Desktop: panel is permanently open. Mobile: labelled toggle.
   ============================================================ */
@media (min-width:992px){
  .terse-navigation-menu{left:0;transform:none}
  body.nav-open .terse-navigation-menu{transform:none}
  .parent{padding-left:calc(var(--nav-w) + var(--switch-w))}
  .switch-content{display:none}
  /* panel is open, so the full lockup is already showing:
     the strip mark exists only for the collapsed state */
  .switch-brand{display:none}
  .nav-body{padding-top:10px}
  .terse-navbar li{margin-bottom:15px}
  .terse-navbar a{font-size:12.5px}
}
@media (max-width:991px){
  /* make the strip read as a menu, not decoration */
  .nav-switch::after{
    content:'MENU';position:absolute;top:calc(50% + 34px);left:50%;
    transform:translateX(-50%) rotate(90deg);transform-origin:center;
    font-family:var(--font-head);font-size:9px;letter-spacing:2px;
    color:#8a8a8a;pointer-events:none;white-space:nowrap;
  }
  body.nav-open .nav-switch::after{content:'CLOSE';color:var(--accent)}
}

.terse-navbar a.sub{font-size:11px;color:#9a9a9a;padding-left:8px;letter-spacing:.5px}
.terse-navbar a.sub:hover,.terse-navbar a.sub.active{color:var(--gold)}
.terse-navbar li:has(a.sub){margin-bottom:9px}


/* ---------- reels: cards + lightbox ---------- */
.reels-row{display:flex;flex-wrap:wrap;margin:0 -10px}
.col-reel{padding:0 10px;flex:0 0 100%;max-width:100%;margin-bottom:20px}
@media(min-width:768px){.col-reel{flex:0 0 33.3333%;max-width:33.3333%}}

.reel-card{
  position:relative;display:block;width:100%;aspect-ratio:9/16;padding:0;
  border-radius:14px;overflow:hidden;cursor:pointer;text-align:left;
  border:1px solid #1e1e1e;background:var(--surface);
  transition:transform .45s cubic-bezier(.2,.7,.3,1),border-color .35s,box-shadow .45s;
}
.reel-card[data-hue="0"]{background:linear-gradient(155deg,#1a1410,#0b0b0b 62%)}
.reel-card[data-hue="1"]{background:linear-gradient(155deg,#101a17,#0b0b0b 62%)}
.reel-card[data-hue="2"]{background:linear-gradient(155deg,#181410,#0b0b0b 62%)}
.reel-card[data-hue="3"]{background:linear-gradient(155deg,#12161c,#0b0b0b 62%)}
.reel-card::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(120% 70% at 50% 22%,rgba(228,180,60,.16),transparent 62%);
}
.reel-card:hover,.reel-card:focus-visible{
  transform:translateY(-6px);border-color:var(--gold);
  box-shadow:0 18px 44px rgba(0,0,0,.55);outline:none;
}
.reel-cover{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s cubic-bezier(.2,.7,.3,1),opacity .4s;opacity:.92}
.reel-card.has-cover::after{background:linear-gradient(to top,rgba(0,0,0,.75),transparent 55%)}
.reel-card:hover .reel-cover{transform:scale(1.06);opacity:1}
.reel-mark{position:absolute;top:50%;left:50%;transform:translate(-50%,-58%);width:44px;height:52px;opacity:.5}
.reel-mark-tl{position:absolute;top:14px;left:14px;width:26px;height:30px;opacity:.85}
.reel-mark svg{width:100%;height:100%;color:var(--gold)}
.reel-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  border:2px solid var(--gold);background:rgba(0,0,0,.35);
  transition:background .35s,transform .35s;
}
.reel-play svg{width:24px;height:24px;fill:var(--gold);margin-left:3px}
.reel-card:hover .reel-play{background:var(--gold);transform:translate(-50%,-50%) scale(1.08)}
.reel-card:hover .reel-play svg{fill:#0b0b0b}
.reel-meta{
  position:absolute;left:0;bottom:0;width:100%;padding:16px 16px 18px;
  display:flex;flex-direction:column;gap:3px;
  background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
}
.reel-meta b{font-family:var(--font-head);font-size:13px;letter-spacing:1px;color:#fff;font-weight:400}
.reel-meta i{font-family:var(--font-body);font-size:11px;letter-spacing:1px;color:var(--gold);font-style:normal}

.reel-lightbox{
  position:fixed;inset:0;z-index:2147483647;display:none;
  align-items:center;justify-content:center;background:rgba(0,0,0,.93);
}
.reel-lightbox.is-open{display:flex}
.rl-stage{width:min(92vw,420px,48.375vh);aspect-ratio:9/16;background:#000;border-radius:12px;overflow:hidden}
.rl-fallback{display:flex;align-items:center;justify-content:center;height:100%;padding:24px;text-align:center;font-family:var(--font-head);font-size:13px;letter-spacing:1px;color:var(--gold)}
.rl-stage video{width:100%;height:100%;object-fit:contain;display:block;background:#000}
.rl-close{
  position:absolute;top:18px;right:22px;width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.08);color:#fff;font-size:26px;line-height:1;cursor:pointer;
}
.rl-close:hover{background:var(--gold);color:#0b0b0b}
.rl-nav{
  position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,.08);color:#fff;font-size:30px;line-height:1;cursor:pointer;
}
.rl-nav:hover{background:var(--gold);color:#0b0b0b}
.rl-prev{left:24px}
@media(min-width:992px){.rl-prev{left:calc(var(--nav-w) + var(--switch-w) + 24px)}}
.rl-next{right:24px}
.reel-lightbox.rl-solo .rl-nav{display:none}
@media(max-width:600px){
  .rl-nav{display:none}
  .rl-stage{width:94vw}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .inview-element{opacity:1;transform:none}
}

/* ---------- reviews: left-scrolling marquee ---------- */
.reviews-wrap{position:relative;overflow:hidden;padding:8px 0 6px;margin-top:6px}
.reviews-wrap::before,.reviews-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none;
}
.reviews-wrap::before{left:0;background:linear-gradient(to right,var(--bg-dark) 12%,rgba(7,7,7,0))}
.reviews-wrap::after{right:0;background:linear-gradient(to left,var(--bg-dark) 12%,rgba(7,7,7,0))}

/* the track holds the card group twice; -50% minus one gap lands exactly on the clone */
.reviews-track{display:flex;gap:22px;width:max-content;animation:rev-scroll 60s linear infinite}
.reviews-group{display:flex;gap:22px}
@keyframes rev-scroll{from{transform:translate3d(0,0,0)}to{transform:translate3d(calc(-50% - 11px),0,0)}}
.reviews-wrap:hover .reviews-track,
.reviews-wrap:focus-within .reviews-track{animation-play-state:paused}

.review-card{
  flex:0 0 350px;width:350px;position:relative;overflow:hidden;
  display:flex;flex-direction:column;gap:14px;
  padding:26px 24px 22px;border-radius:16px;
  border:1px solid #1e1e1e;background:linear-gradient(160deg,#141414,#0b0b0b 72%);
  transition:transform .4s cubic-bezier(.2,.7,.3,1),border-color .35s,box-shadow .4s;
}
.review-card::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(130% 62% at 50% 0,rgba(228,180,60,.11),transparent 62%);
}
.review-card:hover{transform:translateY(-5px);border-color:var(--gold);box-shadow:0 18px 44px rgba(0,0,0,.55)}
.review-quote{
  position:absolute;top:6px;right:20px;z-index:1;
  font-family:var(--font-head);font-size:76px;line-height:1;color:var(--gold);opacity:.15;
}
.review-stars{display:flex;gap:3px;position:relative;z-index:1}
.review-stars svg{width:15px;height:15px;fill:var(--gold)}
.review-text{
  position:relative;z-index:1;margin:0;
  font-family:var(--font-body);font-size:14px;line-height:1.78;color:#c6c6c6;text-transform:none;
}
.review-who{
  position:relative;z-index:1;display:flex;align-items:center;gap:12px;
  margin-top:auto;padding-top:15px;border-top:1px solid #1c1c1c;
}
.review-av{
  flex:0 0 42px;width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-size:16px;color:#0b0b0b;
  background:linear-gradient(140deg,var(--gold-hi),var(--gold));
}
.review-name{font-family:var(--font-head);font-size:13px;letter-spacing:1px;color:#fff}
.review-class{font-family:var(--font-body);font-size:11px;letter-spacing:.8px;color:var(--gold);text-transform:none}

@media(max-width:767px){
  .review-card{flex:0 0 290px;width:290px;padding:22px 20px 18px}
  .reviews-wrap::before,.reviews-wrap::after{width:36px}
  .reviews-track{animation-duration:46s}
}
@media (prefers-reduced-motion:reduce){
  .reviews-track{animation:none}
  .reviews-wrap{overflow-x:auto}
}

/* ---------- enquiry form ---------- */
.lf-row{align-items:stretch}
.lf-wrap{position:relative}
.lf-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px 20px}
.lf-field{display:flex;flex-direction:column;gap:7px;min-width:0}
.lf-field.lf-wide{grid-column:1 / -1}
.lf-field label{
  font-family:var(--font-head);font-size:11px;letter-spacing:1.4px;
  text-transform:uppercase;color:#9a9a9a;
}
.lf-field label i{color:var(--gold);font-style:normal}
.lf-field input,.lf-field select,.lf-field textarea{
  width:100%;padding:13px 14px;border-radius:9px;
  border:1px solid #232323;background:#0e0e0e;color:#eee;
  font-family:var(--font-body);font-size:14px;line-height:1.4;
  transition:border-color .25s,background .25s,box-shadow .25s;
}
.lf-field textarea{resize:vertical;min-height:88px}
.lf-field select{
  appearance:none;cursor:pointer;padding-right:38px;
  background-image:linear-gradient(45deg,transparent 50%,#8a8a8a 50%),
                   linear-gradient(135deg,#8a8a8a 50%,transparent 50%);
  background-position:calc(100% - 19px) 21px,calc(100% - 13px) 21px;
  background-size:6px 6px,6px 6px;background-repeat:no-repeat;
}
.lf-field option{background:#0e0e0e;color:#eee}
.lf-field input::placeholder,.lf-field textarea::placeholder{color:#5c5c5c}
.lf-field input:focus,.lf-field select:focus,.lf-field textarea:focus{
  outline:none;border-color:var(--gold);background:#111;
  box-shadow:0 0 0 3px rgba(228,180,60,.13);
}
.lf-field.has-error input,.lf-field.has-error select,.lf-field.has-error textarea{border-color:#c8523f}
.lf-error{
  font-family:var(--font-body);font-size:11.5px;letter-spacing:.3px;color:#e07a68;
  min-height:0;text-transform:none;
}
.lf-field.has-error .lf-error{min-height:15px}
.lf-submit{margin-top:22px;border:none;cursor:pointer}
.lf-submit:disabled{opacity:.55;cursor:default}
.lf-note{
  margin:12px 0 0;font-family:var(--font-body);font-size:12px;color:#7d7d7d;
  letter-spacing:.3px;text-transform:none;
}

.lf-done{
  border:1px solid #223;border-radius:14px;padding:34px 28px;
  background:linear-gradient(160deg,#111,#0b0b0b 70%);
  border-color:rgba(63,224,192,.35);
}
.lf-done:focus{outline:none}
.lf-tick{
  display:flex;align-items:center;justify-content:center;
  width:52px;height:52px;border-radius:50%;margin-bottom:16px;
  background:rgba(63,224,192,.12);border:1px solid var(--accent);
}
.lf-tick svg{width:24px;height:24px;fill:none;stroke:var(--accent);stroke-width:2.4;
  stroke-linecap:round;stroke-linejoin:round}
.lf-done .w-info{text-transform:none}
.lf-done .btn-default{margin-top:18px;border:none;cursor:pointer}

.lf-side{
  height:100%;padding:30px 28px;border-radius:14px;
  border:1px solid #1c1c1c;background:linear-gradient(165deg,#131313,#0a0a0a 72%);
}
.lf-phone{
  display:inline-block;margin:6px 0 4px;
  font-family:var(--font-head);font-size:23px;letter-spacing:1px;color:var(--gold);
}
.lf-side-btns{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0 4px}
.lf-ticks{margin-top:20px;padding-top:18px;border-top:1px solid #1c1c1c}

@media(max-width:991px){
  .lf-side{margin-top:26px}
}
@media(max-width:575px){
  .lf-grid{grid-template-columns:1fr}
  .lf-field input,.lf-field select,.lf-field textarea{padding:14px 14px;font-size:16px}
  .lf-field select{background-position:calc(100% - 19px) 23px,calc(100% - 13px) 23px}
  .lf-submit{width:100%;text-align:center}
  .lf-side{padding:24px 20px}
}
