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

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --sage: #7A9E7E;
  --sage-light: #A8C5AC;
  --sage-dark: #4E6E52;
  --gold: #C4974A;
  --gold-light: #E8C98A;
  --charcoal: #2C2C2C;
  --mid-gray: #6B6B6B;
  --light-gray: #E8E3DB;
  --border: #DDD8CF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }

/* HERO */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5% 6rem 8%;
  background: var(--cream);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-desc {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,158,126,0.15) 0%, transparent 60%);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--sage-dark);
  color: white;
}

.btn-primary:hover { background: var(--charcoal); }

.btn-outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: white;
}

.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover { background: var(--charcoal); }

/* SECTIONS */
section { padding: 6rem 8%; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--mid-gray);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 2rem; }

.card-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* CONTENT PAGE HEADER */
.page-header {
  background: var(--charcoal);
  color: white;
  padding: 5rem 8% 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122,158,126,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .section-eyebrow { color: var(--sage-light); }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}

/* CONTENT BODY */
.content-body { padding: 5rem 8%; }

.content-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.content-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.content-body p {
  color: var(--mid-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* STEPS */
.steps { counter-reset: step; }

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sage-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { margin-bottom: 0.5rem; }

/* LINKS */
.resource-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
}

.resource-link:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: rgba(122,158,126,0.05);
}

.resource-link::before {
  content: '→';
  color: var(--sage);
  font-size: 0.9rem;
}

/* RESEARCH CATEGORIES */
.research-category {
  margin-bottom: 3rem;
}

.research-category h3 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--sage-light);
}

/* TWO COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--sage-dark);
  color: white;
  padding: 3rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
}

.highlight-box p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* BANNER */
.cta-banner {
  background: var(--charcoal);
  color: white;
  padding: 4rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
}

.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

/* FOOTER */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 3rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sage-light); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 300px; }
  .hero-content { padding: 4rem 6%; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  nav { padding: 0 6%; }
  .nav-links { gap: 1.5rem; }
  section { padding: 4rem 6%; }
  .content-body { padding: 3rem 6%; }
  .page-header { padding: 4rem 6% 3rem; }
}
