:root{
  --bg:#050505;
  --bg-soft:#0b0b0b;
  --panel:#101010;
  --panel-2:#141414;
  --line:#242424;
  --line-soft:#1a1a1a;
  --ink:#f4f4f4;
  --muted:#b8b8b8;
  --muted-2:#8e8e8e;
  --accent:#ffffff;
  --warn:#ffd8d8;
  --radius:18px;
  --shell-width:95%;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:"Segoe UI Variable","Segoe UI",system-ui,sans-serif;
  overflow-x:hidden;
}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  transition:background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  background:rgba(7,7,7,.78);
  backdrop-filter:blur(10px);
  border-bottom-color:rgba(255,255,255,.08);
}
.logo-header{
  width:var(--shell-width);
  max-width:1440px;
  margin:0 auto;
  min-height:176px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:min-height .35s ease;
}
.logo-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:196px;
  height:196px;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  transition:width .35s ease, height .35s ease, transform .35s ease, opacity .35s ease;
}
.logo-link img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:grayscale(1) invert(1) brightness(1.1);
  background:transparent;
}
.site-header.is-scrolled .logo-header{
  min-height:98px;
}
.site-header.is-scrolled .logo-link{
  width:86px;
  height:86px;
}
.nav-shell{
  width:var(--shell-width);
  max-width:1440px;
  margin:0 auto;
  min-height:78px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:14px;
}
.nav-left,.nav-right{
  display:flex;
  gap:10px;
  align-items:center;
}
.nav-right{justify-content:flex-end}
.nav-left a,.nav-right a{
  color:#ececec;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.25s ease;
}
.nav-left a:hover,.nav-right a:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.08);
}
.brand-center{
  text-decoration:none;
  color:#fff;
  display:flex;
  align-items:center;
  gap:8px;
  justify-self:center;
  letter-spacing:.22em;
}
.brand-center img{
  width:36px;height:36px;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  padding:3px;
  filter:grayscale(1);
}
.brand-center span{
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
}

.site-main{
  width:100%;
}

.hero-section{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  isolation:isolate;
  overflow:hidden;
}
.hero-bg,.band-bg{
  position:absolute;
  inset:-8% -4%;
  transform:translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change:transform;
}
.hero-bg img,.band-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.12) brightness(.55);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.64) 52%, rgba(0,0,0,.88) 100%),
    radial-gradient(circle at 15% 30%, rgba(255,255,255,.08), transparent 45%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:var(--shell-width);
  max-width:1440px;
  margin:0 auto;
  padding:190px 0 56px;
}
.kicker{
  margin:0 0 10px;
  color:#d8d8d8;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
}
.hero-content h1{
  margin:0;
  max-width:12.5ch;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(42px, 6vw, 82px);
  line-height:.97;
  letter-spacing:-.02em;
}
.barber-pole-word{
  display:inline-block;
  background-image:repeating-linear-gradient(
    110deg,
    #b9bec6 0 22px,
    #969da8 22px 44px,
    #7a828e 44px 66px,
    #a6adb8 66px 88px
  );
  background-size:auto;
  background-position:0 50%;
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:0 0 5px rgba(140,146,156,.09);
  animation:barberGrayFlow 4.2s linear infinite;
}
@keyframes barberGrayFlow{
  from{background-position:0 50%}
  to{background-position:-88px 50%}
}
.hero-text{
  margin:18px 0 0;
  max-width:62ch;
  color:#dbdbdb;
  line-height:1.6;
}
.hero-actions{
  margin-top:22px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:12px;
  padding:11px 15px;
  font-weight:700;
  font-size:13px;
  border:1px solid rgba(255,255,255,.2);
  transition:.25s ease;
}
.btn-light{
  background:#fff;
  color:#000;
  border-color:#fff;
}
.btn-light:hover{background:#ececec}
.btn-ghost{
  background:rgba(255,255,255,.04);
  color:#fff;
}
.btn-ghost:hover{
  background:rgba(255,255,255,.08);
}
.hero-stats{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  max-width:560px;
}
.hero-stats > div{
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:12px 14px;
  background:rgba(10,10,10,.38);
  backdrop-filter:blur(5px);
}
.hero-stats span{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#c4c4c4;
}
.hero-stats strong{
  display:block;
  margin-top:6px;
  font-size:20px;
  line-height:1;
}

.course-info-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.media-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.media-card{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg,#101010,#0b0b0b);
}
.media-frame{
  aspect-ratio:16 / 9;
  background:#0a0a0a;
}
.media-frame img,
.media-frame video,
.media-frame iframe{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border:0;
}
.tour-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  text-align:center;
  padding:24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.02), rgba(255,255,255,.06));
}
.tour-placeholder p{
  max-width:34ch;
  color:var(--muted);
}
.media-copy{
  padding:16px;
}
.media-copy h3{
  margin:0 0 8px;
  font-size:20px;
}
.media-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.media-slider{
  position:relative;
  overflow:hidden;
}
.media-slider-track{
  position:relative;
  width:100%;
  height:100%;
}
.media-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .45s ease;
}
.media-slide.is-active{
  opacity:1;
}
.media-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  background:#050505;
}
.media-slider-control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.media-slider-control.prev{left:12px}
.media-slider-control.next{right:12px}
.media-slider-dots{
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}
.media-slider-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.45);
  padding:0;
  cursor:pointer;
}
.media-slider-dot.is-active{
  background:#fff;
}
.course-facts{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  background:linear-gradient(180deg, #101010, #0b0b0b);
}
.course-facts h3{
  margin:0 0 10px;
  font-size:19px;
}
.course-facts ul{
  margin:0;
  padding-left:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--muted);
}
.kit-note{
  font-size:calc(1em - 2px);
}
.class-cards-standalone{
  margin-top:18px;
}
.scroll-cue{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  z-index:2;
  color:#fff;
  text-decoration:none;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.25);
  animation:bob 2.1s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(4px); }
}

.panel-section{
  width:var(--shell-width);
  max-width:1440px;
  margin:0 auto;
  padding:70px 0;
}
.intro-section{
  padding-top:58px;
}
.section-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.section-copy h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.02;
  max-width:14ch;
}
.section-copy p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width:58ch;
}
.info-panel{
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, #111, #0c0c0c);
  overflow:hidden;
  align-self:start;
  min-height:0;
}
.info-row{
  flex:0 0 auto;
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--line-soft);
}
.info-row:last-child{border-bottom:0}
.info-row span{color:var(--muted-2);font-size:13px}
.info-row strong{font-size:14px}

.section-head h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1;
}
.section-head p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.55;
  max-width:64ch;
}
.media-section .section-head{
  display:grid;
  gap:8px;
}
.media-section .section-head .kicker{
  margin:0;
  color:var(--accent);
  letter-spacing:.18em;
}
.media-section .section-head h2{
  max-width:18ch;
  font-size:clamp(28px, 3.2vw, 42px);
  line-height:1.02;
}

.course-stack{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.course-panel{
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  padding:16px;
}
.course-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line-soft);
}
.small-label{
  margin:0;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted-2);
}
.course-panel-head h3{
  margin:6px 0 8px;
  font-size:26px;
  line-height:1.05;
}
.course-meta{
  margin:0;
  color:var(--muted);
  font-size:13px;
  display:flex;
  gap:8px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  background:rgba(255,255,255,.03);
  color:#f1f1f1;
}
.pill-soft{
  border-color:rgba(255,255,255,.08);
  color:#ddd;
  background:rgba(255,255,255,.02);
}
.pill-warn{
  background:rgba(255,90,90,.08);
  color:#ffd9d9;
  border-color:rgba(255,130,130,.18);
}

.class-cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.class-card{
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--panel);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.class-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.14);
  background:var(--panel-2);
}
.class-card-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.class-card-top h4{
  margin:0;
  font-size:18px;
  line-height:1.1;
}
.class-grid{
  margin:0;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:8px;
}
.class-grid.class-grid-compact{
  grid-template-columns:minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
}
.class-grid > div{
  border:1px solid var(--line-soft);
  border-radius:10px;
  padding:8px 9px;
  background:rgba(255,255,255,.015);
}
.class-grid > div.wide{
  grid-column:span 3;
}
.class-grid > div.full{
  grid-column:1 / -1;
}
.class-grid dt{
  margin:0;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.11em;
  color:var(--muted-2);
}
.class-grid dd{
  margin:4px 0 0;
  font-size:13px;
  font-weight:600;
}
.class-grid dd.payment-modalities{
  white-space:pre-wrap;
  display:grid;
  gap:4px;
}
.class-grid dd.payment-modalities strong{
  font-size:15px;
}
.class-grid dd.payment-modalities span{
  display:block;
  font-weight:600;
}
.class-investment{
  border:1px solid var(--line-soft);
  border-radius:12px;
  padding:12px 14px;
  background:rgba(255,255,255,.02);
  display:grid;
  gap:10px;
}
.class-investment-label{
  margin:0;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.11em;
  color:var(--muted-2);
}
.class-investment-price{
  font-size:24px;
  font-weight:800;
  line-height:1;
}
.class-investment-lines{
  display:grid;
  gap:8px;
}
.investment-break{
  height:8px;
}
.class-investment-lines p{
  margin:0;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
}
.class-investment-lines p.investment-line-highlight{
  font-size:32px;
  font-weight:900;
  line-height:1;
  letter-spacing:-.02em;
  color:#fff;
}
.class-investment-lines p.investment-line-muted{
  font-size:13px;
  font-weight:500;
  color:var(--muted);
}
.class-investment-lines p.investment-line-title{
  margin-top:4px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#fff;
}
.class-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  border:1px solid #fff;
  background:#fff;
  color:#000;
  border-radius:11px;
  padding:10px 12px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:.2s ease;
}
.class-action:hover{background:#ececec}
.class-action.is-disabled,
.class-action:disabled{
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#888;
  cursor:not-allowed;
}

.empty-state{
  margin-top:16px;
  border:1px dashed rgba(255,255,255,.15);
  border-radius:14px;
  padding:14px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
}
.empty-state.inner{margin-top:12px}

.parallax-band{
  position:relative;
  min-height:280px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
}
.band-bg{
  inset:-10% -4%;
}
.band-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
}
.band-content{
  position:relative;
  z-index:2;
  width:var(--shell-width);
  max-width:980px;
  text-align:center;
  padding:20px 0;
}
.band-content p{
  margin:0;
  color:#f0f0f0;
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:clamp(22px, 3vw, 36px);
  line-height:1.25;
}

.process-track{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.process-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background:linear-gradient(180deg, #101010, #0b0b0b);
}
.process-index{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:28px;
  padding:0 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:#e8e8e8;
  font-size:12px;
  font-weight:700;
}
.process-card h3{
  margin:12px 0 8px;
  font-size:18px;
}
.process-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

.faq-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
  align-items:start;
}
.faq-intro h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px,4vw,48px);
}
.faq-intro p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width:42ch;
}
.doc-preview{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:var(--panel);
}
.doc-preview-head{
  padding:12px 14px;
  border-bottom:1px solid var(--line-soft);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted-2);
}
.doc-preview-body{
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.doc-preview-body div{
  border:1px solid var(--line-soft);
  border-radius:10px;
  padding:10px 12px;
  font-family:Consolas,"Courier New",monospace;
  font-size:12px;
  color:#dcdcdc;
  background:#0c0c0c;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq-list details{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:var(--panel);
}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  font-weight:600;
  position:relative;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  color:var(--muted-2);
  font-size:18px;
}
.faq-list details[open] summary::after{content:"-"}
.faq-content{
  border-top:1px solid var(--line-soft);
  padding:12px 16px 15px;
  color:var(--muted);
  line-height:1.55;
}
.faq-content ul{margin:0;padding-left:18px}
.faq-content code{
  background:#0a0a0a;
  border:1px solid var(--line);
  border-radius:6px;
  padding:1px 5px;
  color:#efefef;
}

/* Private lessons CTA */
.private-cta-section{
  border-top:1px solid var(--line-soft);
  text-align:center;
  padding-top:80px;
  padding-bottom:80px;
}
.private-cta-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.private-cta-inner h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,54px);
  line-height:1;
}
.private-cta-sub{
  margin:0;
  color:var(--muted);
  font-size:16px;
  max-width:46ch;
  line-height:1.6;
}
.private-cta-btn{
  margin-top:8px;
  padding:13px 28px;
  font-size:14px;
}

/* Simple footer */
.site-footer-simple{
  border-top:1px solid var(--line-soft);
  background:#0a0a0a;
}
.footer-simple-inner{
  width:var(--shell-width);
  max-width:1440px;
  margin:0 auto;
  padding:36px 0 32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  text-align:center;
}
.footer-simple-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-simple-logo{
  height:28px;
  width:auto;
}
.footer-simple-name{
  font-weight:700;
  font-size:15px;
  letter-spacing:.04em;
}
.footer-simple-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 24px;
}
.footer-simple-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  transition:color .2s;
}
.footer-simple-links a:hover{color:var(--ink)}
.footer-simple-copy{
  margin:0;
  font-size:12px;
  color:var(--muted-2);
}

.site-footer{
  border-top:1px solid var(--line-soft);
  background:#0d0d0f;
  overflow-x:hidden;
}
.footer-inner{
  width:var(--shell-width);
  max-width:1440px;
  margin:0 auto;
  padding:34px 0 36px;
  box-sizing:border-box;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.9fr) minmax(0, .7fr) minmax(220px, .7fr);
  gap:22px;
  align-items:stretch;
  width:100%;
  max-width:100%;
}
.footer-locations{
  border-left:1px solid rgba(255,255,255,.8);
  border-right:1px solid rgba(255,255,255,.8);
  padding:10px 24px 14px;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.footer-location-slider{
  overflow:hidden;
  cursor:grab;
  user-select:none;
}
.footer-location-slider.is-dragging{cursor:grabbing}
.footer-location-track{
  display:flex;
  transition:transform .45s ease;
  will-change:transform;
}
.footer-location-page{
  min-width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.footer-location-card{
  text-align:center;
}
.footer-location-card h4{
  margin:0 0 6px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  font-weight:600;
  line-height:1.1;
  letter-spacing:.01em;
}
.footer-location-card p{
  margin:0 0 3px;
  color:#f0f0f0;
  font-size:13px;
  font-weight:400;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.footer-location-card .footer-phone{
  font-size:19px;
  font-weight:700;
  margin-bottom:4px;
}
.footer-slider-controls{
  margin-top:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
}
.footer-slider-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:transparent;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  line-height:1;
}
.footer-slider-btn:hover{
  background:rgba(255,255,255,.08);
}
.footer-slider-dots{
  display:none;
  gap:7px;
}
.footer-slider-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.35);
  cursor:pointer;
}
.footer-slider-dot.is-active{
  background:#fff;
}
.footer-nav{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
}
.footer-nav a{
  color:#fff;
  text-decoration:none;
  font-size:28px;
}
.footer-nav a:hover{
  text-decoration:underline;
}
.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
}
.footer-brand img{
  width:180px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}
.footer-complaints{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.footer-complaints img{
  width:120px;
  height:auto;
  display:block;
  filter:grayscale(1) contrast(1.04) brightness(1.02);
}
.footer-complaints:hover img{
  opacity:.88;
}

/* Reveal animations */
.reveal{
  opacity:1;
  transform:none;
}
.js .reveal{
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .75s cubic-bezier(.2,.65,.2,1),
    transform .75s cubic-bezier(.2,.65,.2,1);
  transition-delay:var(--delay, 0ms);
}
.reveal.delay-1{--delay:90ms}
.reveal.delay-2{--delay:170ms}
.reveal.delay-3{--delay:250ms}
.reveal.delay-4{--delay:320ms}
.js .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 1200px){
  .nav-shell{
    grid-template-columns:1fr auto 1fr;
    min-height:70px;
  }
  .hero-content{
    padding-top:126px;
  }
  .class-cards{
    grid-template-columns:1fr;
  }
  .process-track,
  .course-info-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 980px){
  .section-grid,
  .faq-layout{
    grid-template-columns:1fr;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-nav{
    flex-direction:row;
    flex-wrap:wrap;
    gap:10px 16px;
    justify-content:center;
  }
  .footer-nav a{
    font-size:21px;
  }
  .hero-stats{
    grid-template-columns:1fr 1fr;
    max-width:100%;
  }
}

@media (max-width: 820px){
  .site-header{
    position:sticky;
    background:rgba(7,7,7,.9);
    backdrop-filter:blur(10px);
    border-bottom-color:rgba(255,255,255,.08);
  }
  .nav-shell{
    width:100%;
    padding:0 14px;
    grid-template-columns:1fr;
    gap:6px;
    justify-items:center;
    min-height:auto;
    padding-top:10px;
    padding-bottom:10px;
  }
  .logo-header{
    width:100%;
    min-height:132px;
    padding:0 14px;
  }
  .logo-link{
    width:144px;
    height:144px;
  }
  .site-header.is-scrolled .logo-header{
    min-height:82px;
  }
  .site-header.is-scrolled .logo-link{
    width:72px;
    height:72px;
  }
  .nav-left,.nav-right{
    justify-content:center;
    flex-wrap:wrap;
  }
  .brand-center{
    order:-1;
  }
  .hero-section{
    min-height:92svh;
  }
  .hero-content{
    width:100%;
    padding:158px 14px 48px;
  }
  .panel-section,
  .band-content,
  .footer-inner{
    width:100%;
    max-width:none;
    padding-left:14px;
    padding-right:14px;
  }
  .panel-section{
    padding-top:52px;
    padding-bottom:52px;
  }
  .class-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .class-grid > div.wide{
    grid-column:span 2;
  }
  .class-grid.class-grid-compact{
    grid-template-columns:minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .hero-content h1{
    max-width:13ch;
  }
  .hero-text{
    font-size:14px;
  }
  .process-track,
  .course-info-grid,
  .media-grid,
  .hero-stats{
    grid-template-columns:1fr;
  }
  .class-grid{
    grid-template-columns:1fr;
  }
  .class-grid > div.wide{
    grid-column:auto;
  }
  .class-grid.class-grid-compact{
    grid-template-columns:1fr;
  }
  .footer-inner{
    width:100%;
    padding-top:24px;
    padding-bottom:26px;
    box-sizing:border-box;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:16px;
    width:100%;
    max-width:100%;
  }
  .footer-locations{
    border-left:0;
    border-right:0;
    padding-left:8px;
    padding-right:8px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    margin-inline:auto;
  }
  .footer-location-slider,
  .footer-location-track{
    width:100%;
    max-width:100%;
    margin-inline:auto;
  }
  .footer-location-page{
    justify-items:center;
  }
  .footer-location-card{
    width:min(100%, 340px);
    margin-inline:auto;
    text-align:center;
  }
  .footer-slider-controls{
    margin-top:10px;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .footer-slider-btn{
    width:34px;
    height:34px;
    font-size:18px;
  }
  .footer-nav{
    width:100%;
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px 10px;
    justify-items:center;
  }
  .footer-nav a{
    font-size:17px;
    line-height:1.2;
    text-align:center;
  }
  .footer-brand{
    width:100%;
    gap:14px;
    align-items:center;
    justify-content:center;
  }
  .footer-location-page{
    grid-template-columns:1fr;
    gap:14px;
  }
  .footer-location-card h4{
    font-size:20px;
  }
  .footer-location-card .footer-phone{
    font-size:16px;
  }
}

@media (max-width: 480px){
  .footer-inner{
    width:100%;
    padding-top:20px;
    padding-bottom:22px;
    box-sizing:border-box;
    justify-content:center;
  }
  .footer-locations{
    padding-left:6px;
    padding-right:6px;
  }
  .footer-location-card{
    width:min(100%, 300px);
  }
  .footer-location-card h4{
    font-size:18px;
  }
  .footer-location-card p{
    font-size:12px;
    line-height:1.3;
  }
  .footer-location-card .footer-phone{
    font-size:15px;
  }
  .footer-nav{
    grid-template-columns:1fr !important;
    gap:6px;
  }
  .footer-nav a{
    font-size:16px;
  }
  .footer-brand img{
    width:150px;
  }
  .footer-complaints img{
    width:96px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
  .hero-bg,.band-bg{
    transform:none !important;
  }
  .scroll-cue{
    animation:none;
  }
  .barber-pole-word{
    animation:none;
    background-position:50% 50%;
  }
}
