/* ══════════════════════════════════════════════════════════════════════════
   MINDFUL NLP — SHARED STYLESHEET
   Extends the design system from the original Inner Framework landing page.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  --gulf: #050454;
  --lavender: #E6ACF6;
  --frost: #F7F7FF;
  --honey: #F5E6A3;
  --abyss: #0A3D3D;
  --current: #00BFA5;
  --burgundy: #3D0C1F;
  --ink: #0B0B1A;
  --slate: #6B6B7B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--frost);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gulf);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--frost);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand span { color: var(--lavender); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(247,247,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lavender); }
.nav-cta {
  background: var(--lavender);
  color: var(--gulf) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 11px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #f0c4ff; transform: translateY(-1px); }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-block;
    background: none;
    border: none;
    color: var(--frost);
    font-size: 24px;
    cursor: pointer;
  }
  .site-nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gulf);
    padding: 24px 8vw 32px;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ── PAGE HERO (About / Work With Me / Contact / Privacy) ──────────────────── */
.page-hero {
  background: var(--gulf);
  padding: 100px 8vw 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.06;
  top: -260px; right: -180px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.7;
  margin-bottom: 24px;
}
.page-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.2;
  color: var(--frost);
  margin-bottom: 20px;
}
.page-title .accent { color: var(--lavender); }
.page-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--lavender);
  line-height: 1.5;
  max-width: 620px;
}

/* ── GENERIC SECTIONS ────────────────────────────────────────────────────── */
.section { padding: 100px 8vw; }
.section.light { background: var(--frost); }
.section.dark { background: var(--gulf); position: relative; overflow: hidden; }
.section.dark::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.05;
  top: -200px; right: -150px;
}
.section-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.dark .eyebrow { color: rgba(230,172,246,0.55); }

.title-lg {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  color: var(--gulf);
  margin-bottom: 24px;
}
.dark .title-lg { color: var(--frost); }
.title-lg .accent { color: var(--abyss); }
.dark .title-lg .accent { color: var(--lavender); }

.title-md {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.3;
  color: var(--gulf);
  margin-bottom: 16px;
}
.dark .title-md { color: var(--frost); }

.prose {
  font-size: 15px;
  line-height: 1.85;
  color: var(--slate);
  max-width: 680px;
}
.dark .prose { color: rgba(247,247,255,0.65); }
.prose + .prose { margin-top: 20px; }
.prose strong { color: var(--gulf); font-weight: 500; }
.dark .prose strong { color: var(--frost); }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-lavender { background: var(--lavender); color: var(--gulf); }
.btn-lavender:hover { background: #f0c4ff; transform: translateY(-1px); }
.btn-gulf { background: var(--gulf); color: var(--frost); }
.btn-gulf:hover { background: #0a0880; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(247,247,255,0.35);
  color: var(--frost);
}
.btn-outline:hover { border-color: var(--lavender); color: var(--lavender); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

/* ── RECOGNITION LIST ─────────────────────────────────────────────────────── */
.recognition-list { display: flex; flex-direction: column; gap: 2px; max-width: 760px; }
.recognition-item {
  background: white;
  border-left: 2px solid rgba(5,4,84,0.12);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.15s;
}
.recognition-item:hover { border-left-color: var(--abyss); transform: translateX(2px); }

/* ── CARDS (services / offers) ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.offer-card {
  background: white;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--gulf);
}
.offer-card p { font-size: 14px; line-height: 1.7; color: var(--slate); flex-grow: 1; }
.offer-card a.card-link {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--abyss);
  text-decoration: none;
}
.offer-card a.card-link:hover { color: var(--gulf); }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  padding: 32px 28px;
  border-top: 3px solid var(--lavender);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}
.testimonial-name {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.testimonial-note {
  max-width: 900px;
  margin: 0 auto 40px;
  background: rgba(245,230,163,0.35);
  border-left: 3px solid var(--honey);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gulf);
}

/* ── FORMS (contact / enquiry) ───────────────────────────────────────────── */
.site-form { max-width: 560px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.dark .form-group label { color: rgba(247,247,255,0.55); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid rgba(5,4,84,0.15);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gulf); }
.form-note { font-size: 12px; color: var(--slate); margin-top: 8px; }
.dark .form-note { color: rgba(247,247,255,0.4); }

.form-thanks {
  display: none;
  background: rgba(5,4,84,0.05);
  border-left: 3px solid var(--gulf);
  padding: 20px 24px;
  max-width: 560px;
  font-size: 15px;
  color: var(--gulf);
  line-height: 1.6;
}
.form-thanks.visible { display: block; }

/* ── CREDENTIALS LIST ─────────────────────────────────────────────────────── */
.credentials-box {
  background: white;
  border-left: 3px solid var(--abyss);
  padding: 32px;
  max-width: 480px;
}
.credentials-box ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.credentials-box li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.credentials-box li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--abyss);
}

/* ── ABOUT PHOTO + TEXT LAYOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: rgba(5,4,84,0.06);
}
.about-photo-caption {
  margin-top: 16px;
  font-size: 12px;
  color: var(--slate);
  text-align: center;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 56px 8vw 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,247,255,0.08);
  margin-bottom: 24px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--frost);
}
.footer-brand span { color: var(--lavender); }
.footer-tagline {
  font-size: 11px;
  color: rgba(247,247,255,0.3);
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 12px;
  color: rgba(247,247,255,0.5);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--lavender); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(247,247,255,0.25);
}
.footer-bottom a { color: rgba(247,247,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--lavender); }

/* ── PRIVACY / LEGAL PROSE PAGE ──────────────────────────────────────────── */
.legal-section { padding: 60px 8vw 100px; background: var(--frost); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--gulf);
  margin: 40px 0 12px;
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 12px;
}
.legal-inner ul { padding-left: 20px; margin-bottom: 12px; }
.legal-updated { font-size: 12px; color: var(--slate); margin-bottom: 32px; }
.legal-note {
  background: rgba(245,230,163,0.35);
  border-left: 3px solid var(--honey);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gulf);
  margin-bottom: 40px;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 72px 24px; }
  .page-hero { padding: 72px 24px 56px; }
  .card-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
