/* LAN page: match Wire/Events footer + main spacing */
body.lan-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.lan-page > main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 0 0 88px;
  box-sizing: border-box;
}
body.lan-page > footer {
  margin-top: auto;
  background: rgba(14, 22, 35, 0.95);
  border-top: 1px solid rgba(152, 186, 227, 0.12);
  padding: 24px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}
body.lan-page .foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

/* Hero shell — sit higher under the header (no vertical centering of main) */
.hero-wrap.lan-hero-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: auto;
  padding: 0 0 clamp(0.75rem, 2.5vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 3.25rem);
}

/* Split hero: full-width gradient; inner grid capped for readability */
.lan-hero-top {
  width: 100%;
  padding: clamp(0.85rem, 2.5vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  margin-top: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(152, 186, 227, 0.18);
  box-shadow: 0 12px 36px rgba(2, 4, 8, 0.22);
  background:
    radial-gradient(ellipse 95% 75% at 12% 18%, rgba(152, 186, 227, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 65% 55% at 92% 35%, rgba(89, 129, 177, 0.35) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(2, 4, 8, 0.2) 0%, transparent 55%),
    linear-gradient(168deg, #5981b1 0%, #365475 45%, #15273c 82%, #0a1420 100%);
}
.lan-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.lan-hero-split__text {
  text-align: left;
  padding-right: clamp(0, 2vw, 0.5rem);
}
.lan-hero-split__text h1 {
  margin: 0;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-shadow: 0 2px 28px rgba(2, 4, 8, 0.35);
}
.lan-hero-cta {
  margin-top: 1.15rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.lan-hero-split__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(152, 186, 227, 0.22);
  box-shadow:
    0 0 0 1px rgba(2, 4, 8, 0.2) inset,
    0 12px 40px rgba(2, 4, 8, 0.4);
  aspect-ratio: 16 / 9;
  background: #0a0d12;
}
.lan-hero-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 10, 16, 0.2) 0%,
    transparent 45%,
    rgba(6, 8, 14, 0.35) 100%
  );
  pointer-events: none;
}
.lan-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .lan-hero-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .lan-hero-split__text {
    order: 1;
    text-align: center;
    padding-right: 0;
  }
  .lan-hero-cta {
    justify-content: center;
  }
  .lan-hero-split__media {
    order: 2;
    max-width: min(100%, 520px);
    margin: 0 auto;
    width: 100%;
  }
}

/* Story card below hero */
.lan-hero-body {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}
.lan-hero-body .lan-story {
  text-align: left;
}

/* Story: lead panel + callout (modern editorial) */
.lan-story {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 3vw, 1.65rem);
}

.lan-story__lead {
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.0625rem, 2.2vw, 1.125rem);
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: rgba(230, 236, 248, 0.95);
  text-wrap: pretty;
  padding: clamp(1.35rem, 3.5vw, 1.9rem) clamp(1.35rem, 3.5vw, 1.85rem);
  border-radius: 22px;
  border: 1px solid rgba(152, 186, 227, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055) 0%, transparent 48%),
    linear-gradient(168deg, rgba(30, 52, 78, 0.75) 0%, rgba(12, 20, 34, 0.88) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 24px 56px -16px rgba(2, 4, 8, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lan-story__lead strong {
  font-weight: 700;
  color: #eef4ff;
  font-variant-numeric: tabular-nums;
}

.lan-story__callout {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  quotes: none;
}

.lan-story__callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffd4a8 0%, #f0a55c 48%, #c96d2e 100%);
  box-shadow: 0 0 14px rgba(240, 165, 92, 0.4);
}

.lan-story__callout p {
  margin: 0;
  padding: clamp(1.05rem, 2.5vw, 1.4rem) clamp(1rem, 2.5vw, 1.2rem) clamp(1.05rem, 2.5vw, 1.4rem) clamp(1.4rem, 3vw, 1.65rem);
  font-weight: 400;
  font-size: clamp(0.98rem, 2vw, 1.04rem);
  line-height: 1.68;
  letter-spacing: 0.018em;
  color: rgba(200, 216, 240, 0.96);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 20px 20px 0;
  border: 1px solid rgba(152, 186, 227, 0.11);
  border-left: none;
}

@media (max-width: 520px) {
  .lan-story__lead {
    padding: 1.15rem 1.15rem;
    border-radius: 18px;
  }
  .lan-story__callout p {
    border-radius: 0 16px 16px 0;
    padding-left: 1.25rem;
  }
}
/* Tinted orange — same family as callout accent, lighter (more white) */
.btn.primary.lan-btn-zemewlan {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: auto;
  text-align: center;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 10px;
  color: #3a2618;
  border: 1px solid rgba(200, 150, 100, 0.45);
  background: linear-gradient(
    145deg,
    #e8d8c8 0%,
    #dcc0a0 32%,
    #cca878 68%,
    #b89058 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 6px 16px rgba(140, 100, 60, 0.28);
}
.btn.primary.lan-btn-zemewlan:hover {
  transform: translateY(-1px);
  color: #2a1a0f;
  border-color: rgba(190, 140, 90, 0.55);
  background: linear-gradient(
    145deg,
    #e4d0bc 0%,
    #d4b890 42%,
    #c49a68 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 8px 20px rgba(120, 85, 50, 0.34);
}

/* Screen-reader-only section label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
