@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --navy:       #0a1628;
  --navy-2:     #0f2040;
  --navy-3:     #162b52;
  --gold:       #b8963e;
  --gold-light: #d4af62;
  --gold-pale:  #f0e4c4;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --text:       #1c1c2e;
  --muted:      #6b7280;
  --border:     #e8e2d6;
  --border-dark:#2a3f60;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--gold-light); letter-spacing: 0.04em; line-height: 1; }
.nav-logo-sub { font-family: 'Jost', sans-serif; font-size: 0.58rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links > li { position: relative; }

.nav-links > li > a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: color 0.25s;
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold-light); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

.dropdown {
  display: none;
  position: absolute;
  top: 72px; left: 0;
  background: var(--navy-2);
  min-width: 250px;
  border: 1px solid var(--border-dark);
  border-top: 1px solid var(--gold);
}

.nav-links > li:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold-light); padding-left: 1.8rem; }

.nav-cta {
  margin-left: 0.5rem;
  background: transparent !important;
  border: 1px solid rgba(184,150,62,0.6) !important;
  color: var(--gold-light) !important;
  padding: 0.4rem 1.1rem !important;
  height: auto !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.18em !important;
  border-radius: 0 !important;
  transition: background 0.25s, color 0.25s !important;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 1px; background: rgba(255,255,255,0.6); display: block; transition: 0.3s; }

.mobile-nav { display: none; background: var(--navy-2); border-top: 1px solid var(--border-dark); }
.mobile-nav a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; padding: 0.8rem 1.5rem; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav a.sub { padding-left: 2.5rem; opacity: 0.65; font-size: 0.64rem; }
.mobile-nav a.portal { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 7rem 2.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  max-width: 420px;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

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

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-card {
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 36px; height: 36px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}

.hero-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 36px; height: 36px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}

.hero-card-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-card-label::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--gold);
}

.steps { list-style: none; }

.steps li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.steps li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.step-num {
  width: 24px; height: 24px;
  border: 1px solid rgba(184,150,62,0.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'Jost', sans-serif;
}

.steps li strong { display: block; color: rgba(255,255,255,0.88); font-weight: 400; margin-bottom: 0.25rem; font-size: 0.8rem; letter-spacing: 0.04em; }
.steps li a { color: var(--gold-light); text-decoration: none; font-size: 0.78rem; }
.steps li a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2.5rem 4rem;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: var(--white); }
.page-header p { color: rgba(255,255,255,0.45); margin-top: 1.2rem; max-width: 560px; font-size: 0.92rem; letter-spacing: 0.02em; }

/* ── MAIN ── */
main { max-width: 1200px; margin: 0 auto; padding: 5rem 2.5rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-intro {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 540px;
  margin-bottom: 3.5rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.gold-rule { width: 36px; height: 1px; background: var(--gold); border: none; margin: 0.8rem 0 2rem; display: block; }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}

.card {
  background: var(--white);
  padding: 2.2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.25s;
  position: relative;
}

.card:hover { background: #fdfcf9; }

.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.2rem; right: 2.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover::after { transform: scaleX(1); }

.card-icon { font-size: 1.1rem; margin-bottom: 1.2rem; display: block; opacity: 0.75; }
.card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 300; }
.card p { font-size: 0.84rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }

.card-arrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.card:hover .card-arrow { gap: 0.7rem; }

/* ── CONTENT BLOCK ── */
.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding: 3rem;
  margin-bottom: 1.5rem;
  transition: border-left-color 0.3s;
}

.content-block:hover { border-left-color: var(--gold); }

.content-block h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 1.5rem; font-weight: 300; }
.content-block h3 { font-size: 1.05rem; color: var(--navy); margin: 2rem 0 0.5rem; font-weight: 400; letter-spacing: 0.02em; }
.content-block p { color: var(--muted); font-size: 0.88rem; line-height: 1.9; margin-bottom: 0.9rem; }
.content-block ul { padding-left: 1.2rem; color: var(--muted); font-size: 0.88rem; line-height: 2.1; }
.content-block ul li { margin-bottom: 0.15rem; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 3rem;
  text-align: center;
  margin: 3.5rem 0;
  position: relative;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.cta-block h2 { font-size: 2.5rem; font-weight: 300; margin-bottom: 1rem; color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.85; }

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  margin: 0.4rem;
}

.btn-cta:hover { background: var(--gold-light); }

.btn-cta-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  padding: 0.9rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
  margin: 0.4rem;
}

.btn-cta-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.portal-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.portal-btn:hover { background: var(--gold-light); }

/* ── INFO STRIP ── */
.info-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 2.5rem;
}

.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.info-strip-item { text-align: center; }
.info-strip-item .label { font-size: 0.56rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.info-strip-item .value { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.info-strip-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.info-strip-item a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 1.75rem 2.5rem;
  text-align: center;
}

footer p { font-size: 0.62rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.28); text-transform: uppercase; }
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { color: var(--gold-light); }

/* ── NOTICE BANNER ── */
.notice-banner {
  background: rgba(184,150,62,0.06);
  border: 1px solid rgba(184,150,62,0.25);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.notice-banner span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #7a5c1e;
  font-style: italic;
}

.notice-banner a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  font-weight: 500;
}

.notice-banner a:hover { background: var(--gold-light); }

/* ── LOST STEPS ── */
.lost-steps { list-style: none; counter-reset: step; }

.lost-steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding: 2rem 2rem 2rem 5rem;
  position: relative;
  margin-bottom: 1rem;
  transition: border-left-color 0.2s;
}

.lost-steps li:hover { border-left-color: var(--gold); }

.lost-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.5rem; top: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
}

.lost-steps li h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 300; }
.lost-steps li p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; }
.lost-steps li a { color: var(--gold); text-decoration: none; }
.lost-steps li a:hover { text-decoration: underline; text-underline-offset: 3px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}

.back-link:hover { gap: 0.7rem; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 1.25rem; }

  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-tagline { font-size: 0.88rem; }
  .btn-row { flex-direction: column; }
  .btn-gold, .btn-outline { text-align: center; }

  .page-header { padding: 3rem 1.25rem 2.5rem; }
  .page-header h1 { font-size: 2rem; }

  main { padding: 3rem 1.25rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .content-block { padding: 2rem 1.5rem; }
  .cta-block { padding: 3rem 1.5rem; }
  .cta-block h2 { font-size: 1.9rem; }
  .btn-cta, .btn-cta-outline { display: block; text-align: center; margin: 0.4rem 0; }
  .portal-btn { display: block; text-align: center; }

  .info-strip { padding: 2.5rem 1.25rem; }
  .notice-banner { flex-direction: column; }
  .lost-steps li { padding: 1.5rem 1.2rem 1.5rem 4rem; }
  .lost-steps li::before { left: 0.9rem; font-size: 1.5rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-card { padding: 1.5rem; }
  .info-strip-inner { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.7rem; }
}
