:root {
  --bg: #050806;
  --bg-soft: #09140d;
  --panel: rgba(10, 26, 17, .84);
  --panel-strong: #0b1f14;
  --ink: #fff6dd;
  --muted: #c7b98d;
  --gold: #d8a63a;
  --gold-bright: #ffe28a;
  --green: #0f6d42;
  --line: rgba(226, 178, 67, .28);
  --shadow: 0 26px 80px rgba(0, 0, 0, .42);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 166, 58, .16), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(15, 109, 66, .28), transparent 30rem),
    linear-gradient(180deg, #050806 0%, #08120c 46%, #030604 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 9, 6, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img { width: 214px; }

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #ddcf9e;
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #121007;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 32px rgba(216, 166, 58, .2);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 31, 20, .9);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--gold-bright);
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 15px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.lead {
  max-width: 58ch;
  font-size: 19px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(216, 166, 58, .18);
}

.btn-primary {
  color: #120f06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.btn-secondary {
  color: var(--gold-bright);
  background: rgba(10, 26, 17, .72);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.media-frame,
.hero-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #07130c;
  box-shadow: var(--shadow);
}

.hero-card img,
.media-frame img {
  width: 100%;
  object-fit: cover;
}

.hero-card img { aspect-ratio: 16 / 9; }
.media-frame.wide img { aspect-ratio: 16 / 9; }
.media-frame.tall img { aspect-ratio: 9 / 16; }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.quick-pill,
.card,
.note-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 42, 27, .86), rgba(5, 13, 8, .86));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}

.quick-pill {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-pill strong {
  display: grid;
  min-width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #130f06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.quick-pill span {
  color: #eadba9;
  font-weight: 800;
}

.section { padding: 58px 0; }

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
  gap: 30px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(380px, .85fr) minmax(0, 1fr);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 226, 138, .55);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .32);
}

.card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #120f06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-weight: 1000;
}

.note-panel {
  padding: 26px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: #e7d8a7;
  line-height: 1.65;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 226, 138, .7);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
}

.faq-item button::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open button::after { content: "-"; }

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-answer { display: block; }

.page-hero {
  padding: 64px 0 36px;
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
  gap: 30px;
  align-items: center;
}

.prose {
  max-width: 760px;
}

.prose h2 { margin-top: 30px; }

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #030604;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: #e1cf95;
  font-weight: 800;
  transition: color .2s ease;
}

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

@media (max-width: 980px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 9, 6, .96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .hero-grid,
  .split,
  .split.reverse,
  .page-hero .container {
    grid-template-columns: 1fr;
  }
  .grid.three,
  .grid.four,
  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 184px; }
  .hero,
  .page-hero { padding-top: 42px; }
  .quick-strip,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .button-row {
    flex-direction: column;
  }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .media-frame.tall {
    max-width: 360px;
    margin-inline: auto;
  }
}
