:root {
  --bg: #090a0c;
  --bg-soft: #101216;
  --panel: #13161b;
  --panel-2: #0d0f12;
  --text: #f3efe7;
  --muted: #a7a298;
  --gold: #d1b16d;
  --gold-2: #f0d79c;
  --line: rgba(209,177,109,.22);
  --white-line: rgba(255,255,255,.09);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(209,177,109,.07), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

body::selection { background: var(--gold); color: #111; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(9,10,12,.78);
  border-bottom: 1px solid var(--white-line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  transform: rotate(45deg);
}

.brand-mark::first-line { transform: rotate(-45deg); }

.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 13px; letter-spacing: .16em; }
.brand-copy small { margin-top: 5px; font-size: 8px; color: var(--muted); letter-spacing: .24em; }

.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a, .site-footer a {
  color: #d7d3ca;
  text-decoration: none;
  font-size: 13px;
  transition: .25s ease;
}
.main-nav a:hover, .site-footer a:hover { color: var(--gold-2); }

.nav-cta {
  text-decoration: none;
  color: #101113;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 600;
  padding: 12px 18px;
  letter-spacing: .05em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--white-line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .28;
}
.hero-glow-1 { width: 420px; height: 420px; right: -140px; top: -160px; background: rgba(209,177,109,.22); }
.hero-glow-2 { width: 320px; height: 320px; left: -100px; bottom: -170px; background: rgba(110,90,50,.16); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 74px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  margin-bottom: 18px;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .97;
  font-weight: 600;
  letter-spacing: -.035em;
}

h1 em { color: var(--gold-2); font-weight: 500; }

.hero-lead {
  max-width: 690px;
  color: #beb9ae;
  font-size: 17px;
}

.hero-actions { display: flex; gap: 12px; margin: 35px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: .25s ease;
}

.btn-gold {
  color: #0a0b0d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(209,177,109,.15); }

.btn-outline {
  color: var(--text);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }

.btn-light {
  background: #e8e4dc;
  color: #111;
}
.btn-light:hover { transform: translateY(-2px); }

.full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: #716e67;
  font-size: 9px;
  letter-spacing: .18em;
}
.trust-row i { width: 28px; height: 1px; background: var(--line); }

.hero-card {
  padding: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid rgba(209,177,109,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.mini-label { color: var(--gold-2); font-size: 9px; font-weight: 600; letter-spacing: .22em; }
.secure-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(209,177,109,.1); }

.hero-card h2, .confidentiality-card h3 {
  margin: 42px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1.05;
}
.hero-card p { color: var(--muted); font-size: 14px; }
.card-line { height: 1px; background: var(--line); margin: 30px 0; }
.card-stat { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
.card-stat strong { color: var(--gold-2); font: 600 30px "Cormorant Garamond", serif; }
.card-stat span { color: #8f8b83; font-size: 12px; }

.statement-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--white-line);
  background: #0c0e11;
}
.statement {
  margin: 0;
  text-align: center;
  color: #bab6ad;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 4vw, 38px);
}
.statement span { color: var(--gold-2); }

.section { padding: 110px 0; }
.section-dark {
  background: var(--bg-soft);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}
.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}
.section-title {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.025em;
}
.section-copy p {
  color: #aaa69d;
  font-size: 16px;
  margin-bottom: 20px;
}

.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered p { margin-top: 18px; color: var(--muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}
.step {
  padding: 35px 28px;
  min-height: 260px;
  border-right: 1px solid var(--white-line);
}
.step:last-child { border-right: 0; }
.step-num { color: var(--gold); font: 600 30px "Cormorant Garamond", serif; }
.step h3 { margin: 48px 0 14px; font-size: 17px; }
.step p { color: #8f8b83; font-size: 13px; }

.confidentiality-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.confidentiality-card {
  min-height: 430px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(150deg, rgba(209,177,109,.11), rgba(209,177,109,.015)),
    #101216;
  border: 1px solid var(--line);
}
.seal {
  width: max-content;
  padding: 8px 12px;
  color: var(--gold-2);
  border: 1px solid var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;
}
.confidentiality-card h3 { margin: 0; font-size: 44px; }
.confidentiality-copy p { margin-top: 25px; color: var(--muted); }
.feature-list { margin-top: 32px; display: grid; gap: 14px; }
.feature-list div { color: #d1cec7; font-size: 14px; }
.feature-list span { color: var(--gold); margin-right: 10px; }

.contact-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(209,177,109,.08), transparent 34%),
    #0a0b0d;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.form-card {
  padding: 40px;
  border: 1px solid var(--white-line);
  background: rgba(255,255,255,.018);
}
.form-card:nth-child(1) { border-top-color: var(--gold); }
.form-card:nth-child(2) { border-top-color: rgba(255,255,255,.35); }

.form-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 21px;
}
.form-card h3 {
  margin: 10px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
}
.form-intro { color: #96928a; font-size: 13px; }

.contact-form { display: grid; gap: 16px; margin-top: 28px; }
.contact-form label { color: #c8c4bc; font-size: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.1);
  background: #0a0c0f;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }

.check {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.check input { width: auto; margin-top: 3px; }
.check span { color: #88847c; line-height: 1.45; }

.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.legal-note {
  max-width: 760px;
  margin: 38px auto 0;
  color: #716e68;
  font-size: 11px;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--white-line);
  padding: 32px 0;
  background: #08090b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.site-footer p { margin: 0; color: #74716b; font-size: 11px; }
.site-footer a { justify-self: end; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 16px; }

.success-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  min-width: 320px;
  padding: 18px 20px;
  display: grid;
  gap: 3px;
  background: #15181d;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transform: translateY(30px);
  opacity: 0;
  transition: .35s ease;
}
.success-toast.show { transform: translateY(0); opacity: 1; }
.success-toast strong { color: var(--gold-2); }
.success-toast span { color: #aaa69e; font-size: 12px; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-cta { margin-left: auto; }
  .hero { padding-top: 80px; }
  .hero-grid,
  .split-grid,
  .confidentiality-grid { grid-template-columns: 1fr; gap: 46px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--white-line); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-header .brand-copy { display: none; }
  .nav-wrap { min-height: 68px; }
  .hero { padding: 66px 0 64px; }
  h1 { font-size: 50px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 78px 0; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--white-line); }
  .step:last-child { border-bottom: 0; }
  .forms-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .site-footer a { justify-self: center; }
  .footer-brand { justify-self: center; }
}
