:root {
  --ink: #15202b;
  --navy: #0c2438;
  --navy-2: #16324a;
  --blue: #2b6a8a;
  --blue-soft: #4a8eab;
  --gold: #c4a05a;
  --gold-2: #e0c27a;
  --sand: #f3eee4;
  --ivory: #faf7f2;
  --paper: #fffdf9;
  --terracotta: #b25538;
  --olive: #5d6a4c;
  --muted: #5d6a75;
  --line: rgba(21, 32, 43, 0.12);
  --shadow: 0 18px 50px rgba(12, 36, 56, 0.12);
  --radius: 18px;
  --max: 1180px;
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--blue); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 650; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.82rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.menu-toggle {
  display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer;
}

/* Hero */
.hero {
  position: relative; min-height: 86vh;
  display: grid; place-items: end start;
  color: #fff; overflow: hidden;
  background: #0c2438 center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,36,56,.25) 0%, rgba(12,36,56,.55) 55%, rgba(12,36,56,.82) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 0 0 90px; width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.hero h1 { max-width: 16ch; }
.hero p.lead { max-width: 46ch; font-size: 1.2rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: #fff; padding: 92px 0 72px; position: relative;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,36,56,.78), rgba(12,36,56,.35));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero p { max-width: 62ch; color: rgba(255,255,255,.86); }

/* Sections */
section { padding: 88px 0; }
.band-sand { background: var(--sand); }
.band-navy { background: var(--navy); color: #fff; }
.band-navy .muted { color: rgba(255,255,255,.7); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split img, .card img, .dest-card img, .article-card img { width: 100%; height: 100%; object-fit: cover; }
.media-frame { border-radius: var(--radius); overflow: hidden; min-height: 360px; box-shadow: var(--shadow); }

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

.card, .dest-card, .article-card, .stat, .quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card, .stat, .quote { padding: 26px; }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2.2rem; color: var(--navy); }
.icon-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.icon-item h3 { margin-top: 8px; font-size: 1.15rem; }

.dest-card, .article-card { display: flex; flex-direction: column; background: var(--paper); transition: transform .2s ease; }
.dest-card:hover, .article-card:hover { transform: translateY(-4px); }
.dest-card .thumb, .article-card .thumb { height: 210px; overflow: hidden; }
.dest-card .body, .article-card .body { padding: 20px 20px 24px; }
.tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); font-weight: 700;
}
.meta { font-size: 0.88rem; color: var(--muted); }

.quote { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; }
.quote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* Journal article */
.article-layout { display: grid; grid-template-columns: minmax(0, 740px) 300px; gap: 48px; align-items: start; }
.article-body h2 { margin-top: 1.4em; }
.article-body h3 { margin-top: 1.1em; }
.article-body ul, .article-body ol { padding-left: 1.2em; }
.article-body li { margin-bottom: 0.45em; }
.takeaways, .faq, .callout {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
}
.takeaways h2, .faq h2 { font-size: 1.4rem; }
.faq details { border-top: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 650; }
.sidebar { position: sticky; top: 100px; }
.sidebar .box { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 24px; }
.sidebar .box a { color: var(--gold-2); }

table.data {
  width: 100%; border-collapse: collapse; margin: 18px 0 28px;
  font-size: 0.95rem;
}
table.data th, table.data td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
table.data th { background: var(--navy); color: #fff; font-weight: 600; }

/* Forms */
form { display: grid; gap: 14px; }
label { font-size: 0.86rem; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; font: inherit;
}
textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer { background: #0a1c2c; color: rgba(255,255,255,.82); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--gold-2); }
.site-footer h3 { color: #fff; font-size: 1.05rem; }
.legal { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 0.85rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; cursor: pointer; font-size: 0.88rem;
}
.chip.active, .chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 980px) {
  .split, .article-layout, .foot-grid, .grid-3, .grid-4, .icon-row { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; inset: 78px 0 auto; background: var(--ivory); flex-direction: column; padding: 18px 24px 24px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .sidebar { position: static; }
  section { padding: 64px 0; }
}
