:root {
  --ink: #1a1a18;
  --paper: #f7f5f0;
  --warm-white: #faf9f6;
  --accent: #2d5016;
  --accent-light: #4a7c28;
  --muted: #8a8880;
  --body-text: #4a4843;
  --border: #e2dfd8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  padding-top: 64px; /* clears the fixed nav */
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Justified stacked wordmark: GARVEY tracked to span FINANCIAL PLANNING */
.nav-logo { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1; text-decoration: none; cursor: pointer; }
.wm-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.1em; color: var(--ink); text-transform: uppercase; }
.wm-tag { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.135em; color: var(--accent); text-transform: uppercase; margin-top: 5px; text-align: justify; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* Pre-registration banner */
.prereg-banner {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 2.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  font-weight: 300;
  line-height: 1.5;
}
.prereg-banner strong { color: var(--ink); font-weight: 500; }

.hero { min-height: calc(100vh - 64px - 40px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.hero-left { padding: 5rem 3rem 5rem 4rem; border-right: 1px solid var(--border); }
.hero-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 1rem; color: var(--body-text); font-weight: 300; max-width: 460px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--accent); color: white; text-decoration: none; padding: 0.85rem 1.8rem; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; border: none; }
.hero-cta:hover { background: var(--accent-light); }
.hero-right { padding: 4rem 4rem 4rem 3rem; display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.stat-item { padding: 1.5rem; border: 1px solid var(--border); background: white; }
.stat-number { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 400; line-height: 1.4; letter-spacing: 0.02em; }
.hero-note { margin-top: 2rem; padding: 1.25rem 1.5rem; border-left: 2px solid var(--accent); background: white; }
.hero-note p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--body-text); font-weight: 300; line-height: 1.6; }

.section { padding: 5rem 4rem; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; }
.section-intro { font-size: 1rem; color: var(--body-text); max-width: 620px; font-weight: 300; margin-bottom: 3.5rem; line-height: 1.8; }

.article-list { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); }
a.article-card { display: block; padding: 2.5rem; border-bottom: 1px solid var(--border); background: white; transition: background 0.2s; text-decoration: none; color: inherit; }
a.article-card:last-child { border-bottom: none; }
a.article-card:hover { background: var(--paper); }
.article-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 0.75rem; line-height: 1.3; color: var(--ink); }
.article-meta { font-size: 0.78rem; color: var(--muted); font-weight: 400; letter-spacing: 0.04em; margin-bottom: 0.9rem; }
.article-desc { font-size: 0.95rem; color: var(--body-text); line-height: 1.7; font-weight: 300; }
.article-tag { display: inline-block; padding: 0.15rem 0.55rem; margin-right: 0.6rem; border: 1px solid var(--border); background: var(--paper); color: var(--accent); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.read-more { margin-top: 1rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }

.fee-note { margin-top: 3.5rem; padding: 2rem 2.5rem; border: 1px solid var(--border); background: white; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.fee-note-icon { font-family: var(--serif); font-size: 2rem; color: var(--accent); line-height: 1; padding-top: 0.1rem; }
.fee-note-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.fee-note-text { font-size: 0.9rem; color: var(--body-text); font-weight: 300; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.about-sidebar { position: sticky; top: 5rem; border-top: 2px solid var(--accent); padding-top: 1.5rem; }
.brand-lockup { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1; margin-bottom: 1.5rem; }
.brand-lockup .bl-name { font-family: var(--serif); font-size: 3rem; font-weight: 400; letter-spacing: 0.085em; color: var(--ink); text-transform: uppercase; }
.brand-domain { font-size: 0.72rem; color: var(--muted); font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.75rem; }
.credentials { display: flex; flex-direction: column; gap: 0.5rem; }
.credential-tag { display: inline-block; padding: 0.35rem 0.8rem; border: 1px solid var(--border); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; color: var(--ink); background: white; width: fit-content; }
.about-content h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 1rem; margin-top: 2rem; }
.about-content h3:first-child { margin-top: 0; }
.about-content p { font-size: 0.95rem; color: var(--body-text); font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.about-content p strong { color: var(--ink); font-weight: 500; }

.status-box { margin-top: 2.5rem; padding: 1.75rem 2rem; border: 1px solid var(--border); border-left: 3px solid var(--accent); background: white; }
.status-box h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--ink); }
.status-box p { font-size: 0.9rem; color: var(--body-text); font-weight: 300; line-height: 1.75; margin-bottom: 0.75rem; }
.status-box p:last-child { margin-bottom: 0; }

.contact-block { margin-top: 2.5rem; padding: 1.5rem 1.75rem; background: var(--paper); border: 1px solid var(--border); font-size: 0.9rem; color: var(--body-text); font-weight: 300; line-height: 1.7; }
.contact-block a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-block a:hover { text-decoration: underline; }

.article-body { max-width: 740px; }
.article-body h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; color: var(--ink); margin: 2.75rem 0 0.85rem; }
.article-body h3:first-child { margin-top: 0; }
.article-body p { font-size: 1rem; color: var(--body-text); font-weight: 300; line-height: 1.85; margin-bottom: 1.25rem; }
.article-body p strong { color: var(--ink); font-weight: 500; }
.article-disclaimer { background: var(--paper); border: 1px solid var(--border); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.7; font-style: italic; }
.back-link { font-size: 0.82rem; color: var(--accent); text-decoration: none; letter-spacing: 0.04em; display: inline-block; }
.back-link:hover { text-decoration: underline; }
.article-final-note { font-size: 0.95rem; color: var(--body-text); font-weight: 300; line-height: 1.85; margin-bottom: 2.5rem; font-style: italic; border-left: 2px solid var(--accent); padding-left: 1rem; }

footer { padding: 2.5rem 4rem; background: #1c2613; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(247,245,240,0.68); font-weight: 300; line-height: 1.7; }
.footer-disclaimer strong { color: var(--paper); font-weight: 500; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(247,245,240,0.18); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: rgba(247,245,240,0.55); font-weight: 300; text-decoration: none; }
.footer-bottom a:hover { color: var(--paper); }

.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; z-index: 200; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--ink); transition: all 0.25s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
  .hero-right { padding: 2rem; }
  .about-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .about-sidebar { position: static; order: 0; margin-bottom: 2.5rem; }
  .about-content { order: 1; }
  .section { padding: 3rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  .prereg-banner { padding: 0.7rem 1.5rem; font-size: 0.72rem; }
  footer { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem 2rem; gap: 0; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); list-style: none; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; color: var(--ink); }
  .brand-lockup .bl-name { font-size: 2.4rem; }
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
}

.fade-in { opacity: 0; transform: translateY(16px); animation: fadeUp 0.6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; animation: none; }
}
