:root {
  --cream: #f5f2ea;
  --paper: #fdfbf6;
  --navy: #1b2a41;
  --navy-soft: #3a4659;
  --sage: #5e7259;
  --sage-deep: #4a5c46;
  --line: rgba(27, 42, 65, 0.14);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: Inter, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 42px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 72px;
  width: min(1200px, calc(100% - 42px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.dot, .eyebrow { color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-size: 0.88rem; }
.btn {
  display: inline-block;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 28px -20px rgba(27, 42, 65, 0.8);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--sage-deep); }
.btn.light { background: var(--paper); color: var(--navy); }
.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero { padding: 88px 0 78px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 54px;
  align-items: end;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.08; }
h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h1 em { color: var(--sage); font-weight: 400; }
.lede {
  max-width: 55ch;
  margin-top: 28px;
  color: var(--navy-soft);
  font-size: 1.15rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.proof {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 28px 55px -40px rgba(27, 42, 65, 0.6);
}
.proof strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.proof p { color: var(--navy-soft); font-size: 0.92rem; }
.proof hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.section { padding: 76px 0; border-top: 1px solid var(--line); }
.section.alt { background: var(--paper); }
.section-head { max-width: 650px; margin-bottom: 38px; }
.section h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 500; }
.section-head p { color: var(--navy-soft); margin-top: 16px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.card p { color: var(--navy-soft); font-size: 0.96rem; }
.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: "0" counter(step);
  color: var(--sage);
  font-family: var(--display);
  font-size: 1.5rem;
}
.steps h3 { font-size: 1.45rem; margin-bottom: 5px; }
.steps p { color: var(--navy-soft); max-width: 66ch; }
.cta { padding: 76px 0; background: var(--navy); color: var(--cream); text-align: center; }
.cta h2 { max-width: 16ch; margin: 0 auto 16px; font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 500; }
.cta p { max-width: 54ch; margin: 0 auto 28px; color: rgba(245, 242, 234, 0.74); }
footer { padding: 34px 0; background: var(--navy); color: rgba(245, 242, 234, 0.58); border-top: 1px solid rgba(245, 242, 234, 0.12); }
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.8rem; }
.foot a { color: rgba(245, 242, 234, 0.76); text-decoration: none; }
@media (max-width: 780px) {
  .nav-links .hide-mobile { display: none; }
  .hero { padding: 58px 0 54px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}
@media (max-width: 480px) {
  .wrap, .nav-inner { width: min(100% - 28px, 1120px); }
  .nav-inner { min-height: 64px; }
  .wordmark { font-size: 1.07rem; }
  .nav-links { gap: 10px; }
  .nav-links .btn { padding: 10px 14px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .proof, .card { border-radius: 14px; padding: 24px; }
}
