
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero {
    min-height: 600px;
  }
}
.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(20px, 4vh, 80px);
  padding-bottom: clamp(20px, 4vh, 80px);
}
.hero__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  width: 100%;
}
@media (max-width: 960px) {
  .hero__grid {
    flex-direction: column;
    text-align: center;
  }
}
.hero__content {
  flex: 1;
  text-align: right;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 600ms forwards;
}
@media (max-width: 960px) {
  .hero__content {
    text-align: center;
    order: 2;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, var(--tone-gold-8), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--tone-red-5), transparent 60%);
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ui-glass-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--ui-glass-3) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -40px -40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 75%);
}
.hero__count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 400ms forwards;
}
@media (max-width: 960px) {
  .hero__count {
    order: 1;
    margin-bottom: 24px;
  }
}
.hero__num {
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw + 8vh, 420px);
  line-height: 0.85;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .hero__num {
    font-size: clamp(100px, 35vw, 160px);
  }
}
.hero__count-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .hero__count-label {
    font-size: 10px;
    max-width: 200px;
  }
}
.hero__count-label strong { color: var(--accent-red); display: block; font-weight: 500; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw + 1.5vh, 64px);
  line-height: 1.1;
  font-weight: var(--headline-weight);
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 0 clamp(12px, 2vh, 24px);
  text-wrap: balance;
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(28px, 8vw, 36px);
  }
}
@media (max-width: 960px) {
  .hero__title {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__title .red { color: var(--accent-red); }
.hero__lede {
  font-size: clamp(15px, 1.1vw + 0.4vh, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 0 clamp(20px, 3vh, 40px);
}
@media (max-width: 480px) {
  .hero__lede {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}
@media (max-width: 960px) {
  .hero__lede {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 960px) {
  .hero__cta {
    align-items: center;
  }
}
.hero__cta .btn {
  min-width: 240px;
  flex-direction: column;
  padding: 12px 28px;
  gap: 4px;
}
.hero__cta .btn__text {
  font-size: 15px;
  font-weight: 700;
}
.hero__cta-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: inherit;
  opacity: 0.8;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-out) 1500ms forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -48px;
  height: 24px;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: scrollPulse 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(96px); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


.incident {
  background: var(--bg-secondary);
  color: var(--text-on-secondary);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.incident__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-soft); }
@media (max-width: 480px) { .incident__grid { grid-template-columns: 1fr; } }
.incident__cell {
  background: var(--bg-secondary);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 720px) { .incident__cell { padding: 16px; gap: 8px; align-items: center; text-align: center; } }
.incident__cell-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-on-secondary); }
.incident__cell-value { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); color: var(--text-on-secondary); font-weight: 500; line-height: 1.15; }
.incident__cell-sub { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint-on-secondary); letter-spacing: 0.05em; }
.incident__cell-sub.red { color: var(--accent-red-on-secondary); }
.incident__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-top: clamp(32px, 6vw, 48px);
  padding-top: clamp(32px, 6vw, 48px);
  border-top: 1px solid var(--border-soft);
}
.incident__missile { width: 100%; max-width: 400px; opacity: 0.8; filter: drop-shadow(0 4px 12px var(--shadow-soft)); }
.incident__narrative { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7; color: var(--text-on-secondary); max-width: 90ch; margin: 0; }


.quote-slider__slides { display: grid; width: 100%; }
.quote-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out), visibility 600ms;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.quote-slide.is-active { opacity: 1; visibility: visible; transform: translateY(0); z-index: 2; }
.quote-slider__nav { display: flex; justify-content: center; gap: 10px; margin-top: 12px; z-index: 3; }
.quote-nav-dot {
  width: 10px;
  height: 10px;
  background: var(--text-faint);
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  opacity: 0.4;
}
.incident .quote-nav-dot { background: var(--text-faint-on-secondary); }
.quote-nav-dot:hover { transform: scale(1.3); opacity: 0.8; }
.quote-nav-dot.is-active { background: var(--accent-on-secondary); transform: scale(1.3); opacity: 1; }
.quote-banner {
  margin-top: clamp(40px, 6vh, 64px);
  padding: clamp(24px, 3vw, 40px) 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.quote-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--accent);
}
.quote-banner__icon { width: 40px; height: 40px; color: var(--accent); opacity: 0.5; margin-bottom: 8px; }
.quote-banner__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-wrap: balance;
  max-width: 32ch;
  margin: 0;
}
.quote-banner__attr { margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.quote-banner__attr-title { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.quote-banner__attr-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--text-faint); text-transform: uppercase; }


.news__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.news__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) {
  .news__cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 calc(var(--gutter) * -1);
    padding: 8px var(--gutter) 32px;
    scrollbar-width: none;
  }
  .news__cards::-webkit-scrollbar { display: none; }
  .news__cards .archive-term-card--home {
    flex: 0 0 80%;
    max-width: 320px;
    scroll-snap-align: center;
  }
}


.news__cards .archive-term-card--home {
  text-decoration: none;
  color: inherit;
  padding: 18px;
  gap: 12px;
  min-height: 360px;
}
.news__cards .archive-term-card--home .archive-term-card__thumb {
  order: -1;
  height: 132px;
  max-height: 132px;
  aspect-ratio: auto;
}
.news__cards .archive-term-card--home .archive-term-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news__cards .archive-term-card--home .archive-term-card__title {
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}
.news__cards .archive-term-card--home .archive-term-card__meta {
  padding-bottom: 10px;
}
.news__cards .archive-term-card--home .archive-term-card__excerpt {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__cards .archive-term-card--home .archive-term-card__foot {
  padding-top: 10px;
  margin-top: auto;
}

@media (max-width: 720px) {
  .news__cards .archive-term-card--home {
    padding: 16px;
    gap: 10px;
    min-height: 320px;
  }
  .news__cards .archive-term-card--home .archive-term-card__title { font-size: 17px; }
  .news__head { margin-bottom: 32px; gap: 16px; flex-direction: column; align-items: center; text-align: center; }
}


.dualcta { background: var(--bg-secondary); color: var(--text-on-secondary); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 0; }
.dualcta__grid { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--container); margin: 0 auto; }
@media (max-width: 720px) { .dualcta__grid { grid-template-columns: 1fr; } }
.dualcta__cell {
  padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: background var(--t-fast);
  border-right: 1px solid var(--border-soft);
}
.dualcta__cell:last-child { border-right: none; }
.dualcta__cell:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}
.dualcta__cell-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-on-secondary); }
.dualcta__cell:hover .dualcta__cell-eyebrow { color: var(--accent); }
.dualcta__cell-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }
.dualcta__cell-text { color: var(--text-muted-on-secondary); font-size: 15px; line-height: 1.6; max-width: 38ch; }
.dualcta__cell:hover .dualcta__cell-text { color: var(--text-muted); }
.dualcta__cell .btn { width: 100%; max-width: 240px; margin-top: auto; }
.dualcta .btn--ghost {
  color: var(--text-on-secondary);
}
.dualcta__cell:hover .btn--ghost {
  color: var(--text-primary);
}
.dualcta .btn--ghost:hover {
  color: var(--accent-on-secondary);
}
.dualcta__cell:hover .btn--ghost:hover {
  color: var(--accent);
}


.mini-memorial-sec { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; padding: var(--section-y) 0; }
.wall__grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
@media (max-width: 1100px) { .wall__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .wall__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .wall__grid { grid-template-columns: repeat(2, 1fr); } }
.vc {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  position: relative;
  perspective: 800px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out), border-color var(--t-fast);
  overflow: hidden;
}
.vc.is-in { opacity: 1; transform: translateY(0); }
.vc:hover { border-color: var(--border-strong); }
.vc__inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 700ms var(--ease-out); }
.vc.is-flipped .vc__inner { transform: rotateY(180deg); }
.vc__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 0;
  box-sizing: border-box;
}
.vc__face--back { transform: rotateY(180deg); background: var(--bg-elevated); padding: 16px 14px; }
.vc__face--front > div:last-child:not(.vc__sil) { min-width: 0; }
.vc__sil { flex: 1; display: grid; place-items: center; color: var(--text-faint); opacity: 0.55; }
.vc__sil svg { width: 60%; height: auto; max-width: 70px; }

.vc.has-photo .vc__face--front { padding: 0; }
.vc.has-photo .vc__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-card);
}
.vc.has-photo .vc__media .vc__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.vc.has-photo .vc__front-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  padding: 12px 12px 14px;
  box-sizing: border-box;
  background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 0.78) 65%, rgb(0 0 0 / 0.9) 100%);
  overflow: hidden;
}
.vc.has-photo .vc__name {
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.5);
}
.vc.has-photo .vc__age {
  color: var(--accent);
  text-shadow: 0 1px 3px rgb(0 0 0 / 0.65);
}
.vc__name {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.vc__age {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.vc__age--hint {
  margin-top: auto;
  flex-shrink: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.vc__bio {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}
.vc__bio-name {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 6px;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.vc.is-lit { border-color: var(--accent); }
.vc.is-lit .vc__face--front::before {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 4;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.vc-cta {
  aspect-ratio: 3/4;
  background: var(--accent);
  color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px;
  opacity: 0;
  transform: translateY(16px) scale(1.05);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out), box-shadow var(--t-fast);
  z-index: 2;
  text-decoration: none;
  box-shadow: 0 12px 24px var(--shadow-soft);
}
.vc-cta.is-in { opacity: 1; transform: translateY(0) scale(1.05); }
.vc-cta:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 16px 32px var(--shadow-pop); }
.vc-cta__icon { width: 40px; height: 40px; border: 1.5px solid var(--bg-primary); border-radius: 50%; display: grid; place-items: center; }
.vc-cta__text { font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 22px); font-weight: 600; line-height: 1.2; }

