body.about-page {
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 56, 0.35) 0%, rgba(10, 31, 56, 0.55) 40%, rgba(10, 31, 56, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 31, 56, 0.45), transparent 55%);
}

@keyframes hero-zoom {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.14) translateY(-18px); }
}

.about-hero .wrap {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
}

.about-hero .kicker {
  color: #9ec4ef;
}

.about-hero h1 {
  max-width: 16ch;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.about-hero .lede {
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}

.float-graphic {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}

.float-a {
  top: 16%;
  right: 10%;
  width: 140px;
  animation: float-y 8s ease-in-out infinite;
}

.float-b {
  top: 38%;
  right: 22%;
  width: 88px;
  animation: float-y 11s ease-in-out infinite reverse;
}

.float-c {
  bottom: 18%;
  right: 8%;
  width: 110px;
  animation: float-y 9s ease-in-out infinite 0.6s;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.9rem;
}

.about-band {
  position: relative;
  padding: 84px 0;
}

.about-band.soft {
  background: rgba(255, 255, 255, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  animation: rise 0.8s ease forwards;
}

.delay-1.is-visible { animation-delay: 0.12s; }
.delay-2.is-visible { animation-delay: 0.24s; }
.delay-3.is-visible { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.about-shadow {
  background: #ffffff;
  border: 0;
  border-radius: var(--radius);
  box-shadow:
    0 1px 2px rgba(15, 45, 79, 0.06),
    0 18px 40px rgba(15, 45, 79, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-shadow:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 16px rgba(15, 45, 79, 0.08),
    0 28px 56px rgba(15, 45, 79, 0.16);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.split img,
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-frame {
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(15, 45, 79, 0.18),
    0 4px 10px rgba(15, 45, 79, 0.08);
}

.photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 45, 79, 0.18);
  color: var(--navy);
  font-weight: 700;
  animation: float-y 7s ease-in-out infinite;
}

.photo-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}

.stat-card {
  padding: 26px 24px;
}

.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
}

.stat-card span {
  color: var(--muted);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 45, 79, 0.14);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile img {
  transition: transform 8s ease;
}

.photo-tile:hover img {
  transform: scale(1.08);
}

.photo-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(10, 31, 56, 0.78));
  color: #ffffff;
  font-weight: 600;
}

.icon-graphic {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef3f9;
  box-shadow: inset 0 0 0 1px #d8e2ee;
}

.europe-map {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #0f2d4f url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=70") center/cover;
  box-shadow: 0 24px 50px rgba(15, 45, 79, 0.2);
}

.europe-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 56, 0.45);
}

.dot {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18);
  animation: pulse-dot 2.4s ease-out infinite;
}

.dot::after {
  content: attr(data-city);
  position: absolute;
  left: 22px;
  top: -4px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  70% { box-shadow: 0 0 0 14px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f2d4f, #1a4f8b);
  color: #ffffff;
  box-shadow: 0 28px 60px rgba(15, 45, 79, 0.28);
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.cta-panel .cta {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

@media (max-width: 860px) {
  .split,
  .stat-row,
  .photo-mosaic,
  .cta-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .photo-mosaic {
    grid-template-rows: 240px 180px 180px;
  }

  .photo-tile.tall {
    grid-row: auto;
    min-height: 240px;
  }

  .float-graphic {
    display: none;
  }

  .stat-row {
    margin-top: 24px;
  }

  .about-hero {
    min-height: 84vh;
  }
}
