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

:root {
  --lavender:     #C9B8E8;
  --lavender-lt:  #e4d8f4;
  --lavender-dk:  #a899cc;
  --sage:         #87A878;
  --sage-lt:      #d4e8cd;
  --sage-dk:      #5a7a4d;
  --cream:        #FAF7F2;
  --cream2:       #f2ede4;
  --plum:         #3C3489;
  --plum-dk:      #2a2462;
  --plum-lt:      #6b61aa;
  --text:         #2e2840;
  --text2:        #4a4268;
  --muted:        #7a7098;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,184,232,0.25);
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 15px 40px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-outline {
  border: 1px solid var(--plum);
  color: var(--plum);
  background: transparent;
}
.btn-outline:hover { background: var(--plum); color: var(--cream); }

.btn-solid {
  background: var(--plum);
  color: var(--cream);
  border: 1px solid var(--plum);
}
.btn-solid:hover { background: var(--plum-dk); border-color: var(--plum-dk); }

.btn-sage {
  background: var(--sage);
  color: #fff;
  border: 1px solid var(--sage);
}
.btn-sage:hover { background: var(--sage-dk); border-color: var(--sage-dk); }

/* ── SECTION BASE ── */
section { padding: 96px 24px; }

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--plum-lt);
  opacity: 0.85;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 14px;
}

.section-title em { font-style: italic; color: var(--sage-dk); }

.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.7vw, 20px);
  color: var(--text2);
  opacity: 0.8;
  margin-bottom: 52px;
}

/* ── ORNAMENT ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,232,0.55));
}
.ornament-line.r {
  background: linear-gradient(90deg, rgba(201,184,232,0.55), transparent);
}
.ornament-star {
  color: var(--lavender-dk);
  font-size: 11px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--plum-dk);
  color: var(--cream);
  padding: 64px 56px 36px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,184,232,0.15);
}

.footer-brand .logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender-lt);
  margin-bottom: 8px;
}

.footer-brand .tagline {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,184,232,0.5);
}

.footer-col h4 {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(201,184,232,0.5);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-family: var(--sans);
  font-weight: 200;
  font-size: 13px;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lavender-lt); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,184,232,0.3);
}

.footer-mission {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(201,184,232,0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
