/* Mind your Mind's Business — Landing. Brand aligned with The Recalibration Room */
:root {
  --pink:  #B52775;
  --coral: #F66B52;
  --gold:  #D6AD60;
  --navy:  #2C3E91;
  --blush: #F7E4D2;
  --rose:  #f5cac3;
  --dark:  #0c0c18;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214,173,96,0.2);
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-brand span { color: var(--coral); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blush);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--pink);
  color: var(--white);
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--coral); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero-headline .line-white { color: var(--white); }
.hero-headline .line-coral { color: var(--coral); }
.hero-headline .line-pink { color: var(--pink); }
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--blush);
  max-width: 460px;
  margin-bottom: 40px;
  border-left: 3px solid var(--coral);
  padding-left: 20px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 18px 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); }
.btn-secondary {
  color: var(--blush);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.btn-secondary:hover { color: var(--gold); }

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 40%),
              linear-gradient(0deg, var(--dark) 0%, transparent 15%);
  pointer-events: none;
}

/* ── SECTION SHARED ── */
section { position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label-line { width: 32px; height: 2px; background: var(--coral); }
.section-label-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
}

/* ── ABOUT ── */
.about {
  padding: 100px 80px;
  background: #0f0f1e;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content {}
.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 28px;
}
.about-headline em { font-style: italic; color: var(--coral); }
.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--blush);
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.stat {
  background: rgba(44,62,145,0.3);
  border: 1px solid rgba(44,62,145,0.6);
  padding: 20px 16px;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--blush);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-visual {
  background: var(--navy);
  padding: 48px;
  border: 1px solid rgba(214,173,96,0.25);
  text-align: center;
}
.about-visual-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  color: var(--blush);
  line-height: 1.6;
}
.about-visual-quote strong { color: var(--gold); }

/* ── SERVICES ── */
.services {
  padding: 100px 80px;
  background: var(--dark);
}
.services-header {
  margin-bottom: 60px;
}
.services-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--white);
}
.services-headline span { color: var(--pink); }
.services-desc {
  font-size: 16px;
  color: var(--blush);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #13132a;
  padding: 40px 32px;
  border-left: 3px solid transparent;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  background: #1a1a36;
  border-left-color: var(--coral);
  transform: translateX(4px);
}
.service-card:nth-child(2):hover { border-left-color: var(--pink); }
.service-card:nth-child(3):hover { border-left-color: var(--gold); }
.service-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--blush);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,228,210,0.6);
}
.service-card-arrow {
  color: var(--coral);
  margin-top: 8px;
  font-size: 14px;
}

/* ── PROOF (snippet) ── */
.proof {
  padding: 100px 80px;
  background: #0f0f1e;
}
.proof-header {
  text-align: center;
  margin-bottom: 48px;
}
.proof-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  margin: 16px 0;
}
.proof-headline span { color: var(--coral); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.proof-card {
  background: rgba(19,19,42,0.8);
  padding: 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.proof-quote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--blush);
  margin-bottom: 20px;
}
.proof-quote strong { color: var(--white); font-weight: 600; }
.proof-author-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
}
.proof-author-title {
  font-size: 12px;
  color: rgba(247,228,210,0.55);
  margin-top: 2px;
}

/* ── CTA ── */
.cta-section {
  padding: 100px 80px;
  background: var(--navy);
  text-align: center;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.92;
  margin-bottom: 24px;
}
.cta-headline .c1 { color: var(--white); }
.cta-headline .c2 { color: var(--coral); }
.cta-headline .c3 { color: var(--gold); }
.cta-sub {
  font-size: 16px;
  color: var(--blush);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 20px 52px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); }
.cta-note {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(247,228,210,0.5);
  letter-spacing: 1px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(214,173,96,0.15);
  padding: 48px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
}
.footer-brand span { color: var(--coral); }
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(247,228,210,0.5);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(247,228,210,0.3);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 24px 48px; }
  .hero-right { min-height: 50vh; }
  .about,
  .about-stats { grid-template-columns: 1fr; }
  .about { padding: 60px 24px; gap: 48px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof { padding: 60px 24px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
}
