:root {
  --bg: #030604;
  --panel: rgba(8, 24, 15, .86);
  --panel-strong: #07160e;
  --ink: #fff4cf;
  --muted: #c9b77d;
  --gold: #d7a641;
  --gold-bright: #ffe492;
  --green: #0b7a45;
  --line: rgba(221, 173, 68, .3);
  --shadow: 0 26px 76px rgba(0, 0, 0, .48);
  --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(215, 166, 65, .15), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(11, 122, 69, .2), transparent 30rem),
    linear-gradient(180deg, #030604 0%, #07120c 50%, #020403 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;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 6, 4, .86);
  backdrop-filter: blur(18px);
}

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

.brand {
  width: 260px;
  max-width: 52vw;
}

.brand img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #e2d19a;
  font-size: 14px;
  font-weight: 850;
  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: #161006;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 34px rgba(215, 166, 65, .22);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 24, 15, .92);
  cursor: pointer;
}

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

.hero,
.page-hero {
  padding: 66px 0 34px;
}

.hero-grid,
.split,
.page-grid,
.footer-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hero-copy,
.split-copy,
.page-copy {
  flex: 1 1 0;
  min-width: 0;
}

.hero-media {
  flex: 1.16 1 0;
  min-width: 460px;
}

.page-media,
.split-media {
  flex: .92 1 0;
  min-width: 390px;
}

.eyebrow {
  margin: 0 0 14px;
  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, 74px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.06;
  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: 60ch;
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  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 44px rgba(215, 166, 65, .18);
}

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

.btn-secondary {
  color: var(--gold-bright);
  background: rgba(8, 24, 15, .72);
}

.media-frame,
.card,
.quick-pill,
.note-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(9, 30, 18, .88), rgba(3, 9, 6, .9));
  box-shadow: var(--shadow);
}

.media-frame {
  overflow: hidden;
}

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

.ratio-wide img { aspect-ratio: 16 / 9; }
.ratio-standard img { aspect-ratio: 4 / 3; }
.ratio-square img { aspect-ratio: 1 / 1; }
.ratio-logo img { aspect-ratio: 3 / 1; object-fit: contain; }

.quick-strip,
.card-row {
  display: flex;
  gap: 14px;
}

.quick-strip {
  margin-top: 24px;
}

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

.quick-pill strong,
.card .icon {
  display: grid;
  place-items: center;
  color: #130f05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-weight: 1000;
}

.quick-pill strong {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
}

.quick-pill span {
  color: #eadba7;
  font-weight: 850;
}

.section {
  padding: 58px 0;
}

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

.card-row {
  flex-wrap: wrap;
}

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

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 228, 146, .56);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .34);
}

.card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
}

.note-panel {
  padding: 26px;
}

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

.list li {
  position: relative;
  padding-left: 24px;
  color: #e7d7a0;
  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, 228, 146, .74);
}

.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; }

.prose {
  max-width: 760px;
}

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

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

.footer-grid {
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

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

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

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

@media (max-width: 1080px) {
  .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(3, 6, 4, .96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .menu-button { display: block; }
  .hero-grid,
  .split,
  .page-grid,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-media,
  .page-media,
  .split-media {
    min-width: 0;
  }
  .quick-strip {
    flex-wrap: wrap;
  }
  .quick-pill {
    flex-basis: calc(50% - 7px);
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand { width: 210px; }
  .hero,
  .page-hero { padding-top: 42px; }
  .quick-pill,
  .card {
    flex-basis: 100%;
  }
  .actions,
  .button-row {
    flex-direction: column;
  }
  .btn { width: 100%; }
  .footer-links { justify-content: flex-start; }
}
