:root {
  --emerald-950: #071914;
  --emerald-900: #0b241d;
  --emerald-800: #11382f;
  --emerald-700: #185444;
  --brass: #c7a15d;
  --brass-soft: #ecd8a6;
  --ivory: #f7f1e6;
  --champagne: #fff8ea;
  --wine: #6f2d3a;
  --ink: #17211d;
  --muted: rgba(247, 241, 230, .74);
  --line: rgba(236, 216, 166, .24);
  --shadow: 0 28px 80px rgba(0, 0, 0, .35);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    linear-gradient(180deg, var(--emerald-950) 0%, var(--emerald-900) 44%, #0d1f1b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--brass-soft);
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(7, 25, 20, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(199, 161, 93, .18);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: .93rem;
  min-width: 0;
}

.site-nav a {
  padding: 8px 10px;
  color: var(--ivory);
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--emerald-950);
  background: var(--brass-soft);
}

.hero,
.page-hero,
.content-section,
.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(44px, 8vw, 94px) 0 34px;
}

.page-hero {
  padding: clamp(44px, 7vw, 80px) 0 24px;
}

.eyebrow,
.updated {
  color: var(--brass-soft);
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-size: .78rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--brass);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--champagne);
  line-height: 1.12;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  margin: 12px 0 18px;
  font-size: 4.65rem;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.65rem;
}

h3 {
  margin: 24px 0 10px;
  font-size: 1.5rem;
}

p {
  margin-top: 0;
}

.lead {
  font-size: 1.25rem;
  max-width: 68ch;
}

.hero-figure {
  margin: 0;
  min-height: 600px;
}

.hero-figure img {
  width: 100%;
  height: clamp(600px, 72vh, 700px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}

.cta-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.button {
  color: var(--emerald-950);
  background: linear-gradient(180deg, var(--brass-soft), var(--brass));
  box-shadow: 0 15px 34px rgba(199, 161, 93, .28);
}

.ghost-button {
  color: var(--champagne);
  border: 1px solid var(--line);
  background: rgba(255, 248, 234, .06);
}

.content-section {
  padding: clamp(34px, 6vw, 74px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.media-grid,
.card-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.media-grid figure,
.info-card,
.review,
.faq-item,
.source-box,
.premium-box {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 234, .07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.media-grid img,
.split figure img,
.page-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.media-grid figcaption,
.split figcaption,
.page-media figcaption {
  padding: 0 14px 14px;
}

.info-card,
.review,
.faq-item,
.source-box,
.premium-box {
  padding: 18px;
}

.premium-box {
  border-color: rgba(199, 161, 93, .48);
  background: linear-gradient(135deg, rgba(199, 161, 93, .15), rgba(255, 248, 234, .06));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 248, 234, .08);
}

th,
td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--emerald-950);
  background: var(--brass-soft);
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-soft);
}

ul {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 8px;
}

.source-box {
  border-left: 4px solid var(--brass);
}

.global-footer {
  margin-top: 42px;
  padding: 38px 0;
  color: var(--ivory);
  background: #061410;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 24px;
}

.footer-title {
  margin-bottom: 8px;
  color: var(--brass-soft);
  font-weight: 850;
}

.footer-link + .footer-link {
  margin-top: 16px;
}

.footer-link p {
  margin: 5px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    min-height: 0;
  }

  .hero-figure img {
    height: min(680px, 120vw);
  }

  .media-grid,
  .card-grid,
  .review-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .site-nav a {
    padding: 7px 8px;
    font-size: .9rem;
  }

  .button,
  .ghost-button {
    width: 100%;
  }
}
