.hero {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  background: #5a7186;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,35,55,0.35), rgba(11,27,43,0.72));
}

.hero__copy {
  position: absolute;
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  text-align: center;
  width: min(90%, 900px);
}

.hero__eyebrow {
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  color: #cfe0f2;
  white-space: nowrap;
}

.hero__title {
  font-size: clamp(24px, 3.2vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.46px;
  line-height: 1.4;
}

.hero__desc {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  color: #d8e2ec;
  line-height: 1.7;
}

.hero__hours {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 500;
  color: #afc2d4;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: clamp(12px, 1.1vw, 16px) clamp(22px, 2.4vw, 34px);
  background: #1a6df5;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.hero__quick {
  position: absolute;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.quick-item__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.9vw, 56px);
  height: clamp(40px, 3.9vw, 56px);
  border-radius: 999px;
  box-shadow: 0 4px 12px 0 rgba(15,36,56,0.14);
}

.quick-item__icon {
  width: clamp(17px, 1.7vw, 24px);
  height: clamp(17px, 1.7vw, 24px);
}

.quick-item__label {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

/* Mobile — node 65:1772 (375 width, quick-float replaced by BottomBar) */
@media (max-width: 900px) {
  .hero {
    height: 430px;
  }

  .hero__quick {
    display: none;
  }

  .hero__copy {
    width: 85%;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__desc {
    font-size: 13px;
  }

  .hero__hours {
    font-size: 10px;
    line-height: 1.6;
  }
}
