:root {
  --background: #020202;
  --section: #080808;
  --gold: #d9a441;
  --gold-soft: #f0cf80;
  --text: #fff7e8;
  --muted: #d9d0bd;
  --line: rgba(217, 164, 65, 0.42);
  --panel: #0c0c0c;
  --panel-2: #12100c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
}

a {
  color: var(--text);
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold-soft);
}

.site-header {
  background: #030303;
  border-bottom: 1px solid rgba(217, 164, 65, 0.18);
}

.nav {
  align-items: center;
  display: flex;
  gap: 42px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 34px 22px 26px;
}

.brand {
  align-items: center;
  color: var(--gold-soft);
  display: flex;
  gap: 16px;
  text-decoration: none;
  text-shadow: 0 0 14px rgba(217, 164, 65, 0.45);
}

.brand-mark,
.legacy-emblem {
  align-items: center;
  border: 2px solid var(--gold);
  color: var(--gold-soft);
  display: inline-flex;
  font-size: 1.2rem;
  height: 54px;
  justify-content: center;
  position: relative;
  transform: rotate(45deg);
  width: 54px;
}

.brand-mark::before,
.legacy-emblem::before {
  border: 1px solid rgba(217, 164, 65, 0.55);
  content: "";
  inset: 8px;
  position: absolute;
}

.brand-mark {
  height: 42px;
  width: 42px;
}

.brand-mark,
.legacy-emblem {
  font-weight: 700;
}

.brand-mark *,
.legacy-emblem * {
  transform: rotate(-45deg);
}

.brand span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 2rem;
  line-height: 0.9;
}

.brand small {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--gold-soft);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  border-bottom: 3px solid var(--gold);
  color: var(--gold);
  padding-bottom: 10px;
}

.page-hero,
.section,
.article,
.footer-inner,
.legacy-hero,
.legacy-columns,
.journey {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 22px;
  padding-right: 22px;
}

.legacy-hero {
  min-height: 610px;
  overflow: hidden;
  padding-bottom: 56px;
  padding-top: 48px;
  position: relative;
  text-align: center;
}

.wave {
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-color: rgba(217, 164, 65, 0.22) transparent transparent rgba(217, 164, 65, 0.22);
  border-radius: 50%;
  height: 520px;
  opacity: 0.75;
  position: absolute;
  top: -80px;
  width: 520px;
}

.wave::before,
.wave::after {
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-color: rgba(217, 164, 65, 0.18) transparent transparent rgba(217, 164, 65, 0.18);
  border-radius: 50%;
  content: "";
  inset: 18px;
  position: absolute;
}

.wave::after {
  inset: 38px;
}

.wave-left {
  left: -290px;
  transform: rotate(20deg);
}

.wave-right {
  right: -260px;
  top: 230px;
  transform: rotate(200deg);
}

.legacy-brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 22px;
  margin-bottom: 34px;
  text-align: left;
}

.legacy-brand-lockup strong {
  color: var(--gold-soft);
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.9;
  text-shadow: 0 0 16px rgba(217, 164, 65, 0.5);
}

.legacy-brand-lockup small {
  color: var(--gold);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.46em;
  margin-top: 8px;
}

.legacy-emblem {
  height: 82px;
  width: 82px;
}

.legacy-rule {
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  height: 1px;
  margin: 0 auto 34px;
  max-width: 760px;
}

.eyebrow,
.label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 4.6rem);
  margin: 10px auto 14px;
  max-width: 980px;
}

h2 {
  color: var(--gold-soft);
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  margin: 0 0 18px;
}

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

p {
  color: var(--muted);
  margin: 0 0 18px;
}

.legacy-subtitle {
  color: #ffffff;
  font-size: 1.15rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.legacy-hero > h2 {
  color: var(--gold);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-style: italic;
  margin-top: 28px;
  text-transform: uppercase;
}

.legacy-topics {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.28;
  margin: 0 auto 34px;
  max-width: 920px;
  text-shadow: 0 0 18px rgba(217, 164, 65, 0.4);
}

.legacy-topics a {
  text-decoration: none;
}

.legacy-topics span {
  color: var(--gold);
}

.feature {
  background: rgba(8, 8, 8, 0.84);
  border: 1px solid var(--line);
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding: 24px 28px;
}

.legacy-feature {
  box-shadow: 0 0 36px rgba(217, 164, 65, 0.08);
}

.feature-title {
  color: var(--text);
  display: inline-block;
  font-size: 1.65rem;
  line-height: 1.16;
  margin: 8px 0 14px;
  text-decoration-thickness: 1px;
}

.cta,
.read-more {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  display: inline-block;
  font-weight: 700;
  margin-top: 10px;
  padding: 10px 16px;
  text-decoration: none;
}

.read-more {
  border: 0;
  padding: 0;
}

.legacy-columns {
  background: #070707;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  padding-bottom: 44px;
  padding-top: 42px;
}

.legacy-columns article {
  margin: 0 auto;
  max-width: 330px;
  text-align: center;
}

.legacy-columns h2 {
  color: var(--gold);
  font-size: 1.35rem;
  font-style: italic;
}

.section {
  padding-bottom: 70px;
  padding-top: 70px;
}

.portfolio-preview {
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.12), transparent 24%),
    #fff8ee;
  color: #111;
}

.portfolio-preview h2,
.portfolio-preview h3,
.portfolio-preview a {
  color: #111;
}

.portfolio-preview p {
  color: #2e2a24;
}

.portfolio-preview .eyebrow {
  color: #8a641c;
}

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

.topic,
.insight-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(60, 43, 14, 0.18);
  border-radius: 0;
  padding: 22px;
}

.home-about {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: space-between;
}

.home-about div {
  max-width: 760px;
}

.newsroom-preview {
  border-top: 1px solid var(--line);
}

.newsroom-preview .eyebrow a {
  color: var(--gold);
  text-decoration: none;
}

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

.newsroom-grid article,
.press-list article {
  border-bottom: 1px solid rgba(217, 164, 65, 0.28);
  padding: 0 0 22px;
}

.newsroom-grid h3,
.press-list h2 {
  font-size: 1.36rem;
}

.journey {
  background:
    radial-gradient(circle at center, rgba(217, 164, 65, 0.16), transparent 55%),
    var(--section);
  border-top: 1px solid var(--line);
  max-width: none;
  padding-bottom: 76px;
  padding-top: 72px;
  text-align: center;
}

.page-hero {
  padding-bottom: 46px;
  padding-top: 66px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.content-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.legacy-strip {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 28px;
}

.legacy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legacy-tags a {
  border: 1px solid var(--line);
  color: var(--gold-soft);
  padding: 8px 12px;
  text-decoration: none;
}

.link-list {
  background: var(--panel);
  border: 1px solid rgba(217, 164, 65, 0.2);
  padding: 22px;
}

.link-list ul,
.article ul {
  margin: 0;
  padding-left: 20px;
}

.link-list li,
.article li {
  color: var(--muted);
  margin-bottom: 10px;
}

.article {
  max-width: 900px;
  padding-bottom: 76px;
  padding-top: 58px;
}

.article h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.article h2 {
  margin-top: 42px;
}

.article-meta {
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  padding-bottom: 34px;
  padding-top: 34px;
}

.footer-inner p {
  max-width: 720px;
}

.not-found {
  min-height: 64vh;
}

@media (max-width: 900px) {
  .nav,
  .home-about,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .legacy-columns,
  .grid,
  .newsroom-grid,
  .press-list,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .legacy-brand-lockup {
    flex-direction: column;
    text-align: center;
  }

  .wave-left {
    left: -390px;
  }

  .wave-right {
    right: -390px;
  }
}
