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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0A0A0B;
  --bg-card:   #111110;
  --bg-raised: #1A1814;
  --border:    rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.14);
  --text:      #F0EEE8;
  --muted:     #8A8880;
  --accent:    #A08B6E;
  --accent-dim:#6B5A42;
  --green:     #1D9E75;
  --radius:    12px;
  --radius-sm: 8px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* NAV */
.site-nav {
  border-bottom: 0.5px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  background: rgba(10,10,11,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.site-nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.site-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 5px;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
}
.site-nav-logo span { color: var(--accent); }
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav-links a:hover { color: var(--text); }
.site-nav-links a.active { color: var(--accent); }
.site-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}

/* CORA FAMILY BAR */
.cora-bar {
  background: var(--bg-card);
  border-bottom: 0.5px solid rgba(160,139,110,0.2);
  padding: 6px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.cora-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.cora-bar-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
}
.cora-bar-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.cora-bar-sep { color: var(--border-md); }
.cora-bar-right { display: flex; gap: 1rem; }
.cora-bar-right a {
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.cora-bar-right a:hover { color: var(--accent); }
.cora-bar-right a.active { color: var(--accent); }

/* HERO */
.hero {
  padding: 6rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* STATS ROW */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--bg-card);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  max-width: 120px;
}

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--bg-card); }
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section h2 em { font-style: italic; color: var(--accent); }
.section p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 640px; }

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-md); }
.card-accent { border-top: 2px solid var(--accent); }
.card-green { border-top: 2px solid var(--green); }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.card-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.card-tag-green { color: var(--green); }
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  border: 0.5px solid var(--border-md);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* DIVIDER */
hr.div { border: none; border-top: 0.5px solid var(--border); margin: 0; }

/* QUOTE */
.quote-block {
  border-left: 2px solid var(--accent);
  padding: 1.5rem 2rem;
  background: var(--bg-raised);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}
.quote-attr {
  font-size: 13px;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* TIER CARDS */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.tier-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}
.tier-card.featured { border-color: var(--accent); }
.tier-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.tier-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.tier-price {
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  margin: 0.75rem 0;
  font-family: 'Cormorant Garamond', serif;
}
.tier-price span { font-size: 14px; color: var(--muted); }
.tier-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.tier-features li { font-size: 13px; color: var(--muted); display: flex; gap: 8px; }
.tier-features li::before { content: "✓"; color: var(--accent); flex-shrink: 0; }

/* CTA BAND */
.cta-band {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-band p { font-size: 16px; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }

/* FOOTER */
.site-footer {
  border-top: 0.5px solid var(--border);
  background: var(--bg-card);
  padding: 2.5rem 2rem;
}
.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}
.footer-brand-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-nav a:hover { color: var(--text); }
.footer-copy {
  width: 100%;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.5;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .site-nav-links { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem; }
  .cora-bar-right { display: none; }
}
