/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1B2A; --navy-mid: #1B3A5C; --gold: #C9A84C; --gold-light: #E8D5A0;
  --cream: #F9F6F0; --white: #FFFFFF; --text: #1C1C1E; --text-mid: #4A4A4F;
  --text-light: #8A8A8F; --border: rgba(0,0,0,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px; --pad: clamp(1.5rem, 5vw, 4rem);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white);
  font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section-label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);
  font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 3rem; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.9rem 2rem; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { display: inline-block; border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.9rem 2rem; transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.text-link { font-size: 0.875rem; color: var(--navy-mid); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s; }
.text-link:hover { color: var(--gold); }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); white-space: nowrap; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.nav-links a { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important;
  padding: 0.45rem 1rem !important; font-weight: 500 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A5C 60%, #0D2E1A 100%); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.45) 60%, rgba(13,27,42,0.2) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 8rem var(--pad) 6rem; }
.hero-content-inner { max-width: 640px; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem,7vw,5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: var(--pad);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; z-index: 2; }
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:0.4; } 50% { opacity:1; } }

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 2rem 0; border-bottom: 1px solid rgba(201,168,76,0.2); }
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 2.5rem; }
.trust-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300;
  color: var(--gold); line-height: 1; }
.trust-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.trust-div { width: 1px; height: 40px; background: rgba(201,168,76,0.2); }

/* ── INTRO ────────────────────────────────────────────────────────────────── */
.intro { padding: 6rem 0; background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 340px; gap: 5rem; align-items: start; }
.intro-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 400; line-height: 1.2; color: var(--navy); margin-bottom: 1.5rem; }
.intro-text p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.975rem; }
.intro-links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2rem; }
.author-card { background: var(--white); border: 1px solid var(--border); padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.author-photo-wrap { width: 100%; aspect-ratio: 4/5; overflow: hidden; margin-bottom: 1.5rem;
  background: var(--navy-mid); }
.author-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.author-initials { width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-size: 4rem;
  font-weight: 300; color: var(--gold); }
.author-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.2rem; }
.author-title { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-mid); margin-bottom: 0.2rem; }
.author-co { font-size: 0.78rem; color: var(--text-light); line-height: 1.4; margin-bottom: 1rem; }
.author-social { display: flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; }
.author-social a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.author-social span { color: var(--text-light); }

/* ── GUIDE GRID ───────────────────────────────────────────────────────────── */
.guides { padding: 6rem 0; background: var(--white); }
.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); }
.guide-card { background: var(--white); padding: 2.5rem 2rem; display: flex;
  flex-direction: column; transition: background 0.2s; }
.guide-card:hover { background: var(--cream); }
.guide-card--featured { grid-column: span 3; background: var(--navy); padding: 3rem;
  flex-direction: row; align-items: flex-start; gap: 3rem; }
.guide-card--featured:hover { background: var(--navy-mid); }
.guide-card--featured .guide-tag { background: var(--gold); color: var(--navy); border: none; }
.guide-card--featured h3 { font-size: 1.8rem; color: var(--white); flex: 0 0 280px; }
.guide-card--featured p { color: rgba(255,255,255,0.65); flex: 1; }
.guide-card--featured .guide-link { color: var(--gold); margin-top: 0; flex-shrink: 0; align-self: flex-end; }
.guide-tag { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; background: var(--cream); color: var(--gold); padding: 0.3rem 0.75rem;
  margin-bottom: 1rem; border: 1px solid var(--gold-light); width: fit-content; }
.guide-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--navy); line-height: 1.25; margin-bottom: 0.75rem; }
.guide-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.guide-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-top: auto; }

/* ── NEWSLETTER CTA ───────────────────────────────────────────────────────── */
.newsletter-cta { background: var(--navy); padding: 6rem 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.newsletter-text h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem);
  font-weight: 300; color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
.newsletter-text p { color: rgba(255,255,255,0.65); font-size: 0.975rem; margin-bottom: 2rem; }
.newsletter-quote { border-left: 2px solid var(--gold); padding-left: 2rem; }
.newsletter-quote blockquote { font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.5; margin-bottom: 1rem; }
.newsletter-quote cite { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.05em; font-style: normal; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact { padding: 6rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.5rem);
  font-weight: 400; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.contact-text p { color: var(--text-mid); font-size: 0.975rem; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 0; }
.contact-link { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem;
  color: var(--navy); transition: color 0.2s; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.contact-link:hover { color: var(--gold); }
.contact-icon { width: 36px; height: 36px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  font-weight: 600; flex-shrink: 0; }
.contact-disclaimer { background: var(--white); border: 1px solid var(--border); padding: 2rem;
  font-size: 0.78rem; color: var(--text-light); line-height: 1.7; margin-top: 3.5rem; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ── INNER PAGE ───────────────────────────────────────────────────────────── */
.page-hero { background: var(--navy); padding: 8rem var(--pad) 4rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(201,168,76,0.3); }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,4rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; max-width: 800px; }
.page-meta { font-size: 0.82rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.page-body { max-width: var(--max-w); margin: 0 auto; padding: 4rem var(--pad) 6rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 5rem; align-items: start; }
.page-content { min-width: 0; }
.page-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 400; color: var(--navy); margin: 3rem 0 1rem; line-height: 1.2; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500;
  color: var(--navy); margin: 2rem 0 0.5rem; }
.page-content p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.975rem; line-height: 1.75; }
.page-content ul { margin: 0.75rem 0 1.25rem 1.25rem; }
.page-content li { color: var(--text-mid); font-size: 0.975rem; margin-bottom: 0.5rem; line-height: 1.65; }
.page-content strong { color: var(--text); font-weight: 500; }
.faq-block { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.faq-block h2 { font-family: var(--font-display); font-size: 2rem; color: var(--navy);
  font-weight: 300; margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-q { font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; font-size: 0.975rem; }
.faq-a { color: var(--text-mid); font-size: 0.925rem; line-height: 1.7; }
.sidebar { position: sticky; top: 84px; }
.sidebar-card { background: var(--cream); border: 1px solid var(--border); padding: 1.75rem;
  margin-bottom: 1.5rem; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.75rem; }
.sidebar-card p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.6; }
.sidebar-author { background: var(--navy); color: var(--white); }
.sidebar-author h4 { color: var(--white); }
.sidebar-author p { color: rgba(255,255,255,0.65); }
.sidebar-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  object-position: top; margin-bottom: 1rem; border: 2px solid var(--gold); }
.sidebar-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.sidebar-role { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { font-size: 0.78rem; color: var(--gold); text-decoration: underline;
  text-underline-offset: 2px; }
.nav-links-sidebar { list-style: none; }
.nav-links-sidebar li a { font-size: 0.82rem; color: var(--text-mid); display: block;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.nav-links-sidebar li a:hover { color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid, .contact-grid, .newsletter-inner, .page-body { grid-template-columns: 1fr; gap: 3rem; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-card--featured { flex-direction: column; grid-column: span 2; gap: 1.5rem; }
  .guide-card--featured h3 { flex: none; }
  .sidebar { position: static; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card--featured { grid-column: span 1; }
  .trust-div { display: none; }
  .trust-items { gap: 1rem; }
}

/* ── RESOURCES SECTION ─────────────────────────────────────────────────── */
.resources { padding: 6rem 0; background: var(--cream); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.resource-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  cursor: pointer;
}
.resource-card:hover { background: var(--navy); }
.resource-card:hover h3 { color: var(--white); }
.resource-card:hover p { color: rgba(255,255,255,0.65); }
.resource-card:hover .resource-link { color: var(--gold); }
.resource-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--gold-light);
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.resource-card:hover .resource-tag { background: rgba(255,255,255,0.1); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.resource-card p {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  transition: color 0.2s;
}
.resource-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}
@media (max-width: 900px) { .resources-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .resources-grid { grid-template-columns: 1fr; } }
