/* United States + Mexico tribute */

:root {
  --ink: #050914;
  --midnight: #071326;
  --panel: rgba(10, 20, 38, 0.74);
  --panel-strong: rgba(10, 20, 38, 0.94);
  --white: #f5f7fb;
  --muted: #a9b7ca;
  --subtle: #74859d;
  --gold: #f4c95d;
  --gold-bright: #ffe6a3;
  --us-red: #bf2636;
  --us-blue: #123260;
  --mx-green: #18855c;
  --mx-red: #c6342d;
  --line: rgba(255, 255, 255, 0.14);
  --line-bright: rgba(244, 201, 93, 0.4);
  --shadow: 0 28px 88px rgba(0, 0, 0, 0.52);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 50, 96, 0.42), transparent 34%),
    radial-gradient(circle at 86% 30%, rgba(24, 133, 92, 0.22), transparent 28%),
    linear-gradient(180deg, #050914 0%, #081224 44%, #0c151c 100%);
  color: var(--white);
  font-family:
    "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 80%, transparent);
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--us-blue), var(--us-red), var(--gold), var(--mx-green), var(--mx-red));
  box-shadow: 0 0 34px rgba(244, 201, 93, 0.44);
}

a {
  color: inherit;
}

img,
canvas {
  max-width: 100%;
}

::selection {
  background: rgba(244, 201, 93, 0.34);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: 0.68rem 0.95rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cinema-vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 38%, rgba(0, 0, 0, 0.48));
}

.tribute-page {
  position: relative;
  z-index: 4;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.tribute-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 1.5rem;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.tribute-nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 9, 20, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tribute-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.tribute-nav-back:hover,
.tribute-nav-back:focus-visible {
  color: var(--gold);
}

.tribute-nav-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96svh;
  padding: 7.5rem 1.5rem 7rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.98) 0%, rgba(5, 9, 20, 0.86) 35%, rgba(5, 9, 20, 0.25) 64%, rgba(5, 9, 20, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.36) 0%, rgba(5, 9, 20, 0.08) 42%, rgba(5, 9, 20, 0.96) 100%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 5px),
    linear-gradient(120deg, transparent 20%, rgba(244, 201, 93, 0.12) 48%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hero-content {
  width: min(760px, 100%);
  margin-left: clamp(0rem, 5vw, 5rem);
}

.hero-kicker,
.section-tag,
.outro-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-tag::before,
.outro-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--us-red), var(--gold), var(--mx-green));
}

.hero-title {
  max-width: 9ch;
  margin-top: 0.95rem;
  color: var(--white);
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow:
    0 8px 40px rgba(0, 0, 0, 0.72),
    0 0 38px rgba(244, 201, 93, 0.16);
}

.hero-subtitle {
  width: min(650px, 100%);
  margin-top: 1.45rem;
  color: rgba(245, 247, 251, 0.9);
  font-size: 1.35rem;
  line-height: 1.45;
}

.hero-typewriter-wrap {
  min-height: 2.4rem;
  margin-top: 1.2rem;
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.hero-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.15em;
  margin-left: 0.2em;
  vertical-align: -0.14em;
  background: var(--gold);
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-button,
.outro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.hero-button-primary,
.outro-cta {
  border: 1px solid rgba(244, 201, 93, 0.72);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(244, 201, 93, 0.18);
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-button:hover,
.hero-button:focus-visible,
.outro-cta:hover,
.outro-cta:focus-visible {
  transform: translateY(-2px);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  border-color: rgba(244, 201, 93, 0.55);
  color: var(--gold-bright);
}

.hero-facts {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 4.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 0.7rem;
  width: min(640px, calc(100% - 2rem));
}

.hero-facts div,
.identity-item,
.route-card,
.gratitude-card,
.pledge-quote,
.journey-card,
.journey-context {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 0.85rem 0.9rem;
  border-radius: 6px;
}

.hero-facts dt,
.identity-label {
  color: var(--subtle);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-facts dd,
.identity-item strong {
  margin-top: 0.28rem;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 750;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 1.7s ease-in-out infinite;
}

@keyframes scrollPulse {
  50% {
    transform: translateY(7px);
    opacity: 0.42;
  }
}

.identity-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.identity-item {
  min-height: 92px;
  padding: 1.1rem 1rem;
  border-width: 0 1px 0 0;
  box-shadow: none;
}

.identity-item-active {
  position: relative;
  overflow: hidden;
}

.identity-item-active::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--us-red), var(--gold), var(--mx-green));
}

.identity-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(244, 201, 93, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.42;
    transform: scale(1.45);
  }
}

.tribute-section,
.pledge-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.opening {
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.7), rgba(7, 19, 38, 0.16));
}

.opening-grid,
.pledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-header h2,
.pledge-copy h2,
.outro-content h2 {
  margin-top: 0.95rem;
  color: var(--white);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-header p {
  width: min(650px, 100%);
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-tag {
  justify-content: center;
}

.opening-copy {
  display: grid;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.opening-copy p:first-child {
  color: rgba(245, 247, 251, 0.92);
}

.cinematic-route {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.route-panel {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.route-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 1.5rem;
  border-radius: 6px;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
}

.route-card-mexico::before {
  background: linear-gradient(90deg, var(--mx-green), transparent, var(--mx-red));
}

.route-card-us::before {
  background: linear-gradient(90deg, var(--us-blue), transparent, var(--us-red));
}

.route-card span,
.card-index {
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.route-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 15ch;
  margin-top: 1.1rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.05;
}

.route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
}

.route-line span {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--mx-green), var(--gold), var(--us-red));
  box-shadow: 0 0 24px rgba(244, 201, 93, 0.42);
}

.route-line span::before,
.route-line span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.route-line span::before {
  left: 0;
}

.route-line span::after {
  right: 0;
}

.journey {
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.38), rgba(8, 18, 36, 0.72)),
    linear-gradient(90deg, rgba(18, 50, 96, 0.18), transparent 40%, rgba(24, 133, 92, 0.14));
}

.journey-track {
  position: relative;
  display: grid;
  gap: 2.2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-left: clamp(2.25rem, 5vw, 4.5rem);
}

.journey-spine {
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  left: clamp(0.8rem, 2vw, 1.25rem);
  width: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.journey-spine-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--mx-green), var(--gold), var(--us-red), var(--us-blue));
  box-shadow: 0 0 22px rgba(244, 201, 93, 0.62);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 1rem;
  align-items: stretch;
}

.journey-step::before {
  content: attr(data-chapter);
  position: absolute;
  right: 1rem;
  top: -0.7rem;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.journey-node {
  position: absolute;
  left: clamp(-3.7rem, -5vw, -2.1rem);
  top: 1.4rem;
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 22px rgba(244, 201, 93, 0.54);
}

.journey-node-now {
  background: var(--gold);
  box-shadow:
    0 0 0 8px rgba(244, 201, 93, 0.12),
    0 0 34px rgba(244, 201, 93, 0.82);
}

.journey-card,
.journey-context {
  border-radius: 6px;
}

.journey-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 3px solid rgba(244, 201, 93, 0.46);
}

.journey-card-today {
  border-color: rgba(244, 201, 93, 0.78);
  background:
    linear-gradient(135deg, rgba(244, 201, 93, 0.16), rgba(18, 50, 96, 0.16)),
    var(--panel-strong);
}

.journey-date {
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin-top: 0.55rem;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.1;
}

.journey-card p:not(.journey-date) {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.journey-context {
  display: flex;
  align-items: center;
  padding: 1.1rem;
  color: rgba(245, 247, 251, 0.78);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.7;
}

.journey-step-today {
  grid-template-columns: minmax(0, 1fr);
}

.journey-badge {
  display: inline-flex;
  margin-top: 1.2rem;
  padding: 0.42rem 0.66rem;
  border: 1px solid rgba(244, 201, 93, 0.48);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gratitude-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gratitude-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 1.45rem;
  border-radius: 6px;
}

.gratitude-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--us-red), var(--gold), var(--mx-green));
}

.gratitude-card h3 {
  margin-top: 2.5rem;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.08;
}

.gratitude-card p,
.pledge-copy p,
.pledge-quote p,
.outro-content p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.pledge-section {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.2), rgba(5, 9, 20, 0.72)),
    linear-gradient(90deg, rgba(191, 38, 54, 0.13), transparent, rgba(24, 133, 92, 0.14));
}

.pledge-quote {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 6px;
}

.pledge-quote::before {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--us-red), var(--gold), var(--mx-green));
}

.pledge-quote p {
  margin-top: 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 760;
  line-height: 1.2;
}

.pledge-quote cite {
  display: block;
  margin-top: 1.3rem;
  color: var(--gold-bright);
  font-style: normal;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tribute-outro {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 70svh;
  padding: 5rem 1.25rem;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.28), rgba(5, 9, 20, 0.94)),
    radial-gradient(circle at 50% 90%, rgba(244, 201, 93, 0.18), transparent 42%);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.outro-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.outro-content .outro-tag {
  justify-content: center;
}

.outro-content p {
  margin-inline: auto;
  width: min(640px, 100%);
}

.outro-cta {
  margin-top: 1.7rem;
}

.tribute-footer {
  display: grid;
  gap: 0.9rem;
  padding: 2.4rem 1.5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 9, 20, 0.94);
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.tribute-footer a {
  color: var(--gold-bright);
  text-decoration: none;
}

.tribute-footer a:hover {
  color: var(--gold);
}

.tribute-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 980px) {
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 7rem;
  }

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

  .hero-title {
    max-width: 10ch;
    font-size: 6.3rem;
  }

  .section-header h2,
  .pledge-copy h2,
  .outro-content h2 {
    font-size: 3.25rem;
  }

  .route-card strong {
    font-size: 1.65rem;
  }

  .journey-step::before {
    font-size: 6.2rem;
  }

  .journey-card h3 {
    font-size: 1.55rem;
  }

  .pledge-quote p {
    font-size: 1.6rem;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 2.4rem 0 0;
  }

  .identity-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .opening-grid,
  .pledge-grid,
  .route-panel,
  .journey-step,
  .gratitude-grid {
    grid-template-columns: 1fr;
  }

  .route-line {
    min-height: 72px;
  }

  .route-line span {
    width: 2px;
    height: 100%;
  }

  .route-line span::before {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }

  .route-line span::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  .tribute-nav {
    min-height: 64px;
    padding: 0 1rem;
    background: rgba(5, 9, 20, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .tribute-nav-label {
    display: none;
  }

  .hero {
    padding: 6.4rem 1rem 4.8rem;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-title {
    font-size: 4.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-typewriter-wrap {
    font-size: 0.82rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .identity-strip {
    grid-template-columns: 1fr;
  }

  .journey-track {
    padding-left: 2.1rem;
  }

  .journey-node {
    left: -2rem;
  }

  .section-header h2,
  .pledge-copy h2,
  .outro-content h2 {
    font-size: 2.5rem;
  }

  .opening-copy {
    font-size: 1rem;
  }

  .route-card strong,
  .gratitude-card h3,
  .journey-card h3 {
    font-size: 1.35rem;
  }

  .journey-step::before {
    font-size: 5.2rem;
  }

  .pledge-quote p {
    font-size: 1.35rem;
  }

  .gratitude-card {
    min-height: auto;
  }

  .tribute-footer nav {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
