:root {
  --navy: #0c1a2e;
  --navy-mid: #14233d;
  --gold: #c9a456;
  --gold-light: #e8d5a3;
  --cream: #f5f0e8;
  --cream-dark: #ece6da;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav__cta {
  margin-left: auto;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s;
}
.nav__cta:hover {
  border-color: var(--gold);
  background: rgba(201,164,86,0.1);
}

.nav__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201,164,86,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,164,86,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content { position: relative; max-width: 900px; }
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-weight: 300;
}
.hero__rule {
  position: absolute;
  right: -2px;
  top: 15%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* VERTICALS */
.verticals {
  background: var(--cream);
  padding: 7rem 3rem;
}
.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.vertical-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--cream-dark);
  position: relative;
}
.vertical-card:last-child { border-right: none; }
.vertical-card__mark {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 600;
}
.vertical-card__icon {
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.vertical-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.vertical-card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* HOW */
.how {
  background: var(--navy-mid);
  padding: 7rem 3rem;
}
.how__inner { max-width: 900px; margin: 0 auto; }
.how__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  font-weight: 500;
}
.how__steps { display: flex; flex-direction: column; gap: 0; }
.how__step {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.how__step:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.how__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201,164,86,0.4);
  min-width: 60px;
  line-height: 1;
}
.how__step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.how__step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 500px;
}
.how__note {
  margin-top: 3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* CLOSING */
.closing {
  background: var(--navy);
  padding: 8rem 3rem;
}
.closing__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.15;
}
.closing__cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.closing__cta:hover { background: var(--gold-light); }

.closing__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--cream);
  padding: 3rem;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 0.6rem; }
.footer__logo {
  width: 28px; height: 28px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
}
.footer__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.footer__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero__headline { font-size: 3rem; }
  .verticals { padding: 4rem 1.5rem; }
  .verticals__grid { grid-template-columns: 1fr; gap: 0; }
  .vertical-card { border-right: none; border-bottom: 1px solid var(--cream-dark); padding: 2rem 0; }
  .vertical-card:last-child { border-bottom: none; }
  .how { padding: 4rem 1.5rem; }
  .how__step { gap: 1.5rem; }
  .how__num { min-width: 40px; font-size: 1.4rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.8rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 2.5rem; }
  .hero__sub { font-size: 1rem; }
}