:root {
  --ivory: #FAF7F2;
  --ivory2: #F2EDE4;
  --ivory3: #E8E0D4;
  --ink: #1A1410;
  --ink2: #2D2520;
  --ink3: #3D3228;
  --copper: #B87333;
  --copper-light: #D4956A;
  --copper-pale: #F0DDD0;
  --sage: #5C6E58;
  --sage-light: #8FA389;
  --sage-pale: #E8EDE7;
  --text: #2D2520;
  --text-muted: #6B5E54;
  --text-subtle: #9A8C82;
  --border: rgba(184,115,51,0.12);
  --border-mid: rgba(184,115,51,0.25);
  --border-strong: rgba(184,115,51,0.45);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border-mid);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.logo span { color: var(--copper); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--copper); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -1rem;
  background: var(--ivory);
  border: 0.5px solid var(--border-mid);
  min-width: 220px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(26,20,16,0.08);
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--ivory2); color: var(--copper); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--ink3); }

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 0.5px solid var(--border-mid);
  z-index: 99;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 2rem;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--copper); }
.mobile-nav a:last-child { background: var(--ink); color: var(--ivory); font-weight: 500; border: none; margin-top: 6px; }

/* PAGE HERO */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,115,51,0.14) 0%, transparent 60%);
}

.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--copper-light);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

.page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(250,247,242,0.55);
  max-width: 600px;
  line-height: 1.85;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 1rem 3rem;
  background: var(--ivory2);
  border-bottom: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
}

.breadcrumb a { color: var(--copper); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* CONTENT */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.content-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.content-body h2:first-child { margin-top: 0; }

.content-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}

.content-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.content-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-body ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.7;
}

.content-body ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.content-body .callout {
  background: var(--copper-pale);
  border-left: 3px solid var(--copper);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-body .callout strong {
  font-weight: 500;
  color: var(--copper);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--ivory2);
  border: 0.5px solid var(--border-mid);
  padding: 1.5rem;
}

.sidebar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

.sidebar-stat:last-child { border-bottom: none; }

.sidebar-stat-label { font-weight: 300; color: var(--text-subtle); }
.sidebar-stat-val { font-weight: 500; color: var(--copper); font-family: 'Cormorant Garamond', serif; font-size: 16px; }

.sidebar-cta {
  background: var(--ink);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.sidebar-cta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.sidebar-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--copper);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

.related-links { display: flex; flex-direction: column; gap: 2px; }

.related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}

.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--copper); }
.related-link::before { content: '→'; color: var(--copper); font-size: 12px; }

/* STATS STRIP */
.stats-strip {
  background: var(--ink2);
  padding: 2.5rem 3rem;
}

.stats-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 0.5px solid rgba(250,247,242,0.08);
}

.strip-stat:last-child { border-right: none; }

.strip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 6px;
}

.strip-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,247,242,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* EYEBROW */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--copper);
}

/* SECTION */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.85;
}

/* FOOTER */
footer {
  padding: 4rem 3rem 2rem;
  background: var(--ink);
  border-top: 0.5px solid rgba(250,247,242,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 10px;
}

.footer-logo span { color: var(--copper-light); }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.35);
  max-width: 240px;
  line-height: 1.7;
}

.footer-cols {
  display: flex;
  gap: 4rem;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--copper-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(250,247,242,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,247,242,0.2);
  letter-spacing: 0.04em;
}

/* BUTTONS */
.btn-primary {
  padding: 15px 36px;
  background: var(--copper);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }

.btn-outline {
  padding: 15px 36px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

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

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .content-grid { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-stat { border-right: none; border-bottom: 0.5px solid rgba(250,247,242,0.08); }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-cols { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .content-wrap { padding: 3rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .breadcrumb { padding: 1rem 1.5rem; }
  .stats-strip { padding: 2rem 1.5rem; }
}

/* Anchor-wrapped cards */
a.area-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
