/* ═══════════════════════════════════════════════════════
   THE TOP MINDS™ — DESIGN SYSTEM v2
   Shared across all 7 pages
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --purple:        #49326b;
  --purple-dark:   #2e1f45;
  --purple-deeper: #1d1230;
  --purple-light:  #6b4d9a;
  --purple-pale:   #f3eefa;
  --purple-mid:    #8a6aad;
  --gold:          #c9a84c;
  --gold-light:    #e8d4a0;
  --gold-pale:     #fdf8ee;
  --gold-dark:     #a07c2a;
  --navy:          #163b6d;
  --cream:         #faf8f4;
  --cream-dark:    #f2ede4;
  --text:          #1c1c1a;
  --text-muted:    #5a5855;
  --text-light:    #8a8784;
  --border:        rgba(73,50,107,0.10);
  --border-dark:   rgba(73,50,107,0.20);
  --white:         #ffffff;
  --shadow-soft:   0 2px 24px rgba(46,31,69,0.08);
  --shadow-card:   0 4px 40px rgba(46,31,69,0.12);
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── TYPOGRAPHY SCALE ────────────────────────────────── */
.t-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.t-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5; flex-shrink: 0;
}
.t-eyebrow.center { justify-content: center; }
.t-eyebrow.center::before { display: none; }

.t-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; line-height: 1.15;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500; line-height: 1.2;
}
.t-lead {
  font-size: 17px; font-weight: 300;
  line-height: 1.75; color: var(--text-muted);
}
.t-body {
  font-size: 15px; font-weight: 400;
  line-height: 1.8; color: var(--text-muted);
}
.t-small {
  font-size: 13px; font-weight: 400;
  line-height: 1.65; color: var(--text-muted);
}
.t-micro {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.04em;
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: all 0.2s ease;
  border: none; outline: none;
}
.btn-gold {
  background: var(--gold); color: var(--purple-dark);
  padding: 16px 32px;
}
.btn-gold:hover { background: #d4b45a; transform: translateY(-1px); }

.btn-white {
  background: var(--white); color: var(--purple-dark);
  padding: 15px 32px;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 15px 32px;
  border: 0.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-purple {
  background: transparent; color: var(--purple);
  padding: 15px 32px;
  border: 0.5px solid var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: #fff; }

.btn-ghost-gold {
  background: transparent; color: var(--gold);
  padding: 14px 28px;
  border: 0.5px solid rgba(201,168,76,0.35);
}
.btn-ghost-gold:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

/* ─── DIVIDER ─────────────────────────────────────────── */
.rule {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.rule-center { margin: 20px auto; }

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-dark) 20%, var(--border-dark) 80%, transparent);
}

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px;
  display: flex; align-items: center;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250,248,244,0.99);
  box-shadow: var(--shadow-soft);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-svg { width: 32px; height: 32px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600;
  color: var(--purple); letter-spacing: 0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a.active { color: var(--purple); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
}
.nav-cta {
  font-size: 11px !important; font-weight: 500 !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--purple-dark) !important;
  padding: 9px 20px !important;
  border-radius: 2px !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: #d4b45a !important; transform: translateY(-1px) !important; }

.nav-mobile-toggle {
  display: none; cursor: pointer;
  background: none; border: none;
  padding: 4px; flex-direction: column; gap: 5px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--purple); transition: all 0.2s;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--purple-deeper);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand .footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic;
  color: var(--gold); opacity: 0.85;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
}
.footer-brand a { color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-col-title {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 24px 48px;
  max-width: 1200px; margin: 0 auto;
  font-size: 10px; font-weight: 300;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
}

/* ─── CARDS & COMPONENTS ──────────────────────────────── */
.card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px;
}

/* ─── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.trust-strip-item {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-light);
}
.trust-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: 0.4; flex-shrink: 0;
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); } to { transform: scaleX(1); }
}

.animate-1 { animation: fadeUp 0.7s ease 0.1s both; }
.animate-2 { animation: fadeUp 0.7s ease 0.2s both; }
.animate-3 { animation: fadeUp 0.7s ease 0.3s both; }
.animate-4 { animation: fadeUp 0.7s ease 0.4s both; }
.animate-5 { animation: fadeUp 0.7s ease 0.5s both; }
.animate-6 { animation: fadeUp 0.7s ease 0.6s both; }

/* Intersection Observer reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 32px 48px; }
  .footer-bottom { padding: 24px 32px; }
}
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 24px; }
  .section { padding: 64px 0; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px 40px; }
  .footer-bottom { padding: 20px 24px; }
}
