:root {
  --gold: #e8cc7a;
  --gold-deep: #c9a84c;
  --gold-dim: rgba(232, 204, 122, 0.14);
  --gold-line: rgba(232, 204, 122, 0.28);
  --bg: #101827;
  --bg-2: #152033;
  --bg-3: #1b2940;
  --text: #f6f1e6;
  --muted: #b7ae9c;
  --ink: #070706;
  --radius: 14px;
  --max: 1120px;
  --header: 76px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "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: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f3df9c;
}

: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(--ink);
  padding: 8px 14px;
  font-weight: 600;
}

.skip:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(16, 24, 39, 0.78);
  border-bottom: 1px solid var(--gold-line);
}

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

.brand {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.brand img {
  width: 168px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

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

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

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

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

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

.nav-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(180deg, #f1d98c, var(--gold) 42%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(232, 204, 122, 0.22);
}

.btn-gold:hover {
  color: var(--ink);
  filter: brightness(1.06);
}

.btn-ghost {
  border-color: var(--gold-line);
  color: var(--gold);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 16px;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 12% 12%, rgba(232, 204, 122, 0.16), transparent 60%),
    radial-gradient(700px 420px at 90% 80%, rgba(232, 204, 122, 0.08), transparent 55%);
  z-index: -2;
}

.hero-art {
  display: none;
}

.hero-inner {
  padding: 64px 0 80px;
  max-width: 720px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 54ch;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.meta-row strong {
  color: var(--text);
  font-weight: 500;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-block: 1px solid var(--gold-line);
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.section p {
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

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

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

.card {
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

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

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-line);
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

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

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

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

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

.page-hero {
  padding: 56px 0 24px;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--serif);
  margin-top: 2.2em;
}

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

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand img {
  width: 140px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

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

.legal {
  border-top: 1px solid var(--gold-line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.updated {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-nav,
  .header-cta {
    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(16, 24, 39, 0.97);
    padding: 28px 22px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

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

  .grid-3,
  .grid-2,
  .footer-grid {
    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;
    overflow: hidden;
  }

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

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

  .hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(16, 24, 39, 0.28) 0%, rgba(16, 24, 39, 0.06) 42%, rgba(16, 24, 39, 0.45) 100%);
  }

  .hero-inner {
    padding: 48px 0 72px;
  }

  .brand img {
    width: 138px;
    height: 34px;
  }
}

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

  * {
    transition: none !important;
  }
}
