:root {
  --bg: #fff7e8;
  --paper: #ffffff;
  --ink: #17202a;
  --muted: #65717d;
  --line: rgba(23, 32, 42, .12);
  --cyan: #00b8c8;
  --cyan-dark: #007b86;
  --orange: #ff7a30;
  --yellow: #ffd166;
  --pink: #ff5c8a;
  --green: #1fbf75;
  --shadow: 0 24px 70px rgba(15, 23, 42, .14);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 6% 3%, rgba(255,122,48,.26), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(0,184,200,.24), transparent 34rem),
    linear-gradient(180deg, #fff7e8 0%, #f5fbff 58%, #fff7e8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(15,23,42,.09);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand strong,
.brand small { display: block; }

.brand strong {
  font-size: 19px;
  letter-spacing: -.03em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover { color: var(--cyan-dark); }

main {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -.075em;
}

h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.055em;
}

h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid var(--line);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: white;
  box-shadow: 0 18px 42px rgba(255,122,48,.24);
}

.button.secondary { background: white; }

.hero-photo {
  position: relative;
  min-height: 545px;
}

.hero-photo img {
  width: 100%;
  height: 545px;
  display: block;
  object-fit: cover;
  border-radius: 44px;
  box-shadow: var(--shadow);
  border: 10px solid white;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 42px;
  border-radius: 44px;
  background: linear-gradient(135deg, var(--yellow), var(--cyan));
  z-index: -1;
}

.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(15,23,42,.16);
}

.floating-note strong,
.floating-note span { display: block; }

.floating-note span {
  margin-top: 6px;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 16px 0 84px;
}

.stats div,
.country-grid article,
.notes article,
.about,
.timeline {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(15,23,42,.08);
}

.stats div {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stats div::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(0,184,200,.14);
}

.stats strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.055em;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.section { margin: 92px 0; }
.section-heading { margin-bottom: 28px; }

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

.country-grid article {
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.country-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(15,23,42,.12);
}

.country-grid span {
  display: block;
  margin-bottom: 12px;
  font-size: 31px;
}

.country-grid strong,
.country-grid small { display: block; }

.country-grid small {
  margin-top: 5px;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.photo-card {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.photo-card.wide { grid-column: span 2; }

.photo-card img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
}

.photo-card.wide img { height: 440px; }

.caption { padding: 24px; }

.caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 950;
}

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

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.timeline { padding: 10px; }

.timeline div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.timeline div:last-child { border-bottom: 0; }

.timeline time {
  color: var(--orange);
  font-weight: 950;
}

.timeline span {
  grid-column: 2;
  color: var(--muted);
}

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

.notes article { padding: 26px; }

ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.about {
  padding: 40px;
  margin-bottom: 50px;
  background:
    linear-gradient(135deg, rgba(0,184,200,.16), rgba(255,122,48,.16)),
    rgba(255,255,255,.86);
}

.about p:last-child {
  max-width: 790px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-photo, .hero-photo img {
    min-height: 420px;
    height: 420px;
  }
  .stats, .country-grid, .photo-grid, .notes {
    grid-template-columns: 1fr 1fr;
  }
  .photo-card.wide { grid-column: span 2; }
  h1 { font-size: 54px; }
}

@media (max-width: 560px) {
  main, .site-header, .footer {
    width: min(100% - 20px, 1180px);
  }
  .stats, .country-grid, .photo-grid, .notes {
    grid-template-columns: 1fr;
  }
  .photo-card.wide { grid-column: span 1; }
  .photo-card img, .photo-card.wide img { height: 300px; }
  .hero-photo, .hero-photo img {
    min-height: 350px;
    height: 350px;
  }
  .timeline div { grid-template-columns: 1fr; }
  .timeline span { grid-column: 1; }
  .footer { flex-direction: column; }
}
