:root {
  --red: #aa151b;
  --red-dark: #6f0d12;
  --gold: #f1bf00;
  --gold-soft: #ffe28a;
  --ink: #17120d;
  --muted: #6f6257;
  --cream: #fff4dc;
  --paper: #fffbf2;
  --green: #2f6f4e;
  --blue: #1f5573;
  --shadow: 0 24px 80px rgba(54, 27, 10, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(241, 191, 0, 0.28), transparent 24rem),
    radial-gradient(circle at 92% 0%, rgba(170, 21, 27, 0.2), transparent 26rem),
    linear-gradient(135deg, #fff7e1 0%, #fffaf0 48%, #f8e4b8 100%);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(17, 12, 8, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 12, 8, 0.03) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

.hero {
  min-height: 100vh;
  padding: 28px clamp(18px, 4vw, 64px) 74px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.hero::before {
  width: 560px;
  height: 560px;
  background: conic-gradient(from 180deg, var(--red), var(--gold), #fff, var(--red));
  filter: blur(14px);
  opacity: 0.16;
  top: 120px;
  right: -180px;
}

.hero::after {
  width: 72vw;
  height: 190px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--gold) 33% 66%, var(--red) 66%);
  transform: rotate(-8deg);
  left: -12vw;
  bottom: 6vh;
  opacity: 0.09;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 251, 242, 0.72);
  border: 1px solid rgba(111, 13, 18, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(111, 13, 18, 0.08);
  display: flex;
  justify-content: space-between;
  margin: 0 auto 68px;
  max-width: 1180px;
  padding: 10px 12px;
  position: sticky;
  top: 16px;
  z-index: 10;
}

.map-showcase {
  background:
    linear-gradient(135deg, rgba(170, 21, 27, 0.96), rgba(34, 23, 17, 0.98)),
    var(--red);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  margin: 0 auto 72px;
  max-width: 1180px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.map-showcase::after {
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 66%, var(--red) 66%);
  bottom: 0;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  right: 0;
}

.map-showcase-copy {
  align-self: center;
  padding: clamp(12px, 2vw, 22px);
  position: relative;
  z-index: 1;
}

.map-showcase-copy h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.map-showcase-copy p:not(.stamp) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.map-media {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.map-showcase-frame {
  background: #140d09;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  min-height: 430px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.map-showcase-frame::before {
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 66%, var(--red) 66%);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.map-showcase-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 430px;
  width: 100%;
}

.interview-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(170, 21, 27, 0.95), rgba(34, 23, 17, 0.95)),
    var(--red);
  border: 1px solid rgba(170, 21, 27, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
  color: white;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 24px;
}

.interview-card h3 {
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.interview-card p:not(.audio-label) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 8px 0 0;
}

.audio-label {
  color: var(--gold-soft);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.audio-button {
  background: var(--gold-soft);
  border: 0;
  border-radius: 999px;
  color: var(--red-dark);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-weight: 900;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
}

.audio-button:hover {
  background: #fff4c0;
}

.brand,
.nav-links {
  align-items: center;
  display: flex;
}

.brand {
  gap: 10px;
  font-weight: 900;
  padding-left: 8px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--red), #d84f28);
  border-radius: 50%;
  color: white;
  display: grid;
  font-family: "Archivo Black", sans-serif;
  height: 38px;
  place-items: center;
  width: 38px;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 12px 15px;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--gold-soft);
  color: var(--red-dark);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
}

.eyebrow,
.section-kicker,
.stamp,
.tag {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--red);
  font-size: 0.84rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.06em;
}

h1 {
  font-size: clamp(3.7rem, 9vw, 8.8rem);
  line-height: 0.86;
  max-width: 980px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.92;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  color: #3f3328;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 14px 20px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #d83a24);
  box-shadow: 0 18px 36px rgba(170, 21, 27, 0.25);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(170, 21, 27, 0.18);
  color: var(--red-dark);
}

.button.dark {
  background: #241914;
  color: #fff5df;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 0;
  max-width: 780px;
}

.hero-stats div {
  background: rgba(255, 251, 242, 0.74);
  border: 1px solid rgba(170, 21, 27, 0.13);
  border-radius: 22px;
  padding: 18px;
}

.hero-stats dt {
  color: var(--red);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.45rem;
}

.hero-stats dd {
  color: var(--muted);
  margin: 4px 0 0;
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(170, 21, 27, 0.98), rgba(34, 23, 17, 0.98)),
    var(--red);
  border-radius: 44px;
  box-shadow: var(--shadow);
  color: white;
  min-height: 620px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.hero-card::after {
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 66%, var(--red) 66%);
  bottom: 0;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  right: 0;
}

.stamp {
  color: var(--gold-soft);
  font-size: 0.8rem;
}

.hero-card h2 {
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  margin-top: 8px;
}

.hero-card p:not(.stamp) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.map-open-link {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--gold-soft);
  font-weight: 900;
  margin: 0 18px 18px;
  padding: 12px 16px;
  text-decoration: none;
}

.map-showcase-copy .map-open-link {
  display: inline-flex;
  margin: 18px 0 0;
}

.map-open-link:hover {
  background: var(--gold-soft);
  color: var(--red-dark);
}

.project-card {
  min-height: auto;
  padding: 34px;
}

.project-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.project-checklist li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff7df;
  font-weight: 900;
  padding: 13px 14px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 92px clamp(18px, 4vw, 64px);
}

.interview-section {
  padding-bottom: 0;
}

.section-kicker {
  color: var(--red);
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.split,
.section-heading {
  display: grid;
  gap: clamp(24px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.split p,
.section-heading p,
.sources p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.fact-panel {
  background: #201711;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff4dc;
  padding: 30px;
}

.fact-panel p {
  color: #fff4dc;
  margin: 0;
}

.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
}

.timeline article {
  background: rgba(255, 251, 242, 0.78);
  border: 1px solid rgba(170, 21, 27, 0.12);
  border-radius: 24px;
  padding: 20px;
}

.timeline span {
  color: var(--red);
  font-family: "Archivo Black", sans-serif;
}

.timeline p {
  color: var(--muted);
  line-height: 1.55;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.filter {
  background: rgba(255, 251, 242, 0.8);
  border: 1px solid rgba(111, 13, 18, 0.18);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 12px 16px;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: var(--cream);
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.place-card {
  background: rgba(255, 251, 242, 0.86);
  border: 1px solid rgba(111, 13, 18, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(54, 27, 10, 0.09);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.place-card.hidden {
  display: none;
}

.place-card:hover {
  transform: translateY(-5px);
}

.place-card.feature {
  grid-column: span 2;
}

.place-card img,
.image-placeholder {
  aspect-ratio: 4 / 3;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.image-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(170, 21, 27, 0.86), rgba(241, 191, 0, 0.72)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, 0.2) 16px 18px);
  color: #fff;
  display: flex;
  font-family: "Archivo Black", sans-serif;
  font-size: 4.4rem;
  justify-content: center;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.tag {
  align-self: flex-start;
  border-radius: 999px;
  color: white;
  font-size: 0.62rem;
  padding: 8px 10px;
}

.tag.red {
  background: var(--red);
}

.tag.gold {
  background: #b88600;
}

.tag.green {
  background: var(--green);
}

.tag.blue {
  background: var(--blue);
}

.card-body p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.card-body .meta {
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: auto;
}

.photo-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.photo-strip img {
  border: 8px solid #fffaf0;
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(54, 27, 10, 0.14);
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.source-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.source-grid a {
  background: rgba(255, 251, 242, 0.86);
  border: 1px solid rgba(170, 21, 27, 0.14);
  border-radius: 20px;
  color: var(--red-dark);
  font-weight: 900;
  line-height: 1.5;
  padding: 18px;
  text-decoration: none;
}

.source-grid a:hover {
  background: var(--gold-soft);
}

.footer {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 64px);
}

.footer a {
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .map-showcase,
  .hero-grid,
  .split,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .timeline,
  .cards,
  .photo-strip,
  .source-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .place-card.feature {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 16px;
  }

  .map-showcase {
    border-radius: 34px;
    margin-bottom: 52px;
    padding: 18px;
  }

  .map-showcase-frame,
  .map-showcase-frame iframe {
    min-height: 360px;
  }

  .interview-card {
    align-items: stretch;
    flex-direction: column;
  }

  .audio-button {
    width: 100%;
  }

  .hero-stats,
  .timeline,
  .cards,
  .photo-strip,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 64px;
  }

  .photo-strip img {
    height: 280px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
