/* Banner Section — BellTower hero */
@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bannerScaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bannerSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: -4.5rem;
  padding-top: 4.5rem;
  overflow: hidden;
  background: var(--navy, #000a1f);
}

body.admin-bar .bannerSection {
  margin-top: -4.5rem;
}

.bannerSection__left {
  background: var(--navy, #000a1f);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 4.5rem;
  position: relative;
  z-index: 1;
}

.bannerSection__left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(37, 99, 235, 0.3),
    transparent
  );
}

.bannerSection__headline {
  font-family: var(--fontHeading, "Playfair Display", Georgia, serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white, #fff);
  letter-spacing: -0.01em;
  margin: 0;
  animation: bannerFadeUp 0.9s ease both;
}

.bannerSection__headline .accent,
.bannerSection__headline em {
  color: var(--blue3, #60a5fa);
  font-style: italic;
}

.bannerSection__body {
  font-family: var(--fontParagraphs, "Inter", system-ui, sans-serif);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--light, #cdd8eb);
  margin: 1.75rem 0 2.25rem;
  max-width: 460px;
  animation: bannerFadeUp 0.9s 0.2s ease both;
}

@media (max-width: 600px) {
  .bannerSection__body {
    line-height: 1.75;
    margin: 1.25rem 0 1.75rem;
  }
}

.bannerSection__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: bannerFadeUp 0.9s 0.35s ease both;
}

.bannerSection__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.375rem;
  background: var(--blue, #2563eb);
  color: var(--white, #fff);
  font-family: var(--fontParagraphs, "Inter", system-ui, sans-serif);
  font-size: 0.6563rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.bannerSection__btnArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.bannerSection__btnArrow svg {
  width: 12px;
  height: 12px;
  display: block;
}

.bannerSection__btn:hover {
  background: var(--blue2, #3b82f6);
  color: var(--white, #fff);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.bannerSection__right {
  position: relative;
  overflow: hidden;
  margin-left: -0.125rem;
  min-height: 100%;
}

.bannerSection__right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      var(--navy, #000a1f) 0%,
      rgba(6, 15, 30, 0.75) 18%,
      rgba(6, 15, 30, 0.3) 36%,
      rgba(6, 15, 30, 0.05) 55%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(6, 15, 30, 0.15) 0%,
      transparent 30%,
      rgba(6, 15, 30, 0.25) 100%
    );
  pointer-events: none;
}

.bannerSection__right img,
.bannerSection__placeholder {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 72px);
  object-fit: cover;
  object-position: center center;
  display: block;
  animation: bannerScaleIn 1.2s ease both;
}

.bannerSection__placeholder {
  background: linear-gradient(135deg, #0b1a30 0%, #0f2040 50%, #163050 100%);
}

@media (max-width: 1100px) {
  .bannerSection__left {
    padding: 3.75rem 2.5rem 3.75rem 3rem;
  }
}

@media (max-width: 900px) {
  .bannerSection {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bannerSection__left {
    padding: 6.25rem 2rem 3.75rem;
    order: 2;
  }

  .bannerSection__left::after {
    display: none;
  }

  .bannerSection__right {
    height: 360px;
    order: 1;
    margin-left: 0;
  }

  .bannerSection__right img,
  .bannerSection__placeholder {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 600px) {
  .bannerSection__left {
    padding: 1.875rem 1.25rem 3.125rem;
  }

  .bannerSection__headline {
    font-size: clamp(2.125rem, 9vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bannerSection__headline,
  .bannerSection__body,
  .bannerSection__cta,
  .bannerSection__right img,
  .bannerSection__placeholder {
    animation: none;
  }
}
