
:root {
  --red: #d71920;
  --red-dark: #b40f15;
  --ink: #171717;
  --muted: #6f6f6f;
  --paper: #fffdfb;
  --soft: #f7f3ef;
  --line: rgba(23, 23, 23, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 88px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 35px; height: 35px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.brand-mark span:first-child { background: var(--red); }
.brand-mark span:last-child { background: white; }
.brand-text { display: flex; flex-direction: column; line-height: .95; }
.brand-text strong { font-size: 15px; color: white; }
.brand-text em {
  font-family: "Playfair Display", serif;
  color: rgba(255,255,255,.82);
  font-style: italic;
  font-size: 16px;
}
.nav { display: flex; gap: 30px; }
.nav a {
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: .25s;
}
.nav a:hover { color: white; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 6px auto;
  background: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(157,8,14,.98) 0%, rgba(209,21,29,.98) 51%, #f9f4ef 51.1%, #fff 100%);
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  padding: 110px 5vw 70px;
}
.hero-copy {
  color: white;
  max-width: 650px;
  z-index: 5;
  padding-right: 3vw;
}
.eyebrow, .section-kicker {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 800;
}
.eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 6.4vw, 105px);
  line-height: .92;
  margin: 24px 0 28px;
  letter-spacing: -.045em;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(255,255,255,.72);
}
.lead {
  max-width: 600px;
  color: rgba(255,255,255,.83);
  line-height: 1.8;
  font-size: 16px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  border-radius: 999px;
  padding: 14px 21px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: white; color: var(--red-dark); }
.button.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.4);
}

.archipelago-wrap {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.flag-disc {
  position: absolute;
  width: min(43vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--red) 0 50%, #fff 50% 100%);
  opacity: .10;
  filter: blur(.2px);
}
.archipelago {
  position: relative;
  width: 108%;
  max-width: 920px;
  transform: translateX(-2%);
  filter: drop-shadow(0 25px 30px rgba(157,8,14,.13));
}
.archipelago path, .archipelago circle {
  fill: var(--red);
}
.map-caption {
  position: absolute;
  right: 8%;
  bottom: 12%;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: #7b7370;
  display: flex;
  align-items: center;
  gap: 9px;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(215,25,32,.08);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.glow-a { width: 400px; height: 400px; background: rgba(255,255,255,.08); left: -10%; bottom: -20%; }
.glow-b { width: 380px; height: 380px; background: rgba(215,25,32,.08); right: 4%; top: 12%; }

.scroll-cue {
  position: absolute;
  left: 5vw;
  bottom: 30px;
  width: 25px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
}
.scroll-cue span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 9px;
  left: 9px;
  animation: scroll 1.7s infinite;
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

.intro {
  padding: 130px 7vw 100px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
  align-items: end;
}
.section-kicker { color: var(--red); margin: 0 0 20px; }
.intro h2, .future h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 70px);
  letter-spacing: -.035em;
  line-height: 1;
  margin: 0;
}
.intro > p {
  margin: 0;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars article {
  padding: 54px 32px;
  min-height: 330px;
  border-right: 1px solid var(--line);
  transition: .25s ease;
}
.pillars article:last-child { border-right: 0; }
.pillars article:hover { background: var(--red); color: white; }
.pillars article:hover p, .pillars article:hover .number { color: rgba(255,255,255,.75); }
.number { font-size: 11px; font-weight: 800; color: #aaa; letter-spacing: .16em; }
.pillars h3 {
  font-family: "Playfair Display", serif;
  font-size: 31px;
  margin: 42px 0 15px;
}
.pillars p { color: var(--muted); line-height: 1.75; min-height: 110px; font-size: 14px; }
.pillars a { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pillars a span { margin-left: 5px; }

.statement {
  background: var(--red);
  color: white;
  padding: 120px 10vw;
  text-align: center;
}
.statement .section-kicker { color: rgba(255,255,255,.62); }
.statement blockquote {
  max-width: 1000px;
  margin: 30px auto 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 67px);
  line-height: 1.17;
  letter-spacing: -.035em;
}

.future {
  padding: 120px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
  overflow: hidden;
}
.future-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(130px, 23vw, 350px);
  line-height: .75;
  color: var(--red);
  letter-spacing: -.08em;
  opacity: .1;
  transform: translateX(-4vw);
}
.future-copy p:last-child {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
  margin-top: 26px;
}

footer {
  background: #121212;
  color: white;
  padding: 48px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
}
.footer-brand { font-size: 20px; font-weight: 800; }
.footer-brand span { color: #ff4b50; }
footer p { margin: 0; color: #888; font-size: 12px; }
.copyright { text-align: right; }

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px; right: 5vw;
    background: white;
    padding: 20px;
    border-radius: 18px;
    flex-direction: column;
    box-shadow: 0 18px 50px rgba(0,0,0,.15);
  }
  .nav.open { display: flex; }
  .nav a { color: var(--ink); }
  .menu-toggle { display: block; }

  .hero {
    grid-template-columns: 1fr;
    background: linear-gradient(160deg, #b40f15 0%, #df1c24 56%, #fff 56.2%);
    padding-top: 130px;
  }
  .hero-copy { padding-right: 0; }
  .archipelago-wrap { min-height: 420px; margin-top: 20px; }
  .archipelago { width: 100%; }
  .flag-disc { width: 70vw; }
  .map-caption { right: 2%; bottom: 7%; }
  .scroll-cue { display: none; }

  .intro, .future { grid-template-columns: 1fr; gap: 42px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillars article:nth-child(2) { border-right: 0; }
  .pillars article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  footer { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}
@media (max-width: 560px) {
  .site-header { height: 74px; }
  .hero { padding-inline: 6vw; }
  .hero h1 { font-size: 52px; }
  .lead { font-size: 14px; }
  .archipelago-wrap { min-height: 330px; margin-top: 35px; }
  .map-caption { position: static; margin-top: -25px; justify-self: end; }
  .intro { padding: 90px 6vw 70px; }
  .pillars { grid-template-columns: 1fr; }
  .pillars article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 280px;
  }
  .pillars article:last-child { border-bottom: 0; }
  .pillars p { min-height: 0; }
  .statement { padding: 90px 6vw; }
  .future { padding: 90px 6vw; }
}


/* v4 — clean integration of approved ChatGPT map artwork */
.map-image-wrap {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-map-image {
  width: 110%;
  max-width: 980px;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateX(-2%);
  filter: drop-shadow(0 22px 28px rgba(180, 15, 21, .08));
}

@media (max-width: 900px) {
  .map-image-wrap {
    min-height: 420px;
    overflow: hidden;
  }

  .hero-map-image {
    width: 115%;
    max-width: none;
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .map-image-wrap {
    min-height: 300px;
  }

  .hero-map-image {
    width: 125%;
  }
}


/* v5 — refined hero based on approved visual */
.hero {
  grid-template-columns: 44% 56%;
  background:
    linear-gradient(110deg, #b90e15 0%, #dc1820 46.7%, #fffaf7 46.8%, #fff 100%);
}

.hero-copy {
  max-width: 610px;
  padding-right: 1.5vw;
}

.hero h1 {
  font-size: clamp(56px, 6.1vw, 98px);
}

.map-image-wrap {
  min-height: 590px;
  overflow: visible;
  align-items: center;
  justify-content: center;
}

.hero-map-image {
  width: 116%;
  max-width: 1080px;
  height: auto;
  object-fit: contain;
  transform: translate(-3%, 2%);
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(1.02) drop-shadow(0 20px 28px rgba(180,15,21,.08));
}

/* Navigation needs dark red on the white side */
.nav a {
  color: var(--red-dark);
}
.nav a:hover {
  color: var(--red);
}

/* Keep logo white on red side */
.brand-text strong { color: white; }
.brand-text em { color: rgba(255,255,255,.88); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    background: linear-gradient(160deg, #b40f15 0%, #df1c24 56%, #fff 56.2%);
  }
  .map-image-wrap {
    min-height: 420px;
    overflow: hidden;
  }
  .hero-map-image {
    width: 120%;
    max-width: none;
    transform: translate(-4%, 0);
  }
  .nav a { color: var(--ink); }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 52px; }
  .map-image-wrap { min-height: 310px; }
  .hero-map-image {
    width: 135%;
    transform: translate(-7%, 0);
  }
}


/* =========================================================
   v6 — richer editorial homepage
   ========================================================= */
.intro-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}
.intro-copy p:last-child { margin-bottom: 0; }

.topics {
  padding: 120px 7vw;
  background: #fbf8f5;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2,
.lens h2,
.closing h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0;
}
.section-heading > p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
  font-size: 16px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.topic-card {
  min-height: 310px;
  background: white;
  border: 1px solid rgba(23,23,23,.09);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(40,20,18,.08);
}
.topic-card--large {
  grid-column: span 2;
  background: var(--red);
  color: white;
}
.topic-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--red);
}
.topic-card--large .topic-label { color: rgba(255,255,255,.68); }
.topic-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: auto 0 18px;
}
.topic-card--large h3 {
  font-size: clamp(34px, 4vw, 58px);
  max-width: 720px;
}
.topic-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.topic-card--large p {
  color: rgba(255,255,255,.82);
  max-width: 720px;
  font-size: 15px;
}
.topic-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.topic-tags span {
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.regions {
  padding: 110px 7vw;
}
.section-heading.compact { margin-bottom: 42px; }
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.region-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  background: white;
}

.lens {
  padding: 120px 7vw;
  background: #151515;
  color: white;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
}
.lens .section-kicker { color: #ff6468; }
.lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}
.lens-grid article {
  padding: 30px 26px 10px 0;
  border-right: 1px solid rgba(255,255,255,.12);
  margin-right: 24px;
}
.lens-grid article:last-child { border-right: 0; margin-right: 0; }
.lens-grid span {
  color: #ff6468;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
.lens-grid h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin: 28px 0 13px;
}
.lens-grid p {
  color: #aaa;
  line-height: 1.75;
  font-size: 13px;
  margin: 0;
}

.future-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.future-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.closing {
  padding: 130px 8vw;
  background: #f7f2ee;
  text-align: center;
}
.closing h2 { max-width: 1050px; margin: 0 auto; }
.closing > p:not(.section-kicker) {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}
.closing-button {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: white;
}

footer {
  grid-template-columns: 1.3fr 1fr auto;
}
.footer-tagline { margin-top: 10px; }
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #aaa;
  font-size: 12px;
  font-weight: 700;
}
.footer-nav a:hover { color: white; }

@media (max-width: 980px) {
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .topic-card--large { grid-column: span 2; }
  .lens { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card--large { grid-column: span 1; }
  .lens-grid { grid-template-columns: 1fr; }
  .lens-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-right: 0;
    padding: 28px 0;
  }
  .lens-grid article:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr; }
}
