@media (max-width: 980px) {
  .nav-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
  }

  .nav-toggle span[aria-hidden="true"],
  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    content: "";
  }

  .nav-toggle span[aria-hidden="true"]::before {
    transform: translateY(-7px);
  }

  .nav-toggle span[aria-hidden="true"]::after {
    transform: translateY(5px);
  }

  .nav-panel {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .language-switcher {
    width: max-content;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, var(--navy-900), var(--navy) 38%, var(--white) 38%);
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero-media img {
    min-height: 0;
  }

  .hero-content {
    padding: 2rem 16px 3.5rem;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.92)),
      var(--white);
  }

  .hero-content::before {
    left: 0;
  }

  .story-row,
  .story-row.is-reversed,
  .voting-grid,
  .split,
  .voice-layout {
    grid-template-columns: 1fr;
  }

  .story-row.is-reversed .story-media,
  .story-row.is-reversed .story-copy {
    order: initial;
  }

  .editorial-plan {
    display: none;
  }

  .mobile-plan {
    display: grid;
    gap: 1rem;
    margin-inline: -16px;
  }

  .snap-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 86vw);
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 16px 1rem;
  }

  .snap-track::-webkit-scrollbar {
    display: none;
  }

  .snap-card {
    scroll-snap-align: center;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1rem;
    min-height: 520px;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.92)),
      var(--white);
    box-shadow: 0 24px 70px rgba(6, 42, 82, 0.18);
    overflow: hidden;
    position: relative;
  }

  .snap-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--white), var(--electric), var(--navy));
  }

  .snap-image {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(6, 42, 82, 0.22);
  }

  .snap-card h3 {
    margin-bottom: 0;
    font-size: 1.45rem;
  }

  .snap-card p {
    color: var(--muted);
  }

  .snap-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
  }

  .snap-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(6, 42, 82, 0.28);
    transition: transform 220ms ease, background 220ms ease;
  }

  .snap-dots span.is-active {
    background: var(--red);
    transform: scale(1.25);
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .section-inner,
  .section-inner.narrow {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-actions,
  .form-footer,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .date-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .date-card {
    min-height: 180px;
  }

  .story-copy {
    padding: 1.2rem 0 0 1rem;
    background: transparent;
    box-shadow: none;
  }

  .proposal-form {
    margin-inline: -2px;
  }

  .closing-section {
    min-height: 500px;
  }
}

@media (min-width: 981px) {
  .story-row:nth-child(even) .story-copy {
    border-left: 0;
    border-right: 4px solid var(--red);
  }

  @supports (animation-timeline: view()) {
    .story-media img {
      animation: subtle-pan linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
  }
}

@keyframes subtle-pan {
  from {
    transform: scale(1.02) translateY(10px);
  }
  to {
    transform: scale(1.05) translateY(-10px);
  }
}
