:root {
  --navy: #0A1628;
  --navy-mid: #162440;
  --navy-light: #1E3358;
  --gold: #C9A96E;
  --gold-light: #E2C99A;
  --cream: #F8F4EF;
  --cream-warm: #F0EBE3;
  --ink: #1A1A1A;
  --muted: #7A8599;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 72px;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: relative;
  z-index: 100;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav__tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-left: 8px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav__link:hover { color: var(--white); }
.nav__charter-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__charter-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.nav__cta-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__cta-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* MOBILE NAV TOGGLE */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 0 24px; height: 64px; }
  .nav__hamburger { display: flex; }
  .nav__tagline { display: none; }
  .nav__right {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .nav__right.is-open { display: flex; }
  .nav__link, .nav__charter-link, .nav__cta-link {
    display: block;
    padding: 14px 0;
    min-height: 48px;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__charter-link, .nav__cta-link {
    margin-top: 8px;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 3px;
    text-align: center;
  }
  .nav__cta-link { border-color: rgba(201,169,110,0.4); }
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 60px 120px;
  background: var(--navy);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.08) 0%, transparent 50%);
  z-index: 1;
}
.hero__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.hero__headline em { font-style: italic; color: var(--gold-light); }
.hero__lede {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.5px;
}
.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* DIFFERENTIATORS */
.diff {
  padding: 110px 60px;
  background: var(--cream);
}
.diff__inner { max-width: 1100px; margin: 0 auto; }
.diff__header { margin-bottom: 64px; }
.diff__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.diff__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -1px;
}
.diff__title em { font-style: italic; }
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.diff__card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.diff__card:hover {
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
  transform: translateY(-3px);
}
.diff__icon { color: var(--gold); margin-bottom: 20px; }
.diff__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.diff__card-body { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* PROCESS */
.process {
  padding: 110px 60px;
  background: var(--navy-mid);
}
.process__inner { max-width: 1100px; margin: 0 auto; }
.process__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 64px;
}
.process__steps { display: flex; flex-direction: column; gap: 0; }
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.process__step:last-child { border-bottom: none; }
.process__step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  padding-top: 6px;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.process__step-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* SOCIAL PROOF */
.social-proof {
  padding: 100px 60px;
  background: var(--cream-warm);
}
.social-proof__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.social-proof__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 40px;
}
.social-proof__quote { margin-bottom: 48px; }
.social-proof__quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
}
.social-proof__attr {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.social-proof__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.social-proof__tag {
  padding: 8px 18px;
  border: 1px solid rgba(10,22,40,0.18);
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 120px 60px;
  background: var(--navy);
  text-align: center;
}
.closing__inner { max-width: 700px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.closing__headline em { font-style: italic; color: var(--gold-light); }
.closing__sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* FOOTER */
.footer {
  padding: 48px 60px;
  background: #050D1A;
}
.footer__inner { max-width: 1100px; margin: 0 auto; }
.footer__brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
}
.footer__copy {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 72px 24px 80px; }
  .hero__headline { font-size: 38px; }
  .hero__stats { gap: 28px; }
  .hero__stat-num { font-size: 22px; }
  .diff { padding: 72px 24px; }
  .diff__grid { grid-template-columns: 1fr; gap: 20px; }
  .diff__card { padding: 28px 24px; }
  .process { padding: 72px 24px; }
  .process__step { grid-template-columns: 1fr; gap: 12px; }
  .process__step-num { font-size: 36px; }
  .social-proof { padding: 72px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 20px; }
}
