:root {
  --ink: #101311;
  --forest: #26463f;
  --olive: #6d7b5b;
  --gold: #b98d4c;
  --sand: #f4efe4;
  --stone: #d8cfbe;
  --mist: #ecf0eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--sand);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(185, 141, 76, 0.18), transparent 24rem),
    radial-gradient(circle at top right, rgba(38, 70, 63, 0.3), transparent 32rem),
    linear-gradient(180deg, #111512 0%, #0c0f0d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 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.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 82%);
  opacity: 0.35;
}

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

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

::selection {
  background: rgba(185, 141, 76, 0.28);
}

.display-font {
  font-family: "DM Serif Display", serif;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7ccb8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-label::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(185, 141, 76, 0.65);
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 24%;
  height: 14rem;
  background: radial-gradient(circle, rgba(185, 141, 76, 0.28), transparent 70%);
  pointer-events: none;
}

.stat-tile {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.image-frame {
  overflow: hidden;
  border-radius: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-card {
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.editorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 141, 76, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.country-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f6f1e7;
}

.page-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.hero-title {
  font-size: clamp(2.85rem, 6.2vw, 4.9rem);
  line-height: 0.98;
  max-width: 10ch;
}

.page-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.96;
}

.section-title {
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  line-height: 1.02;
}

.rich-copy p {
  color: rgba(244, 239, 228, 0.75);
  line-height: 1.75;
}

.rich-copy li {
  color: rgba(244, 239, 228, 0.78);
}

.footer-link,
.legal-link {
  color: rgba(244, 239, 228, 0.72);
  transition: color 160ms ease;
}

.footer-link:hover,
.legal-link:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.table-shell {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-shell table {
  width: 100%;
  border-collapse: collapse;
}

.table-shell th,
.table-shell td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-shell th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 239, 228, 0.66);
  background: rgba(255, 255, 255, 0.04);
}

.table-shell tr:last-child td {
  border-bottom: 0;
}

.nav-link {
  color: rgba(244, 239, 228, 0.72);
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 500;
}

.shadow-line {
  position: relative;
}

.shadow-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: 6.5rem;
    padding-bottom: 2.25rem;
  }

  .hero-panel {
    border-radius: 1.5rem;
  }

  .image-frame,
  .editorial-card,
  .stat-tile {
    border-radius: 1.35rem;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .page-hero {
    padding-top: 7.25rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: clamp(4rem, 4.8vw, 4.9rem);
    max-width: 11ch;
  }
}
