:root {
  --ink: #0b0f17;
  --ink-soft: #1a2130;
  --paper: #fbfaf8;
  --paper-alt: #f2efea;
  --line: #e0dbd2;
  --body: #3b4353;
  --muted: #6b7386;
  --gold: #c69749;
  --gold-bright: #dcb26a;
  --measure: 68ch;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.021em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 3px;
  background:
    linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.brand-mark-sm { width: 18px; height: 18px; }
.brand-mark-sm::after { inset: 5px; }

.brand-name {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}

.site-header {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.15s ease;
}
.nav a:hover { color: #fff; }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 7px 17px;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.hero {
  background:
    radial-gradient(1000px 460px at 18% -8%, rgba(198,151,73,0.16), transparent 62%),
    var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 92px 0 84px;
}

.hero-inner { max-width: 940px; }

.kicker {
  color: var(--gold-bright);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  max-width: 24ch;
  margin-bottom: 26px;
}

.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  line-height: 1.6;
  max-width: 62ch;
  color: rgba(255,255,255,0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold-bright);
  color: var(--ink);
}
.btn-primary:hover { background: #e8c483; }

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.26);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 62px 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats dt {
  color: #fff;
  font-weight: 600;
  font-size: 0.99rem;
  margin-bottom: 7px;
}
.hero-stats dd {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}

.section { padding: 88px 0; }
.section-alt {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.25rem);
  max-width: 30ch;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.08rem;
  max-width: var(--measure);
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 28px 32px;
}
.card h3 {
  font-size: 1.13rem;
  margin-bottom: 12px;
  padding-top: 14px;
  border-top: 2px solid var(--gold);
  display: inline-block;
}
.card p {
  font-size: 0.97rem;
  line-height: 1.62;
}

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px 30px;
  counter-reset: step;
}
.steps li { position: relative; }
.step-num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.steps h3 {
  font-size: 1.06rem;
  margin-bottom: 9px;
}
.steps p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  margin-top: 44px;
}
.split h3 {
  font-size: 1.22rem;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.split p { font-size: 1rem; }

.section-contact {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.contact-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 28px;
}
.contact-block h3 {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.legal-address {
  font-style: normal;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.legal-name {
  font-weight: 600;
  color: var(--ink);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: baseline;
  font-size: 1.04rem;
}
.contact-line + .contact-line { margin-top: 12px; }
.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 52px;
}
.contact-line a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.contact-line a:hover { color: var(--gold); }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}
.footer-identity {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-legal {
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.85);
}
.footer-legal strong {
  color: #fff;
  font-weight: 600;
}
.footer-legal a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,151,73,0.6);
}
.footer-legal a:hover { color: var(--gold-bright); }

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 62px 0 58px; }
  .section { padding: 62px 0; }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 44px;
  }
  .hero h1 { max-width: none; }
  .section h2 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
