/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dim:    #A07820;
  --purple:      #7B2FBE;
  --purple-mid:  #2D1B4B;
  --purple-deep: #1A0A30;
  --brown:       #3B1A08;
  --brown-mid:   #5C2D0E;
  --white:       #FFFFFF;
  --offwhite:    #FAF8FF;
  --light-purple:#EDE6F7;
  --text:        #2A1A40;
  --text-light:  #5A4A70;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ─── Navigation ────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--purple-deep);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: background 0.3s;
}

nav.scrolled { background: rgba(26,10,48,0.97); backdrop-filter: blur(8px); }

.nav-logo img { height: 38px; display: block; }

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

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--purple-deep) !important;
  border: none !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ─── Page sections ─────────────────────────────────────────────────────────── */
.page { display: none; min-height: 100vh; padding-top: var(--nav-h); }
.page.active { display: block; }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--purple-deep);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(123,47,190,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Diagonal gold accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

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

.hero-left {}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero h1 span { color: var(--gold); display: block; }

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(237,230,247,0.85);
  font-style: italic;
  margin-bottom: 36px;
  padding-left: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(237,230,247,0.75);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--purple-deep);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--offwhite);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(237,230,247,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Hero right — value pillars */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-pill {
  background: rgba(123,47,190,0.15);
  border: 1px solid rgba(212,175,55,0.25);
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
  animation: fadeSlideIn 0.6s ease both;
}
.hero-pill:nth-child(1) { animation-delay: 0.1s; }
.hero-pill:nth-child(2) { animation-delay: 0.2s; }
.hero-pill:nth-child(3) { animation-delay: 0.3s; }
.hero-pill:hover { background: rgba(123,47,190,0.25); border-color: rgba(212,175,55,0.5); }

.hero-pill-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-pill-text { font-size: 0.95rem; color: rgba(237,230,247,0.8); line-height: 1.5; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── Section Shared ─────────────────────────────────────────────────────────── */
.section { padding: 90px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
  max-width: 80px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--purple-deep);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 52px;
  font-style: italic;
}

/* ─── Who We Are (Home) ──────────────────────────────────────────────────────── */
.who-section { background: var(--offwhite); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.who-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
  text-align: justify;
}

.who-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--purple-deep);
  padding: 28px 24px;
  border-bottom: 3px solid var(--gold);
  border-radius: 2px;
}
.stat-card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.stat-card-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-card-text { font-size: 0.9rem; color: rgba(237,230,247,0.8); line-height: 1.5; }

/* ─── Services preview (Home) ────────────────────────────────────────────────── */
.services-preview { background: var(--light-purple); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-top: 3px solid var(--purple);
  padding: 32px 28px;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(123,47,190,0.15);
}
.service-card.gold-top { border-top-color: var(--gold); }

.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 {
  font-size: 0.95rem;
  color: var(--purple-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.service-card-arrow {
  margin-top: 16px;
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
}

/* ─── Why Session CTA band ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--brown);
  background-image: linear-gradient(135deg, var(--brown) 0%, var(--purple-mid) 100%);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-band-inner { max-width: 700px; margin: 0 auto; position: relative; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold); margin-bottom: 16px; }
.cta-band p { font-size: 1.1rem; color: rgba(237,230,247,0.85); margin-bottom: 36px; line-height: 1.7; font-style: italic; }

/* ─── Services Page ──────────────────────────────────────────────────────────── */
.services-hero {
  background: var(--purple-deep);
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.services-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.services-hero h1 span { color: var(--gold); }
.services-hero p { font-size: 1.1rem; color: rgba(237,230,247,0.8); font-style: italic; max-width: 600px; margin: 0 auto; }

.service-detail {
  padding: 70px 40px;
  border-bottom: 1px solid rgba(123,47,190,0.12);
}
.service-detail:nth-child(even) { background: var(--light-purple); }
.service-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.service-detail:nth-child(even) .service-detail-inner {
  grid-template-columns: 1.6fr 1fr;
}
.service-detail:nth-child(even) .service-detail-left { order: 2; }
.service-detail:nth-child(even) .service-detail-right { order: 1; }

.service-detail-left {}
.service-num {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: 4px;
}
.service-detail-left h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--purple-deep);
  margin-bottom: 8px;
}
.service-tagline {
  font-size: 0.95rem;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: 20px;
}
.service-challenge {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 20px;
}
.service-approach {
  background: var(--purple-deep);
  color: rgba(237,230,247,0.85);
  font-size: 0.93rem;
  line-height: 1.75;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  font-style: italic;
}

.service-detail-right {}
.delivers-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.deliver-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.deliver-bullet {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.6;
  flex-shrink: 0;
}
.deliver-text { font-size: 0.92rem; color: var(--text); line-height: 1.6; }
.deliver-text strong { color: var(--purple-deep); }

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.outcome-chip {
  background: var(--white);
  border-top: 2px solid var(--purple);
  padding: 12px 14px;
  border-radius: 2px;
}
.outcome-chip h4 { font-size: 0.8rem; color: var(--purple); margin-bottom: 4px; }
.outcome-chip p { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }

/* ─── About Page ──────────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--purple-deep);
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.about-hero h1 span { color: var(--gold); }
.about-hero-desc { font-size: 1.05rem; color: rgba(237,230,247,0.8); line-height: 1.8; font-style: italic; }
.about-hero-right { text-align: center; }
.about-logo { width: 220px; opacity: 0.9; }

.about-section { padding: 70px 40px; }
.about-section:nth-child(even) { background: var(--light-purple); }
.about-section-inner { max-width: 900px; margin: 0 auto; }
.about-section-inner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--purple-deep); margin-bottom: 24px; }
.about-section-inner p { font-size: 1.05rem; color: var(--text); line-height: 1.85; margin-bottom: 18px; text-align: justify; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.diff-card {
  background: var(--purple-deep);
  padding: 28px 24px;
  border-bottom: 3px solid var(--gold);
  border-radius: 2px;
}
.diff-card h3 { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.diff-card p { font-size: 0.92rem; color: rgba(237,230,247,0.82); line-height: 1.6; }

/* ─── Contact Page ────────────────────────────────────────────────────────────── */
.contact-hero {
  background: var(--purple-deep);
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
}
.contact-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.contact-hero h1 span { color: var(--gold); }
.contact-hero p { font-size: 1.1rem; color: rgba(237,230,247,0.8); font-style: italic; }

.contact-section { padding: 80px 40px; }
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {}
.contact-info h2 { font-size: 1.6rem; color: var(--purple-deep); margin-bottom: 24px; }

.why-session-box {
  background: var(--brown);
  background-image: linear-gradient(135deg, var(--brown), var(--purple-mid));
  padding: 32px 28px;
  border-radius: 2px;
  border-left: 4px solid var(--gold);
  margin-bottom: 36px;
}
.why-session-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.why-session-box p { font-size: 0.95rem; color: rgba(237,230,247,0.88); line-height: 1.7; margin-bottom: 20px; }

.contact-details { margin-top: 28px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2px;
}
.contact-detail-value { font-size: 0.98rem; color: var(--text); }
.contact-detail-value a { color: var(--purple); text-decoration: none; }
.contact-detail-value a:hover { color: var(--gold); text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {}
.contact-form-wrap h2 { font-size: 1.6rem; color: var(--purple-deep); margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(123,47,190,0.25);
  border-radius: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: var(--light-purple);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 2px;
  margin-top: 16px;
  font-size: 1rem;
  color: var(--purple-deep);
}

/* Pricing section on contact page */
.pricing-section { padding: 70px 40px; background: var(--light-purple); }
.pricing-inner { max-width: 1000px; margin: 0 auto; }
.pricing-inner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--purple-deep); margin-bottom: 12px; }
.pricing-intro { font-size: 1.05rem; color: var(--text-light); font-style: italic; margin-bottom: 40px; line-height: 1.7; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pricing-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  border-top: 4px solid var(--purple);
  position: relative;
}
.pricing-card.gold { border-top-color: var(--gold); }
.pricing-card h3 {
  font-size: 1.1rem;
  color: var(--purple-deep);
  margin-bottom: 6px;
}
.pricing-card h3 span { color: var(--purple); }
.pricing-card.gold h3 span { color: var(--gold-dim); }
.pricing-card-tagline { font-size: 0.88rem; color: var(--text-light); font-style: italic; margin-bottom: 20px; }
.pricing-card ul { list-style: none; }
.pricing-card ul li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid rgba(123,47,190,0.08);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.pricing-card ul li::before { content: '▸'; color: var(--gold); flex-shrink: 0; }

/* ─── Footer ──────────────────────────────────────────────────────────────────── */
footer {
  background: var(--purple-deep);
  border-top: 2px solid var(--gold);
  padding: 48px 40px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; color: rgba(237,230,247,0.65); line-height: 1.7; }
.footer-tagline { font-style: italic; color: var(--gold); margin-top: 8px; font-size: 0.88rem; }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  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: 0.88rem;
  color: rgba(237,230,247,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(237,230,247,0.45); line-height: 1.6; }
.footer-disclaimer { font-size: 0.72rem; color: rgba(237,230,247,0.35); max-width: 560px; line-height: 1.5; text-align: right; }

/* ─── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .who-grid, .about-hero-inner, .contact-inner,
  .service-detail-inner, .service-detail:nth-child(even) .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-left,
  .service-detail:nth-child(even) .service-detail-right { order: unset; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--purple-deep); padding: 24px; gap: 20px; border-bottom: 1px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section, .about-section, .service-detail, .contact-section, .pricing-section { padding: 50px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  .hero-inner { padding: 60px 20px; }
}
