* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: -9999px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 8px;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px 40px;
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
}

.topnav-logo {
  flex: 0 0 auto;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.17rem;
  font-weight: 700;
  text-decoration: none;
}

.topnav-logo span {
  color: var(--gold-light);
}

.topnav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topnav-links a {
  color: #ededed;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.topnav-links a:hover {
  color: var(--gold-light);
}

.topnav-links .topnav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 3px;
}

.breadcrumb {
  padding: 10px 40px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb span {
  margin: 0 7px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 24px 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 72%, #2a0b11 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(212, 175, 90, 0.23);
  border-radius: 50%;
  content: "";
}

.hero-inner,
.container {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
}

h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(2.35rem, 5.5vw, 4.4rem);
  font-weight: 700;
}

h1 span {
  color: var(--gold-light);
}

.hero-lede {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.8vw, 1.23rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.orientation {
  width: min(calc(100% - 40px), 980px);
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  box-shadow: 0 16px 38px rgba(10, 10, 10, 0.09);
}

.orientation p {
  margin: 0;
}

.section {
  padding: 68px 24px;
}

.section-ivory {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.84);
}

.section h2 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 600;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-intro {
  max-width: 840px;
  margin: 0 0 32px;
  color: var(--muted);
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

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

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}

.card h3 {
  margin: 0 0 11px;
  color: var(--dark);
  font-size: 1.28rem;
}

.card p,
.card ul {
  margin-top: 0;
  color: var(--muted);
}

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

.card a {
  font-weight: 650;
}

.fact-list,
.checklist,
.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.checklist li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 25px;
}

.fact-list li::before,
.checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "—";
  font-weight: 800;
}

.resource-band {
  padding: 28px;
  background: var(--light);
  border-left: 4px solid var(--gold);
}

.resource-band p:last-child {
  margin-bottom: 0;
}

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

.decision-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
}

.decision-panel h3 {
  margin-top: 0;
  color: var(--dark);
  font-size: 1.45rem;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

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

.source-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.source-list a {
  color: var(--gold-light);
  font-weight: 650;
}

.source-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
}

.cta-final {
  padding: 64px 24px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.cta-final h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.cta-final p {
  max-width: 700px;
  margin: 0 auto 24px;
}

.cta-final .button-row {
  justify-content: center;
}

.cta-final .button-primary {
  background: var(--white);
  color: var(--dark);
}

.cta-final .button-secondary {
  border-color: var(--white);
}

.byline {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer {
  padding: 42px 24px;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer p {
  margin: 6px 0;
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .topnav {
    padding-inline: 20px;
  }

  .topnav-links a:not(.topnav-cta) {
    display: none;
  }

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

@media (max-width: 768px) {
  .breadcrumb {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 58px;
  }

  .section {
    padding-block: 52px;
  }

  .card-grid,
  .card-grid-three,
  .decision-grid,
  .source-list {
    grid-template-columns: 1fr;
  }

  .orientation {
    padding: 21px 22px;
  }

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

  .card,
  .decision-panel {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .topnav {
    gap: 10px;
    padding-inline: 12px;
  }

  .topnav-logo {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.15;
  }

  .topnav-links {
    flex: 0 1 auto;
    min-width: 0;
    gap: 0;
  }

  .topnav-links .topnav-cta {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.72rem;
    line-height: 1.25;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
