@font-face{
  font-family:"Museo";
  src:url("font/museo-500.otf") format("opentype");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

:root{
  --bh-red:#d8383a;
  --bh-red-dark:#c72f31;
  --bh-text:#101010;
  --bh-muted:rgba(16,16,16,.65);
  --bh-container:1200px;
  --bh-topbar-h:96px;
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%, 100%{
    opacity:0.3;
    fill:#fff;
  }
  50%{
    opacity:1;
    fill:rgba(255,255,255,0.7);
  }
}

*{ box-sizing:border-box; }

html{
  scroll-behavior: smooth;
}

html,body{
  margin:0;
  padding:0;
  font-family:"Museo", Arial, sans-serif;
  background:#fff;
  color:var(--bh-text);
}

img{ max-width:100%; display:block; }

.bh-container{
  width:min(var(--bh-container), 92vw);
  margin:0 auto;
}

main{ overflow:visible; }

.bh-topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bh-topbar__inner{
  height:var(--bh-topbar-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0;
  position:relative;
}

.bh-logo img{ max-height:56px; }

.bh-topbarNotice{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#111;
  font-size:14px;
  line-height:1;
}

.bh-topbarNotice__icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.bh-topbarNotice__icon svg{
  width:22px;
  height:22px;
}

.bh-topbarLinks{
  display:flex;
  align-items:center;
  gap:16px;
}

.bh-topbarLink{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#111;
  gap:4px;
  transition:transform 0.2s ease;
}

.bh-topbarLink:hover{
  transform:scale(1.05);
}

.bh-topbarLink__icon{
  width:36px;
  height:36px;
}

.bh-topbarLink__text{
  font-size:13px;
  font-weight:500;
  line-height:1;
  text-align:center;
}

.bh-hero{
  background:var(--bh-red);
  padding:180px 0;
  text-align:center;
  position:relative;
  z-index:1;
}

.bh-hero__mobileContent{
  display:none;
}

.bh-hero__mobileTitle{
  margin:0 0 16px;
  color:#fff;
  font-size:24px;
  font-weight:500;
  line-height:1.3;
}

.bh-hero__mobileText{
  margin:0;
  color:#fff;
  font-size:16px;
  line-height:1.5;
  max-width:600px;
  margin:0 auto;
}

.bh-hero__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:5;
}

.bh-hero__title{
  margin:0 0 22px;
  color:#fff;
  font-size:clamp(28px,3vw,44px);
  line-height:1.15;
  font-weight:500;
}

.bh-hero__subtitle{
  font-size:clamp(16px,1.8vw,24px);
  font-weight:700;
  display:inline-block;
  margin-top:8px;
  background:#fff;
  color:var(--bh-red);
  padding:10px 24px;
  border-radius:8px;
}

.bh-topBanner{
  position:absolute;
  top:-34px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(0,0,0,0.75);
  padding:11px 24px 9px;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  border-radius:70px 70px 0 0;
  max-width:270px;
  width:auto;
}

.bh-topBanner__logo{
  color:#fff;
  font-size:14px;
  font-weight:500;
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  letter-spacing:1px;
  min-width:42px;
  text-align:center;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bh-topBanner__time{
  color:#fff;
  font-size:14px;
  font-weight:500;
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-variant-numeric:tabular-nums;
  min-width:42px;
  text-align:right;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.bh-topBanner__dots{
  width:32px;
  height:12px;
  color:rgba(255,255,255,1);
  flex-shrink:0;
  display:block;
  margin:auto 0;
}

.bh-topBanner__dots circle{
  animation:pulse 1.4s ease-in-out;
  animation-iteration-count:1;
}

.bh-topBanner__dots circle:nth-child(1){ animation-delay:0s; }
.bh-topBanner__dots circle:nth-child(2){ animation-delay:0.3s; }
.bh-topBanner__dots circle:nth-child(3){ animation-delay:0.6s; }

.bh-heroCard{
  background:#fff;
  border-radius:10px;
  padding:18px 32px;
  max-width:320px;
  width:100%;
}

.bh-heroCard__line1{
  margin:0;
  color:var(--bh-red);
  font-size:18px;
  font-weight:700;
  letter-spacing: 0.05em;
}

.bh-heroCard__line2{
  margin:10px 0 0;
  color:var(--bh-red);
  font-size:18px;
  font-weight:500;
}

.bh-heroCards{
  background:#fff;
  padding:0 0 40px;
  position:relative;
  z-index:2;
}

.bh-heroCards__grid{
  position:relative;
  transform: translateY(-280px);
  margin-bottom: -280px;
  z-index:3;
}

.bh-embedFrame{
  position:relative;
  width:100%;
  border:0;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  aspect-ratio:16 / 9;
  max-height:720px;
}

.bh-embedIframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  display:block;
}

.bh-refreshCircle{
  position:absolute;
  bottom:-20px;
  right:10px;
  width:140px;
  height:140px;
  background:var(--bh-red);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:100;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:all 0.3s ease;
}

.bh-refreshCircle:hover{
  transform:scale(1.02) rotate(15deg);
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
}

.bh-refreshCircle:hover .bh-refreshCircle__icon{
  transform:rotate(30deg);
}

.bh-refreshCircle__icon{
  width:56px;
  height:56px;
  color:#fff;
  transition:transform 0.3s ease;
}

.bh-overlay{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:390px;
  max-width:100%;
  background:rgba(0,0,0,0.6);
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 0;
  transition: transform 0.3s ease;
}

.bh-overlay.minimized{
  transform:translateX(-100%);
}

.bh-overlay__toggle{
  position:absolute;
  top:20px;
  right:-50px;
  background:rgba(0,0,0,0.6);
  border:none;
  color:#fff;
  width:50px;
  height:50px;
  cursor:pointer;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background-color 0.2s;
  border-radius:0 50% 50% 0;
}

.bh-overlay__toggle:hover{
  background-color:rgba(0,0,0,0.75);
}

.bh-overlay__toggle svg{
  width:28px;
  height:28px;
}

.bh-overlay__content{
  width:100%;
  height:100%;
  text-align:left;
  color:#fff;
  padding:45px 30px 0;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
  overflow-x:hidden;
}

.bh-overlay__content::-webkit-scrollbar{
  width:8px;
}

.bh-overlay__content::-webkit-scrollbar-track{
  background:rgba(255,255,255,0.1);
  border-radius:4px;
}

.bh-overlay__content::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,0.3);
  border-radius:4px;
}

.bh-overlay__content::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,0.5);
}

.bh-overlay__title{
  margin:0 0 20px;
  font-size:clamp(22px, 2.8vw, 28px);
  font-weight:500;
  line-height:1.3;
  color:#fff;
  letter-spacing:-0.01em;
}

.bh-overlay__text{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.55;
  color:rgba(255,255,255,0.95);
}

.bh-overlay__text:last-of-type{
  margin-bottom:30px;
}

.bh-overlay__rating{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 0 30px;
  flex-wrap:nowrap;
  position:relative;
}

.bh-overlay__stars{
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:flex-end;
}

.bh-overlay__score{
  font-size:18px;
  font-weight:700;
  color:#fff;
}

.bh-overlay__starsIcons{
  color:#fff;
  display:flex;
  gap:2px;
  align-items:center;
}

.bh-overlay__logo{
  height:40px;
  width:auto;
  filter: brightness(0) invert(1);
}

.bh-overlay__divider{
  display:none;
}

.bh-overlay__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:calc(100% + 60px);
  margin-left:-30px;
  background:var(--bh-red);
  color:#fff;
  text-decoration:none;
  text-align:center;
  padding:28px 32px;
  border-radius:0;
  border:none;
  font-size:22px;
  font-weight:500;
  line-height:1;
  margin-top:0;
  margin-bottom:0;
  cursor:pointer;
  font-family:inherit;
  transition:all 0.2s ease;
}

.bh-overlay__cta svg{
  transition:transform 0.2s ease;
}

.bh-overlay__cta:hover svg{
  transform:translateX(4px);
}

.bh-overlay__footer{
  display:none;
}

.bh-overlay__footerText{
  color:#fff;
  font-size:13px;
  font-weight:400;
}

.bh-featureCards{
  padding: 28px 0 72px;
}

.bh-sectionTitle{
  text-align:center;
  margin:0 0 6px;
  color:var(--bh-red);
  font-size:clamp(28px, 3.5vw, 38px);
  font-weight:500;
  line-height:1.2;
}

.bh-sectionSubtitle{
  text-align:center;
  margin:0 0 48px;
  color:var(--bh-red);
  font-size:20px;
  font-weight:500;
}

.bh-featureGrid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:22px;
}

.bh-featureCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:520px;
  transition:all 0.3s ease;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  animation:fadeInUp 0.6s ease forwards;
  opacity:0;
}

.bh-featureCard:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
}

.bh-featureCard:nth-child(1){ animation-delay:0.1s; }
.bh-featureCard:nth-child(2){ animation-delay:0.2s; }
.bh-featureCard:nth-child(3){ animation-delay:0.3s; }
.bh-featureCard:nth-child(4){ animation-delay:0.4s; }
.bh-featureCard:nth-child(5){ animation-delay:0.5s; }

.bh-featureMedia{
  position:relative;
  width:100%;
  aspect-ratio:3 / 4;
  background:#f2f2f2;
}

.bh-featureMedia img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.bh-featureBody{
  background:var(--bh-red);
  color:#fff;
  padding:22px 18px 18px;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.bh-featureIcon{
  width:82px;
  height:82px;
  border:2px solid rgba(255,255,255,.85);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:2px 0 18px;
  align-self:center;
  transition:transform 0.3s ease;
}

.bh-featureCard:hover .bh-featureIcon{
  transform:scale(1.1);
}

.bh-featureIcon svg{
  width:34px;
  height:34px;
  color:#fff;
}

.bh-featureTitle{
  margin:0 0 16px;
  font-size:15px;
  font-weight:700;
  line-height:1.3;
  color:#fff;
}

.bh-featureText{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.45;
  max-width:100%;
}

.bh-featureLink{
  margin-top:auto;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

.bh-featureLink:hover{ text-decoration:underline; }

.bh-bottomBar{
  position:relative;
  background:var(--bh-red);
  overflow:hidden;
  padding:36px 10px 102px;
}

.bh-bottomBar__inner{
  display:flex;
  justify-content:center;
  align-items:center;
}

.bh-bottomBar__text{
  margin:0;
  color:#fff;
  font-size:16px;
  font-weight:500;
}

@media print, screen and (min-width: 48em){
  .bh-bottomBar{ padding:36px 10px; }
}

@media (max-width:1100px){
  .bh-featureGrid{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
}

@media (max-width:980px){
  .bh-hero{ padding:80px 0 120px; }
  .bh-heroCards__grid{
    transform: translateY(-90px);
    margin-bottom: -90px;
  }
}

@media (max-width:820px){
  .bh-featureGrid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media (max-width:640px){
  .bh-topbar__inner{
    height:80px;
    align-items:flex-end;
    padding-bottom:10px;
  }

  .bh-logo img{ max-height:46px; }

  .bh-topbarNotice{
    font-size:13px;
    padding-bottom:4px;
  }

  .bh-hero{
    padding:40px 0 200px;
  }

  .bh-hero__mobileContent{
    display:block;
    padding:0 20px;
    text-align:left;
  }

  .bh-hero__mobileTitle{
    font-size:22px;
    margin-bottom:12px;
  }

  .bh-hero__mobileText{
    font-size:15px;
    line-height:1.5;
    margin:0;
  }

  .bh-hero__mobileText + .bh-hero__mobileText{
    margin-top:12px;
  }

  .bh-heroCard{ padding:18px 18px; }

  .bh-heroCard__line1{ font-size:18px; }
  .bh-heroCard__line2{ font-size:16px; }

  .bh-heroCards__grid{
    transform: translateY(-150px);
    margin-bottom: -150px;
  }

  .bh-embedFrame{
    border-radius:14px;
    max-height:none;
  }

  .bh-featureGrid{ grid-template-columns:1fr; }
  .bh-featureCard{ min-height:0; }
  .bh-featureText{ max-width:30ch; }

  .bh-topBanner{
    display:none;
  }

  .bh-topBanner__logo{
    font-size:14px;
    letter-spacing:2px;
    min-width:36px;
  }

  .bh-topBanner__time{
    font-size:13px;
    min-width:36px;
  }

  .bh-topBanner__dots{
    width:40px;
    height:10px;
  }

  .bh-overlay{
    display:none;
  }

  .bh-refreshCircle{
    width:70px;
    height:70px;
    bottom:-10px;
    right:8px;
  }

  .bh-refreshCircle__icon{
    width:32px;
    height:32px;
  }
}
