:root {
  --black: #050505;
  --black-2: #0b0a08;
  --charcoal: #11110f;
  --panel: rgba(255,255,255,0.065);
  --panel-strong: rgba(255,255,255,0.105);
  --gold: #d9b66a;
  --gold-2: #f2d58a;
  --gold-dark: #7d5a1d;
  --cream: #f8f1df;
  --muted: #b8ad98;
  --line: rgba(217, 182, 106, 0.28);
  --danger: #ffcf9b;
  --success: #d5ffc6;
  --shadow: 0 28px 80px rgba(0,0,0,0.45);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% -10%, #2c2414 0%, #0b0a08 36%, #050505 68%);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(217,182,106,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(217,182,106,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
  pointer-events: none;
  z-index: -2;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  z-index: 100;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: #fff3c7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  padding: 0 clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,182,106,0.18);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .16em; }
.brand img { width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 10px 40px rgba(217,182,106,.12); }
.brand span { color: var(--gold-2); font-family: Georgia, 'Times New Roman', serif; font-size: 21px; }
.nav { display: flex; align-items: center; gap: 26px; color: #e6dbc4; font-size: 14px; }
.nav a { opacity: .86; transition: .25s ease; }
.nav a:hover { color: var(--gold-2); opacity: 1; }
.nav-cta { border: 1px solid var(--line); padding: 12px 18px; border-radius: 999px; background: rgba(217,182,106,.08); }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 28px; }

.section-pad { padding: clamp(76px, 10vw, 132px) 24px; }
.container { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: 840px; text-align: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.split.reverse { grid-template-columns: .92fr 1.08fr; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: 56px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% -12%;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(217,182,106,0.16), transparent 65%);
  pointer-events: none;
}
.hero-bg-orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(42px); opacity: .25; }
.orb-one { background: var(--gold); top: 12%; left: -120px; }
.orb-two { background: #ffffff; bottom: 8%; right: -180px; opacity: .08; }
.hero-logo-wrap {
  width: min(380px, 78vw);
  margin: 0 auto 16px;
  position: relative;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(217,182,106,.32);
}
.hero-logo {
  border-radius: 42px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(217,182,106,.25);
  position: relative;
}
.hero-content { max-width: 980px; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 16px;
}
h1, h2, h3 { line-height: 1.05; margin-top: 0; }
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5.6vw, 68px);
  font-weight: 500;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}
h3 { font-size: 21px; letter-spacing: -.015em; margin-bottom: 12px; }
p { color: var(--muted); font-size: 17px; }
.hero-lede { font-size: clamp(18px, 2vw, 23px); max-width: 860px; margin: 0 auto 34px; color: #dfd2ba; }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .015em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #080705; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 16px 40px rgba(217,182,106,.22); }
.btn-secondary { color: var(--cream); border-color: var(--line); background: rgba(255,255,255,.045); }
.btn.full { width: 100%; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.trust-strip span {
  border: 1px solid rgba(217,182,106,.22);
  background: rgba(255,255,255,.04);
  color: #e7d9bd;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.statement { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(217,182,106,.035)); }
.cards-grid { display: grid; gap: 18px; margin-top: 38px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.glass-card, .quote-panel, .lead-form, .metric-card, .category-grid div, .step {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.032));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
}
.glass-card p, .metric-card p { font-size: 15.5px; margin-bottom: 0; }
.glass-card.small { padding: 24px; }
.private-access, .keys, .application { background: rgba(255,255,255,.018); }
.tick-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; color: #dbcdb4; }
.tick-list li { position: relative; padding-left: 30px; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--gold-2); font-weight: 900; }

.lead-form h3 { margin-bottom: 8px; }
.lead-form p { margin-top: 0; font-size: 15px; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label, legend {
  display: block;
  color: #eadfc9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-top: 14px;
}
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(217,182,106,.28);
  background: rgba(0,0,0,.36);
  color: var(--cream);
  padding: 14px 15px;
  border-radius: 14px;
  outline: none;
  font: inherit;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold-2); box-shadow: 0 0 0 4px rgba(217,182,106,.12); }
select option { background: #111; color: #fff; }
.check { display: flex; align-items: flex-start; gap: 10px; line-height: 1.35; }
.check input { width: auto; margin-top: 2px; }
.checkbox-group { border: 1px solid rgba(217,182,106,.22); border-radius: 18px; padding: 16px; margin: 18px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
.checkbox-group legend { padding: 0 8px; margin-top: 0; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #d9ceb8; }
.checkbox-group input { width: auto; margin: 0; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 14px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.category-grid div { padding: 24px; min-height: 182px; }
.category-grid span { display: block; color: var(--gold-2); font-weight: 900; margin-bottom: 20px; opacity: .82; }
.category-grid strong { display: block; color: var(--cream); font-size: 18px; margin-bottom: 10px; }
.category-grid p { font-size: 14.5px; margin: 0; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px; }
.step { padding: 24px; position: relative; }
.step span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #080705; background: var(--gold-2); font-weight: 900; margin-bottom: 22px; }
.step p { font-size: 14.5px; margin-bottom: 0; }
.quote-panel { min-height: 430px; display: flex; flex-direction: column; justify-content: center; }
.quote-panel blockquote { margin: 0 0 24px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(30px, 4vw, 54px); line-height: 1.05; color: #fff2c7; letter-spacing: -.04em; }

.wide-text { max-width: 950px; }
.table-wrap { overflow-x: auto; margin-top: 34px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 780px; background: rgba(0,0,0,.22); }
th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid rgba(217,182,106,.14); }
th { color: var(--gold-2); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; background: rgba(217,182,106,.08); }
td { color: #e8ddc8; }
tr:last-child td { border-bottom: 0; }
.metric-card span { color: var(--gold-2); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.metric-card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 42px; color: #fff; margin: 12px 0; }

.site-footer {
  text-align: center;
  padding: 48px 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  display: block;
  margin: 0 auto 16px auto;
  max-width: 72px;
  height: auto;
}

.footer-brand h2 {
  margin: 0 0 8px 0;
  text-align: center;
}

.footer-brand p {
  margin: 0;
  text-align: center;
}

.copyright {
  margin: 0;
  text-align: center;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1060px) {
  .cards-grid.four, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5,5,5,.94);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; border-bottom: 1px solid rgba(217,182,106,.12); }
  .nav a:last-child { border-bottom: 0; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .cards-grid.three, .cards-grid.four, .category-grid, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .form-grid.two, .checkbox-group { grid-template-columns: 1fr; }
  .section-pad { padding-left: 18px; padding-right: 18px; }
  .hero-logo-wrap { width: min(300px, 78vw); }
  h1 { font-size: clamp(42px, 13vw, 66px); }
}


/* Netlify Forms honeypot field */
.netlify-hidden { display: none !important; }
