@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ============================================
   THE SCENE WITHIN — Multi-Page Design
   WellMind-inspired + Lavender/Purple/Yellow/Teal
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-bg: #FAFAF8;
  --color-bg-warm: #F5F2EE;
  --color-bg-card: #FFFFFF;
  --color-bg-footer: #13111C;
  --color-ink: #1A1A2E;
  --color-ink-soft: #3D3B50;
  --color-ink-muted: #6E6B80;
  --color-accent: #7C5CBF;
  --color-accent-hover: #6A4BA8;
  --color-accent-light: #A78BDB;
  --color-accent-glow: rgba(124, 92, 191, 0.10);
  --color-accent-gradient: linear-gradient(135deg, #7C5CBF, #A78BDB);
  --color-yellow: #E6D5B8;
  --color-teal: #7BA39C;
  --color-lavender: #E8E0F0;
  --color-white: #FFFFFF;
  --color-border: rgba(26, 26, 46, 0.06);
  --color-border-medium: rgba(26, 26, 46, 0.12);
  --color-hero-muted: #9b82d4;
  --color-hero-accent: #6b5fa0;
  --color-hero-sub: #4a3f6b;

  /* Elevation system — dimensional layering */
  --shadow-xs: 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.05), 0 1px 2px rgba(26, 26, 46, 0.03);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.06), 0 2px 4px rgba(26, 26, 46, 0.03);
  --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.08), 0 4px 12px rgba(26, 26, 46, 0.04);
  --shadow-xl: 0 24px 64px rgba(26, 26, 46, 0.10), 0 8px 20px rgba(26, 26, 46, 0.05);
  --shadow-accent: 0 8px 32px rgba(124, 92, 191, 0.15), 0 2px 8px rgba(124, 92, 191, 0.08);
  --shadow-accent-lg: 0 20px 60px rgba(124, 92, 191, 0.18), 0 8px 20px rgba(124, 92, 191, 0.10);

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);

  --font-heading: 'Syne', sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --nav-height: 90px;
  --container-max: 1200px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-full: 999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bg);
  font-weight: 300;
  overflow-x: hidden;
}

::selection { background: rgba(124, 92, 191, 0.2); color: var(--color-ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* --- Typography --- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
  padding: 7px 18px;
  background: linear-gradient(135deg, rgba(124, 92, 191, 0.08), rgba(167, 139, 219, 0.12));
  border: 1px solid rgba(124, 92, 191, 0.12);
  border-radius: var(--radius-full);
}

.section-title-serif {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.section-header-center {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-subtitle {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: var(--color-ink-muted);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent-gradient);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border-medium);
}

.btn-ghost:hover {
  background: var(--color-ink);
  color: var(--color-bg);
  border-color: var(--color-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ============================================
   NAVIGATION — imported from nav.css
   ============================================ */

/* ---- Page Header (shared inner pages) ---- */

/* ============================================
   PAGE HEADER (shared by inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--nav-height) + clamp(60px, 8vw, 120px)) 0 clamp(60px, 8vw, 100px);
  text-align: center;
}

.page-header-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.1;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-header-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--color-ink-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   HERO (Home page — WellMind inspired)
   ============================================ */
.hero {
  padding: calc(var(--nav-height) + 60px) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F0EBF8 0%, #FAF8FD 30%, var(--color-bg) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 163, 156, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-hero-muted);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  color: var(--color-ink);
  margin: 0 auto 28px;
  letter-spacing: -0.01em;
  max-width: 520px;
}

.hero-accent-source {
  color: var(--color-hero-accent);
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-hero-sub);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Hero Gallery — 5-image dynamic grid (WellMind) */
.hero-gallery {
  width: 100%;
  overflow: hidden;
  padding: 0 clamp(20px, 3vw, 60px);
}

.hero-gallery-grid {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  justify-content: center;
  align-items: flex-end;
}

.hero-img {
  flex: 1;
  height: clamp(240px, 30vw, 380px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-img:nth-child(2) {
  height: clamp(270px, 34vw, 420px);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.hero-img:hover img { transform: scale(1.05); cursor: pointer; }



/* Hero Script Quote */
.hero-script-quote {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 8vw, 120px);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-script-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.9;
  color: var(--color-ink-soft);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
}

.hero-script-quote p:first-child {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.6;
  color: var(--color-ink);
  font-style: normal;
  margin-bottom: 24px;
}

/* Scroll indicator — removed */
.scroll-indicator { display: none; }
.scroll-mouse { display: none;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================
   ABOUT PREVIEW (Home page)
   ============================================ */
.about-preview {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #faf9ff;
  overflow: hidden;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 340px 180px;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about-preview-text {
  max-width: 520px;
}

.about-preview-grid .section-title-serif { margin-bottom: 28px; }

.about-preview-lead {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--color-ink-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-preview-image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 1);
  transform: rotate(-1deg);
  transition: transform 0.5s ease;
}

.about-preview-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-chip {
  background: #e7defb;
  color: #4a3f6b;
  font-family: var(--font-ui);
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: default;
}

.what-chip:hover {
  transform: translateX(4px);
  background: #dfd2f7;
  border-color: rgba(74, 63, 107, 0.1);
}

@media (max-width: 1200px) {
  .about-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .what-pills {
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .what-chip {
    width: auto;
  }
}

@media (max-width: 768px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-preview-text {
    margin: 0 auto;
  }
  
  .about-preview-image {
    max-width: 300px;
    margin: 20px auto;
    transform: none;
  }
  
  .about-preview-image:hover {
    transform: scale(1.02);
  }
  
  .what-pills {
    grid-column: auto;
    margin-top: 20px;
  }
}


/* ============================================
   SERVICES (Home page — WellMind grid)
   ============================================ */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-bg-warm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 56px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(231, 222, 251, 0.8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  display: block;
  box-shadow: 0 10px 40px rgba(74, 63, 107, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(74, 63, 107, 0.12);
  border-color: var(--color-accent-light);
}

.service-card-img {
  width: calc(100% - 20px);
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 10px 10px 0;
  background: var(--color-bg-warm);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body { padding: 24px 28px 32px; }

.service-card-body h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: none;
}

.service-card-body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.services-cta { text-align: center; }

/* ============================================
   SESSIONS & PRICING (Pro Max 21st.dev Style)
   ============================================ */
.sessions-pricing {
  padding: clamp(100px, 12vw, 160px) 0;
  background: radial-gradient(circle at top center, #fbfaff 0%, #f4effb 100%);
  position: relative;
  overflow: hidden;
}

.sessions-pricing::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.section-header-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 3;
}

.pricing-grid-pro {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Base Card Styles */
.pricing-card-pro {
  position: relative;
  border-radius: 32px;
  padding: 2px; /* For gradient border */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
  box-shadow: 0 10px 40px rgba(124, 92, 191, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(124, 92, 191, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.pricing-card-bg {
  position: absolute;
  inset: 2px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1;
  overflow: hidden;
}

.pricing-card-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-duration-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(124, 92, 191, 0.1);
  color: var(--color-accent);
  margin-bottom: 24px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pricing-price-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  color: var(--color-ink);
}

.pricing-price-wrap .currency {
  font-size: 24px;
  font-weight: 500;
  margin-top: 8px;
  margin-right: 4px;
}

.pricing-price-wrap .price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin-bottom: 40px;
  min-height: 72px;
}

.pricing-features {
  margin-bottom: 48px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
}

.pricing-features li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-pricing svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-pricing:hover svg {
  transform: translateX(6px);
}

.btn-secondary-pro {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid rgba(26, 26, 46, 0.15);
}

.btn-secondary-pro:hover {
  background: var(--color-ink);
  color: var(--color-bg);
  border-color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
}

/* Featured Card Pro Styling */
.pricing-card-pro.featured-pro {
  background: linear-gradient(135deg, #2a2640, #13111c);
  box-shadow: 0 24px 60px rgba(26, 26, 46, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-16px);
}

.pricing-card-pro.featured-pro:hover {
  transform: translateY(-24px);
  box-shadow: 0 40px 80px rgba(26, 26, 46, 0.6), inset 0 0 0 1px rgba(167, 139, 219, 0.4);
}

.pricing-card-pro.featured-pro .pricing-card-bg {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Internal Glow */
.pricing-card-pro.featured-pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: radial-gradient(circle at top, rgba(167, 139, 219, 0.2), transparent 70%);
  border-radius: 30px 30px 0 0;
  pointer-events: none;
  z-index: 1;
}

.pricing-card-pro.featured-pro .pricing-duration-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #e7defb;
}

.pricing-card-pro.featured-pro .pricing-title,
.pricing-card-pro.featured-pro .pricing-price-wrap {
  color: #ffffff;
}

.pricing-card-pro.featured-pro .pricing-desc,
.pricing-card-pro.featured-pro .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card-pro.featured-pro .pricing-features li svg {
  color: #a78bdb;
}

.btn-primary-pro {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary-pro:hover {
  background: #f0ebf8;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.pricing-featured-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #7c5cbf, #A78BDB, #7c5cbf);
  background-size: 200% auto;
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(124, 92, 191, 0.5);
  animation: shimmerBadge 4s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes shimmerBadge {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@media (max-width: 768px) {
  .pricing-grid-pro {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }
  .pricing-card-pro.featured-pro {
    transform: none;
  }
  .pricing-card-pro.featured-pro:hover {
    transform: translateY(-8px);
  }
}



@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 500px;
  }
  
  .pricing-card--featured {
    transform: scale(1.02);
  }
  
  .pricing-card--featured:hover {
    transform: scale(1.03) translateY(-10px);
  }
}

@media (max-width: 576px) {
  .pricing-card {
    padding: 32px;
    border-radius: 24px;
  }
  
  .pricing-badge {
    left: 32px;
  }
}

.pricing-footer {
  text-align: center;
  margin-top: 60px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(74, 63, 107, 0.6);
  letter-spacing: 0.05em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}


/* ============================================
   PULL QUOTE STRIP - REFINED PREMIUM
   ============================================ */
.pull-quote-strip {
  padding: 120px 40px;
  background: #e7defb;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(155, 130, 212, 0.25) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pull-quote-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.pull-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #1a1a2e 0%, rgba(26, 26, 46, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.pull-quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: #6b5fa0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  opacity: 0.9;
}

.pull-quote-attribution::before,
.pull-quote-attribution::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(107, 95, 160, 0.4), transparent);
}

/* Advanced Floating Decorative Quotes */
.pull-quote-strip::before,
.pull-quote-strip::after {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 240px;
  color: rgba(107, 95, 160, 0.06);
  line-height: 1;
  pointer-events: none;
  animation: floatQuote 12s ease-in-out infinite;
}

.pull-quote-strip::before {
  content: '“';
  top: 5%;
  left: 5%;
}

.pull-quote-strip::after {
  content: '”';
  bottom: -5%;
  right: 5%;
  animation-delay: -6s;
}

@keyframes floatQuote {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -15px) rotate(3deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

/* Entrance Animation - Blur Removed to Fix Readability */
.pull-quote-strip .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.pull-quote-strip .reveal.active {
  opacity: 1;
  transform: translateY(0);
}




/* ============================================
   SECTION 07: ABOUT
   ============================================ */
.about-section {
  padding: 140px 0;
  background: #faf9ff;
  position: relative;
  overflow: hidden;
}

/* Background Accent */
.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 130, 212, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: clamp(60px, 10vw, 120px);
  position: relative;
  z-index: 2;
}

.about-image-col {
  flex: 0 0 clamp(280px, 30vw, 360px);
}

.about-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.2;
  border-radius: 8px;
  perspective: 1000px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(26, 26, 46, 0.15);
  transition: all 0.8s var(--ease-out-expo);
  display: block;
}

/* Decorative Offset Frame */
.about-photo-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(107, 95, 160, 0.2);
  border-radius: 6px;
  z-index: 1;
  transition: all 0.8s var(--ease-out-expo);
  background: rgba(107, 95, 160, 0.02);
}

.about-image-container:hover .about-photo {
  transform: translate(-10px, -10px) scale(1.02);
  box-shadow: 20px 40px 80px rgba(26, 26, 46, 0.2);
}

.about-image-container:hover .about-photo-frame {
  transform: translate(10px, 10px);
  background: rgba(107, 95, 160, 0.05);
  border-color: rgba(107, 95, 160, 0.4);
}

.about-text-col {
  flex: 1;
  max-width: 600px;
}


.about-text-col .section-eyebrow {
  margin-bottom: 16px;
  color: #6b5fa0;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(107, 95, 160, 0.2);
}

.about-text-col .section-heading {
  margin-bottom: 32px;
  font-size: clamp(34px, 5vw, 48px);
  color: #1a1a2e;
  line-height: 1.1;
}

.about-body p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a68;
  margin-bottom: 24px;
  font-family: var(--font-ui);
  font-weight: 300;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* Responsive About */
@media (max-width: 768px) {
  .about-section {
    padding: 100px 0;
  }
  
  .about-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .about-image-col {
    flex: 0 0 auto;
    width: 300px; /* Fixed width on mobile for balance */
    max-width: 90%;
  }
  
  .about-text-col {
    max-width: 100%;
  }

  .about-text-col .section-heading {
    margin-bottom: 24px;
  }

  .about-photo-frame {
    top: 15px;
    left: 15px;
  }
}

/* ============================================
   SECTION 08: NEWSLETTER SIGNUP STRIP - WORLD CLASS
   ============================================ */
/* ============================================
   SECTION 08: NEWSLETTER PREMIUM (Ultra 2.0)
   ============================================ */
.newsletter-premium {
  padding: 160px 0;
  background: #030308;
  position: relative;
  overflow: hidden;
}

.newsletter-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--color-accent), transparent);
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, #4a3f6b, transparent);
}

.newsletter-card-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 48px;
  padding: 100px 80px;
  overflow: hidden;
  z-index: 2;
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.card-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.card-grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

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

.premium-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 32px;
}

.premium-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.premium-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.premium-description {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  max-width: 540px;
  font-weight: 300;
}

.premium-form {
  position: relative;
}

.premium-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 24px;
  transition: all 0.5s var(--ease-out-expo);
  backdrop-filter: blur(10px);
}

.premium-input-group:focus-within {
  border-color: rgba(124, 92, 191, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.premium-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 24px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 300;
  outline: none;
}

.premium-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.premium-submit-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 18px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(124, 92, 191, 0.3);
}

.premium-submit-btn:hover {
  background: #8e6ee0;
  transform: translateX(5px);
  box-shadow: 0 12px 35px rgba(124, 92, 191, 0.4);
}

.premium-submit-btn .btn-icon {
  transition: transform 0.5s var(--ease-out-expo);
}

.premium-submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

.newsletter-success-message {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.2);
  color: #2ed573;
  padding: 20px 28px;
  border-radius: 20px;
  margin-bottom: 40px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  animation: slideDownFadeIn 0.6s var(--ease-out-expo);
}

@keyframes slideDownFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.premium-submit-btn:hover .btn-glow-effect {
  transform: scale(1);
}

.premium-trust-bar {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.trust-item svg {
  color: var(--color-accent);
}

.newsletter-art-premium {
  position: relative;
}

.art-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s var(--ease-out-expo);
}

.newsletter-card-premium:hover .art-frame {
  transform: perspective(1000px) rotateY(0deg);
}

.art-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.1);
}

.art-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 6, 12, 0.8), transparent);
  pointer-events: none;
}

/* Responsive Newsletter */
@media (max-width: 991px) {
  .newsletter-card-premium {
    padding: 60px 40px;
  }
  
  .newsletter-grid-premium {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .premium-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .premium-input-group {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .premium-trust-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .art-frame {
    transform: none;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .newsletter-card-premium {
    padding: 48px 24px;
    border-radius: 30px;
  }
  
  .premium-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  
  .premium-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 12px;
  }
  
  .premium-submit-btn {
    width: 100%;
    justify-content: center;
  }
}




/* Premium Input Wrap - Sharp High Fidelity */
.newsletter-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.06); /* Increased for clear base */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px;
  border-radius: 100px;
  backdrop-filter: none; /* Critical: removed blur to fix typing blurriness */
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  max-width: 520px;
  margin: 0 auto 24px;
  z-index: 20;
}

.input-glow {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, rgba(231, 222, 251, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.newsletter-input-wrap:focus-within {
  border-color: rgba(231, 222, 251, 0.6);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.newsletter-input-wrap:focus-within .input-glow {
  opacity: 1;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 24px;
  color: #fdfaf6 !important; /* Force high-contrast Milk-White */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500; /* Medium weight for clarity */
  outline: none;
  transform: translateZ(0); /* Force GPU sharp rendering */
  -webkit-font-smoothing: antialiased;
}



.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Premium Button with Reflective Shine */
.newsletter-btn {
  background: #e7defb;
  color: #1a1a2e;
  border: none;
  padding: 12px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-btn:hover {
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(231, 222, 251, 0.3);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: none;
}

.newsletter-btn:hover .btn-shine {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.btn-arrow {
  transition: transform 0.4s var(--ease-out-expo);
}

.newsletter-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.newsletter-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Mobile Responsive Newsletter - World Class */
@media (max-width: 600px) {
  .newsletter-strip {
    padding: 80px 20px;
  }
  
  .newsletter-input-wrap {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 16px;
    border-radius: 0;
    max-width: 100%;
  }
  
  .newsletter-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    padding: 16px 20px;
  }
  
  .newsletter-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    justify-content: center;
  }

  .newsletter-title {
    font-size: 28px;
  }
}



.who-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.who-accordion .who-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 16px 28px;
  text-align: left;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
}

.who-accordion .who-card:hover {
  background: #F8F5FC;
  box-shadow: var(--shadow-sm);
}

.who-accordion .who-card.active {
  background: linear-gradient(135deg, #F8F4FD, #F0EBF8);
  border-color: rgba(124, 92, 191, 0.25);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow-accent);
}

.who-accordion .who-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.who-accordion .who-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: all 0.4s var(--ease-out-expo);
}

.who-accordion .who-card-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.who-accordion .who-card.active .who-card-content {
  max-height: 200px;
  opacity: 1;
  padding-top: 12px;
}

.who-card-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.who-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.who-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.who-image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
  transform: translateY(0);
  opacity: 1;
}

.who-image-slider img.slide-out-up {
  transform: translateY(-100%);
  opacity: 0.5;
}

.who-image-slider img.slide-out-down {
  transform: translateY(100%);
  opacity: 0.5;
}

.who-image-slider img.next {
  transform: translateY(100%);
}

.who-image-slider img.prev {
  transform: translateY(-100%);
}

@media (max-width: 900px) {
  .who-its-for-grid {
    grid-template-columns: 1fr;
  }
  .who-image-container {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   APPROACH (Home — 3 cards, WellMind style)
   ============================================ */
.approach {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}



/* ============================================
   CTA BANNER (Home)
   ============================================ */
.cta-banner {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.cta-banner-pro {
  text-align: center;
  padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, rgba(26, 16, 48, 0.95) 0%, rgba(45, 27, 78, 0.85) 50%, rgba(124, 92, 191, 0.7) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(26, 16, 48, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.cta-banner-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(26, 16, 48, 0.5), inset 0 0 0 1px rgba(167, 139, 219, 0.4);
}

/* Atmospheric Glows */
.cta-banner-pro::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 219, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-pro::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 163, 156, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 5;
}

.cta-banner-pro .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: #F3EFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.cta-banner-pro .section-title-serif {
  margin-bottom: 24px;
  color: #fdfaf6 !important;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-banner-pro p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.cta-banner-pro .cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.btn-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}

.btn-pro svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-pro:hover svg {
  transform: translateX(4px);
}

.btn-pro-primary {
  background: var(--color-white);
  color: #2D1B4E;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-pro-primary:hover {
  background: #F3EFFF;
  color: #1A1030;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.btn-pro-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn-pro-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  transform: translateY(-4px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-opening {
  padding: 0 0 clamp(80px, 10vw, 120px);
}

.about-opening-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-question {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--color-accent);
  line-height: 1.4;
  font-weight: 400;
}

.about-opening-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-opening-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Positioning */
.about-positioning {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-bg-warm);
}

.about-positioning-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-poetic {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.6;
  margin-bottom: 36px;
}

.about-body-text {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--color-ink-soft);
  line-height: 1.85;
}

/* Philosophy */
.about-philosophy-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.about-philosophy-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 72px);
  border-left: 4px solid var(--color-accent);
}

.about-philosophy-left .section-title-serif {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-accent);
}

.philosophy-line {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--color-ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Closing */
.about-closing-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-bg-warm);
}

.about-closing-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-closing-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ============================================
   SESSIONS PAGE — Premium Redesign
   ============================================ */

/* Sessions Hero */
.sessions-hero {
  background: linear-gradient(180deg, #F0EBF8 0%, #E8E0F4 40%, var(--color-bg) 100%);
}

.sessions-hero .page-header-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

/* Intro Quote */
.sessions-intro {
  padding: 0 0 clamp(60px, 8vw, 100px);
}

.sessions-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sessions-blockquote {
  margin-bottom: 24px;
}

.sessions-blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-ink-soft);
  line-height: 1.8;
}

.sessions-intro-desc {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--color-ink-muted);
  line-height: 1.75;
}

/* What Happens — Split Card Layout */
.sessions-explore {
  padding: 0 0 clamp(80px, 10vw, 120px);
}

.explore-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.explore-main-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.explore-main-card .section-title-serif {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.explore-main-desc {
  font-size: 0.92rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.explore-dimensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.explore-dimension {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(124, 92, 191, 0.1);
  padding: 24px;
  border-radius: 24px;
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.explore-dimension:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(124, 92, 191, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(74, 63, 107, 0.08);
}

.explore-dim-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 92, 191, 0.1), rgba(167, 139, 219, 0.2));
  border-radius: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.explore-dimension:hover .explore-dim-icon {
  transform: scale(1.1) rotate(5deg);
}

.explore-dimension h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.explore-dimension p {
  font-size: 0.88rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

/* The Gap — Purple Accent Card */
.explore-gap-card {
  background: linear-gradient(160deg, #2D1B4E 0%, #4A2C7A 50%, #7C5CBF 100%);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.explore-gap-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(167, 139, 219, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.explore-gap-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.explore-gap-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.explore-gap-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* Who This Is For — Split Layout */
.sessions-who-split {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--color-bg-warm);
}

.sessions-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.sessions-who-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sessions-who-left .section-title-serif {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 32px;
}

.sessions-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sessions-who-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  padding: 16px 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--ease-out-expo);
}

.sessions-who-list li:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  border-color: rgba(124, 92, 191, 0.15);
}

.sessions-who-list .who-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Sessions Leave Card — Purple Quote */
.sessions-who-split .sessions-leave-card {
  background: linear-gradient(160deg, #2D1B4E 0%, #4A2C7A 50%, #7C5CBF 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: none;
  text-align: left;
}

.sessions-leave-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 8px;
}

.sessions-who-split .sessions-leave-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.sessions-who-split .sessions-leave-card .leave-poetic {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.sessions-leave-line {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 32px;
}

/* Pricing — Premium Cards */
.sessions-pricing {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--color-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 44px);
  text-align: left;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-accent-lg);
  border-color: rgba(124, 92, 191, 0.15);
  cursor: pointer;
}

.pricing-card--featured {
  background: linear-gradient(160deg, #2D1B4E 0%, #4A2C7A 50%, #7C5CBF 100%);
  border: none;
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured .pricing-badge {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card--featured .pricing-title,
.pricing-card--featured .pricing-amount {
  color: var(--color-white);
}

.pricing-card--featured .pricing-desc {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card--featured .pricing-per {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card--featured .pricing-currency {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card--featured .pricing-card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card--featured .btn-primary {
  background: var(--color-white);
  color: #4A2C7A;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pricing-card--featured .btn-primary:hover {
  background: #F3F0EB;
  transform: translateY(-2px);
}

.pricing-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 92, 191, 0.08), rgba(167, 139, 219, 0.14));
  border-radius: 14px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(124, 92, 191, 0.08), rgba(167, 139, 219, 0.12));
  border: 1px solid rgba(124, 92, 191, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-currency {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 400;
  color: var(--color-ink-muted);
}

.pricing-per {
  font-size: 0.35em;
  font-weight: 400;
  color: var(--color-ink-muted);
  vertical-align: baseline;
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  margin-bottom: 20px;
}

/* ============================================
   BOOKING (Sessions page)
   ============================================ */
.booking {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-bg-warm);
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 600px;
  box-shadow: var(--shadow-lg);
}

.booking-form-side {
  padding: clamp(36px, 5vw, 64px);
}

.booking-form-side .section-title-serif { margin-bottom: 36px; }

.booking-image-side {
  position: relative;
  overflow: hidden;
}

.booking-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-pills {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact Form Styles (shared) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group { margin-bottom: 24px; }

.contact-form .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--color-border-medium);
  outline: none;
  transition: all 0.3s var(--ease-out-expo);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form .form-group select {
  cursor: pointer;
  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='%236E6889' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  border-bottom-color: var(--color-accent);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: var(--color-ink-muted);
  opacity: 0.5;
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-agree {
  font-size: 0.78rem;
  color: var(--color-ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.form-agree input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--color-accent); }
.form-agree a { text-decoration: underline; color: var(--color-ink); font-weight: 500; }

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-ink);
  transition: all 0.3s var(--ease-out-expo);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.contact-pill:hover {
  background: var(--color-ink);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   CONTENT PAGE
   ============================================ */
.content-section {
  padding: 0 0 clamp(80px, 10vw, 140px);
}

.content-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.content-tab {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  background: transparent;
  border: 1.5px solid var(--color-border-medium);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.content-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.content-tab.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.content-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  transition: all 0.5s var(--ease-out-expo);
  border: 1px solid transparent;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(33, 33, 33, 0.06);
  border-color: var(--color-border-medium);
}

.content-card.hidden { display: none; }

.content-card-top { margin-bottom: 16px; }

.content-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--color-accent);
  background: var(--color-accent-glow);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.content-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.35;
}

.content-card p {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.75;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
  padding: 0 0 clamp(80px, 10vw, 140px);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq-left {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.faq-left-text {
  font-size: 1rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-decoration {
  color: var(--color-accent);
  opacity: 0.15;
  width: 160px;
  margin-top: 48px;
}

.faq-decoration svg { width: 100%; height: auto; }

.faq-item { border-top: 1px solid var(--color-border-medium); }
.faq-item:last-child { border-bottom: 1px solid var(--color-border-medium); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 28px) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--color-ink);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--color-accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease-out-expo);
}

.faq-icon-bar {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--color-accent);
  transition: all 0.4s var(--ease-out-expo);
}

.faq-icon-bar--v { transform: rotate(90deg); }

.faq-question[aria-expanded="true"] .faq-icon-bar--v { transform: rotate(0deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--color-accent-glow); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--color-ink-muted);
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #090912; /* Deep Midnight for Continuous Atmospheric Flow */
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(64px, 8vw, 100px) 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.footer .nav-logo-text {
  color: #fdfaf6 !important; /* Milk-White */
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease-out-expo);
}

.footer-socials a:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
  background: rgba(124, 92, 191, 0.15);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #f3efff; /* Luminous Lavender */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #fdfaf6;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-late {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s var(--ease-out-expo) 0.3s, transform 1.2s var(--ease-out-expo) 0.3s;
}

.reveal-late.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.services-grid .service-card { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.services-grid.visible .service-card { opacity: 1; transform: translateY(0); }
.services-grid.visible .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid.visible .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid.visible .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid.visible .service-card:nth-child(4) { transition-delay: 0.24s; }
.services-grid.visible .service-card:nth-child(5) { transition-delay: 0.32s; }
.services-grid.visible .service-card:nth-child(6) { transition-delay: 0.4s; }

.approach-cards .approach-card { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.approach-cards.visible .approach-card { opacity: 1; transform: translateY(0); }
.approach-cards.visible .approach-card:nth-child(1) { transition-delay: 0s; }
.approach-cards.visible .approach-card:nth-child(2) { transition-delay: 0.1s; }
.approach-cards.visible .approach-card:nth-child(3) { transition-delay: 0.2s; }

.testimonials-grid .testimonial-card { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.testimonials-grid.visible .testimonial-card { opacity: 1; transform: translateY(0); }
.testimonials-grid.visible .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid.visible .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid.visible .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

.content-grid .content-card { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.content-grid.visible .content-card { opacity: 1; transform: translateY(0); }
.content-grid.visible .content-card:nth-child(1) { transition-delay: 0s; }
.content-grid.visible .content-card:nth-child(2) { transition-delay: 0.08s; }
.content-grid.visible .content-card:nth-child(3) { transition-delay: 0.16s; }
.content-grid.visible .content-card:nth-child(4) { transition-delay: 0.24s; }
.content-grid.visible .content-card:nth-child(5) { transition-delay: 0.32s; }
.content-grid.visible .content-card:nth-child(6) { transition-delay: 0.4s; }

.faq-right .faq-item { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo); }
.faq-right .faq-item.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-gallery-grid {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .about-preview-grid,
  .about-opening-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-preview-image,
  .about-opening-image {
    order: -1;
    aspect-ratio: 16/10;
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .approach-header { grid-template-columns: 1fr; gap: 24px; }
  .approach-cards { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; }

  .faq-left { position: static; }

  .faq-decoration { display: none; }

  .booking-card { grid-template-columns: 1fr; }

  .booking-image-side { aspect-ratio: 16/9; order: -1; }

  .about-philosophy-card { grid-template-columns: 1fr; }

  /* Sessions page responsive */
  .explore-split { grid-template-columns: 1fr; }
  .explore-gap-card { min-height: 280px; }
  .sessions-who-grid { grid-template-columns: 1fr; }
  .explore-dimensions { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 66px; }

  /* Hide desktop links & actions; show hamburger */
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  /* Nav always full-width on mobile — no floating pill */
  .nav,
  .nav.scrolled {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: var(--nav-height);
  }

  .nav::before,
  .nav.scrolled::before {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  }

  .nav.visible::before {
    background: rgba(250, 249, 246, 0.92);
  }

  .nav-inner,
  .nav.scrolled .nav-inner {
    padding: 0 clamp(18px, 5vw, 32px);
    justify-content: space-between;
    gap: 0;
  }

  /* Restore brand text on mobile */
  .nav.scrolled .nav-logo-text {
    max-width: none;
    opacity: 1;
    font-size: 1.6rem;
    padding: 0;
    margin-left: 0;
  }

  .nav.scrolled .nav-logo-img {
    height: 34px;
    width: 34px;
    border-radius: 9px;
  }

  /* Avatar always hidden on mobile (no auth state shown) */
  .nav.scrolled .nav-avatar { display: none; }
  .nav.scrolled .nav-signup { display: none; }

  /* Hero gallery compact scroll */
  .hero-img--tall,
  .hero-img--main,
  .hero-img--short,
  .hero-img--wide,
  .hero-img--outline {
    width: clamp(120px, 35vw, 180px);
    height: clamp(160px, 45vw, 240px);
  }

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

  .explore-grid { grid-template-columns: 1fr; }
  .explore-dimensions { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .who-grid { grid-template-columns: 1fr; }

  .content-grid { grid-template-columns: 1fr; }

  .content-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .content-tabs::-webkit-scrollbar { display: none; }
  .content-tab { flex-shrink: 0; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }

  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.6rem); }

  .hero-script-quote p { font-size: clamp(1.1rem, 5vw, 1.4rem); }

  .pricing-grid { grid-template-columns: 1fr; }

  .about-preview-stats { flex-direction: column; gap: 24px; }

  .form-bottom { flex-direction: column; align-items: stretch; }

  .footer-links { grid-template-columns: 1fr; }

  .booking-pills { flex-direction: column; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-late { opacity: 1; transform: none; }
  .services-grid .service-card,
  .approach-cards .approach-card,
  .testimonials-grid .testimonial-card,
  .content-grid .content-card,
  .faq-right .faq-item { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   BLOGS PAGE
   ============================================ */
.blogs-page-header {
  padding: calc(var(--nav-height) + clamp(80px, 10vw, 130px)) 0 clamp(40px, 6vw, 60px);
  background: radial-gradient(circle at top left, rgba(124, 92, 191, 0.05), transparent 60%);
}

/* --- Breadcrumb --- */
.blog-breadcrumb {
    font-family: var(--font-mono, var(--font-sans));
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.blog-breadcrumb a {
    color: var(--color-ink-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
    color: var(--color-accent);
}

.blogs-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.blogs-title-accent {
  color: var(--color-accent);
  display: block;
}

.blogs-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--color-ink-muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.search-bar-wrapper {
  max-width: 100%;
  border-bottom: 1px solid var(--color-border-medium);
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: var(--color-ink-muted);
  margin-right: 12px;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  outline: none;
}
.search-input::placeholder {
  color: var(--color-ink-muted);
}

/* Blogs Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
  align-items: start;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.blog-card-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.read-article {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.blog-card:hover .read-article {
  color: var(--color-accent);
}

.new-badge {
  background: var(--color-accent-gradient);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.load-more-wrapper {
  text-align: center;
  padding-bottom: 100px;
}

/* Connect Section inside container */
.connect-section {
  padding: 80px 0;
}

.connect-container {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.connect-form-side {
  padding: 60px 80px;
}

.connect-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-ink);
  margin-bottom: 40px;
}

.input-block {
  margin-bottom: 24px;
}
.input-block label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-ink);
  margin-bottom: 8px;
}
.input-block input, .input-block textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-medium);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.3s;
}
.input-block input:focus, .input-block textarea:focus {
  border-color: var(--color-accent);
}

.checkbox-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.checkbox-block input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}
.checkbox-block label {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}
.checkbox-block label a {
  text-decoration: underline;
  color: var(--color-ink);
}

.connect-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.connect-image-side {
  position: relative;
}
.connect-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.connect-info-bubbles {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.info-bubble {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-ink);
  border: 1px solid var(--glass-border);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0 120px;
}

.newsletter-container {
  background: #1A1A2E;
  padding: clamp(40px, 5vw, 60px);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-content {
  padding-right: clamp(10px, 2vw, 40px);
}

.newsletter-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #fdfaf6 !important;
  margin-bottom: 16px;
}

.newsletter-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  transition: border-color 0.3s, background 0.3s;
}
.newsletter-form:focus-within {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
}
.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .blogs-grid, .connect-container, .newsletter-container {
    grid-template-columns: 1fr;
  }
  .connect-form-side { padding: 40px 24px; }
  .connect-image-side { display: none; }
  .newsletter-image { order: -1; }
}



