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

:root {
  --navy: #1e2a3a;
  --plum: #7a3f5e;
  --plum-light: #9b5a78;
  --plum-muted: #c49ab0;
  --cream: #f7f4f0;
  --warm-white: #fdfcfa;
  --text-dark: #1e2a3a;
  --text-mid: #4a5568;
  --text-light: #8a9ab0;
  --border: rgba(122,63,94,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253,252,250,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logomark {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logomark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-wordmark span {
  display: block;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--plum);
  margin-top: 1px;
}

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

nav ul a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}

nav ul a:hover { color: var(--plum); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122,63,94,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122,63,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: white;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--plum-muted);
}

.hero-subhead {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--plum);
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--plum-light);
  transform: translateY(-1px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat {
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.hero-stat:hover { background: rgba(255,255,255,0.07); }

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--plum-muted);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* SECTIONS */
section { padding: 100px 60px; }

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

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.9;
  margin-bottom: 60px;
}

/* OFFERINGS */
.offerings { background: var(--cream); }

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.offering-card {
  background: white;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}

.offering-card:hover { transform: translateY(-3px); }

.offering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--plum);
}

.offering-number {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin-bottom: 20px;
}

.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.offering-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.offering-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offering-list li {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}

.offering-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--plum);
}

/* ABOUT */
.about { background: white; }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.95;
}

.about-body p + p { margin-top: 20px; }

.about-headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(30,42,58,0.15);
  margin-bottom: 32px;
  display: block;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credential {
  padding: 24px 28px;
  background: var(--cream);
  border-left: 3px solid var(--plum);
}

.credential-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.credential-detail {
  font-size: 15px;
  color: var(--text-light);
}

/* WHY */
.why { background: var(--navy); color: white; }
.why .section-title { color: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.why-item {
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.why-item:hover { background: rgba(255,255,255,0.08); }

.why-icon {
  width: 36px;
  height: 2px;
  background: var(--plum);
  margin-bottom: 24px;
}

.why-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-item-text {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* CONTACT */
.contact { background: var(--cream); text-align: center; }

.contact .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.contact-link.primary { background: var(--navy); color: white; }
.contact-link.primary:hover { background: var(--plum); }
.contact-link.secondary { background: white; color: var(--navy); border: 1px solid var(--border); }
.contact-link.secondary:hover { border-color: var(--plum); color: var(--plum); }

/* FOOTER */
footer {
  background: var(--navy);
  padding: 36px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-right {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav ul { display: none; }
  section { padding: 70px 24px; }
  .hero { padding: 100px 24px 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { display: none; }
  .offerings-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

.offering-list li em {
  font-style: italic;
  color: var(--plum);
}
