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

:root {
  --sage: #7a9e7e;
  --forest: #2d5a3d;
  --mint: #b8ddc0;
  --cream: #f7f4ef;
  --dark: #1a2e20;
  --gold: #c9a84c;
  --light-sage: #e8f0ea;
  --text: #2c3e30;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,126,0.2);
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 60px; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--forest); }
.nav-links a.active::after { width: 100%; }

/* SECTIONS */
.section { padding: 100px 60px; }
.section-sm { padding: 60px 60px; }
.section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 32px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body { font-size: 13px; line-height: 2.1; letter-spacing: 0.3px; color: var(--text); max-width: 640px; }

/* PAGE HERO */
.page-hero {
  padding: 160px 60px 80px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.page-hero-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: 13px; letter-spacing: 0.5px; color: var(--mint); max-width: 520px; line-height: 1.9; }

/* ARTICLE LAYOUT */
.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  margin: 48px 0 20px;
  line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p { font-size: 14px; line-height: 2.1; color: var(--text); margin-bottom: 24px; }
.article-content .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

/* SIDEBAR */
.sidebar-card { background: var(--light-sage); padding: 36px; margin-bottom: 32px; }
.sidebar-card-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.sidebar-list { list-style: none; }
.sidebar-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(122,158,126,0.2);
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
  display: flex;
  gap: 12px;
}
.sidebar-list li::before { content: '✦'; color: var(--gold); font-size: 8px; margin-top: 3px; flex-shrink: 0; }

/* PULL QUOTE */
.pull-quote { background: var(--forest); color: var(--cream); padding: 48px; margin: 48px 0; position: relative; }
.pull-quote::before {
  content: '❝';
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.pull-quote p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; line-height: 1.6; color: var(--cream) !important; }
.pull-quote cite { display: block; margin-top: 16px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* TIP BOX */
.tip-box {
  background: linear-gradient(135deg, var(--sage), var(--forest));
  color: white;
  padding: 40px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.tip-box::before { content: '✦'; position: absolute; right: 32px; top: 24px; font-size: 48px; opacity: 0.15; }
.tip-box-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.tip-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; margin-bottom: 12px; font-weight: 300; }
.tip-box p { font-size: 13px; line-height: 1.9; opacity: 0.85; }

/* BUTTONS */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  background: transparent;
  font-family: 'Josefin Sans', sans-serif;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  border: none;
}
.btn-solid:hover { background: var(--forest); color: var(--cream); }

/* PLAN TABLE */
.plan-table { width: 100%; border-collapse: collapse; margin: 40px 0; }
.plan-table th { background: var(--forest); color: var(--gold); padding: 16px 20px; text-align: left; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 300; }
.plan-table td { padding: 16px 20px; border-bottom: 1px solid rgba(122,158,126,0.15); font-size: 13px; line-height: 1.6; }
.plan-table tr:nth-child(even) td { background: var(--light-sage); }

/* FOOTER */
footer { background: var(--dark); padding: 80px 60px 40px; color: rgba(255,255,255,0.5); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--cream); margin-bottom: 16px; letter-spacing: 2px; }
.footer-brand-name span { color: var(--gold); font-style: italic; }
.footer-desc { font-size: 12px; line-height: 1.9; margin-bottom: 32px; }
.footer-col-title { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; cursor: none; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-copy { font-size: 11px; }
.footer-disclaimer { font-size: 10px; max-width: 600px; line-height: 1.8; opacity: 0.4; font-style: italic; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  .section, .section-sm { padding: 60px 24px; }
  .article-layout { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 120px 24px 60px; }
}
