/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0B1C35;
  --navy-mid:  #0F2444;
  --navy-card: #132952;
  --gold:      #B8962E;
  --gold-lt:   #C9A83C;
  --white:     #FFFFFF;
  --white-60:  rgba(255,255,255,0.82);
  --white-30:  rgba(255,255,255,0.55);
  --white-10:  rgba(255,255,255,0.08);
  --pad:       clamp(24px, 5vw, 80px);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── BACKGROUND TEXTURE: GRADIENT MESH + GRAIN ─── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 50% at 12% -5%, rgba(15,36,68,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 90% 20%, rgba(19,41,82,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(184,150,46,0.04) 0%, transparent 65%);
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.02;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── TYPOGRAPHY ─── */
.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,28,53,0.97);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.nav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-select {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }

/* Gold rule — the signature element */
.nav-rule {
  height: 1px;
  background: var(--gold);
  width: 0;
  animation: drawRule 0.9s cubic-bezier(0.4,0,0.2,1) forwards 0.2s;
}

@keyframes drawRule {
  to { width: 100%; }
}

/* Hamburger for mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── PAGE PADDING (for fixed nav) ─── */
.page-top { padding-top: 80px; }

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 14vw, 160px) var(--pad) clamp(60px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,150,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(280px, 55vw, 560px);
  height: auto;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-slogan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.04em;
  color: var(--white-60);
  margin-top: 20px;
  text-align: center;
  animation: fadeUp 0.8s ease forwards 0.15s;
  opacity: 0;
}

.hero-headline {
  font-size: clamp(52px, 10vw, 110px);
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease forwards 0.15s;
  opacity: 0;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--white-60);
  max-width: 520px;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s ease forwards 0.3s;
  opacity: 0;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease forwards 0.45s;
  opacity: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-lt); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-30);
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: clamp(80px, 10vw, 130px) var(--pad);
}

.section-alt {
  background: rgba(15,36,68,0.92);
}

.section-header {
  margin-bottom: 64px;
}

/* ─── HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* ─── TWO PATHS ─── */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.path-card {
  background: rgba(19,41,82,0.9);
  border: 1px solid var(--white-10);
  padding: clamp(28px, 4vw, 44px);
  text-align: left;
}

.path-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.path-body {
  font-size: 15px;
  color: var(--white-60);
  margin-bottom: 28px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .paths-grid {
    grid-template-columns: 1fr;
  }
}

/* Connecting gold line across steps */
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% / 3 + 2px);
  right: calc(50% / 3 + 2px);
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.step {
  padding: 0 clamp(16px, 3vw, 40px);
  text-align: center;
}

.step-dot {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  background: var(--navy);
  transform: rotate(45deg);
}

.step-dot span {
  transform: rotate(-45deg);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
}

/* ─── POSITIONING SECTION ─── */
.position-section {
  max-width: 900px;
}

.position-headline {
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white);
  margin-bottom: 40px;
}

.gold-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 32px;
}

.position-body {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--white-60);
  line-height: 1.9;
  max-width: 680px;
}

/* ─── FORM ─── */
.form-wrap {
  max-width: 640px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-60);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white-10);
  border: 1px solid var(--white-30);
  border-radius: 0;
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(184,150,46,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input[type="file"] {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 12px;
  color: var(--white-60);
}

.form-group input[type="file"]::-webkit-file-upload-button {
  background: var(--gold);
  border: none;
  color: white;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 12px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-note {
  font-size: 11px;
  color: var(--white-30);
  margin-top: 8px;
  line-height: 1.7;
}

.form-submit { margin-top: 8px; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  padding: clamp(100px, 14vw, 160px) var(--pad) clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--white-10);
}

.page-hero-eyebrow {
  margin-bottom: 16px;
}

.page-hero-headline {
  font-size: clamp(40px, 8vw, 88px);
  color: var(--white);
  max-width: 700px;
}

.page-hero-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--white-60);
  max-width: 540px;
  margin-top: 20px;
  line-height: 1.8;
}

/* ─── CONTACT ─── */
.contact-email-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 60px;
}

.contact-email-link:hover { color: var(--gold-lt); }

/* ─── TERMS ─── */
.terms-content {
  max-width: 760px;
}

.terms-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--white-10);
}

.terms-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.terms-content p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 16px;
}

.terms-content ul {
  margin: 0 0 16px 20px;
}

.terms-content li {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 8px;
}

.terms-content strong {
  color: var(--white);
  font-weight: 600;
}

/* ─── FOOTER: GET IN TOUCH ─── */
.footer-main {
  border-top: 1px solid var(--white-10);
  padding: 64px var(--pad) 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-col-brand .footer-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-col-brand .footer-mark svg {
  width: 32px;
  height: 32px;
}

.footer-col-brand .footer-mark span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col-brand p {
  font-size: 13px;
  color: var(--white-60);
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.2s;
}

.footer-diamond {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--gold);
  transform: rotate(45deg);
}

.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item a { color: var(--white-60); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

footer {
  border-top: 1px solid var(--white-10);
  padding: 40px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
}

.footer-copy {
  font-size: 11px;
  color: var(--white-30);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-30);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white-60); }

/* ─── DIVIDER ─── */
.rule {
  width: 100%;
  height: 1px;
  background: var(--white-10);
  margin: 0;
}

.rule-gold {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  padding: 32px;
  border: 1px solid var(--gold);
  background: rgba(184,150,46,0.08);
  margin-top: 24px;
}

.form-success p {
  font-size: 14px;
  color: var(--white-60);
}

.form-success strong {
  color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-mid);
    padding: 24px var(--pad);
    gap: 20px;
    border-top: 1px solid var(--white-10);
  }
  .nav-toggle { display: flex; }

  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .steps::before { display: none; }
  .step { padding: 0 0 48px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, .hero-logo, .hero-slogan { animation: none !important; opacity: 1 !important; }
}
