body.home-page{
  font-family: Roboto, Poppins, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: #1a2230;
}

.home-page .container-wide{
  max-width: 1320px;
}

.home-page section{
  padding: 76px 0;
}

/* =========================
   HERO VIDEO
========================= */
.home-video{
  position: relative;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #0b1118;
}

.home-video__media{
  position: absolute;
  inset: 0;
}

.home-video__media video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-video__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,12,18,.18) 0%, rgba(8,12,18,.24) 26%, rgba(8,12,18,.46) 62%, rgba(8,12,18,.68) 100%),
    radial-gradient(circle at center, rgba(214,178,88,.06), transparent 42%);
}

.home-video__content{
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.home-video__inner{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 92px;
}

.home-video__top{
  display: flex;
  justify-content: center;
}

.home-video__bottom{
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.home-hero__title{
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 10px 34px rgba(0,0,0,.22);
}

.home-hero__eyebrow{
  display: block;
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.home-hero__lead{
  margin: 0;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(255,255,255,.88);
  text-shadow: 0 4px 16px rgba(0,0,0,.18);
}

/* =========================
   INTRO UNDER VIDEO
========================= */
/* =========================
/* =========================
   INTRO SCROLL TRANSITION
========================= */
.home-intro{
  position: relative;
  height: 28vh;
  min-height: 150px;
  max-height: 210px;
  padding: 68px 0 28px !important;
  background: #fff;
  overflow: clip;
  z-index: 3;
}

.home-intro__sticky{
  position: sticky;
  top: 0;
  height: calc(22vh - 46px);
  min-height: 104px;
  max-height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-intro__stage{
  position: relative;
  width: 100%;
  height: 120px;
}

/* both elements centered on viewport */
.home-intro__title,
.home-intro__logo{
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}

/* TITLE */
.home-intro__title{
  margin: 0;
  width: min(92vw, 420px);
  text-align: center;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -.045em;
  font-weight: 700;
  color: #131923;
  transform: translate(-50%, calc(-50% + 18px));
  text-wrap: balance;
  transition:
    opacity .38s ease,
    transform .5s cubic-bezier(.22,1,.36,1);
}

/* LOGO */
.home-intro__logo{
  display: block;
  width: clamp(155px, 14vw, 225px);
  height: auto;
  transform: translate(-50%, calc(-50% + 26px)) scale(.92);
  transition:
    opacity .45s ease,
    transform .62s cubic-bezier(.22,1,.36,1);
}

/* title visible */
.home-intro.is-title .home-intro__title{
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* title exits upward */
.home-intro.is-logo .home-intro__title{
  opacity: 0;
  transform: translate(-50%, calc(-50% - 20px));
}

/* logo enters from below */
.home-intro.is-logo .home-intro__logo{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =========================
   SERVICES PREVIEW
========================= */
.home-services{
  padding-top: 48px !important;
  padding-bottom: 78px;
}

.service-slider{
  position: relative;
  display: block;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f1720;
  border: 1px solid rgba(18,25,37,.08);
  box-shadow: 0 18px 42px rgba(15,20,30,.08);
  text-decoration: none;
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease;
}

.service-slider:hover,
.service-slider:focus-visible{
  transform: translateY(-8px);
  box-shadow:
    0 28px 56px rgba(15,20,30,.12),
    0 10px 24px rgba(15,20,30,.08);
  border-color: rgba(214,178,88,.24);
}

.service-slider img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity .9s ease, transform 1.6s ease;
}

.service-slider img.active{
  opacity: 1;
  transform: scale(1.02);
}

.service-slider__shade{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(8,12,18,.24) 0%, rgba(8,12,18,.26) 35%, rgba(8,12,18,.54) 100%);
}

.service-slider__content{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.service-slider__kicker{
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

.service-slider__title{
  margin: 0;
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.03em;
  text-shadow: 0 8px 28px rgba(0,0,0,.28);
}

.service-slider__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #f0d18a;
  background: transparent;
  border: none;
  transition: transform .28s ease, color .28s ease;
}

.service-slider__cta::after{
  content: "→";
  transition: transform .28s ease;
}

.service-slider:hover .service-slider__cta{
  transform: translateY(-1px);
  color: #f7deb0;
}

.service-slider:hover .service-slider__cta::after{
  transform: translateX(3px);
}

/* =========================
   SECTION HEAD
========================= */
.section-head{
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2{
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(30px, 4.1vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #131923;
}

.section-lead{
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: #5a6272;
}

/* =========================
   WHY BARTENDART
========================= */
.why-bartendart{
  padding-top: 30px;
  padding-bottom: 72px;
}

.features-grid{
  max-width: 1120px;
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
}

.feature-item{
  text-align: center;
  padding: 14px 10px;
}

.feature-item img{
  width: 148px;
  height: auto;
  margin-bottom: 10px;
  transition: transform .28s ease, filter .28s ease;
}

.feature-item:hover img{
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(15,20,30,.08));
}

.feature-item h3{
  margin: 8px 0 12px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.16;
  color: #1a2230;
  letter-spacing: -.02em;
}

.feature-item p{
  margin: 0 auto;
  max-width: 290px;
  font-size: 15px;
  line-height: 1.72;
  color: #5b6272;
}

/* =========================
   TESTIMONIALS
========================= */
.home-testimonials{
  padding-top: 30px;
  padding-bottom: 84px;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card{
  padding: 28px 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,246,241,.96));
  border: 1px solid rgba(18,25,37,.08);
  box-shadow: 0 14px 34px rgba(15,20,30,.05);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.testimonial-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 22px 44px rgba(15,20,30,.08),
    0 8px 20px rgba(15,20,30,.05);
  border-color: rgba(214,178,88,.22);
}

.stars{
  margin-bottom: 14px;
  font-size: 20px;
  letter-spacing: .14em;
  color: #d7a431;
}

.testimonial-card p{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.74;
  color: #4f5665;
  font-style: italic;
}

.testimonial-card span{
  font-size: 14px;
  font-weight: 600;
  color: #17202c;
}

.testimonials-more{
  margin-top: 28px;
  text-align: center;
}

.testimonials-more a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #9a6e14;
  transition: transform .24s ease, color .24s ease;
}

.testimonials-more a:hover{
  transform: translateX(2px);
  color: #7b560b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .service-slider{
    min-height: 500px;
  }

  .features-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid{
    grid-template-columns: 1fr;
  }

  .home-video__inner{
    padding-top: 106px;
    padding-bottom: 56px;
  }

  .home-tools{
    gap: 24px;
  }
}

@media (max-width: 700px){
  .home-page section{
    padding: 56px 0;
  }

  .home-video{
    min-height: 100svh;
  }

  .home-video__content,
  .home-video__inner{
    min-height: 100svh;
  }

  .home-video__inner{
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .home-hero__title{
    font-size: 44px;
  }

  .home-hero__eyebrow{
    font-size: 11px;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }

  .home-hero__lead,
  .section-lead{
    font-size: 15px;
    line-height: 1.74;
  }

  .home-intro{
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .home-intro__headline{
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 22px;
  }

  .home-tools{
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 8px;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .home-tools img{
    width: 46px;
    flex-shrink: 0;
  }

  .home-intro__logo{
    width: 170px;
    margin-bottom: 16px;
  }

  .home-intro__title{
    font-size: 30px;
  }

  .home-services{
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .service-slider{
    min-height: 360px;
    border-radius: 22px;
  }

  .service-slider__content{
    padding: 22px;
  }

  .service-slider__title{
    font-size: 32px;
  }

  .service-slider__cta{
    margin-top: 14px;
    font-size: 11px;
  }

  .features-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-item img{
    width: 126px;
  }

  .feature-item h3{
    font-size: 20px;
  }

  .feature-item p{
    font-size: 15px;
  }

  .testimonial-card{
    padding: 24px 20px;
  }
}