/* ==========================================================================
   Hardwood Culture Academy — shared stylesheet
   Used by both index.html and sessions.html.
   Brand tokens live in :root below — change colours/fonts there.
   ========================================================================== */

/* ----- Self-hosted display font ----- */
@font-face{
  font-family:'Bebas Neue';
  src:url(../assets/fonts/BebasNeue-Regular.ttf) format('truetype');
  font-display:swap;
}

/* ----- Brand tokens ----- */
:root{
  --ink:#08090a;       /* page background        */
  --ink2:#0e1215;      /* panels                 */
  --line:rgba(255,255,255,.08); /* hairlines     */
  --teal:#3BBEBF;      /* accent                 */
  --teal-hi:#46D6D6;   /* bright accent          */
  --bone:#F4F3F0;      /* text                   */
  --mut:#a7afb3;       /* muted text             */
}

/* ----- Reset / base ----- */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--ink);
  color:var(--bone);
  font-family:'Hanken Grotesk',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.bebas{font-family:'Bebas Neue'}
img{max-width:100%}

/* Visible keyboard focus */
:focus-visible{outline:2px solid var(--teal-hi);outline-offset:3px;border-radius:2px}
/* Screen-reader-only (visually hidden but announced) */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* Skip link */
.skip{position:absolute;left:-999px;top:0;z-index:100;background:var(--teal);color:#04201f;font-family:'Bebas Neue';letter-spacing:.14em;padding:12px 20px;border-radius:0 0 4px 0}
.skip:focus{left:0}

/* ==========================================================================
   Fixed atmosphere behind everything
   ========================================================================== */
.atmo{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.atmo .g1{position:absolute;width:55vw;height:55vw;right:-16vw;top:30vh;border-radius:50%;background:radial-gradient(circle,rgba(59,190,191,.10),transparent 70%);filter:blur(18px);animation:drift1 19s ease-in-out infinite alternate}
.atmo .g2{position:absolute;width:48vw;height:48vw;left:-16vw;top:120vh;border-radius:50%;background:radial-gradient(circle,rgba(59,190,191,.08),transparent 70%);animation:drift2 24s ease-in-out infinite alternate}
.atmo .grain,.hero .grain,.phead .grain{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")}
.atmo .grain{position:absolute;inset:0;opacity:.045;mix-blend-mode:overlay}
@keyframes drift1{to{transform:translate(-5vw,4vw) scale(1.12)}}
@keyframes drift2{to{transform:translate(5vw,-3vw) scale(1.1)}}

/* ==========================================================================
   Navigation
   ========================================================================== */
/* Scope to the HEADER nav only — the footer uses <nav> tags too, and must NOT be fixed */
header nav{position:fixed;top:0;left:0;right:0;z-index:50;display:flex;align-items:center;justify-content:space-between;padding:18px clamp(20px,6vw,90px);transition:background .3s,padding .3s}
header nav.solid{background:rgba(8,9,10,.82);backdrop-filter:blur(10px);border-bottom:1px solid var(--line);padding:12px clamp(20px,6vw,90px)}
header nav .brand{display:flex;align-items:center;gap:13px}
header nav .brand img{height:48px;width:auto}
@media(max-width:560px){header nav .brand img{height:40px}}
header nav .brand span{font-family:'Bebas Neue';font-size:22px;letter-spacing:.12em;color:var(--bone)}
header nav .links{display:flex;gap:38px}
header nav .links a{font-family:'Bebas Neue';font-size:17px;letter-spacing:.16em;color:#cfd5d7;text-decoration:none;transition:.25s}
header nav .links a:hover,header nav .links a.on{color:#fff}
@media(max-width:880px){header nav .links{display:none}}
header nav .nav-right{display:flex;align-items:center;gap:clamp(12px,2vw,24px)}
header nav .nav-acct{font-family:'Bebas Neue';font-size:16px;letter-spacing:.16em;color:#cfd5d7;text-decoration:none;transition:.25s;white-space:nowrap}
header nav .nav-acct:hover{color:#fff}

/* Dropdown (Programs) */
header nav .links{align-items:center}
header nav .links .navitem{position:relative}
/* invisible bridge so the mouse can travel from label to submenu without flicker */
header nav .links .navitem::after{content:'';position:absolute;top:100%;left:0;right:0;height:14px}
header nav .links .navitem > a{display:inline-flex;align-items:center;gap:7px}
header nav .links .navitem > a::after{content:'';width:6px;height:6px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:translateY(-2px) rotate(45deg);opacity:.7;transition:.25s}
header nav .links .navitem:hover > a::after{transform:translateY(0) rotate(45deg);opacity:1}
header nav .submenu{position:absolute;top:100%;left:50%;min-width:230px;background:rgba(8,9,10,.96);backdrop-filter:blur(12px);border:1px solid var(--line);border-radius:10px;padding:10px;display:flex;flex-direction:column;gap:2px;opacity:0;visibility:hidden;transform:translateX(-50%) translateY(8px);transition:opacity .2s,transform .2s,visibility .2s;z-index:60;box-shadow:0 30px 60px -30px #000}
header nav .navitem:hover .submenu,header nav .navitem:focus-within .submenu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
header nav .submenu a{font-family:'Bebas Neue';font-size:16px;letter-spacing:.12em;color:#cfd5d7;text-decoration:none;padding:10px 14px;border-radius:6px;white-space:nowrap;transition:.2s}
header nav .submenu a:hover{background:rgba(59,190,191,.1);color:#fff}

/* ===== Mobile menu ===== */
.nav-toggle{display:none;width:44px;height:44px;border:none;background:none;cursor:pointer;flex-direction:column;justify-content:center;align-items:center;gap:6px;padding:0}
.nav-toggle span{display:block;width:26px;height:2px;background:var(--bone);border-radius:2px;transition:.25s}
@media(max-width:880px){
  header nav .nav-toggle{display:flex}
  header nav .nav-right{display:none}
}
.mobile-menu{position:fixed;inset:0;z-index:80;background:rgba(8,9,10,.98);backdrop-filter:blur(10px);opacity:0;transition:opacity .28s ease}
.mobile-menu.open{opacity:1}
.mm-panel{position:relative;height:100%;display:flex;flex-direction:column;justify-content:safe center;overflow-y:auto;padding:88px clamp(28px,8vw,60px)}
.mm-close{position:absolute;top:24px;right:clamp(20px,6vw,40px);width:44px;height:44px;border:none;background:none;cursor:pointer}
.mm-close span{position:absolute;top:50%;left:9px;right:9px;height:2px;background:var(--bone);border-radius:2px}
.mm-close span:first-child{transform:rotate(45deg)}
.mm-close span:last-child{transform:rotate(-45deg)}
.mm-list{display:flex;flex-direction:column;gap:4px}
.mm-list a{font-family:'Bebas Neue';font-size:clamp(28px,8vw,38px);letter-spacing:.06em;color:var(--bone);text-decoration:none;padding:7px 0;opacity:0;transform:translateY(12px);transition:opacity .3s ease,transform .3s ease,color .2s}
.mobile-menu.open .mm-list a{opacity:1;transform:none}
.mm-list a:hover,.mm-list a:focus-visible{color:var(--teal)}
.mm-list .mm-sub{font-size:clamp(18px,5vw,22px);color:var(--mut);padding-left:20px}
.mm-list .mm-acct{margin-top:20px;font-size:clamp(20px,5vw,24px);color:var(--mut);letter-spacing:.16em}
.mm-list .mm-cta{margin-top:16px;align-self:flex-start;font-size:clamp(18px,5vw,22px);color:var(--teal);border:1px solid rgba(59,190,191,.5);border-radius:3px;padding:13px 28px;letter-spacing:.16em}
.mm-list .mm-cta:hover{background:var(--teal);color:#04201f}
/* staggered entrance */
.mobile-menu.open .mm-list a:nth-child(1){transition-delay:.04s}
.mobile-menu.open .mm-list a:nth-child(2){transition-delay:.08s}
.mobile-menu.open .mm-list a:nth-child(3){transition-delay:.12s}
.mobile-menu.open .mm-list a:nth-child(4){transition-delay:.16s}
.mobile-menu.open .mm-list a:nth-child(5){transition-delay:.20s}
.mobile-menu.open .mm-list a:nth-child(6){transition-delay:.24s}
.mobile-menu.open .mm-list a:nth-child(7){transition-delay:.28s}
.mobile-menu.open .mm-list a:nth-child(8){transition-delay:.32s}
.mobile-menu.open .mm-list a:nth-child(n+9){transition-delay:.36s}
@media(prefers-reduced-motion:reduce){.mm-list a{opacity:1;transform:none}}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-ghost{font-family:'Bebas Neue';font-size:16px;letter-spacing:.18em;color:var(--teal);border:1px solid rgba(59,190,191,.5);padding:10px 22px;border-radius:2px;text-decoration:none;transition:.25s;white-space:nowrap}
.btn-ghost:hover{background:var(--teal);color:#04201f}

.btn-solid{position:relative;overflow:hidden;display:inline-block;font-family:'Bebas Neue';font-size:21px;letter-spacing:.14em;color:#04201f;background:var(--teal);padding:18px 42px;border-radius:3px;text-decoration:none;border:none;cursor:pointer;transition:transform .25s,background .25s;animation:pulse 3.4s ease-in-out infinite}
.btn-solid::after{content:'';position:absolute;top:0;left:-130%;width:55%;height:100%;background:linear-gradient(110deg,transparent,rgba(255,255,255,.55),transparent);transform:skewX(-20deg);transition:left .6s}
.btn-solid:hover{background:var(--teal-hi);transform:translateY(-2px)}
.btn-solid:hover::after{left:150%}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(59,190,191,0)}50%{box-shadow:0 0 34px -4px rgba(59,190,191,.5)}}

/* ==========================================================================
   Section primitives & headings
   ========================================================================== */
section{position:relative;z-index:2}
.pad{padding:clamp(80px,11vw,150px) clamp(20px,6vw,90px)}
.pad.pt0{padding-top:0}
.wrapc{max-width:1280px;margin:0 auto}

.kicker{display:inline-flex;align-items:center;gap:14px;font-family:'Bebas Neue';font-size:16px;letter-spacing:.34em;color:var(--teal);margin-bottom:22px}
.kicker.c::before,.kicker.c::after{content:'';width:40px;height:1px;background:var(--teal);opacity:.6}
.kicker .ln{width:46px;height:1px;background:var(--teal);opacity:.8}

h2{font-family:'Bebas Neue';font-weight:400;line-height:.95;letter-spacing:.012em;font-size:clamp(44px,6vw,82px)}
.tt{background:linear-gradient(100deg,var(--teal) 18%,var(--teal-hi) 40%,#d6fbfb 50%,var(--teal-hi) 60%,var(--teal) 82%);background-size:230% 100%;-webkit-background-clip:text;background-clip:text;color:transparent;animation:shimmer 6.5s linear infinite}
@keyframes shimmer{to{background-position:-230% 0}}

.head{text-align:center;max-width:40em;margin:0 auto 64px}
.head p{color:var(--mut);font-size:clamp(15px,1.1vw,17px);line-height:1.7;margin-top:22px}

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero{position:relative;min-height:100vh;display:flex;flex-direction:column;overflow:hidden;z-index:2}
.hero .photo{position:absolute;inset:0;z-index:0;overflow:hidden}
.hero .photo img{width:100%;height:100%;object-fit:cover;transform:scale(1.04);animation:kenburns 24s ease-in-out infinite alternate}
@keyframes kenburns{to{transform:scale(1.16) translate(-2%,-2%)}}
.hero .scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(8,9,10,.92),rgba(8,9,10,.62) 42%,rgba(8,9,10,.2) 72%,rgba(8,9,10,.32)),linear-gradient(0deg,rgba(8,9,10,.92) 4%,rgba(8,9,10,.16) 42%,transparent 64%)}
.hero .grain{position:absolute;inset:0;z-index:2;opacity:.05;mix-blend-mode:overlay}
.parts{position:absolute;inset:0;z-index:3;pointer-events:none}
.parts i{position:absolute;width:4px;height:4px;border-radius:50%;background:var(--teal);box-shadow:0 0 8px 1px rgba(59,190,191,.6);opacity:0;animation:float linear infinite}
@keyframes float{0%{opacity:0;transform:translateY(20px)}10%{opacity:.4}90%{opacity:.3}100%{opacity:0;transform:translateY(-130px)}}
.hwrap{position:relative;z-index:5;flex:1;display:flex;align-items:center;padding:30px clamp(20px,6vw,90px)}
.hcopy{max-width:46rem}
.hero h1{font-family:'Bebas Neue';font-weight:400;line-height:.9;letter-spacing:.012em;font-size:clamp(62px,9.2vw,148px);text-shadow:0 2px 40px rgba(0,0,0,.5)}
.sub{max-width:30em;margin:26px 0 0;color:#cfd5d7;font-size:clamp(15px,1.15vw,18px);line-height:1.7}
.cta{display:flex;align-items:center;gap:26px;flex-wrap:wrap;margin-top:40px}
.fineprint{color:#cfd5d7;font-size:13.5px}
.fineprint b{color:#fff;font-weight:600}
.chips{display:flex;gap:14px;margin-top:42px;flex-wrap:wrap}
.chip{font-family:'Bebas Neue';font-size:16px;letter-spacing:.14em;color:#cfd5d7;border:1px solid rgba(255,255,255,.18);padding:10px 18px;border-radius:2px;transition:.25s}
.chip:hover{color:#fff;border-color:rgba(59,190,191,.5);transform:translateY(-2px)}
.scrolly{position:absolute;left:50%;bottom:78px;transform:translateX(-50%);z-index:6;display:flex;flex-direction:column;align-items:center;gap:8px;color:#aeb6b9;font-family:'Bebas Neue';font-size:13px;letter-spacing:.28em}
.scrolly .m{width:22px;height:36px;border:1px solid rgba(255,255,255,.35);border-radius:12px;position:relative}
.scrolly .m::after{content:'';position:absolute;left:50%;top:7px;width:3px;height:7px;background:var(--teal);border-radius:2px;transform:translateX(-50%);animation:scrolldot 1.8s ease-in-out infinite}
@keyframes scrolldot{0%{opacity:0;top:7px}30%,70%{opacity:1}100%{opacity:0;top:20px}}

/* ----- Kinetic ticker ----- */
.ticker{position:relative;z-index:6;border-top:1px solid var(--line);border-bottom:1px solid var(--line);overflow:hidden;white-space:nowrap;padding:16px 0;background:rgba(8,9,10,.55);backdrop-filter:blur(4px);-webkit-mask:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.track{display:inline-block;animation:scrollx 30s linear infinite}
.track span{font-family:'Bebas Neue';font-size:24px;letter-spacing:.2em;color:transparent;-webkit-text-stroke:1px rgba(244,243,240,.3);margin:0 24px}
.track .dot{color:var(--teal);-webkit-text-stroke:0;margin:0 8px}
@keyframes scrollx{to{transform:translateX(-50%)}}

/* ==========================================================================
   The HCA Way — values pillars
   ========================================================================== */
.ethos{text-align:center}
.ethos h2{max-width:16em;margin:0 auto}
.ethos p{max-width:42em;margin:24px auto 0;color:var(--mut);line-height:1.7;font-size:clamp(15px,1.1vw,17px)}
.pillars{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:64px}
@media(max-width:820px){.pillars{grid-template-columns:1fr 1fr}}
.pillar{border:1px solid var(--line);border-radius:10px;padding:34px 24px;background:linear-gradient(165deg,rgba(255,255,255,.02),transparent);transition:.3s}
.pillar:hover{border-color:rgba(59,190,191,.35);transform:translateY(-4px)}
.pillar .n{font-family:'Bebas Neue';color:var(--teal);font-size:18px;letter-spacing:.2em;opacity:.6}
.pillar h3{font-family:'Bebas Neue';font-weight:400;font-size:30px;letter-spacing:.02em;margin:10px 0 8px}
.pillar p{color:var(--mut);font-size:14px;line-height:1.6;margin:0}

/* ==========================================================================
   Programs
   ========================================================================== */
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:32px;perspective:1200px}
@media(max-width:820px){.grid2{grid-template-columns:1fr}}
.card{position:relative;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:linear-gradient(165deg,#13171a,#0b0d0f);transition:transform .3s cubic-bezier(.2,.7,.2,1),border-color .3s,box-shadow .3s;transform-style:preserve-3d}
.card:hover{border-color:rgba(59,190,191,.4);box-shadow:0 40px 80px -40px rgba(0,0,0,.9),0 0 40px -20px rgba(59,190,191,.35)}
.card .iw{overflow:hidden;aspect-ratio:1/1}
.card .iw img{width:100%;height:100%;object-fit:cover;display:block;transition:.6s cubic-bezier(.2,.7,.2,1)}
.card:hover .iw img{transform:scale(1.05)}
.card .b{padding:28px 30px 32px;transform:translateZ(36px)}
.card .meta{font-family:'Bebas Neue';font-size:15px;letter-spacing:.2em;color:var(--teal);margin-bottom:10px}
.card h3{font-family:'Bebas Neue';font-weight:400;font-size:36px;letter-spacing:.02em;line-height:1}
.card p{color:var(--mut);font-size:15px;line-height:1.65;margin:13px 0 24px}
.more{display:inline-flex;align-items:center;gap:10px;font-family:'Bebas Neue';font-size:17px;letter-spacing:.16em;color:var(--bone);text-decoration:none}
.more .arw{color:var(--teal);transition:transform .25s}
.card:hover .more .arw{transform:translateX(6px)}
.rep{margin-top:32px;position:relative;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:linear-gradient(120deg,#0c1416,#0b0d0f 60%);display:flex;align-items:center;justify-content:space-between;gap:30px;padding:44px clamp(28px,4vw,56px);flex-wrap:wrap}
.rep::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--teal)}
.rep .meta{font-family:'Bebas Neue';font-size:15px;letter-spacing:.24em;color:var(--teal);margin-bottom:8px}
.rep h3{font-family:'Bebas Neue';font-weight:400;font-size:clamp(32px,4vw,48px);letter-spacing:.02em;line-height:1}
.rep p{color:var(--mut);font-size:15px;line-height:1.65;margin-top:12px;max-width:46em}

/* ==========================================================================
   Split sections (Coaches / Facility / Contact)
   ========================================================================== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,5vw,72px);align-items:center}
@media(max-width:900px){.split{grid-template-columns:1fr}}
.split img.vis{width:100%;border-radius:12px;border:1px solid var(--line);display:block;box-shadow:0 40px 80px -50px #000}
.coaches .person{margin-top:26px}
.coaches .person .nm{font-family:'Bebas Neue';font-size:30px;letter-spacing:.02em}
.coaches .person .rl{font-family:'Bebas Neue';font-size:15px;letter-spacing:.2em;color:var(--teal);margin-left:12px}
.coaches .person p{color:var(--mut);font-size:15px;line-height:1.65;margin-top:8px}
.coaches .close{margin-top:30px;color:var(--bone);font-size:15.5px;line-height:1.75;border-left:2px solid var(--teal);padding-left:20px}

/* ----- Facility features ----- */
.feat{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:30px}
.feat .f{display:flex;gap:14px;align-items:flex-start}
.feat .f .dot{width:9px;height:9px;border-radius:2px;background:var(--teal);margin-top:7px;flex:none;box-shadow:0 0 10px rgba(59,190,191,.6)}
.feat .f h4{font-family:'Bebas Neue';font-weight:400;font-size:21px;letter-spacing:.04em}
.feat .f p{color:var(--mut);font-size:14px;line-height:1.55;margin-top:3px}

/* ==========================================================================
   Free-trial band
   ========================================================================== */
.trial{position:relative;z-index:2;text-align:center;padding:clamp(70px,9vw,120px) clamp(20px,6vw,90px);overflow:hidden;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:radial-gradient(120% 140% at 50% 0%,rgba(59,190,191,.14),transparent 60%),#090b0c}
.trial h2{font-size:clamp(48px,7vw,104px)}
.trial p{color:#cfd5d7;font-size:clamp(15px,1.2vw,19px);margin:18px auto 36px;max-width:34em;line-height:1.6}
.trial p b{color:#fff}

/* ==========================================================================
   Holiday camps + testimonials
   ========================================================================== */
.camps{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;border:1px solid var(--line);border-radius:12px;padding:40px clamp(26px,4vw,52px);background:linear-gradient(120deg,#0e1316,#0a0c0d 65%)}
.camps .meta{font-family:'Bebas Neue';font-size:15px;letter-spacing:.24em;color:var(--teal)}
.camps h3{font-family:'Bebas Neue';font-weight:400;font-size:clamp(30px,3.6vw,46px);letter-spacing:.02em;margin:6px 0 10px}
.camps p{color:var(--mut);font-size:15px;line-height:1.6;max-width:42em}
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:56px}
@media(max-width:820px){.quotes{grid-template-columns:1fr}}
.quote{border:1px solid var(--line);border-radius:12px;padding:32px 30px;background:linear-gradient(165deg,rgba(255,255,255,.02),transparent)}
.quote .q{font-size:42px;font-family:'Bebas Neue';color:var(--teal);line-height:.6}
.quote p{color:#dfe4e6;font-size:15.5px;line-height:1.7;margin:10px 0 18px;font-style:italic}
.quote .who{font-family:'Bebas Neue';font-size:16px;letter-spacing:.12em;color:var(--mut)}
.ph{outline:1px dashed rgba(59,190,191,.4);outline-offset:3px}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact .split{align-items:start}
.form{display:flex;flex-direction:column;gap:14px}
.form input,.form textarea{background:rgba(255,255,255,.03);border:1px solid var(--line);border-radius:6px;padding:15px 16px;color:var(--bone);font-family:inherit;font-size:15px;transition:.2s}
.form input:focus,.form textarea:focus{outline:none;border-color:rgba(59,190,191,.5);background:rgba(59,190,191,.04)}
.form textarea{min-height:130px;resize:vertical}
.cinfo .row{display:flex;gap:14px;align-items:flex-start;margin-bottom:22px}
.cinfo .row .dot{width:9px;height:9px;border-radius:2px;background:var(--teal);margin-top:7px;flex:none}
.cinfo .row h4{font-family:'Bebas Neue';font-weight:400;font-size:20px;letter-spacing:.06em}
.cinfo .row p{color:var(--mut);font-size:14.5px;line-height:1.5;margin-top:2px}

/* ==========================================================================
   Footer (rich — home)
   ========================================================================== */
footer{position:relative;z-index:2;border-top:1px solid var(--line);padding:64px clamp(20px,6vw,90px) 40px;background:#070809}
.fgrid{display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;max-width:1280px;margin:0 auto}
footer .logo img{width:230px;opacity:.95}
footer .tag{color:var(--mut);font-size:13.5px;letter-spacing:.04em;margin-top:16px;max-width:24em;line-height:1.6}
footer .col h5{font-family:'Bebas Neue';font-size:16px;letter-spacing:.18em;color:var(--bone);margin-bottom:14px}
footer .col a{display:block;color:var(--mut);text-decoration:none;font-size:14.5px;margin-bottom:9px;transition:.2s}
footer .col a:hover{color:var(--teal)}
.fbot{max-width:1280px;margin:44px auto 0;padding-top:22px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;color:#71797c;font-size:12.5px;letter-spacing:.04em}

/* ----- Footer (mini — sessions) ----- */
footer.mini{padding:40px clamp(20px,6vw,90px);text-align:center}
footer.mini img{width:180px;opacity:.9}
footer.mini p{color:#71797c;font-size:12.5px;margin-top:14px;letter-spacing:.04em}

/* ==========================================================================
   Session flow (home teaser + sessions page) + sidelines + essentials
   ========================================================================== */
.flow{position:relative;margin-top:74px}
.flow .line{position:absolute;left:6%;right:6%;top:33px;height:2px;background:linear-gradient(90deg,transparent,rgba(59,190,191,.55) 12%,rgba(59,190,191,.55) 88%,transparent)}
.steps{display:grid;grid-template-columns:repeat(5,1fr);gap:22px}
.step{display:flex;flex-direction:column;align-items:center;text-align:center}
.step .node{width:68px;height:68px;border-radius:50%;border:1px solid rgba(59,190,191,.55);display:flex;align-items:center;justify-content:center;font-family:'Bebas Neue';font-size:30px;color:var(--teal);background:var(--ink);box-shadow:0 0 0 7px var(--ink);position:relative;z-index:1;transition:.3s}
.step:hover .node{background:var(--teal);color:#04201f;box-shadow:0 0 0 7px var(--ink),0 0 28px -4px rgba(59,190,191,.7)}
.step .tm{font-family:'Bebas Neue';font-size:14px;letter-spacing:.2em;color:var(--teal);margin:18px 0 4px;opacity:.8}
.step h3{font-family:'Bebas Neue';font-weight:400;font-size:25px;letter-spacing:.03em;line-height:1.05}
.step p{color:var(--mut);font-size:14px;line-height:1.6;margin-top:8px;max-width:19em}
@media(max-width:820px){
  .flow .line{left:33px;right:auto;top:0;bottom:0;width:2px;height:auto;background:linear-gradient(180deg,transparent,rgba(59,190,191,.55) 6%,rgba(59,190,191,.55) 94%,transparent)}
  .steps{grid-template-columns:1fr;gap:34px}
  .step{flex-direction:row;text-align:left;gap:20px;align-items:flex-start}
  .step .node{flex:none}
  .step .tx{padding-top:4px}
  .step p{max-width:none}
  .step .tm{margin-top:0}
}

.seen{margin-top:96px;border:1px solid var(--line);border-radius:14px;overflow:hidden;background:linear-gradient(120deg,#0d1417,#0a0c0d 65%);padding:clamp(36px,4vw,60px)}
.seen.tight{margin-top:30px}
.seen .top{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;flex-wrap:wrap;margin-bottom:38px}
.seen .top h3{font-family:'Bebas Neue';font-weight:400;font-size:clamp(30px,3.6vw,46px);letter-spacing:.02em;line-height:1}
.seen .top p{color:var(--mut);font-size:15px;line-height:1.6;max-width:30em}
.pts{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
@media(max-width:820px){.pts{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.pts{grid-template-columns:1fr}}
.pt{border-top:1px solid var(--line);padding-top:20px}
.pt .dot{width:8px;height:8px;border-radius:2px;background:var(--teal);box-shadow:0 0 10px rgba(59,190,191,.6);margin-bottom:12px}
.pt h4{font-family:'Bebas Neue';font-weight:400;font-size:21px;letter-spacing:.03em}
.pt p{color:var(--mut);font-size:14px;line-height:1.6;margin-top:6px}

.ess{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:10px}
@media(max-width:820px){.ess{grid-template-columns:1fr 1fr}}
.ess .e{border:1px solid var(--line);border-radius:10px;padding:30px 26px;background:linear-gradient(165deg,rgba(255,255,255,.02),transparent);transition:.3s}
.ess .e:hover{border-color:rgba(59,190,191,.35);transform:translateY(-4px)}
.ess .e .lbl{font-family:'Bebas Neue';font-size:14px;letter-spacing:.2em;color:var(--teal);opacity:.8}
.ess .e .val{font-family:'Bebas Neue';font-size:30px;letter-spacing:.02em;margin-top:8px}
.ess .e p{color:var(--mut);font-size:13.5px;line-height:1.55;margin-top:6px}
.note{margin-top:30px;text-align:center;color:#6f777a;font-size:12.5px;letter-spacing:.03em}

/* ==========================================================================
   Sessions page header
   ========================================================================== */
.phead{position:relative;min-height:60vh;display:flex;align-items:flex-end;overflow:hidden}
.phead .photo{position:absolute;inset:0;z-index:0;overflow:hidden}
.phead .photo img{width:100%;height:100%;object-fit:cover;transform:scale(1.05);animation:kenburns 26s ease-in-out infinite alternate}
.phead .scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(8,9,10,.9),rgba(8,9,10,.55) 55%,rgba(8,9,10,.35)),linear-gradient(0deg,rgba(8,9,10,.96),rgba(8,9,10,.2) 55%,rgba(8,9,10,.5))}
.phead .grain{position:absolute;inset:0;z-index:2;opacity:.05;mix-blend-mode:overlay}
.phead .inner{position:relative;z-index:5;padding:0 clamp(20px,6vw,90px) clamp(50px,7vw,90px);max-width:1280px;margin:0 auto;width:100%}
.phead h1{font-family:'Bebas Neue';font-weight:400;line-height:.92;letter-spacing:.012em;font-size:clamp(54px,8vw,118px);text-shadow:0 2px 40px rgba(0,0,0,.5)}
.phead p{max-width:34em;margin-top:18px;color:#cfd5d7;font-size:clamp(15px,1.2vw,18px);line-height:1.65}

/* ==========================================================================
   Coaches page — lead bios + 1:1 coach grid
   ========================================================================== */
.lead-coach{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,5vw,72px);align-items:center;margin-bottom:clamp(40px,6vw,80px)}
.lead-coach:nth-child(even) .lc-img{order:2}
@media(max-width:900px){.lead-coach{grid-template-columns:1fr}.lead-coach .lc-img{order:0!important}}
.lead-coach .lc-img img{width:100%;border-radius:12px;border:1px solid var(--line);display:block;box-shadow:0 40px 80px -50px #000}
.lead-coach .rl{font-family:'Bebas Neue';font-size:15px;letter-spacing:.2em;color:var(--teal)}
.lead-coach h3{font-family:'Bebas Neue';font-weight:400;font-size:clamp(34px,4.5vw,52px);letter-spacing:.02em;line-height:1;margin:8px 0 16px}
.lead-coach p{color:var(--mut);font-size:clamp(15px,1.1vw,16.5px);line-height:1.7}
.coachgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:56px}
@media(max-width:820px){.coachgrid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.coachgrid{grid-template-columns:1fr}}
.coachcard{border:1px solid var(--line);border-radius:12px;padding:30px 26px;background:linear-gradient(165deg,rgba(255,255,255,.02),transparent);transition:.3s}
.coachcard:hover{border-color:rgba(59,190,191,.35);transform:translateY(-4px)}
.coachcard .av{width:54px;height:54px;border-radius:50%;border:1px solid rgba(59,190,191,.45);display:flex;align-items:center;justify-content:center;font-family:'Bebas Neue';font-size:22px;color:var(--teal);letter-spacing:.04em;margin-bottom:18px}
.coachcard h4{font-family:'Bebas Neue';font-weight:400;font-size:24px;letter-spacing:.03em}
.coachcard .role{color:var(--mut);font-size:13.5px;letter-spacing:.1em;margin-top:4px;text-transform:uppercase}

/* ==========================================================================
   Hapana embed slots (booking / memberships / account widgets)
   ========================================================================== */
.embed-wrap{max-width:1180px;margin:0 auto}
.embed-slot{min-height:440px;border:1px solid var(--line);border-radius:14px;background:linear-gradient(165deg,rgba(255,255,255,.02),transparent);display:flex;align-items:center;justify-content:center;text-align:center;padding:48px clamp(20px,4vw,56px)}
.embed-slot .ph{max-width:34em}
.embed-slot .ph .tag{font-family:'Bebas Neue';letter-spacing:.2em;color:var(--teal);font-size:14px}
.embed-slot .ph h3{font-family:'Bebas Neue';font-weight:400;font-size:clamp(26px,3vw,38px);letter-spacing:.02em;margin:10px 0 12px}
.embed-slot .ph p{color:var(--mut);font-size:14.5px;line-height:1.6}
.embed-slot .ph code{color:var(--bone);background:rgba(255,255,255,.05);padding:2px 7px;border-radius:4px;font-size:13px}
/* When a real Hapana widget is pasted inside, drop the placeholder framing */
.embed-slot.live{display:block;border:none;background:none;padding:0;min-height:0}

/* ==========================================================================
   Scroll reveal + entrance + reduced motion
   ========================================================================== */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s cubic-bezier(.2,.7,.2,1),transform .8s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
.rise{opacity:0;transform:translateY(26px);animation:rise .9s cubic-bezier(.2,.7,.2,1) forwards}
@keyframes rise{to{opacity:1;transform:none}}
.d1{animation-delay:.1s}.d2{animation-delay:.24s}.d3{animation-delay:.4s}.d4{animation-delay:.56s}.d5{animation-delay:.72s}

@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  .reveal,.rise{opacity:1;transform:none}
}

/* ==========================================================================
   Small-screen tuning
   ========================================================================== */
@media(max-width:600px){
  /* Hero ticker + floating particles crowd small screens — hide them */
  .hero .ticker,.parts{display:none}
  /* Tighter hero headline so the subject stays visible */
  .hero h1{font-size:clamp(46px,13vw,84px)}
  .scrolly{display:none}
  /* Stack the Rep / camps CTAs full width */
  .rep,.camps{flex-direction:column;align-items:flex-start}
  .rep .btn-solid,.camps .btn-ghost{width:100%;text-align:center}
}
