/* ======================
   VIDEO HERO (dimensions kept the same)
====================== */
.video-hero {
  position: relative;
  width: 100vw;
  height: 80vh;         
  min-height: 650px;    
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-tint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 2;
  pointer-events: none;
}

/* ======================
   PROPORTIONAL BORDER + CONTENT
   (mirrors masthead’s structure & behavior)
====================== */
.video-border-wrap {
  position: relative;
  width: 82vw;            /* same overall scale as masthead */
  aspect-ratio: 2 / 0.8;    /* proportional rectangle */
  margin-left: 5vw;       /* pushes rectangle right like masthead */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 3;             /* above tint/video */
  font-size: 2vw;         /* content scales with wrap size */
}

/* Border rectangle (same 3 sides + left stubs) */
.video-border-rectangle {
  position: absolute;
  inset: 0;
  border-top: 1.5px solid rgba(255,255,255,0.7);
  border-right: 1.5px solid rgba(255,255,255,0.7);
  border-bottom: 1.5px solid rgba(255,255,255,0.7);
  z-index: 2;
  pointer-events: none;
}
.video-border-rectangle::before,
.video-border-rectangle::after {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  border-left: 1.5px solid rgba(255,255,255,0.7);
}
.video-border-rectangle::before { top: 0; height: 12%; }
.video-border-rectangle::after  { bottom: 0; height: 12%; }

/* ======================
   HERO CONTENT (mirrors masthead spacing)
====================== */
.video-hero-content {
  position: relative;
  z-index: 4;
  max-width: 92vw;
  margin-left: -4vw;
  margin-top: 10.5vw;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.video-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6em;            /* scales from wrap’s 2vw */
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 0.45em;
  color: #fff;
}

.video-hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6em;            /* scales from wrap’s 2vw */
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.85;
  margin-top: 1em;
  margin-bottom: 2em;
}

.nowrap { white-space: nowrap; }

/* ======================
   SCROLL INDICATOR (uses masthead classes)
   Only adjust vertical position here if needed.
====================== */
.video-hero .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 13vh;                /* same baseline as masthead; tweak if needed */
  transform: translateX(-50%);
  z-index: 6;
}

/* ======================
   RESPONSIVE (mirrors masthead breakpoints)
====================== */
@media (max-width: 700px) {
  .video-border-wrap {
    width: 80vw;
    aspect-ratio: 2 / 1.6;
    font-size: 2.4vw;
    margin: 0 auto;
    min-width: 240px;
  }
  .video-hero-content {
    max-width: 92vw;
    margin-left: -4vw;
    margin-top: 25vw;
  }
  .video-hero-content h1 { font-size: 1.6em; letter-spacing: 0.07em; line-height: 1.14; }
  .video-hero-sub      { font-size: 0.9em; }
  .video-hero .scroll-indicator { bottom: 5vh; }
}

@media (max-width: 400px) {
  .video-border-wrap {
    width: 70vw;
    aspect-ratio: .9 / 1.1;
    font-size: 4vw;
    min-width: 120px;
    margin: 0 auto;
  }
  .video-hero-content {
    max-width: 96vw;
    margin-left: -6vw;
    margin-top: 34vw;
  }
  .video-hero-content h1 { font-size: 1.2em; letter-spacing: 0.07em; line-height: 1.14; }
  .video-hero-sub        { font-size: 0.8em; }
  .video-hero .scroll-arrow { width: 5vw; max-width: 24px; min-width: 10px; }
}

/* ======================
   CLEANUP: remove old video-only controls
====================== */
/* Remove if present in your old HTML/CSS */
.double-chevron-btn { display: none !important; } /* old button no longer used */
