/* HERO banner base */
.hero-banner {
  padding: 0;
  background: #F9F9F9;
  position: relative;
  z-index: 1;
}

.hero-banner-wrapper {
  position: relative;
  overflow: hidden;
}

/* Unified media class for video OR img */
.hero-banner-media {
  display: block;
  width: 100%;
  height: clamp(680px, 55vw, 900px);
  object-fit: cover;
  object-position: center;
}

/* iOS/Safari video sizing fix */
video.hero-banner-media {
  width: 100%;
  height: clamp(680px, 100vh, 1080px);
}

/* Overlay gradient */
.hero-banner-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.23) 30%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

/* Content overlay */
.hero-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: #fff;
}

/* Keep your existing content styles */
.interior.int .blueBox { max-width: 720px; }

.blueBox {
  display: flex;
  justify-content: center;
  border-radius: 10px;
}

.bottom-bnn {
  width: 100%;
  display: grid;
  gap: 6px;
  justify-content: center;
  max-width: 100%;
}

.h1-bnn {
  margin-bottom: 30px;
  color: #FFF;
  font-family: 'bodoni';
  font-size: 116px;
  font-style: normal;
  font-weight: 400;
  line-height: 137px; /* 118.103% */
}

/* Desktop > smaller adjustments already in your CSS */
@media (max-width: 980px) {
  .blueBox h1 {font-size:80px}
}

/* Tablet */
@media (max-width: 1120px) {
  .hero-banner-content { padding: 30px; }
}

/* Mobile */
@media (max-width: 782px) {
  .hero-banner-media {
    height: clamp(520px, 120vw, 760px);
  }

  .hero-banner-content {
    padding: 22px;
  }

  .h1-bnn {
    font-size: 40px!important;
    margin-bottom: 18px;
  }
}

/* Menu overlay (kept) */
.menu.scroll-section {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  background: transparent !important;
}

.page {
  overflow: visible !important;
}

body.admin-bar .menu.scroll-section { top: 32px !important; }

@media screen and (max-width: 782px) {
  body.admin-bar .menu.scroll-section { top: 46px !important; }
}

body.admin-bar .hero-banner {
  padding-top: calc(15px + 32px);
}

/* ================= Shipyard Section ================= */

.shipyard-section{
  padding: 90px 0;
  background: #fff;
}

.shipyard-flex{
  display: flex;
  gap: 80px;
  align-items: center;
}

.shipyard-copy{
  flex: 1 1 0;
}

.shipyard-media{
  flex: 1 1 0;
}

.shipyard-media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* stats row */
.shipyard-stats{
  display: flex;
  justify-content: space-between;
  margin: 60px 0 50px;
}

.shipyard-stats .stat{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.shipyard-stats strong{
  font-family: 'Avenir';
  color: #000;

/* h1 */
  font-size: 58px;
  font-style: normal;
  font-weight: 900;
  /* line-height: normal; */
}

.shipyard-stats span{
  color: #000;

/* h4 */
  font-family: Avenir;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.shipyard-copy p {
    margin-top: 20px;
}

h1.pullback {margin-left: -2px;}
/* Responsive */
@media (max-width: 1120px){
  .shipyard-flex{
    flex-direction: column;
    gap: 50px;
  }

  .shipyard-stats{
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 782px){
  .shipyard-section{
    padding: 60px 0;
  }

  .shipyard-stats{
    gap: 30px;
  }

  .shipyard-stats strong{
    font-size: 28px;
  }
}
