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

:root {
  --purple-deep: #2e1f5e;
  --purple-mid: #3a2870;
  --purple-card: #3f2f7a;
  --purple-nav: #251852;
  --teal: #3ecfb2;
  --gold: #e8b84b;
  --white: #ffffff;
  --white-muted: rgba(255,255,255,0.75);
  --white-dim: rgba(255,255,255,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--purple-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  background: var(--purple-nav);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--purple-deep) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; color: var(--purple-deep) !important; }

/* SHARED SECTION ELEMENTS */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.divider-duo {
  width: 52px;
  height: 3px;
  margin: 0 auto 36px;
  background: linear-gradient(to right, var(--teal) 50%, var(--gold) 50%);
  border-radius: 2px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .teal { color: var(--teal); font-style: italic; }
.section-title .gold { color: var(--gold); }

.section-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

.section { padding: 90px 32px; }
.section-mid { background: var(--purple-mid); }

/* CARDS */
.card {
  background: var(--purple-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 24px;
}

.card-icon { font-size: 32px; margin-bottom: 16px; }

.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-muted);
  font-weight: 300;
}

/* BUTTONS */
.btn-teal {
  display: inline-block;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--purple-deep);
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.btn-teal:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

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

/* FOOTER */
footer {
  background: var(--purple-nav);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 48px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--white-muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--white-dim);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .nav-links .hide-mobile { display: none; }
}
