:root {
  --ink: #17202a;
  --muted: #5f6b76;
  --paper: #f6f3ed;
  --white: #ffffff;
  --navy: #18324a;
  --navy-2: #0f2436;
  --sand: #d8c6a3;
  --line: #d9dde2;
  --soft: #eef2f4;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(23,32,42,.08);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong { font-size: .98rem; }
.brand-text small { margin-top: 4px; color: var(--muted); font-size: .72rem; }

.nav {
  display: flex;
  gap: 24px;
  font-size: .9rem;
  color: #39434d;
}

.nav a:hover { color: var(--navy); }

.hero {
  background:
    linear-gradient(120deg, rgba(24,50,74,.98), rgba(15,36,54,.96)),
    radial-gradient(circle at 85% 15%, rgba(216,198,163,.2), transparent 30%);
  color: white;
  padding: 92px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .75rem;
  color: #8c6f42;
}

.hero .eyebrow, .dark .eyebrow { color: var(--sand); }

h1, h2 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  letter-spacing: -.02em;
}

h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.83);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
}

.button.primary {
  background: var(--sand);
  color: #1c2730;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,.3);
  color: white;
}

.profile-card {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}

.profile-row {
  padding: 18px 20px;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.profile-row:last-child { border-bottom: 0; }
.profile-row span { color: rgba(255,255,255,.62); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.profile-row strong { font-size: .96rem; }

.section { padding: 88px 0; }
.section.alt { background: var(--paper); }

.two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 76px;
  align-items: start;
}

.body-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.body-copy p:first-child { margin-top: 0; }
.body-copy p:last-child { margin-bottom: 0; }

.cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(23,32,42,.10);
  border-radius: 12px;
  background: white;
}

.card h3 { font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }

.facts {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.facts div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.facts span { color: var(--muted); font-size: .84rem; }
.facts strong { color: var(--ink); font-size: .92rem; }

.dark {
  background: var(--navy-2);
  color: white;
}

.dark h2 { max-width: 760px; }

.steps {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.step > span {
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  font-size: .78rem;
  letter-spacing: .12em;
}

.step p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .93rem;
}

.closing { padding: 70px 0; }
.closing-inner { max-width: 820px; }
.closing p:last-child { color: var(--muted); margin: 18px 0 0; }

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  color: var(--muted);
  font-size: .82rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 860px) {
  .nav { display: none; }
  .hero { padding: 72px 0 66px; }
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 68px; }
  .brand-text small { display: none; }
  h1 { font-size: 2.65rem; }
  .section { padding: 64px 0; }
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .footer-inner {
    flex-direction: column;
  }
}
