:root {
  --bg: #0c0b09;
  --bg-deep: #050606;
  --panel: rgba(14, 16, 15, 0.86);
  --gold: #c9a455;
  --gold-bright: #e0bd70;
  --gold-soft: rgba(201, 164, 85, 0.22);
  --text: #ede8e0;
  --text-muted: #aaa195;
  --text-dim: #62594f;
  --blue: #56bfd6;
  --green: #6ace93;
  --pink: #db5abf;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 10%, rgba(86, 191, 214, 0.10), transparent 24rem),
    radial-gradient(circle at 16% 76%, rgba(201, 164, 85, 0.11), transparent 28rem),
    linear-gradient(180deg, #080909 0%, var(--bg) 52%, #070706 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.13;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 3px, 4px 100%;
  mix-blend-mode: soft-light;
}

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

:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 4px;
}

.nav,
.content,
.footer {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--gold-soft);
}

.brand,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.brand {
  color: var(--gold);
  font-size: clamp(1.55rem, 1.25rem + 0.8vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(237, 232, 224, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav__links a:hover,
.brand:hover {
  color: var(--gold-bright);
}

.content {
  padding: clamp(48px, 7vw, 94px) 0 54px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 74px);
  padding-bottom: clamp(34px, 6vw, 64px);
  border-bottom: 1px solid var(--gold-soft);
}

.hero > *,
.section-heading > *,
.split > * {
  min-width: 0;
}

.hero--single {
  grid-template-columns: minmax(0, 820px);
}

.eyebrow,
.kicker,
.meta-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
}

h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.9;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.lede {
  max-width: 720px;
  margin: 0;
  color: rgba(237, 232, 224, 0.84);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.stance {
  align-self: start;
  margin: 0;
  border-left: 1px solid var(--gold-soft);
  padding-left: 26px;
  color: rgba(237, 232, 224, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 17px;
  border: 1px solid rgba(201, 164, 85, 0.46);
  color: var(--gold-bright);
  background: rgba(201, 164, 85, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(201, 164, 85, 0.15);
}

.btn--blue {
  border-color: rgba(86, 191, 214, 0.42);
  color: #9ee6f4;
  background: rgba(86, 191, 214, 0.08);
}

.section {
  padding: clamp(30px, 5vw, 54px) 0;
  border-bottom: 1px solid var(--gold-soft);
}

.section:last-of-type {
  border-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.95;
}

h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.02;
}

p {
  margin-top: 0;
}

.section-copy,
.card p,
.split p,
.note {
  color: var(--text-muted);
}

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

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

.card {
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 88% 10%, rgba(86, 191, 214, 0.08), transparent 16rem),
    rgba(15, 15, 14, 0.78);
}

.card--accent {
  border-color: rgba(201, 164, 85, 0.30);
  background:
    radial-gradient(circle at 80% 12%, rgba(201, 164, 85, 0.14), transparent 16rem),
    rgba(15, 15, 14, 0.82);
}

.card .kicker {
  display: block;
  margin-bottom: 12px;
}

.card p:last-child,
.split p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #050606;
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 85, 0.26);
  background: #050606;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.figure-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 14, 0.78);
}

.figure-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.figure-card figcaption {
  min-height: 82px;
  padding: 14px 16px 16px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.callout-panel {
  border: 1px solid rgba(201, 164, 85, 0.26);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 92% 10%, rgba(201, 164, 85, 0.12), transparent 18rem),
    rgba(15, 15, 14, 0.78);
}

.callout-panel p:last-child {
  margin-bottom: 0;
}

.quote-line {
  max-width: 760px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.footer {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--text-dim);
  font-size: 0.77rem;
}

.footer__badge {
  justify-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 164, 85, 0.38);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
}

@media (max-width: 900px) {
  .nav,
  .content,
  .footer {
    width: calc(100% - 42px);
  }

  .hero,
  .section-heading,
  .split,
  .grid,
  .grid--two,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .stance {
    border-left: 0;
    border-top: 1px solid var(--gold-soft);
    padding: 22px 0 0;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 64px;
  }

  .nav__links {
    gap: 16px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer em {
    display: none;
  }
}
