:root {
  --navy: #07182a;
  --navy-2: #0d263f;
  --ink: #142235;
  --gold: #c9a45c;
  --gold-light: #e5ce9b;
  --paper: #f5f1e9;
  --white: #ffffff;
  --muted: #657080;
  --line: rgba(7, 24, 42, 0.13);
  --shadow: 0 24px 70px rgba(7, 24, 42, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf7;
  font-family: var(--sans);
  line-height: 1.65;
}

img { display: block; width: 100%; }
a { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(7, 24, 42, 0.97);
  border-bottom: 1px solid rgba(201, 164, 92, 0.35);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: 0.15em;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { margin-top: 5px; font-size: 0.58rem; color: var(--gold-light); }

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

nav a {
  position: relative;
  padding: 31px 0 27px;
  color: rgba(255,255,255,0.76);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a.is-current { color: var(--white); }

nav a.is-current::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--gold);
}

.header-call {
  padding: 11px 15px;
  color: var(--gold-light);
  border: 1px solid rgba(201,164,92,0.55);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(201,164,92,0.15), transparent 31%),
    linear-gradient(135deg, var(--navy), #0b2946 72%, #07182a);
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201,164,92,0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(201,164,92,0.04), 0 0 0 180px rgba(201,164,92,0.025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.08;
}

h1 { max-width: 830px; font-size: clamp(2.9rem, 6.5vw, 5.7rem); }
h1 span { color: var(--gold-light); }
.hero-copy { max-width: 700px; margin: 28px 0 0; color: rgba(255,255,255,0.74); font-size: 1.05rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--gold { color: var(--navy); background: var(--gold); }
.button--gold:hover { background: var(--gold-light); }
.button--outline { color: var(--white); border-color: rgba(255,255,255,0.34); }
.button--outline:hover { background: rgba(255,255,255,0.08); }

.hero-note {
  padding: 26px;
  border-top: 1px solid rgba(201,164,92,0.65);
  background: rgba(255,255,255,0.05);
}

.hero-note__number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
}

.hero-note p { margin: 6px 0; color: rgba(255,255,255,0.72); }
.hero-note strong { color: var(--white); }

.disclosure { background: var(--paper); border-bottom: 1px solid var(--line); }
.disclosure-inner { display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding-block: 18px; font-size: 0.82rem; }
.disclosure-inner strong { color: var(--navy); }
.disclosure-inner p { margin: 0; color: var(--muted); }
.disclosure-inner a { color: var(--navy); font-weight: 800; }

.section { padding-block: 88px; }
.section--posts { padding-top: 15px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 32px; }

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.featured__media { position: relative; min-height: 420px; }
.featured__media img { height: 100%; object-fit: cover; }
.featured__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 64px); }
.featured__content h2 { margin: 8px 0 22px; font-size: clamp(2rem, 4vw, 3.6rem); }
.featured__content > p:not(.eyebrow):not(.concept-label) { margin: 0; color: rgba(255,255,255,0.76); }
.featured__content .button { align-self: flex-start; margin-top: 26px; }

.featured__meta,
.blog-card__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--gold-light); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.concept-label {
  margin: 20px 0 0;
  color: var(--gold-light) !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button {
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 700 0.7rem var(--sans);
  cursor: pointer;
}
.filter-button:hover,
.filter-button.is-active { color: var(--white); background: var(--navy); border-color: var(--navy); }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(7,24,42,0.1); }
.blog-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper); }
.blog-card__media img { height: 100%; object-fit: cover; transition: transform 300ms ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.025); }
.blog-card__content { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.blog-card__meta { color: #7e6941; }
.blog-card h2 { margin: 13px 0 15px; color: var(--navy); font-size: 1.55rem; }
.blog-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.blog-card .concept-label { margin-top: 18px; color: #7e6941 !important; font-size: 0.61rem; }
.text-link { margin-top: auto; padding-top: 22px; color: var(--navy); font-size: 0.77rem; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--gold); }

.draft-badge { position: absolute; top: 14px; left: 14px; padding: 7px 10px; color: var(--navy); background: var(--gold-light); border-radius: 2px; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.empty-state { padding: 28px; color: var(--muted); background: var(--paper); border: 1px solid var(--line); text-align: center; }

.cta-band { margin-top: 70px; color: var(--white); background: var(--navy-2); }
.cta-band__inner { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 780px; font-size: clamp(2rem, 4vw, 3.3rem); }
.cta-band .button { flex: 0 0 auto; }

.site-footer { padding: 54px 0; color: rgba(255,255,255,0.7); background: #04111f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.brand--footer { color: var(--white); }
.footer-grid p { max-width: 420px; font-size: 0.82rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 8px; font-size: 0.8rem; }
.footer-grid strong { margin-bottom: 6px; color: var(--gold-light); }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--white); }

@media (max-width: 980px) {
  .header-call { display: none; }
  nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-note { max-width: 430px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; flex-wrap: wrap; padding-block: 12px; }
  nav { order: 2; width: 100%; overflow-x: auto; }
  nav a { padding: 10px 0 12px; white-space: nowrap; }
  .hero { padding: 72px 0 64px; }
  .disclosure-inner { grid-template-columns: 1fr; gap: 4px; }
  .section { padding-block: 64px; }
  .featured { grid-template-columns: 1fr; }
  .featured__media { min-height: 300px; }
  .section-heading--row { display: block; }
  .filters { justify-content: flex-start; margin-top: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band__inner { min-height: 330px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
