.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.section p {
  max-width: var(--content-width);
  margin: 0 auto var(--space-md);
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Hero Section with Video Background */
.hero {
  position: relative;
  background: var(--color-navy) url('/assets/images/hero-poster.jpg') center/cover no-repeat;
  color: var(--color-white);
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 100vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 42, 58, 0.35);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-cta {
  margin-top: var(--space-lg);
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-cta:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid var(--color-navy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: transparent;
  color: var(--color-navy);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Stay Updated Grid */
.updated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.updated-card {
  text-align: center;
  padding: var(--space-md);
}

.updated-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.updated-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .updated-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 50vh;
    padding: var(--space-lg) var(--space-sm);
  }
}
