/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--heading);
}
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

:root {
  --bg: #0b0f1a;
  --bg-alt: #0f1424;
  --text: #cfd4e2;
  --text-dim: #8b91a6;
  --heading: #f5f2ea;
  --gold: #cda349;
  --gold-bright: #e6c26b;
  --border: rgba(205, 163, 73, 0.18);
  --card-bg: #10162a;
  --max: 1100px;
  --max-narrow: 720px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #0b0f1a; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: var(--heading); letter-spacing: 0.01em;
}
.brand-dot { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none; color: var(--text-dim); font-size: 15px;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--heading); }
.nav-cta {
  color: #0b0f1a !important; background: var(--gold);
  padding: 8px 18px; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #0b0f1a; }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-block { width: 100%; text-align: center; font-size: 16.5px; padding: 16px; }

/* ---------- Hero ---------- */
.hero { padding: 120px 0 90px; text-align: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px;
  color: var(--gold-bright); font-weight: 600; margin-bottom: 22px;
}
.eyebrow a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 880px; margin: 0 auto 26px;
}
.hero-sub {
  max-width: 640px; margin: 0 auto 36px;
  color: var(--text); font-size: 18px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; border-top: 1px solid var(--border); }
.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  text-align: center; margin-bottom: 14px;
}
.section-sub {
  text-align: center; color: var(--text-dim);
  max-width: 560px; margin: 0 auto 48px; font-size: 16.5px;
}

.story h2, .who h2, .offer h2 { text-align: left; max-width: var(--max-narrow); }
.offer .section-sub { text-align: left; margin: 0 0 40px; }
.story p, .who p { color: var(--text); font-size: 17.5px; }

/* ---------- Offer ---------- */
.offer-list { margin: 0; }
.offer-item {
  padding: 28px 0; border-top: 1px solid var(--border);
}
.offer-item:last-child { border-bottom: 1px solid var(--border); }
.offer-item dt {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--heading); margin-bottom: 8px;
}
.offer-item dd {
  margin: 0; color: var(--text-dim); font-size: 16.5px; max-width: 560px;
}

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; max-width: 640px; margin: 0 auto; }
.steps li {
  counter-increment: step;
  position: relative; padding: 22px 0 22px 48px;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step) ".";
  position: absolute; left: 0; top: 22px;
  font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold);
}
.steps h3 { font-size: 18px; margin-bottom: 4px; }
.steps p { color: var(--text-dim); font-size: 15.5px; margin: 0; }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer; font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--heading); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--gold); font-size: 22px; margin-left: 16px;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-dim); margin-top: 14px; font-size: 16px; }

/* ---------- Form ---------- */
.apply { background: var(--bg-alt); }
.app-form { margin-top: 8px; }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; margin-bottom: 8px; font-size: 15px;
  color: var(--heading); font-weight: 500;
}
.req { color: var(--gold-bright); }
.form-row input, .form-row textarea {
  width: 100%; background: #151b30; border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 14px; color: var(--text);
  font-family: inherit; font-size: 15.5px; resize: vertical;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-note { text-align: center; color: var(--text-dim); font-size: 13.5px; margin-top: 16px; }
.hp-field { position: absolute; left: -9999px; }

.form-success {
  text-align: center; background: var(--card-bg); border: 1px solid var(--gold);
  border-radius: 14px; padding: 48px 32px; margin-top: 8px;
}
.form-success h3 { color: var(--gold-bright); }
.form-success p { color: var(--text); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: var(--text-dim); font-size: 14px;
}
.footer-inner a { color: var(--gold-bright); text-decoration: none; }
.footer-inner p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 780px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 90px 0 64px; }
  .section { padding: 64px 0; }
  .steps li { padding-left: 36px; }
}
