.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28, 36, 74, 0.75) 0%,
    rgba(28, 36, 74, 0.55) 60%,
    rgba(28, 36, 74, 0.85) 100%
  );
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--font-secondary);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--pane-3);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(239, 233, 215, 0.9);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 6rem 0 4.5rem;
  border-bottom: 1px solid rgba(28, 36, 74, 0.08);
}

.page-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(28, 36, 74, 0.85);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.intro-section,
.about-story-section {
  padding: 6.5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-text .section-title {
  margin-bottom: 1.5rem;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(28, 36, 74, 0.1);
}

.presentation-img,
.detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.media-frame:hover .presentation-img {
  transform: scale(1.03);
}

.services-preview {
  padding: 6.5rem 0;
}

.highlight-section {
  padding: 6.5rem 0;
}

.highlight-wrapper {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.highlight-content .section-title {
  margin-bottom: 1.25rem;
}

.cta-section {
  padding: 5.5rem 0;
}

.cta-container {
  display: flex;
  justify-content: center;
}

.cta-inner {
  text-align: center;
  max-width: 780px;
}

.cta-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--font-primary);
  margin-bottom: 1rem;
}

.cta-subheading {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(28, 36, 74, 0.85);
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.detailed-services {
  padding: 6.5rem 0;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

.service-detail-block:last-child {
  margin-bottom: 0;
}

.service-detail-block.reverse .service-detail-content {
  order: 2;
}

.service-detail-block.reverse .service-detail-media {
  order: 1;
}

.service-detail-media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28, 36, 74, 0.1);
}

.feature-checklist {
  margin: 1.75rem 0 2.25rem;
}

.feature-checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: rgba(28, 36, 74, 0.9);
  line-height: 1.55;
}

.feature-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--font-secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.process-section {
  padding: 6.5rem 0;
}

.pillars-section {
  padding: 6.5rem 0;
}

.climate-focus-section {
  padding: 6.5rem 0;
}

.climate-stats-row {
  justify-content: center;
  gap: 3.5rem;
}

.climate-stats-row .stat-item {
  max-width: 320px;
}

.contact-section {
  padding: 6.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info-panel {
  padding-right: 1.5rem;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.contact-item-title {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--font-secondary);
  margin-bottom: 0.35rem;
}

.contact-item-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--font-primary);
  line-height: 1.4;
}

.contact-item-value:hover {
  color: var(--font-secondary);
}

.contact-item-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(28, 36, 74, 0.85);
}

.social-links-list {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.social-link-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--font-primary);
  letter-spacing: 0.04em;
}

.social-link-item:hover {
  color: var(--font-secondary);
}

.coverage-section {
  padding: 5.5rem 0;
}

.gallery-section {
  padding: 5.5rem 0 7rem;
}

.gallery-empty-state .empty-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--font-primary);
  margin-bottom: 0.65rem;
}

.gallery-empty-state .empty-subtitle {
  font-size: 0.95rem;
  color: rgba(28, 36, 74, 0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .intro-grid,
  .service-detail-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .service-detail-block.reverse .service-detail-content {
    order: initial;
  }

  .service-detail-block.reverse .service-detail-media {
    order: initial;
  }

  .contact-info-panel {
    padding-right: 0;
  }

  .detailed-services,
  .services-preview,
  .intro-section,
  .about-story-section,
  .pillars-section,
  .climate-focus-section,
  .contact-section,
  .process-section,
  .highlight-section,
  .gallery-section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 560px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .cta-section,
  .coverage-section {
    padding: 4rem 0;
  }
}
