/* =========================
   GLOBAL
========================= */
.boo-homepage{
  overflow: hidden;
}


/* =========================
   HERO
========================= */
.boo-hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.boo-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boo-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(39,62,44,.34), rgba(39,62,44,.60)),
    linear-gradient(to right, rgba(0,0,0,.22), rgba(0,0,0,.22));
}

.boo-hero__content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 20px 120px;
  color: #fff;
  text-align: center;
}

.boo-hero__eyebrow{
  margin: 0 0 18px;
  font-family: var(--boo-font-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--boo-gold);
  text-transform: uppercase;
}

.boo-hero__title{
  margin: 0 auto 22px;
  max-width: 900px;
  font-family: var(--boo-font-display);
  font-size: clamp(42px, 7vw, 92px);
  line-height: .98;
  font-weight: 400;
  color: #fff;
  text-wrap: balance;
}

.boo-hero__text{
  margin: 0 auto 34px;
  max-width: 760px;
  font-family: var(--boo-font-body);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.8;
  color: rgba(255,255,255,.92);
}

.boo-hero__actions{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.boo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  background: var(--boo-gold);
  color: var(--boo-white);
  font-family: var(--boo-font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(202,164,114,.18);
}

.boo-btn:hover{
  transform: none;
  box-shadow: 0 12px 30px rgba(202,164,114,.18);
}

.boo-btn--ghost{
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.72);
  color: #fff;
  backdrop-filter: blur(8px);
}

.boo-btn--ghost:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.boo-hero__play{
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  padding: 0;
}

.boo-hero__play::before{
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(202,164,114,.32);
  border-radius: 50%;
  animation: booPulse 1.8s ease-out infinite;
}

.boo-hero__play::after{
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: booPulse 2.2s ease-out infinite;
}

.boo-hero__play-icon{
  position: relative;
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  z-index: 2;
}

@keyframes booPulse{
  0%{
    transform: scale(.92);
    opacity: .9;
  }
  70%{
    transform: scale(1.12);
    opacity: 0;
  }
  100%{
    transform: scale(1.18);
    opacity: 0;
  }
}

.boo-hero__scroll{
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boo-hero__scroll span{
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: booScrollArrow 1.6s infinite;
}

@keyframes booScrollArrow{
  0%{ opacity: 0; transform: rotate(45deg) translate(-6px,-6px); }
  50%{ opacity: 1; }
  100%{ opacity: 0; transform: rotate(45deg) translate(6px,6px); }
}

.reveal-up{
  opacity: 0;
  transform: translateY(28px);
  animation: booRevealUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}

.reveal-delay-1{ animation-delay: .12s; }
.reveal-delay-2{ animation-delay: .28s; }
.reveal-delay-3{ animation-delay: .44s; }
.reveal-delay-4{ animation-delay: .60s; }
.reveal-delay-5{ animation-delay: .78s; }

@keyframes booRevealUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px){
  .boo-hero__content{
    padding: 135px 20px 110px;
  }

  .boo-hero__title{
    max-width: 720px;
  }
}

@media (max-width: 767px){
  .boo-hero{
    min-height: 92vh;
  }

  .boo-hero__content{
    padding: 120px 20px 95px;
  }

  .boo-hero__eyebrow{
    font-size: 13px;
    letter-spacing: .08em;
  }

  .boo-hero__title{
    max-width: 100%;
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.02;
  }

  .boo-hero__text{
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .boo-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .boo-hero__actions .boo-btn{
    width: 100%;
  }

  .boo-hero__play{
    width: 64px;
    height: 64px;
  }

  .boo-hero__play-icon{
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
  }
}


/* =========================
   VIDEO MODAL
========================= */
.boo-video-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.boo-video-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.boo-video-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,14,11,.74);
  backdrop-filter: blur(6px);
}

.boo-video-modal__dialog{
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  transform: translateY(20px) scale(.96);
  transition: transform .3s ease;
}

.boo-video-modal.is-open .boo-video-modal__dialog{
  transform: translateY(0) scale(1);
}

.boo-video-modal__frame{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.boo-video-modal__frame video{
  width: 100%;
  max-height: 82vh;
  display: block;
}

.boo-video-modal__close{
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--boo-gold);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

@media (max-width: 767px){
  .boo-video-modal{
    padding: 16px;
  }

  .boo-video-modal__frame{
    border-radius: 18px;
  }

  .boo-video-modal__close{
    width: 44px;
    height: 44px;
    top: -12px;
    right: -8px;
    font-size: 28px;
  }
}


/* =========================
   SECTION SPACING
========================= */
.boo-home-about,
.boo-benefits,
.boo-home-teachers,
.boo-home-events{
  padding: 96px 0;
}

@media (max-width: 991px){
  .boo-home-about,
  .boo-benefits,
  .boo-home-teachers,
  .boo-home-events{
    padding: 80px 0;
  }
}

@media (max-width: 767px){
  .boo-home-about,
  .boo-benefits,
  .boo-home-teachers,
  .boo-home-events{
    padding: 68px 0;
  }
}


/* =========================
   ABOUT
========================= */
.boo-home-about{
  background: var(--boo-white);
}

.boo-home-about--overlap{
  position: relative;
  z-index: 5;
  margin-top: -40px;
  padding-top: 100px;
  background: var(--boo-white);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,.03);
}

.boo-home-about__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 52px;
  align-items: center;
}

.boo-home-about__image img{
  border-radius: 36px;
  box-shadow: var(--boo-shadow);
}

.boo-home-about__content h2{
  margin: 0 0 18px;
  font-family: var(--boo-font-display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--boo-green);
}

.boo-home-about__content p{
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--boo-text);
}

.boo-home-about__content strong{
  color: var(--boo-green);
}

.boo-home-about__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px){
  .boo-home-about__inner{
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .boo-home-about__image{
    max-width: 520px;
  }

  .boo-home-about--overlap{
    margin-top: -30px;
    padding-top: 85px;
  }
}

@media (max-width: 767px){
  .boo-home-about__content h2{
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.06;
  }

  .boo-home-about--overlap{
    margin-top: -20px;
    padding-top: 75px;
    border-radius: 20px 20px 0 0;
  }
}


/* =========================
   SECTION HEAD
========================= */
.boo-section-head__eyebrow{
  margin: 0 0 10px;
  font-family: var(--boo-font-soft);
  color: var(--boo-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.boo-section-head h2{
  margin: 0;
  font-family: var(--boo-font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--boo-green);
}

@media (max-width: 767px){
  .boo-section-head h2{
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.06;
  }
}


/* =========================
   BENEFITS
========================= */
.boo-benefits{
  background: #fff;
}

.boo-benefits__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.boo-benefit-card{
  padding: 30px 24px;
  border: 1.5px solid rgba(202,164,114,.55);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(39,62,44,.06);
}

.boo-benefit-card:hover{
  transform: none;
  box-shadow: 0 12px 28px rgba(39,62,44,.06);
  border-color: rgba(202,164,114,.55);
}

.boo-benefit-card h3{
  margin: 0 0 12px;
  font-family: var(--boo-font-soft);
  color: var(--boo-green);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.boo-benefit-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--boo-text);
}

@media (max-width: 991px){
  .boo-benefits__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .boo-benefits__grid{
    grid-template-columns: 1fr;
  }

  .boo-benefit-card{
    padding: 26px 20px;
  }

  .boo-benefit-card h3{
    font-size: 22px;
  }
}


/* =========================
   TEACHERS
========================= */
.boo-home-teachers{
  background: var(--boo-cream);
}

.boo-home-teachers__note{
  max-width: 760px;
  margin: 22px 0 34px;
  padding: 18px 22px;
  border-left: 4px solid var(--boo-gold);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(39,62,44,.05);
}

.boo-home-teachers__note p{
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}


/* =========================
   EVENTS
========================= */
.boo-home-events{
  background: var(--boo-white);
}

.boo-home-events__top{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 767px){
  .boo-home-events__top{
    flex-direction: column;
    align-items: flex-start;
  }
}