:root {
  --gold: #e8cc7a;
  --gold-deep: #c9a84c;
  --line: rgba(232, 204, 122, 0.22);
  --bg: #0b192f;
  --bg-2: #0e2038;
  --text: #f3eee4;
  --muted: #d0d9e6;
  --header: 72px;
  --sans: "DM Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 14px;
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 25, 47, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 150px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f1d98c, var(--gold) 42%, var(--gold-deep));
  color: #0b0f14;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232, 204, 122, 0.2);
}

.btn:hover {
  filter: brightness(1.06);
  color: #0b0f14;
}

.hero-logo {
  width: 220px;
  height: 52px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header));
  display: grid;
  place-items: center;
  isolation: isolate;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 380px at 50% 20%, rgba(232, 204, 122, 0.12), transparent 60%);
  z-index: -2;
}

.hero-art {
  display: none;
}

.hero-inner {
  width: min(640px, calc(100% - 40px));
  padding: 56px 0 72px;
}

.hero h1,
.page h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.lede {
  margin: 0 auto 28px;
  color: var(--muted);
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.meta-row {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.03em;
}

.section > .wrap > p,
.prose p,
.prose li {
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  padding: 22px 0 0;
  border-top: 2px solid var(--gold);
}

.card h3 {
  margin: 14px 0 8px;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page {
  padding: 48px 0 72px;
  max-width: 68ch;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.prose h2 {
  margin-top: 2em;
  font-size: 1.2rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 8px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 14px;
}

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

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    inset: var(--header) 0 0 0;
    background: rgba(11, 25, 47, 0.97);
    padding: 28px 22px;
    opacity: 0;
    pointer-events: none;
    z-index: 30;
  }

  .nav-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    margin-top: calc(var(--header) * -1);
    padding-top: var(--header);
  }

  .hero-art {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
  }

  .hero-art picture,
  .hero-art img {
    width: 100%;
    height: 100%;
  }

  .hero-art img {
    object-fit: cover;
    object-position: center 16%;
    opacity: 0.9;
  }

  .hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 25, 47, 0.35), rgba(11, 25, 47, 0.12) 40%, rgba(11, 25, 47, 0.78));
  }
}
