/*
 * ═══════════════════════════════════════════════════════
 *  Saakshat — styles.css
 *  A calm, premium psychology practice website.
 *  Author: Refactored for Swastika Mahalaxmikar
 * ═══════════════════════════════════════════════════════
 *
 *  TABLE OF CONTENTS
 *  0.  Reset & Base
 *  1.  CSS Custom Properties (Design Tokens)
 *  2.  Scrollbar
 *  3.  Accessibility
 *  4.  Typography Utilities
 *  5.  Navigation
 *  6.  Floating WhatsApp Bubble
 *  7.  Hero Section
 *  8.  Wave Divider
 *  9.  About Section
 * 10.  Quote Strip
 * 11.  Services Section
 * 12.  Wellness Quiz / Test Section
 * 13.  Ethics Section
 * 14.  Intake Form Section
 * 15.  Contact Section
 * 16.  Footer
 * 17.  Animations & Reveal
 * 18.  Responsive / Mobile
 */


/* ─────────────────────────────────────────────
   0. RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}


/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
───────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg: #FAF8F5;
  --bg2: #F4F0EB;
  --white: #FDFCFB;

  /* Brand greens */
  --sage: #8B9E77;
  --sage-light: #B8C9AA;
  --sage-dark: #6A7D5C;

  /* Accent */
  --lavender: #C4B5D1;
  --lavender-light: #E4DCF0;
  --peach: #E8D5C4;
  --peach-light: #F5EDE4;

  /* Text */
  --ink: #3A3530;
  --ink-soft: #5A524C;
  --dust: #9E9289;

  /* UI */
  --border: rgba(58, 53, 48, 0.10);
  --shadow: 0 8px 40px rgba(58, 53, 48, 0.08);
  --shadow-sm: 0 2px 16px rgba(58, 53, 48, 0.07);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.7s ease;
}


/* ─────────────────────────────────────────────
   2. SCROLLBAR
───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--sage-light);
  border-radius: 10px;
}


/* ─────────────────────────────────────────────
   3. ACCESSIBILITY
───────────────────────────────────────────── */
/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Visible focus ring for keyboard nav */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ─────────────────────────────────────────────
   4. TYPOGRAPHY UTILITIES
───────────────────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

/* Centred label variant (no left bar) */
.section-label--center {
  justify-content: center;
}
.section-label--center::before {
  display: none;
}

/* Light label variant (for dark backgrounds) */
.section-label--light {
  color: var(--sage-light);
}
.section-label--light::before {
  background: var(--sage-light);
}

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
h2.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

/* Light section-title for dark backgrounds */
.section-title--light {
  color: var(--white);
}
.section-title--light em {
  color: var(--sage-light);
}

/* Intro paragraph under section heading */
.section-intro {
  color: var(--ink-soft);
  max-width: 540px;
  font-size: 1rem;
}

/* Centred section block */
.section-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Section base layout */
section {
  padding: var(--space-xl) var(--space-lg);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────
   5. NAVIGATION
───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

/* Scrolled state — adds a subtle underline */
nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* Logo */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover {
  opacity: 0.8;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* On dark nav (contact page) — keep logo visible */
.nav-logo-img--light {
  /* Logo has white background - keep it visible on dark nav with slight opacity */
  opacity: 0.92;
  border-radius: 6px;
}

/* Mobile: slightly smaller logo */
@media (max-width: 600px) {
  .nav-logo-img {
    height: 36px;
  }
}

/* Nav links list */
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links li {
  flex-shrink: 0;
  list-style: none;
}
.nav-links a:hover {
  color: var(--sage);
}

/* CTA pill in nav */
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger menu (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--transition-base);
  display: block;
}


/* ─────────────────────────────────────────────
   6. FLOATING WHATSAPP BUBBLE
───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform var(--transition-fast);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65); }
}


/* ─────────────────────────────────────────────
   7. HERO SECTION
───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Background soft shape */
.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 110%;
  background: linear-gradient(145deg, var(--lavender-light) 0%, var(--peach-light) 60%, var(--bg) 100%);
  border-radius: 40% 0 0 50% / 60% 0 0 40%;
  opacity: 0.55;
  z-index: 0;
}

/* Dot grid texture */
.hero-dots {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--sage-light) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.25;
  z-index: 0;
}

/* Main text content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--sage);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(139, 158, 119, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 158, 119, 0.40);
}

.btn-ghost {
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.btn-ghost:hover {
  color: var(--sage);
  border-color: var(--sage);
}

/* Floating profile card (right side of hero) */
.hero-float {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 300px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.hcard-title {
  font-size: 0.75rem;
  color: var(--dust);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hcard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.hstat {
  text-align: center;
}
.hstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage);
  display: block;
}
.hstat-l {
  font-size: 0.7rem;
  color: var(--dust);
  letter-spacing: 0.06em;
}
.hcard-tag {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag {
  background: var(--bg2);
  color: var(--ink-soft);
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.tag.green {
  background: rgba(139, 158, 119, 0.12);
  color: var(--sage-dark);
}
.tag.purple {
  background: rgba(196, 181, 209, 0.2);
  color: #7A5FA0;
}


/* ─────────────────────────────────────────────
   8. WAVE DIVIDER
───────────────────────────────────────────── */
.wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--bg);
}
.wave svg {
  display: block;
}


/* ─────────────────────────────────────────────
   9. ABOUT SECTION
───────────────────────────────────────────── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Portrait / visual placeholder */
.about-visual {
  position: relative;
}
.about-img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--lavender-light), var(--peach-light));
  border-radius: 24px 24px 60% 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.about-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(139, 158, 119, 0.3);
  letter-spacing: -0.02em;
  user-select: none;
}

/* Floating credential badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sage);
  color: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  display: block;
  line-height: 1;
}
.about-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* Text side */
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--sage-dark);
  font-style: italic;
}

/* Specialty pills */
.about-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────────
   10. QUOTE STRIP
───────────────────────────────────────────── */
.quote-strip {
  background: var(--sage);
  padding: var(--space-lg);
  text-align: center;
  color: var(--white);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.4;
}
.quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}


/* ─────────────────────────────────────────────
   11. SERVICES SECTION
───────────────────────────────────────────── */
#services {
  background: var(--bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
/* Animated top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  transform: scaleX(1);
}

/* Service number marker (replaces emoji) */
.service-marker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────
   12. WELLNESS QUIZ / TEST SECTION
───────────────────────────────────────────── */
#test {
  background: var(--bg2);
}

.test-wrapper {
  max-width: 720px;
  margin: 52px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Coloured header band */
.test-header {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  padding: 36px 40px;
  color: var(--white);
}
.test-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.test-header p {
  opacity: 0.85;
  font-size: 0.9rem;
}

/* Quiz body */
.test-body {
  padding: 40px;
  min-height: 300px; /* prevents collapse before JS runs */
}

/* Progress bar */
.test-progress-bar {
  height: 3px;
  background: var(--bg2);
  border-radius: 10px;
  margin-bottom: 36px;
}
.test-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--sage);
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* Question */
.test-q-num {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.test-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.3;
  color: var(--ink);
  min-height: 2em; /* ensures space even before JS writes text */
}

/* Options */
.test-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.test-option {
  background: var(--bg2);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  color: var(--ink-soft);
  transition: all var(--transition-fast);
  text-align: left;
}
.test-option:hover {
  border-color: var(--sage-light);
  color: var(--ink);
  background: var(--peach-light);
}
.test-option.selected {
  border-color: var(--sage);
  background: rgba(139, 158, 119, 0.08);
  color: var(--sage-dark);
  font-weight: 400;
}

/* Navigation button */
.test-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
.btn-test {
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-test:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}
.btn-test:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ── Result screen ── */
.test-result {
  text-align: center;
  padding: 20px 0;
}
/* Result icon area (replaces emoji) */
.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 158, 119, 0.12);
  border: 1.5px solid var(--sage-light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--sage);
}
.result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.result-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.result-hint {
  background: var(--lavender-light);
  border-left: 3px solid var(--lavender);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.result-hint strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.result-retake {
  margin-top: 14px;
}
.btn-retake {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dust);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.btn-retake:hover {
  color: var(--sage);
}


/* ─────────────────────────────────────────────
   13. ETHICS SECTION
───────────────────────────────────────────── */
#ethics {
  background: var(--white);
}

.ethics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.ethics-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.ethics-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

/* Large decorative number */
.ethics-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bg2);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  user-select: none;
}

.ethics-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.ethics-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.ethics-tag {
  margin-top: 12px;
  display: inline-block;
  background: rgba(139, 158, 119, 0.1);
  color: var(--sage-dark);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}


/* ─────────────────────────────────────────────
   14. INTAKE FORM SECTION
───────────────────────────────────────────── */
#intake {
  background: var(--bg);
}

.intake-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.intake-left h2 {
  margin-bottom: 16px;
}
.intake-left p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.intake-promise {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.intake-promise h5 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.promise-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.promise-item::before {
  content: '✓';
  color: var(--sage);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Form card */
.intake-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* Form rows & groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 8px;
}

/* Inputs, selects, textareas */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 300;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-light);
  background: var(--white);
}
.form-group textarea {
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  /* Custom caret */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E9289' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Consent checkbox row */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sage);
  cursor: pointer;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  cursor: pointer;
}

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius-pill);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(139, 158, 119, 0.35);
}
.btn-submit:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
}
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 28px;
}


/* ─────────────────────────────────────────────
   15. CONTACT SECTION
───────────────────────────────────────────── */
#contact {
  background: linear-gradient(160deg, var(--ink) 0%, #2A2420 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 52px;
  align-items: start;
}

.contact-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Contact link rows */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transform: translateX(4px);
}

/* Icon circles */
.cl-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl-icon--email { background: rgba(139, 158, 119, 0.2); color: var(--sage-light); }
.cl-icon--wa    { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.cl-icon--li    { background: rgba(0, 119, 181, 0.15); color: #0a91d4; }

.cl-label {
  font-size: 0.72rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* CTA card */
.contact-cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-cta-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 14px;
}
.contact-cta-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* WhatsApp button (appears on dark and light backgrounds) */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  font-weight: 400;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: #20b85a;
  transform: translateY(-2px);
}

.contact-intake-link {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-intake-link a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}
.contact-intake-link a:hover {
  color: var(--sage-light);
}


/* ─────────────────────────────────────────────
   16. FOOTER
───────────────────────────────────────────── */
footer {
  background: #201C18;
  color: rgba(255, 255, 255, 0.35);
  padding: 32px 48px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-logo a:hover {
  color: var(--sage-light);
}
footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}
footer a:hover {
  color: var(--sage-light);
}
.footer-disclaimer {
  margin-top: 16px;
  font-size: 0.7rem;
  opacity: 0.5;
}


/* ─────────────────────────────────────────────
   17. ANIMATIONS & REVEAL ON SCROLL
───────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal on scroll — used on inner pages only (about, services, ethics etc)
   index.html has NO reveal classes so these rules do not affect it */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal.visible.reveal-delay-1 { transition-delay: 0.08s; }
.reveal.visible.reveal-delay-2 { transition-delay: 0.16s; }
.reveal.visible.reveal-delay-3 { transition-delay: 0.24s; }

/* Hard CSS fallback — content always becomes visible after 1.2s
   even if JS observer never fires */
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealFallback 0s 1.2s both;
}
.reveal.visible {
  animation: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}


/* ─────────────────────────────────────────────
   18. RESPONSIVE / MOBILE
───────────────────────────────────────────── */
@media (max-width: 1080px) {
  /* Nav */
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    padding: 100px 24px 60px;
  }
  .hero-float {
    display: none; /* hide profile card on mobile */
  }

  /* Sections */
  section {
    padding: 64px 24px;
  }

  /* Grids → single column */
  .about-grid,
  .intake-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 360px;
  }
  .about-badge {
    right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .ethics-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }
  .intake-form-card {
    padding: 28px 24px;
  }

  /* Quiz */
  .test-body {
    padding: 28px 24px;
  }

  /* Quote & footer */
  .quote-strip {
    padding: 40px 24px;
  }
  footer {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .hero-h1 {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════
   19. INNER PAGE COMPONENTS
   These styles apply ONLY to the 6 standalone pages
   (about, services, wellness, ethics, intake, contact).
   index.html is unaffected.
═══════════════════════════════════════════════════════ */

/* ── Page Header (replaces hero on inner pages) ── */
.page-header {
  padding: 140px 48px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Soft decorative shape in background */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  height: 100%;
  background: linear-gradient(150deg, var(--lavender-light) 0%, var(--peach-light) 100%);
  border-radius: 40% 0 0 60%;
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Eyebrow label inside page header */
.page-header .section-label {
  animation: fadeUp 0.7s 0.05s both;
}

/* Main H1 for inner pages */
.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
  animation: fadeUp 0.7s 0.2s both;
}
.page-header-title em {
  font-style: italic;
  color: var(--sage-dark);
}

/* Subtitle paragraph */
.page-header-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.35s both;
}

/* ── Active nav link on inner pages ── */
.nav-links a.nav-active {
  color: var(--sage);
  border-bottom: 1.5px solid var(--sage);
  padding-bottom: 2px;
}
/* Active state doesn't apply to pill CTA */
.nav-cta.nav-active {
  border-bottom: none !important;
  padding-bottom: 9px !important;
  background: var(--sage-dark) !important;
}

/* ── Contact page: dark background fills page ── */
.page-contact-bg {
  background: linear-gradient(160deg, var(--ink) 0%, #2A2420 100%);
  min-height: 100vh;
}

/* ── Inner pages — h1 reusing section-title styles ── */
.page-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}
.page-section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

/* ── About page — timeline / philosophy block ── */
.about-philosophy {
  background: var(--bg2);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-top: 40px;
  border-left: 3px solid var(--sage-light);
}
.about-philosophy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ink);
}
.about-philosophy p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ── About page — credentials row ── */
.about-credentials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust);
}
.cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

/* ── Services page — expanded service card ── */
.service-card-expanded {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.service-card-expanded::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card-expanded:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card-expanded:hover::before {
  transform: scaleX(1);
}
.service-card-expanded .service-marker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  user-select: none;
  padding-top: 2px;
}
.service-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}
.service-card-body .service-detail {
  font-size: 0.82rem;
  color: var(--dust);
  letter-spacing: 0.04em;
  font-style: italic;
}
.services-expanded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

/* ── Wellness page — guidance block ── */
.wellness-guidance {
  max-width: 720px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guidance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
}
.guidance-card .guidance-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage-light);
  display: block;
  margin-bottom: 8px;
}
.guidance-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.guidance-card p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Ethics page — formal tone block ── */
.ethics-intro-block {
  background: var(--bg2);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  border-left: 3px solid var(--sage);
}
.ethics-intro-block .ethics-intro-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  user-select: none;
}
.ethics-intro-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ink);
}
.ethics-intro-block p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── Intake page — process steps ── */
.intake-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.intake-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1.1;
  flex-shrink: 0;
  width: 32px;
}
.step-body h5 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.step-body p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── Responsive for inner pages ── */
@media (max-width: 900px) {
  .page-header {
    padding: 110px 24px 56px;
  }
  .page-header::before {
    display: none;
  }
  .services-expanded-grid {
    grid-template-columns: 1fr;
  }
  .service-card-expanded {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wellness-guidance {
    grid-template-columns: 1fr;
  }
  .ethics-intro-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ethics-intro-block .ethics-intro-num {
    font-size: 3rem;
  }
  .about-credentials {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .page-header-title {
    font-size: 2.2rem;
  }
}


/* ═══════════════════════════════════════════════════════
   20. TESTIMONIALS — Homepage grid + full page stacked
═══════════════════════════════════════════════════════ */

/* ── Section background ── */
#testimonials {
  background: var(--bg2);
}
.testimonials-section-alt {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
}

/* ── Homepage grid — 3 cols ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

/* ── Homepage testimonial card ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Large decorative opening quote mark */
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--sage-light);
  margin-bottom: 16px;
  user-select: none;
  display: block;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
  quotes: none;
}

.testimonial-meta {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.testimonial-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
  text-align: center;
  display: block;
}

/* ── CTA link below testimonials grid ── */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Full-page stacked layout (testimonials.html) ── */
.testimonials-stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  position: relative;
  transition: box-shadow 0.25s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial-card-full:hover {
  box-shadow: var(--shadow-sm);
}

/* In alt-bg sections, cards get a slightly different bg */
.testimonials-section-alt .testimonial-card-full {
  background: var(--bg2);
}

.testimonial-text-full {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.85;
  font-style: italic;
  quotes: none;
  margin-bottom: 20px;
}

.testimonial-meta-full {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.testimonial-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
  text-align: center;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card-full {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 12px;
  }
  .testimonials-section-alt {
    padding: 64px 24px;
  }
}


/* ═══════════════════════════════════════════════════════
   21. TESTIMONIAL SLIDER
   Used on both index.html and testimonials.html.
   One slide visible at a time, fade transition,
   prev/next arrows, dot indicators, counter.
═══════════════════════════════════════════════════════ */

/* ── Section background ── */
#testimonials {
  background: var(--bg2);
}
#testimonials-full {
  background: var(--bg);
}

/* ── Outer wrapper ── */
.slider-wrapper {
  max-width: 780px;
  margin: 52px auto 0;
  position: relative;
}

/* Full-page variant is slightly wider */
.slider-wrapper--full {
  max-width: 860px;
}

/* ── Track — clips slides, fixed height prevents layout shift ── */
.slider-track {
  position: relative;
}

/* ── Individual slide ── */
.slider-slide {
  display: none;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 52px 36px;
  box-shadow: var(--shadow-sm);
  animation: slideIn 0.35s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Active slide — simply displayed */
.slider-slide.active {
  display: block;
}

/* ── Large decorative quote mark ── */
.slider-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--sage-light);
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

/* ── Testimonial text ── */
.slider-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 28px;
  quotes: none;
}

/* Full-page version — slightly larger text ── */
.slider-wrapper--full .slider-text {
  font-size: 1.22rem;
}

/* ── Meta / label ── */
.slider-meta {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.slider-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
  text-align: center;
  display: block;
}

/* ── Controls row ── */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

/* ── Arrow buttons ── */
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
  flex-shrink: 0;
}
.slider-btn:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  box-shadow: 0 2px 12px rgba(139, 158, 119, 0.2);
  transform: scale(1.06);
}
.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Dot indicators ── */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 280px; /* keeps dots from spreading too wide on full slider */
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--sage-light);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast),
              transform var(--transition-fast);
  flex-shrink: 0;
}
.slider-dot.active {
  background: var(--sage);
  transform: scale(1.35);
}
.slider-dot:hover:not(.active) {
  background: var(--sage-dark);
}

/* ── Counter ── */
.slider-counter {
  text-align: center;
  margin-top: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--dust);
}

.slider-current {
  color: var(--sage-dark);
  font-weight: 500;
}

/* ── CTA below slider ── */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .slider-slide {
    padding: 32px 28px 28px;
  }
  .slider-wrapper--full .slider-track {
    min-height: 420px; /* more text wraps on mobile */
  }
  .slider-track {
    min-height: 320px;
  }
  .slider-text {
    font-size: 1.05rem;
  }
  .slider-quote-mark {
    font-size: 4.5rem;
  }
}

@media (max-width: 600px) {
  .slider-slide {
    padding: 28px 20px 24px;
  }
  .slider-controls {
    gap: 16px;
  }
}


/* ═══════════════════════════════════════════════════════
   22. CONNECT PAGE — Restructured layout
   Order: Heading → Form (centered) → Info + WA (2-col)
═══════════════════════════════════════════════════════ */

/* ── Dark nav variant (no inline styles needed) ── */
.nav-dark {
  background: rgba(58, 53, 48, 0.88) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* nav-logo--light handled by nav-logo-img--light filter */
.nav-links--light a {
  color: rgba(255, 255, 255, 0.62) !important;
}
.nav-links--light a:hover {
  color: var(--sage-light) !important;
}
.hamburger--light span {
  background: rgba(255, 255, 255, 0.72) !important;
}

/* ── SECTION 1: Heading ── */
.connect-heading-section {
  padding: 140px 48px 56px;
}
.connect-heading-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
  margin-top: 16px;
}

/* ── SECTION 2: Form (centered card on light bg) ── */
.connect-form-section {
  background: var(--bg);
  padding: 72px 48px 80px;
}
.connect-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.connect-form-title {
  color: var(--ink);
}
.connect-form-title em {
  color: var(--sage-dark);
}
.connect-form-subtitle {
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Centered form card — wider than intake.html version */
.connect-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}

/* ── SECTION 3: Info + WA (dark bg, two columns) ── */
.connect-info-section {
  background: linear-gradient(160deg, var(--ink) 0%, #2A2420 100%);
  padding: 80px 48px 96px;
}
.connect-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left column */
.connect-info-left {
  /* inherits contact-text, contact-links etc from existing CSS */
}
.connect-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.connect-info-title em {
  font-style: italic;
  color: var(--sage-light);
}

/* Right column — WhatsApp card */
.connect-wa-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.connect-wa-card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin: 0;
}
.connect-wa-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.connect-wa-card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* WhatsApp text button — clean pill, no SVG icon */
.btn-wa-text {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(139, 158, 119, 0.35);
  margin-top: 8px;
  align-self: flex-start;
}
.btn-wa-text:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 158, 119, 0.42);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .connect-heading-section {
    padding: 110px 24px 44px;
  }
  .connect-form-section {
    padding: 52px 24px 64px;
  }
  .connect-form-card {
    padding: 32px 24px;
  }
  .connect-info-section {
    padding: 60px 24px 72px;
  }
  .connect-info-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .connect-wa-card {
    padding: 32px 28px;
  }
  .btn-wa-text {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .connect-form-card {
    padding: 28px 18px;
  }
}


/* ═══════════════════════════════════════════════════════
   23. PROFILE PHOTO
   Styles the real photo inside the about-img-frame.
   Replaces the SM initials placeholder.
═══════════════════════════════════════════════════════ */

/* The img fills the frame perfectly, cropped to face */
.about-photo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px 24px 60% 24px;
  position: absolute;
  top: 0;
  left: 0;
}

/* Initials fallback — shown via JS onerror if photo fails to load */
.about-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(139, 158, 119, 0.3);
  letter-spacing: -0.02em;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}


/* ── Instagram contact link ── */
.cl-icon--insta {
  background: rgba(225, 48, 108, 0.12);
  color: #e1306c;
}
.contact-link.cl-insta:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* Footer Instagram link */
footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}
footer a:hover {
  color: var(--sage-light);
}
