/* CSS Variables */
:root {
  /* Site is designed for light mode. Declaring 'light dark' is the documented
     opt-out signal for Chrome Android auto-dark and Samsung Internet auto-
     inversion: it tells the browser the page handles its own theming so the
     engine should not algorithmically invert backgrounds and accent colors
     (which otherwise turns whites to black and shifts accents to pink). */
  color-scheme: light dark;
  --primary: #431039;
  --primary-dark: #350a2d;
  --primary-light: #663e61;
  --primary-lighter: #8b6e87;
  --secondary: #40c0c5;
  --secondary-light: #78c6cf;
  --secondary-lighter: #97d3d6;
  --tertiary: #ba9751;
  --tertiary-light: #cab482;
  --cream-white: #F8F6F2;
  --gold: #ba9751;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Spectral', serif;
  --font-body: 'Inter', sans-serif;
  --text-display: 72px;
  --text-h1-hero: 55px;
  --text-h1-page: 34px;
  --text-h2: 34px;
  --text-h3: 24px;
  --text-h4: 20px;
  --text-h5: 18px;
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;
  --faq-question-size: 16px;
  --faq-answer-size: 14px;
  /* Hero: heading +25% vs section h2; subline scale (narrow screens — wide screens see block after :root) */
  --hero-heading-scale: 1.25;
  /* ≤768px: 0.9× h4 (18px) so sub doesn’t compete with title on small viewports */
  --hero-subhead-scale: 0.9;
  --line-tight: 1.1;
  --line-snug: 1.3;
  --line-normal: 1.6;
  --line-relaxed: 1.8;
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing scale */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;
  --spacing-5xl: 120px;
  --section-padding: 95px 40px;
  /* Hero text block vertical offset (heading + support + CTA) */
  --hero-block-shift: 1cm;
  /* Extra downward offset for desktop/mobile; tablet is excluded below */
  --hero-extra-shift: 1cm;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 100px;
  --radius-pill: 200px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(67, 16, 57, 0.08);
  --shadow-md: 0 4px 12px rgba(67, 16, 57, 0.1);
  --shadow-lg: 0 8px 24px rgba(67, 16, 57, 0.1);
  --shadow-xl: 0 12px 32px rgba(67, 16, 57, 0.2);

  /* Letter spacing */
  --letter-tight: -0.5px;
  --letter-normal: 0;
  --letter-wide: 0.5px;
  --letter-wider: 1px;
  --letter-widest: 2px;
}

/* Hero subhead/support: larger on tablet+ so desktop isn’t stuck at phone size */
@media (min-width: 769px) {
  :root {
    --hero-subhead-scale: 1.08;
  }
}

/* Skip link (a11y) - visible on focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Visually hidden but available to screen readers (a11y) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global focus visible for keyboard users (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
/* Ensure form fields keep visible focus when outline was removed for :focus */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.insights-search-input:focus-visible,
.healing-search-input:focus-visible,
.insight-email-form input:focus-visible,
.ritual-email-input:focus-visible,
.insights-filter-select:focus-visible,
.healing-filter-select:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* 404 page section (moved from inline styles for consistency and a11y) */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  text-align: center;
  background-color: var(--cream-white);
}
.error-404-inner {
  max-width: 600px;
}
.error-404 h1 {
  font-size: 72px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.error-404 h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.error-404 p {
  font-size: 18px;
  color: var(--primary-light);
  margin-bottom: 48px;
  line-height: 1.7;
  font-family: var(--font-body);
}
.error-404-cta {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 500;
  transition: all 0.3s ease;
}
.error-404-cta:hover {
  background-color: var(--primary);
  color: var(--cream-white);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 20px;
  }
  .error-404 h1 {
    font-size: 48px;
  }
  .error-404 h2 {
    font-size: 24px;
  }
  .error-404 p {
    margin-bottom: 32px;
  }
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Explicit light defaults so Chrome Android auto-dark + Samsung Internet
     dark mode have no excuse to invert. Combined with color-scheme:light dark
     in :root and meta tags in <head>.
     forced-color-adjust:none neutralizes Windows High Contrast / forced-colors
     algorithms that piggy-back on the same code path as Chrome auto-dark on
     some Android builds. */
  color-scheme: light dark;
  forced-color-adjust: none;
  background-color: var(--cream-white);
  color: var(--primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background-color: var(--cream-white);
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1.6;
  padding-top: 72px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}


img {
  max-width: 100%;
  height: auto;
}

svg,
video,
iframe {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: center;
}

h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  text-transform: none;
  margin-bottom: 32px;
  text-align: center;
}

/* Home: section titles use default h2 size (34px) - no override */
/* Ascendant inner pages (Taurus, Libra, etc.): match Home section heading size */
[class$="-hero"] h1 {
  font-size: 34px !important;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

section {
  padding: var(--section-padding);
  width: 100%;
  background-color: var(--cream-white);
}

/* Section right after hero: reduce top padding to avoid large gap */
.hero + section {
  padding-top: 56px;
}

/* Guided Pathways Section */
.guided-pathways-section {
  padding: var(--section-padding);
  min-height: 60vh;
}

.guided-pathways-container {
  max-width: 1200px;
  margin: 0 auto;
}

.guided-pathways-container h1 {
  font-size: var(--text-h2);
  margin-bottom: 24px;
  text-align: center;
  color: var(--primary);
}

.guided-pathways-intro {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--primary-light);
  text-align: center;
  margin-bottom: 48px;
}

/* Featured Pathway Card */
.featured-pathway {
  margin-bottom: 48px;
}

.featured-pathway-card {
  background: linear-gradient(135deg, #2d1f3d 0%, #431039 100%);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.featured-tag {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-pathway-card h2 {
  color: var(--white);
  font-size: var(--text-h2);
  margin-bottom: 12px;
}

.featured-pathway-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--secondary-lighter);
  margin-bottom: 20px;
}

.featured-pathway-desc {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.featured-pathway-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.featured-pathway-meta span {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
}

.featured-pathway-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.featured-pathway-cta:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-pathway-card {
    padding: 32px 24px;
  }
  
  .featured-pathway-card h2 {
    font-size: 28px;
  }
  
  .featured-pathway-meta {
    gap: 16px;
  }
  
  .featured-pathway-meta span {
    font-size: 13px;
  }
}

#pathways-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* Pathways Preview */
.pathways-preview {
  background-color: var(--primary-light);
  padding-top: 0;
  padding-bottom: 0;
}

.pathways-preview #pathways-container {
  margin-top: 67px;
}

/* Hide the entire pathways preview section when empty (homepage default) */
.pathways-preview:has(#pathways-container:empty) {
  display: none;
}

.guided-pathway-card {
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.1);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(67, 16, 57, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guided-pathway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 16, 57, 0.12);
}

.pathway-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}

.pathway-primary-pillar {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--primary-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.pathway-overview {
  margin-bottom: 20px;
}

.pathway-overview p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  line-height: 1.6;
}

.pathway-helps-with,
.pathway-suitability,
.pathway-suitability-not,
.pathway-requirements-preview {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
}

.pathway-helps-with strong,
.pathway-suitability strong,
.pathway-suitability-not strong,
.pathway-requirements-preview strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
}

.pathway-suitability ul,
.pathway-suitability-not ul {
  margin-left: 20px;
  margin-top: 8px;
}

.pathway-suitability li,
.pathway-suitability-not li {
  margin-bottom: 4px;
}

.pathway-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary-light);
}

.pathway-duration,
.pathway-time,
.pathway-intensity {
  padding: 4px 12px;
  background-color: rgba(67, 16, 57, 0.05);
  border-radius: var(--radius-pill);
}

.pathway-cta {
  margin-top: 24px;
}

.start-pathway-btn,
.read-journey-btn {
  width: 100%;
  padding: 14px 28px;
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.start-pathway-btn:hover,
.read-journey-btn:hover {
  background-color: var(--secondary-light);
}

.loading-state,
.empty-state,
.error-state {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--primary-light);
  grid-column: 1 / -1;
}

/* My Pathways Section */
.my-pathways-section {
  padding: var(--section-padding);
  min-height: 60vh;
}

.my-pathways-container {
  max-width: 1200px;
  margin: 0 auto;
}

.my-pathways-container h1 {
  font-size: var(--text-h2);
  margin-bottom: 48px;
  text-align: center;
  color: var(--primary);
}

#my-pathways-container {
  width: 100%;
}

.pathway-item {
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.1);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(67, 16, 57, 0.08);
}

.pathway-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}

.pathway-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary-light);
}

.pathway-completion {
  margin-bottom: 24px;
  padding: 16px;
  background-color: rgba(67, 16, 57, 0.03);
  border-radius: 8px;
}

.completion-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
}

.completion-text {
  font-weight: 500;
}

.completion-count {
  color: var(--primary-light);
}

.completion-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(67, 16, 57, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.completion-bar-fill {
  height: 100%;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.pathway-blocks-container {
  margin-top: 32px;
}

.pathway-blocks-container h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.pathway-day {
  margin-bottom: 32px;
  padding: 20px;
  background-color: rgba(67, 16, 57, 0.02);
  border-radius: 8px;
}

.day-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.day-header {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
}

.day-complete-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  cursor: pointer;
}

.day-complete-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.pathway-block {
  margin-bottom: 16px;
  padding: 16px;
  background-color: var(--white);
  border-radius: 6px;
  border-left: 3px solid var(--secondary);
}

.block-header {
  margin-bottom: 12px;
}

.block-time {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--primary-light);
}

.block-content {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
}

.block-instructions {
  margin-left: 20px;
  margin-bottom: 12px;
}

.block-instructions li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.block-materials {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(67, 16, 57, 0.1);
  font-size: 13px;
  color: var(--primary-light);
}

.attribution-banner {
  background-color: rgba(64, 192, 197, 0.1);
  border-left: 4px solid var(--secondary);
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 6px;
}

.attribution-header {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.attribution-content {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  line-height: 1.6;
}

.attribution-practitioner {
  margin-bottom: 8px;
}

.attribution-responsibility {
  font-size: 13px;
  color: var(--primary-light);
  font-style: italic;
}

.materials-acknowledgment {
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 6px;
}

.materials-acknowledgment.acknowledged {
  background-color: rgba(64, 192, 197, 0.1);
  border-left: 4px solid var(--secondary);
}

.materials-acknowledgment.not-acknowledged {
  background-color: rgba(186, 151, 81, 0.1);
  border-left: 4px solid var(--tertiary);
}

.materials-acknowledgment p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  margin-bottom: 12px;
}

.materials-list,
.environment-requirements {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
}

.materials-list ul {
  margin-left: 20px;
  margin-top: 8px;
}

.materials-list li {
  margin-bottom: 4px;
}

.loading-state,
.empty-state,
.error-state {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--primary-light);
}

.browse-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 32px;
  background-color: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  transition: background-color 0.3s;
}

.browse-link:hover {
  background-color: var(--secondary-light);
}

.no-blocks {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary-light);
  font-style: italic;
  text-align: center;
  padding: 32px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--primary);
  padding: 20px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--primary);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(0.6);
  transform-origin: left center;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--cream-white);
  text-decoration: none;
  font-size: var(--text-body);
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

.mobile-menu-panel {
  display: none;
}

body.menu-open .whatsapp-floating-button,
body.menu-open .faq-chat-button {
  opacity: 0;
  pointer-events: none;
}

.nav .header-cta {
  background: var(--secondary);
  color: var(--primary) !important;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--text-body);
  display: inline-block !important;
  margin-left: 8px;
  transition: background-color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
}

.nav .header-cta:hover {
  background: var(--secondary-light);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--cream-white);
  font-family: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-size: var(--text-body);
  transition: opacity 0.3s;
}

.nav-dropdown-toggle:hover {
  opacity: 0.7;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s;
  display: none;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary);
  min-width: 220px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--cream-white) !important;
  text-decoration: none;
  font-size: var(--text-body);
  transition: background-color 0.2s;
  border-bottom: none;
  width: auto;
  margin: 0;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(248, 246, 242, 0.10);
  opacity: 1;
}

/* Header Mobile Actions */
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-mobile-cta {
  display: none;
  background: var(--secondary);
  color: var(--primary) !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.header-mobile-cta:hover {
  background: var(--secondary-light);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--cream-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--primary);
}

.hero-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, #4a1542 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

.hero-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 8% 15%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 18% 35%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(2px 2px at 28% 12%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1px 1px at 38% 55%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 48% 25%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 58% 45%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1px 1px at 68% 65%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 78% 18%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 88% 38%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 5% 55%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 15% 75%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 25% 28%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 35% 48%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 45% 68%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 52% 85%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 62% 15%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 72% 35%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 82% 58%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 92% 78%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 7% 42%, rgba(248, 246, 242, 0.65), transparent);
  background-size: 100% 100%;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  animation: starTwinkle 4s ease-in-out infinite;
  animation-delay: 0s;
  pointer-events: none;
  opacity: 1;
}

.hero-bottom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(1px 1px at 55% 22%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 65% 42%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 75% 62%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 85% 82%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 12% 58%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 22% 32%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 32% 52%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 42% 72%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 52% 15%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 62% 35%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 72% 55%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 82% 75%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 92% 28%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 3% 48%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 13% 68%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 23% 88%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 33% 18%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 43% 38%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 53% 58%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 63% 78%, rgba(248, 246, 242, 0.7), transparent),
    radial-gradient(2px 2px at 73% 25%, rgba(248, 246, 242, 0.65), transparent),
    radial-gradient(1px 1px at 83% 45%, rgba(248, 246, 242, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 93% 65%, rgba(248, 246, 242, 0.7), transparent);
  background-size: 100% 100%;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  animation: starTwinkle 4s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  opacity: 1;
}

/* Large, soft planetary circles in hero background */
/* (hero background circles removed) */

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}


.hero-planets {
  position: absolute;
  top: calc(10px + 2 * (100vh - 20px) / 4 + 15px + 4.5vh + 4.5vh * 0.20);
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 53px;
  z-index: 2;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: visible;
}

.planet-icon {
  width: 90px;
  height: 90px;
  animation: planetFloat 6s ease-in-out infinite;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  display: block;
  opacity: 1;
}

.planet-icon:nth-child(1) {
  animation-delay: 0s;
}

.planet-icon:nth-child(2) {
  animation-delay: 1s;
}

.planet-icon:nth-child(3) {
  animation-delay: 2s;
}

.planet-icon:nth-child(4) {
  animation-delay: 0.5s;
}

.planet-icon:nth-child(5) {
  animation-delay: 1.5s;
}

@keyframes planetFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero text lives only in the top half; centered horizontally and vertically there. Bottom half untouched. */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 50vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5vh;
  padding: 0 40px;
  margin-top: -1.5vh;
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
}

.hero-content h1 {
  margin: 0;
  font-size: var(--text-h1-hero);
  color: var(--cream-white);
  max-width: min(800px, 100%);
  width: 100%;
  min-width: 0;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(248, 246, 242, 0.1);
  line-height: 1.1;
  white-space: normal;
  box-sizing: border-box;
  padding: 0 0.5em;
}

/* Subtext: centered in top half, ample gap from heading via parent gap */
.hero-content p {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  color: var(--cream-white);
  width: 100%;
  max-width: min(820px, 100%);
  min-width: 0;
  box-sizing: border-box;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  font-family: var(--font-body);
  padding: 0 16px;
  overflow: visible;
}

.hero-content p span {
  display: block;
  white-space: normal;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.hero-content p span:first-child {
  margin-bottom: 0;
}

.hero-cta {
  position: absolute;
  top: calc(10px + 3 * (100vh - 20px) / 4 + 15px + 4.5vh - 5vh);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  background: var(--secondary);
  color: var(--primary);
  padding: 27px 64px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--tertiary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 30px;
  white-space: nowrap;
  transition: background-color 0.3s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta:hover {
  background: var(--secondary-light);
}


.cta {
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--tertiary);
  text-decoration: none;
  font-family: var(--font-heading);
  display: inline-block;
  transition: background-color 0.3s;
}

.hero-content .cta {
  width: auto;
  padding: 21px 56px !important;
  font-weight: 500;
  font-size: 27.6px !important;
  white-space: nowrap;
}

.cta:hover {
  background: var(--secondary-light);
}

/* CTA color lock for Android/Chrome forced dark:
   paint explicit solid layers so auto-dark doesn't reinterpret button cyan. */
.cta,
.hero-cta,
.nav .header-cta,
.header-mobile-cta,
.pricing-cta,
.package-cta {
  forced-color-adjust: none;
  background-color: var(--secondary);
  background-image: linear-gradient(var(--secondary), var(--secondary));
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.cta:hover,
.hero-cta:hover,
.nav .header-cta:hover,
.header-mobile-cta:hover,
.pricing-cta:hover,
.package-cta:hover {
  background-color: var(--secondary-light);
  background-image: linear-gradient(var(--secondary-light), var(--secondary-light));
}

.intake .cta {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 18px 48px;
  font-size: 20px;
}

.intake .cta:hover {
  background: var(--secondary-light);
}

@media (max-width: 768px) {
  .intake .cta {
    padding: 16px 40px;
    font-size: 18px;
  }
}

/* Core Benefits Section */
.core-benefits {
  background-color: var(--primary);
  padding: var(--section-padding);
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.core-benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  column-gap: 100px;
  row-gap: 24px;
  align-items: stretch;
  padding: 0 24px;
  box-sizing: border-box;
  overflow: visible;
}

.core-benefit-block {
  background: transparent;
  padding: 48px 24px;
  margin: 0;
  text-align: center;
  position: relative;
  transition: none;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.core-benefit-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(248, 246, 242, 0.15) 0%, rgba(248, 246, 242, 0.05) 100%);
  border: 3px solid rgba(186, 151, 81, 0.55);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  transition: none;
}

.core-benefit-block:hover::before {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 180px;
  height: 180px;
}

.core-benefit-block:hover {
  transform: none;
}

.core-benefit-block:focus,
.core-benefit-block:active,
.core-benefit-block:focus-visible {
  transform: none;
}

.core-benefit-block:focus::before,
.core-benefit-block:active::before,
.core-benefit-block:focus-visible::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.core-benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--cream-white);
  letter-spacing: -0.2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0 !important;
  white-space: nowrap;
  width: max-content !important;
  text-align: center !important;
}

.core-benefit-description {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: rgba(248, 246, 242, 0.9);
  line-height: 1.5;
  position: absolute;
  top: calc(50% + 92px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0 !important;
  text-align: center !important;
  box-sizing: border-box;
  padding: 0 8px;
  white-space: nowrap;
  width: max-content !important;
}

@media (max-width: 920px) {
  .core-benefits {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 48px;
    display: block;
    align-items: stretch;
    justify-content: flex-start;
  }

  .core-benefits-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    overflow: visible;
    width: 100%;
  }
}

/* Brand Highlights Section */
.brand-highlights {
  background-color: var(--cream-white);
  padding: var(--section-padding);
  border-top: 1px solid rgba(67, 16, 57, 0.12);
}

.brand-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

.brand-subsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-subsection-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.brand-pill {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--cream-white);
  border: 3px solid rgba(185, 151, 80, 0.55);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-small);
  font-weight: 400;
  white-space: nowrap;
}

.brand-stars {
  font-size: var(--text-h3);
  color: var(--tertiary);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.brand-stars-text {
  font-family: var(--font-heading);
  font-size: var(--text-small);
  color: var(--primary);
  margin: 0;
}

.brand-google {
  font-weight: 600;
  font-size: var(--text-body);
}

.brand-principles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.brand-principle-pill {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--cream-white);
  border: 3px solid rgba(185, 151, 80, 0.55);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-small);
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 768px) {
  .brand-highlights {
    padding: 60px 20px;
  }
  
  .brand-highlights-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .brand-subsection-heading {
    font-size: var(--text-body);
    margin-bottom: 20px;
  }
  
  .brand-pills {
    gap: 10px;
  }
  
  .brand-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .brand-stars {
    font-size: 20px;
  }
  
  .brand-principles {
    gap: 10px;
  }
  
  .brand-google {
    font-size: 15px;
  }
  
  .brand-principle-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* When Do People Reach Out */
.reach-out {
  background-color: var(--primary-light);
}

.reach-out h2 {
  color: var(--cream-white);
  margin-bottom: 48px;
}

.reach-out-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.reach-out-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reach-out-bullets li {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--cream-white);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.reach-out-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cream-white);
  font-size: 20px;
  line-height: 1.6;
}

.reach-out-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 18px;
  background-color: var(--primary);
  border-radius: 16px;
  padding: 20px 24px;
  border: 3px solid rgba(185, 151, 80, 0.45);
  justify-content: flex-start;
  min-height: 120px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.reach-out-text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.reach-out-item:hover {
  transform: translateY(-4px);
  background-color: var(--primary-lighter);
  border-color: rgba(248, 246, 242, 0.25);
}

.reach-out-icon-wrapper {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reach-out-icon-circle-outer {
  width: 64px;
  height: 64px;
  background-color: var(--cream-white);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.reach-out-icon-circle {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 4px;
}

.reach-out-icon {
  width: 28px;
  height: 28px;
  stroke: var(--tertiary);
  position: relative;
  z-index: 3;
}

.reach-out-icon-image {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 3;
  object-fit: contain;
}

.reach-out-text {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--cream-white);
  margin: 0;
  line-height: 1.35;
  font-weight: 500;
  text-align: left;
}

.reach-out-subtext {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--cream-white);
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.reach-out-detail {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--cream-white);
  line-height: 1.5;
  margin: 0;
  text-align: left;
  width: 100%;
  opacity: 0.85;
}


/* Areas of Guidance */
.areas {
  background-color: var(--cream-white);
  scroll-margin-top: 95px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.area-item {
  scroll-margin-top: 100px;
  background-color: var(--white);
  border: 3px solid rgba(185, 151, 80, 0.45);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

a.area-item:hover,
.area-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(67, 16, 57, 0.12);
}

.area-item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-width: 0;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.area-icon-wrapper {
  width: 52px;
  height: 52px;
  position: relative;
  margin-bottom: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon-primary-circle {
  width: 52px;
  height: 52px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.area-icon {
  width: 26px;
  height: 26px;
  stroke: var(--tertiary);
  position: relative;
  z-index: 3;
}

.area-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--primary);
  line-height: 1.35;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
}

/* Topics accordion - same layout on all viewports, no box */
.area-topics-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.area-topics-toggle:hover {
  opacity: 0.85;
}

.area-topics-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.25s ease;
}

.area-topics-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.area-topics-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.area-topics-content.is-open {
  max-height: 200px;
  overflow-y: auto;
}

.area-topics-content .area-card-bullets {
  margin: 16px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(67, 16, 57, 0.1);
}

.area-detail {
  font-size: var(--text-small);
  color: rgba(67, 16, 57, 0.7);
  margin-bottom: 24px;
  flex-grow: 1;
  font-family: var(--font-body);
}

.area-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
  width: 100%;
  flex-grow: 1;
}

.area-card-bullets li {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: rgba(67, 16, 57, 0.7);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.area-card-bullets li:last-child {
  margin-bottom: 0;
}

.area-card-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: var(--text-body);
  line-height: 1.5;
}

.area-cta {
  display: inline-block;
  margin-top: 0;
  color: var(--secondary);
  text-decoration: none;
  font-size: var(--text-body);
  font-weight: 600;
  transition: color 0.2s ease;
}

.area-cta:hover,
.area-cta:focus-visible {
  color: var(--secondary-light);
}

.area-topics-toggle:hover,
.area-topics-toggle:focus-visible {
  color: var(--secondary-light);
  opacity: 1;
}

.area-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  text-align: center;
}

/* Desktop: slightly tighter Reach out + Areas of Guidance (no tablet/mobile change) */
@media (min-width: 1025px) {
  .reach-out {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .areas {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .reach-out h2 {
    margin-bottom: 36px;
  }

  .reach-out-list {
    gap: 20px;
    max-width: 1100px;
  }

  .reach-out-item {
    padding: 22px 26px;
    min-height: 104px;
    gap: 20px;
  }

  .reach-out-text {
    margin: 0;
  }

  .areas h2 {
    margin-bottom: 28px;
  }

  .areas-grid {
    gap: 20px;
    max-width: 1180px;
  }

  .area-item {
    padding: 22px 22px;
  }

  .area-icon-wrapper {
    margin-bottom: 0;
  }

  .area-cta {
    margin-top: 0;
  }

  .area-topics-toggle {
    margin-top: 0;
  }

  .area-actions {
    margin-top: auto;
    padding-top: 10px;
  }
}

/* Pricing Section */
.pricing {
  background-color: var(--primary);
  color: var(--cream-white);
}

.pricing h2 {
  color: var(--cream-white);
  margin-bottom: 48px;
}

.pricing-container {
  background-color: var(--primary-lighter);
  border: 3px solid rgba(185, 151, 80, 0.45);
  border-radius: 28px;
  padding: 48px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background-color: var(--white);
  border: 3px solid rgba(185, 151, 80, 0.45);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: var(--text-caption);
  font-weight: 500;
}

.pricing-duration {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgba(67, 16, 57, 0.7);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-name {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-best-for {
  font-size: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
  color: var(--secondary);
  font-family: var(--font-body);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 8px;
}

.toggle-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(67, 16, 57, 0.1);
  color: var(--primary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-small);
  transition: all 0.3s;
}

.toggle-btn.active {
  background: var(--secondary);
  color: var(--primary);
}

.toggle-btn:hover {
  background: var(--secondary-light);
  color: var(--primary);
}

.pricing-price {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.12);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-details {
  margin-bottom: 24px;
  text-align: center;
  flex-grow: 0;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.pricing-detail-item {
  font-size: var(--text-small);
  margin-bottom: 0;
  position: relative;
  color: rgba(67, 16, 57, 0.85);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.pricing-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
  transition: background-color 0.3s;
}

.pricing-cta:hover {
  background-color: var(--secondary-light);
}

.pricing-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 16px;
}

.pricing-expand-toggle {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: 8px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: var(--text-small);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-expand-toggle:hover {
  background-color: rgba(67, 16, 57, 0.05);
  border-color: rgba(67, 16, 57, 0.3);
}

.pricing-expand-toggle.active {
  border-color: var(--secondary);
  background-color: rgba(64, 192, 197, 0.1);
}


.pricing-expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  margin-top: 0;
}

.pricing-expand-content.active {
  max-height: 6000px;
  padding: 20px 0;
  margin-top: 16px;
}

.pricing-expand-section {
  margin-bottom: 24px;
  text-align: left;
}

.pricing-expand-section:last-child {
  margin-bottom: 0;
}

.pricing-expand-section h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: left;
}

.pricing-expand-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-expand-section li {
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.7;
  color: var(--primary-light);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-expand-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 18px;
}

.pricing-expand-section li:last-child {
  margin-bottom: 0;
}

.pricing-expand-section em {
  font-style: italic;
  color: var(--primary);
}

.pricing-footer-note {
  font-size: 11px;
  color: rgba(67, 16, 57, 0.6);
  margin-top: 8px;
  margin-bottom: 0;
}

/* Safe Space */
.safe-space {
  background-color: var(--primary-light);
  color: var(--cream-white);
  padding-top: 64px;
  padding-bottom: 56px;
}

.safe-space h2 {
  color: var(--cream-white);
  margin-bottom: 36px;
}

.safe-space-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.safe-space-text {
  font-size: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--cream-white);
  font-family: var(--font-body);
}

.safe-space-lotus {
  width: 135px;
  height: 135px;
  margin: 0 auto;
  display: block;
  pointer-events: none;
  /* Keep lotus gold in forced-dark browsers (Samsung/Chrome auto-dark). */
  forced-color-adjust: none;
  isolation: isolate;
  -webkit-filter: brightness(0) saturate(100%) invert(78%) sepia(12%) saturate(1000%) hue-rotate(350deg) brightness(98%) contrast(90%) !important;
  filter: brightness(0) saturate(100%) invert(78%) sepia(12%) saturate(1000%) hue-rotate(350deg) brightness(98%) contrast(90%);
}

/* Testimonials */
.testimonial {
  background-color: var(--white);
  text-align: center;
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  box-shadow: none;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.testimonial-slides-wrapper {
  flex: 1;
  position: relative;
  min-height: 170px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  padding: 8px 12px;
  border-radius: 0;
  background: transparent;
  border: none;
}

.testimonial-slide::before {
  content: '★ ★ ★ ★ ★';
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.45em;
  color: var(--tertiary);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 400;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-arrow {
  background-color: transparent;
  color: var(--primary);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  padding: 0;
}

.testimonial-arrow:hover {
  opacity: 0.7;
}

.testimonial-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

@media (max-width: 768px) {
  .testimonial-carousel {
    gap: 12px;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonial-arrow svg {
    width: 20px;
    height: 20px;
  }

  .testimonial {
    padding: 44px 16px;
  }

  .testimonial-slide {
    padding: 6px 8px;
  }
}

.testimonial-quote {
  display: none;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--primary);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.testimonial-attribution {
  font-size: 13px;
  color: rgba(67, 16, 57, 0.88);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 700;
}

/* Packages */
.packages {
  background-color: var(--primary);
  color: var(--cream-white);
}

.packages h2 {
  color: var(--cream-white);
  margin-bottom: 48px;
}

.packages-container {
  background-color: var(--primary-lighter);
  border-radius: 28px;
  padding: 48px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.package-card {
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.12);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.package-duration {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgba(67, 16, 57, 0.7);
  font-family: var(--font-body);
}

.package-sessions {
  font-size: 20px;
  font-weight: 700;
  color: rgba(67, 16, 57, 0.7);
  margin-left: 8px;
}

.package-name {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: var(--primary);
}

.package-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 8px;
}

.package-original-price {
  font-size: 20px;
  text-decoration: line-through;
  margin-bottom: 8px;
  color: rgba(67, 16, 57, 0.6);
  font-family: var(--font-body);
}

.package-price {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.12);
  font-family: var(--font-body);
}

.package-savings {
  font-size: var(--text-body);
  color: rgba(67, 16, 57, 0.6);
  margin-bottom: 32px;
  font-family: var(--font-body);
}

.package-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  margin-top: auto;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 16px;
  transition: background-color 0.3s;
}

.package-cta:hover {
  background-color: var(--secondary-light);
}

.package-note {
  font-size: var(--text-caption);
  color: rgba(67, 16, 57, 0.6);
}

/* Process / Session Experience */
.process {
  background-color: var(--primary-light);
  text-align: center;
  overflow-x: hidden;
  box-sizing: border-box;
}

.process h2 {
  margin-bottom: 24px;
  color: var(--cream-white);
}

.process-intro {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--cream-white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.process-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--cream-white);
  background-color: transparent;
  border: 1px solid rgba(67, 16, 57, 0.45);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  opacity: 0.85;
}

.process-cta:hover {
  opacity: 1;
  border-color: rgba(67, 16, 57, 0.62);
  background-color: rgba(67, 16, 57, 0.08);
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.process-step {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.process-icon {
  width: 120px;
  height: 120px;
  max-width: 100%;
  margin-bottom: 24px;
  object-fit: contain;
  background-color: white;
  border: 3px solid rgba(185, 151, 80, 0.45);
  border-radius: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.process-heading {
  font-size: 18px;
  line-height: 1.35;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  color: var(--tertiary-light);
  word-wrap: break-word;
}

.process-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream-white);
  text-align: inherit;
  opacity: 0.85;
  margin: 0;
  word-wrap: break-word;
}

.process-divider {
  width: 3px;
  height: 260px;
  background-color: rgba(185, 151, 80, 0.55);
  margin: 0 20px;
}

/* About – Saumyaa S Singh */
.about-saumya {
  background-color: var(--cream-white);
  padding: var(--section-padding);
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
}

.about-saumya-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-saumya-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 32px;
  text-align: center;
}

.about-saumya-left-meta {
  text-align: center;
  margin-bottom: 32px;
}

.about-saumya-name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--primary);
}

.about-saumya-role {
  font-family: var(--font-body);
  font-size: var(--text-h5);
  color: var(--primary);
  opacity: 0.9;
  margin: 0;
}

/* About Saumya photo – left column (same convention as Founder's Note) */
.about-saumya-photo-wrapper {
  position: relative;
  width: 323px;
  height: 323px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.about-saumya-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid #B99750;
  border-radius: 50%;
  box-sizing: border-box;
}

.about-saumya-image {
  width: 281px;
  height: 281px;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  position: relative;
  z-index: 1;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
}

.about-saumya-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.about-saumya-text p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 24px;
  opacity: 0.9;
}

.about-saumya-text .about-saumya-lede {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  opacity: 1;
}

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

@media (min-width: 1025px) {
  .about-saumya-inner {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    grid-template-rows: 1fr auto auto 1fr;
    column-gap: 56px;
    align-items: start;
    position: relative;
  }

  .about-saumya-inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(330px + 28px);
    width: 1px;
    background: rgba(67, 16, 57, 0.18);
    pointer-events: none;
  }

  .about-saumya-photo-wrapper {
    grid-column: 1;
    grid-row: 2;
    margin: 0 0 16px;
    justify-self: center;
  }

  .about-saumya-left-meta {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
    justify-self: center;
    align-self: start;
  }

  .about-saumya-right-column {
    grid-column: 2;
    grid-row: 1 / 5;
    padding-left: 28px;
    align-self: start;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .about-saumya-title {
    text-align: left;
    margin: 0 0 20px;
    padding-left: 0;
  }

  .about-saumya-text {
    max-width: 100%;
    margin: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about-saumya {
    padding: 60px 20px;
  }

  .about-saumya-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .about-saumya-name {
    font-size: var(--text-h3);
  }

  .about-saumya-left-meta {
    margin-bottom: 28px;
  }

  .about-saumya-photo-wrapper {
    width: 220px;
    height: 220px;
    margin-bottom: 16px;
  }

  .about-saumya-image {
    width: 190px;
    height: 190px;
  }

  .about-saumya-text p {
    font-size: var(--text-body);
    margin-bottom: 20px;
  }
}

/* About preview (home page) */
.about-preview {
  background-color: var(--cream-white);
  padding: 80px 40px;
  text-align: center;
}

.about-preview-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-preview h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-preview-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 28px;
  opacity: 0.9;
}

.about-preview-text a {
  color: var(--primary);
  text-decoration: underline;
}

.about-preview-text a:hover {
  color: var(--secondary);
}

.about-preview-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--primary);
  background-color: transparent;
  border: 1px solid rgba(67, 16, 57, 0.35);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-preview-cta:hover {
  border-color: var(--primary);
  background-color: rgba(67, 16, 57, 0.06);
}

@media (max-width: 768px) {
  .about-preview {
    padding: 60px 20px;
  }

  .about-preview h2 {
    font-size: 26px;
  }

  .about-preview-text {
    font-size: 15px;
  }
}

/* Founder's Note */
.founder-note {
  background-color: var(--primary-light);
  text-align: center;
}

.founder-content {
  max-width: 800px;
  margin: 0 auto;
}

.founder-left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 28px;
}

.founder-photo-wrapper {
  position: relative;
  width: 281px;
  height: 281px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-white-circle {
  position: absolute;
  width: 312px;
  height: 312px;
  background-color: white;
  border-radius: 50%;
  z-index: 1;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.founder-circle-outline {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.founder-name {
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--cream-white);
  font-family: var(--font-heading);
}

.founder-left-meta {
  text-align: center;
  margin: 0;
  width: 100%;
}

.founder-role {
  font-family: var(--font-body);
  font-size: var(--text-h5);
  color: var(--cream-white);
  opacity: 0.9;
  margin: 0;
}

.founder-heading {
  font-size: var(--text-h2);
  margin-bottom: 40px;
  color: var(--cream-white);
}

.founder-note-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 30px;
}

.founder-note-section {
  text-align: left;
}

.founder-note-section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream-white);
  margin-bottom: 12px;
  text-align: left;
}

.founder-note-section-text {
  font-size: var(--text-body);
  line-height: 1.7;
  opacity: 0.9;
  text-align: left;
  color: var(--cream-white);
  font-family: var(--font-body);
  margin: 0 0 24px;
}

.founder-note-section-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .founder-content {
    max-width: 1120px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: 56px;
    align-items: start;
    position: relative;
  }

  .founder-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(320px + 28px);
    width: 1px;
    background: rgba(248, 246, 242, 0.22);
    pointer-events: none;
  }

  .founder-left-column {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    justify-self: center;
    align-self: center;
    max-width: 320px;
  }

  .founder-photo-wrapper {
    margin: 0 0 16px;
  }

  .founder-right-column {
    grid-column: 2;
    grid-row: 1;
    padding-left: 28px;
    align-self: start;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .founder-heading {
    text-align: left;
    margin: 0 0 24px;
    align-self: flex-start;
  }

  .founder-note-sections {
    margin-top: 0;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .founder-name {
    font-size: var(--text-h3);
  }

  .founder-heading {
    font-size: 28px;
  }

  .founder-note-sections {
    gap: 28px;
  }
  
  .founder-note-section-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .founder-note-section-text {
    font-size: var(--text-body);
  }
}

/* FAQ */
.faq {
  background-color: var(--cream-white);
  color: var(--primary);
  scroll-margin-top: 72px;
}

.faq > h1 {
  margin-bottom: 28px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* Main FAQ page: keep clear breathing room below "Common Questions" */
.faq#main-content .faq-list {
  margin-top: 0;
  padding-top: 36px;
}

.faq-group-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-group-heading:first-child {
  margin-top: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 0;
  padding-top: 24px;
  border-top: none;
}

.faq-cta-link {
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.faq-cta-link:hover {
  opacity: 0.7;
}

.faq-item {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.15);
}

.faq-item:last-of-type {
  border-bottom: 1px solid rgba(67, 16, 57, 0.15);
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: var(--faq-question-size) !important;
  line-height: 1.45;
  font-family: var(--font-heading);
  color: var(--primary);
  cursor: pointer;
  position: relative;
  padding-right: 32px;
}

.faq-question::after {
  display: none;
}

.faq-question::before {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-caption);
  color: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1;
  opacity: 1;
}

.faq-question:hover::before {
  opacity: 0.7;
}

.faq-item.active .faq-question::before {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0;
  color: rgba(67, 16, 57, 0.8);
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--faq-answer-size) !important;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 0 20px 0;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
}

.faq-answer ul li {
  margin-bottom: 8px;
  padding-left: 4px;
  font-size: var(--faq-answer-size) !important;
}

/* Contact / Closing Conversion Block */
.contact {
  background-color: var(--primary);
  padding: 72px 40px;
}

.contact-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.contact-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--cream-white);
  margin: 0 0 32px;
  line-height: 1.3;
  text-align: center;
}

.contact-description {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--cream-white);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0 0 30px;
  text-align: center;
  max-width: 860px;
  text-wrap: balance;
}

.contact-description-italic {
  font-style: italic;
}

.contact-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--cream-white);
  background-color: transparent;
  border: 1px solid rgba(248, 246, 242, 0.5);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.contact-cta:hover {
  border-color: rgba(248, 246, 242, 0.9);
  background-color: rgba(248, 246, 242, 0.08);
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-icons-band {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(248, 246, 242, 0.12);
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
  padding: 28px 20px;
}

/* About page review carousel block */
#testimonial-4 {
  border-top: 3px solid rgba(185, 151, 80, 0.45);
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
}

.contact-icons-band-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-icons-heading {
  color: var(--cream-white);
  text-align: center;
  margin: 0 0 24px;
}

.contact-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--secondary);
}

.contact-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  transition: transform 0.3s;
}

.contact-icon-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--secondary);
  margin-top: 4px;
}

/* Deprecated legacy contact-section styles (kept as guards in case other pages still use) */
.contact-section {
  flex: 1;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 16px;
  color: var(--cream-white);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--primary-light);
  padding: 15px 40px 28px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-logo {
  margin: 0;
}

.footer-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-logo img {
  height: 132px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: -8px;
  padding-bottom: 0;
  width: 100%;
}

.footer-nav a {
  color: var(--cream-white);
  text-decoration: none;
  font-size: var(--text-body);
  opacity: 0.8;
  transition: opacity 0.3s;
  font-family: var(--font-heading);
}

.footer-nav a:hover {
  opacity: 1;
}

/* Hide legacy footer blocks so layout stays clean and consistent sitewide */
.footer-heading,
.footer-description,
.footer-cta {
  display: none !important;
}

.footer-newsletter {
  width: 100%;
  max-width: 920px;
  margin: 16px auto 12px;
  padding: 18px 8px 18px;
  border-top: 1px solid rgba(248, 246, 242, 0.12);
  border-bottom: 1px solid rgba(248, 246, 242, 0.12);
}

.footer-newsletter-text {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--cream-white);
  opacity: 0.9;
  margin: 0 0 14px;
  line-height: 1.5;
  text-align: center;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer-newsletter-form input[type="email"] {
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 1px solid rgba(248, 246, 242, 0.35);
  background: rgba(248, 246, 242, 0.08);
  color: var(--cream-white);
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.2;
  border-radius: var(--radius-pill);
  padding: 11px 16px;
  outline: none;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: rgba(248, 246, 242, 0.72);
}

.footer-newsletter-form input[type="email"]:focus {
  border-color: rgba(248, 246, 242, 0.65);
  background: rgba(248, 246, 242, 0.12);
}

.footer-newsletter-form button {
  border: 1px solid rgba(117, 190, 197, 0.45);
  background: rgba(117, 190, 197, 0.15);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: var(--text-small);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-newsletter-form button:hover {
  border-color: rgba(117, 190, 197, 0.75);
  background: rgba(117, 190, 197, 0.24);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--cream-white);
  margin-bottom: 8px;
  font-weight: 500;
  margin-top: 6px;
}

.footer-description {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--cream-white);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 8px;
  max-width: 600px;
}

.footer-description > span:first-of-type {
  white-space: nowrap;
}

.footer-description-italic {
  font-style: italic;
}

.footer-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--cream-white);
  background-color: transparent;
  border: 1px solid rgba(248, 246, 242, 0.3);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-weight: 400;
  opacity: 0.85;
}

.footer-cta:hover {
  opacity: 1;
  border-color: rgba(248, 246, 242, 0.5);
  background-color: rgba(248, 246, 242, 0.05);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 2px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social img {
  width: 26px;
  height: 26px;
  display: block;
}

.footer-social:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-nav-policies {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.footer-nav-policies a {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--cream-white);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-nav-policies a:hover {
  opacity: 0.9;
}

.footer-legal {
  width: 100%;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 246, 242, 0.18);
}

.footer-legal p {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  line-height: 1.5;
  color: var(--cream-white);
  opacity: 0.58;
  margin: 0;
}

.footer-legal p + p {
  margin-top: 4px;
}

/* Intake Page */
.intake {
  background-color: var(--cream-white);
  padding: var(--section-padding);
  box-sizing: border-box;
}

.intake-container {
  max-width: 1400px;
  margin: 0 auto;
}

.intake-container h1 {
  margin-bottom: 2.5rem;
  font-size: 34px;
  color: var(--primary);
}

.intake-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-bottom: 48px;
}

.intake-section {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.12);
  border-radius: 20px;
  padding: 32px;
  min-height: 100%;
}

.intake-section .pricing-card {
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.intake-section-personal {
  grid-column: 2;
}

/* Birth Details Section: Full-width at bottom, styled like additional charts */
.birth-details-section {
  width: 100%;
  max-width: 100%;
  margin-bottom: 48px;
  box-sizing: border-box;
}

.birth-details-block {
  padding: 32px;
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.birth-details-block .field {
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}

.birth-details-block .field input:not([type="checkbox"]),
.birth-details-block .field select,
.birth-details-block .field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  margin: 0;
}

.birth-details-block .field .autocomplete-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.birth-details-block .field input[type="date"],
.birth-details-block .field input[type="time"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  padding-right: 40px !important;
  border: 1px solid rgba(67, 16, 57, 0.2) !important;
  border-radius: 8px !important;
  text-align: left !important;
  min-height: 44px;
}

/* Custom Select Wrapper — keeps native picker but centers displayed value */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-display {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: rgba(67, 16, 57, 0.4); /* placeholder text color */
  background-color: var(--white);
  box-sizing: border-box;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23431039' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.custom-select-display.filled {
  color: var(--primary);
}

.custom-select-native {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  border: none;
  background: transparent;
  font-size: 16px; /* prevent iOS zoom */
}

.custom-select-display.required-empty {
  border-color: #d32f2f !important;
}

.tob-unknown-label {
  display: block;
  margin-top: 8px;
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--primary);
  cursor: pointer;
}

.tob-unknown-label input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
}

.intake-form {
  width: 100%;
}

.intake-optional {
  width: 100%;
  margin: 0 auto 32px;
}

.intake-cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intake-subsection-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: left;
}

.additional-chart-block {
  margin-bottom: 32px;
  padding: 32px;
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.additional-chart-block:first-child {
  margin-top: 0;
}

/* Add a chart: full-width row, button centered on page (no white box) */
.add-chart-cta-wrap {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

#additional-charts-wrapper {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

#additional-charts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.add-chart-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  border: none;
  background: none;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  line-height: 1.45;
}

.add-chart-link:hover {
  opacity: 0.85;
}

.add-chart-link-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.add-chart-plus-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.add-chart-label {
  font-family: var(--font-heading);
  font-weight: 500;
}

.add-chart-parenthetical {
  font-size: var(--text-caption);
  color: rgba(67, 16, 57, 0.62);
  font-weight: 400;
  max-width: 420px;
}

#add-chart-btn-2-wrap.add-chart-cta-wrap {
  margin-top: 16px;
}

/* Additional chart block: header with Remove */
.additional-chart-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.12);
  margin-bottom: 0;
}

.additional-chart-block .field {
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
  display: block;
  box-sizing: border-box;
  flex-shrink: 0;
}

.additional-chart-block .field input:not([type="checkbox"]),
.additional-chart-block .field select,
.additional-chart-block .field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  display: block;
  margin: 0;
}

.additional-chart-block .field .autocomplete-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  margin: 0;
}

.additional-chart-block .field input[type="date"],
.additional-chart-block .field input[type="time"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  padding-right: 40px !important;
  border: 1px solid rgba(67, 16, 57, 0.2) !important;
  border-radius: 8px !important;
  text-align: left !important;
  min-height: 44px;
}

.additional-chart-heading {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  text-align: left;
}

.additional-chart-close {
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1px solid rgba(67, 16, 57, 0.3);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.additional-chart-close:hover {
  background: rgba(67, 16, 57, 0.06);
  border-color: var(--primary);
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--primary);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: var(--text-body);
  box-sizing: border-box;
  color: var(--primary);
  background-color: var(--white);
}

.field input.error,
.field select.error,
.field input.required-empty,
.field select.required-empty,
.field input[type="date"].required-empty,
.field input[type="time"].required-empty {
  border-color: #d32f2f !important;
}

.field input.required-filled,
.field select.required-filled {
  border-color: rgba(67, 16, 57, 0.2);
}

.field-error {
  display: none;
  color: #d32f2f;
  font-size: var(--text-caption);
  margin-top: 4px;
  font-family: var(--font-body);
}

.word-count {
  font-size: var(--text-caption);
  color: rgba(67, 16, 57, 0.6);
  margin-top: 4px;
  font-family: var(--font-body);
  text-align: right;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

/* Date and Time Picker Styling (native, visually polished) */
.field input[type="date"],
.field input[type="time"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  padding-right: 44px; /* Space for native calendar/time picker icon */
  height: auto;
  min-height: 44px;
  margin: 0;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbfd 100%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.field input[type="date"].required-empty,
.field input[type="time"].required-empty,
.field input[type="date"].error,
.field input[type="time"].error {
  border-color: #d32f2f !important;
}

.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  filter: saturate(0.8) contrast(1.05);
}

.field input[type="date"]::-webkit-datetime-edit,
.field input[type="time"]::-webkit-datetime-edit {
  color: rgba(67, 16, 57, 0.48);
  font-weight: 400;
}

.field input[type="date"]:focus::-webkit-datetime-edit,
.field input[type="time"]:focus::-webkit-datetime-edit {
  color: rgba(67, 16, 57, 0.7);
}

.field input[type="date"]:hover,
.field input[type="time"]:hover {
  border-color: rgba(67, 16, 57, 0.34);
}

.field input[type="date"]:focus,
.field input[type="time"]:focus {
  box-shadow: 0 0 0 3px rgba(64, 192, 197, 0.15);
}

/* Desktop only (>1024px): use native date/time picker appearance */
@media (min-width: 1025px) {
  .field input[type="date"],
  .field input[type="time"],
  .birth-details-block .field input[type="date"],
  .birth-details-block .field input[type="time"],
  .additional-chart-block .field input[type="date"],
  .additional-chart-block .field input[type="time"] {
    -webkit-appearance: auto;
    appearance: auto;
  }
  .field input[type="date"]::-webkit-calendar-picker-indicator,
  .field input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
  }
}


.field textarea {
  resize: vertical;
  min-height: 100px;
}

/* 43-Day Tracker download: button disabled until valid email */
.tracker-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Autocomplete Styles */
.autocomplete-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  right: 0;
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

.autocomplete-suggestion {
  padding: 12px 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--primary);
  border-bottom: 1px solid rgba(67, 16, 57, 0.1);
  transition: background-color 0.2s ease;
}

.autocomplete-suggestion:last-child {
  border-bottom: none;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.selected {
  background-color: rgba(64, 192, 197, 0.1);
  color: var(--primary);
}

.autocomplete-suggestions::-webkit-scrollbar {
  width: 6px;
}

.autocomplete-suggestions::-webkit-scrollbar-track {
  background: rgba(67, 16, 57, 0.05);
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
  background: rgba(67, 16, 57, 0.2);
  border-radius: 3px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb:hover {
  background: rgba(67, 16, 57, 0.3);
}

/* Ascendant reset wizard: chips left-aligned, dark text (no blue) on all viewports */
main[class$="-page"] .wizard-chips {
  justify-content: flex-start;
}
main[class$="-page"] .wizard-chip {
  color: #252525 !important;
  text-align: left;
}
/* Tapped/active chip: golden outline only, same background and text (uniform across all reset pages) */
main[class$="-page"] .wizard-chip.active {
  border-color: var(--gold) !important;
  background: var(--cream-white) !important;
  color: #252525 !important;
}

/* Responsive */
/* Show hamburger menu at 1024px to prevent nav overlap with logo */
@media (max-width: 1024px) {
  /* All sections: less side padding and no horizontal clipping on tablet */
  section {
    padding: 80px 24px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .guided-pathways-section {
    padding: 80px 24px;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Keep all section content within viewport so nothing is cut off */
  .pricing-container,
  .packages-container,
  .contact-container,
  .footer-content,
  .brand-highlights-container,
  .core-benefits-container,
  .safe-space-content,
  .process-flow,
  .faq-list,
  .founder-content,
  .intake-container {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Reduce gap between header and intake form heading on tablet */
  .intake {
    padding: 95px 24px 40px;
  }

  /* Intake form: center-align all fields on tablet for consistency with native date/time */
  .intake .birth-details-block .field label,
  .intake .birth-details-block .field input,
  .intake .birth-details-block .field select,
  .intake .birth-details-block .field textarea,
  .intake .additional-chart-block .field label,
  .intake .additional-chart-block .field input,
  .intake .additional-chart-block .field select,
  .intake .additional-chart-block .field textarea,
  .intake .intake-section-personal .field label,
  .intake .intake-section-personal .field input,
  .intake .intake-section-personal .field select,
  .intake .intake-section-personal .field textarea,
  .intake .intake-optional .field label,
  .intake .intake-optional .field textarea {
    text-align: center;
  }

  .intake .tob-unknown-label {
    text-align: center;
  }

  .pricing-container,
  .packages-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Session Experience: compact row cards on tablet/mobile to reduce vertical space. */
  .process-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 0 12px;
    max-width: 680px;
  }

  .process-divider {
    width: calc(100% - 48px);
    height: 3px;
    margin: 0 auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    column-gap: 20px;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }

  .process-icon {
    grid-row: 1 / 3;
    width: 96px;
    height: 96px;
    margin: 0;
    padding: 16px;
  }

  .process-heading {
    grid-column: 2;
    line-height: 1.3;
    max-width: none;
    margin: 0 0 10px;
    text-align: left;
  }

  .process-text {
    grid-column: 2;
    text-align: left;
  }

  .header {
    padding: 16px 24px;
  }

  .header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .hamburger {
    display: flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .hamburger.active {
    position: fixed;
    top: 28px;
    right: 24px;
    z-index: 2101;
  }

  .hamburger.active span {
    background-color: var(--primary) !important;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  /* Mobile nav: slide in smoothly from the right – brand primary frame, cream text */
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    max-width: 360px;
    bottom: 0;
    background-color: var(--cream-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 76px 20px 24px;
    box-sizing: border-box;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
    max-height: 100vh;
    overflow-y: auto;
    touch-action: manipulation;
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav.mobile-menu-enhanced > :not(.mobile-menu-panel) {
    display: none !important;
  }

  .mobile-menu-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
  }

  .mobile-menu-group {
    width: 100%;
    padding: 18px 0 22px;
    border-bottom: 1px solid rgba(185, 151, 80, 0.45);
    box-sizing: border-box;
    overflow: visible;
  }

  .mobile-menu-section-heading {
    font-family: var(--font-body);
    font-size: var(--text-caption);
    line-height: 1.4;
    color: var(--tertiary);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .mobile-menu-group--reach-out .mobile-menu-section-heading {
    margin-bottom: 22px;
  }

  .mobile-menu-subheading {
    font-family: var(--font-heading);
    font-size: var(--text-body);
    line-height: 1.4;
    color: var(--primary);
    margin: 16px 0 4px;
  }

  .nav .mobile-menu-link {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: none;
    font-family: var(--font-heading);
    font-size: var(--text-body);
    color: var(--primary) !important;
    box-sizing: border-box;
  }

  .nav .mobile-menu-resource-link {
    padding-left: 24px;
    font-size: var(--text-small);
    opacity: 0.9;
  }

  .mobile-menu-contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    overflow: visible;
  }

  .nav .mobile-menu-contact-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    padding: 11px 14px;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 0 0 1px rgba(185, 151, 80, 0.72);
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-caption);
    line-height: 1.2;
    box-sizing: border-box;
    overflow: visible;
  }

  .nav .mobile-menu-contact-cta + .mobile-menu-contact-cta {
    margin-left: 0;
  }

  .nav .mobile-menu-book-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    min-height: 48px;
    padding: 15px 22px;
    border: 1px solid var(--tertiary);
    border-radius: var(--radius-pill);
    background-color: var(--secondary);
    color: var(--primary) !important;
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--text-body);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .nav .mobile-menu-group--reach-out .mobile-menu-book-cta {
    margin-top: 14px;
  }

  /* All links in the open panel: full-width tappable rows with dividers */
  .nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(248, 246, 242, 0.2);
    font-size: var(--text-small);
    color: var(--cream-white) !important;
    transition: opacity 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav:not(.mobile-menu-enhanced) a:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):hover,
  .nav:not(.mobile-menu-enhanced) a:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):active {
    opacity: 0.9;
    padding-left: 8px;
    color: var(--secondary-lighter) !important;
  }

  .nav a:active {
    transition: none;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* Header CTA shown at bottom of hamburger menu (legacy; book CTA uses .mobile-menu-book-cta) */
  .nav .header-cta:not(.mobile-menu-book-cta) {
    justify-content: center;
    align-items: center;
    order: 999;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(248, 246, 242, 0.25);
    border-bottom: none;
    width: 100%;
    text-align: center;
    margin-left: 0;
    line-height: 1;
    padding: 12px 28px;
    background-color: var(--secondary);
    color: var(--primary) !important;
  }

  .nav.active .header-cta:not(.mobile-menu-book-cta):hover {
    background-color: var(--secondary-light);
    color: var(--primary) !important;
  }

  /* Ascendant reset wizard: chip text not blue, left-aligned on tablet */
  main[class$="-page"] .wizard-chips {
    justify-content: flex-start;
  }
  main[class$="-page"] .wizard-chip {
    color: #252525 !important;
    text-align: left !important;
  }

  /* Tablet hamburger nav: Resources dropdown — show arrow + divider (mirrors ≤768px rules) */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(248, 246, 242, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream-white);
    font-size: var(--text-small);
  }

  .dropdown-arrow {
    display: inline-block;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: none;
    min-width: auto;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 12px 0 12px 24px;
    font-size: var(--text-small);
    /* Use !important to override .nav a:last-child border-bottom:none which
       also matches because dropdown <a> is last-child of .nav-dropdown-menu */
    border-bottom: 1px solid rgba(248, 246, 242, 0.2) !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-link {
    border-bottom: none !important;
    color: var(--primary) !important;
    margin-top: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    transition: color 0.2s ease !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-resource-link {
    padding-left: 24px !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-resource-link:hover,
  .nav.mobile-menu-enhanced .mobile-menu-resource-link:active {
    padding-left: 24px !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-link:hover,
  .nav.mobile-menu-enhanced .mobile-menu-link:active,
  .nav.mobile-menu-enhanced .mobile-menu-resource-link:hover,
  .nav.mobile-menu-enhanced .mobile-menu-resource-link:active,
  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:hover,
  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:active {
    color: var(--secondary) !important;
    opacity: 1 !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-contact-cta {
    display: inline-flex !important;
    width: 100% !important;
    margin-top: 0 !important;
    font-family: var(--font-body) !important;
    font-size: var(--text-caption) !important;
    line-height: 1.2 !important;
    padding: 11px 14px !important;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(185, 151, 80, 0.72) !important;
    overflow: visible !important;
    transition: color 0.2s ease !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:hover,
  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:active {
    padding: 11px 14px !important;
    padding-left: 14px !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-book-cta {
    width: 100% !important;
    margin: 0 !important;
    min-height: 48px !important;
    border: 1px solid var(--tertiary) !important;
    padding: 15px 22px !important;
    font-size: var(--text-body) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.02em !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-book-cta:hover,
  .nav.mobile-menu-enhanced .mobile-menu-book-cta:active {
    background-color: var(--secondary-light) !important;
    color: var(--primary) !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-link:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):hover,
  .nav.mobile-menu-enhanced .mobile-menu-link:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):active {
    padding-left: 0 !important;
  }
}

/* Tablet only (769–1024px): misc visual fixes */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --hero-extra-shift: 0cm;
  }

  /* Hero: shift content block 0.5cm lower so it visually centres on tablet */
  .hero.hero-overhaul .hero-content {
    top: calc(clamp(72px, 10vh, 120px) + var(--hero-block-shift) + 1.5cm);
  }

  /* Hero CTA: desktop clamp resolves too small on 1024px tablet */
  .hero.hero-overhaul .hero-cta {
    font-size: 20px !important;
    padding: 16px 44px !important;
    border-width: 1.5px;
  }
}

/* Tablet only (769–1024px): 2-column grids for pricing/packages so cards aren’t cut off */
@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    min-width: 0;
    align-items: start;
  }
  
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    min-width: 0;
    align-items: stretch;
  }

  .pricing-card,
  .package-card {
    min-width: 0;
    overflow: visible;
    padding: 24px 16px;
  }

  .pricing-name {
    font-size: 24px;
  }

  .pricing-best-for {
    font-size: 14px;
  }

  .pricing-duration {
    font-size: 17px;
  }

  .pricing-price {
    font-size: 26px;
  }

  .pricing-cta {
    padding: 10px 20px;
    font-size: 14px;
  }

  .pricing-expand-toggle {
    padding: 8px 14px;
    font-size: 13px;
  }

  .pricing-expand-content,
  .pricing-expand-section {
    text-align: left;
  }

  .pricing-expand-section h4,
  .pricing-expand-section ul {
    text-align: left;
  }

  .pricing-detail-item {
    font-size: 14px;
    min-height: 0;
    margin-bottom: 0;
    padding: 0 4px;
  }
  
  .pricing-details {
    min-height: 56px;
    gap: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Keep intake grid at 2 columns on tablet (package card + personal info) */
  .intake-grid {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }
  
  .intake-section {
    min-height: auto;
  }
  
  .birth-details-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .birth-details-block .field {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    display: block;
  }
  
  .birth-details-block .field:has(.autocomplete-wrapper) {
    overflow: visible;
  }
  
  .birth-details-block .field input:not([type="checkbox"]),
  .birth-details-block .field select,
  .birth-details-block .field textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 44px;
    box-sizing: border-box !important;
  }
  
  .birth-details-block .field select,
  .birth-details-block .field .custom-select-native {
    font-size: 16px !important;
  }

  .birth-details-block .field .custom-select-display {
    justify-content: center !important;
    text-align: center !important;
    font-size: 16px !important;
    padding: 12px 36px 12px 36px !important;
  }

  .birth-details-block .field input[type="date"],
  .birth-details-block .field input[type="time"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    display: block !important;
    text-align: center !important;
    min-height: 44px;
    padding: 12px 14px !important;
    padding-right: 36px !important;
    font-size: 16px !important;
  }

  .birth-details-block .autocomplete-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

  .additional-chart-block .field {
    width: 100%;
    min-width: 0;
    display: block;
  }

  .additional-chart-block .field input:not([type="checkbox"]),
  .additional-chart-block .field select,
  .additional-chart-block .field textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 44px;
    box-sizing: border-box !important;
  }

  .additional-chart-block .field .custom-select-native {
    font-size: 16px !important;
  }

  .additional-chart-block .field .custom-select-display {
    justify-content: center !important;
    text-align: center !important;
    font-size: 16px !important;
    padding: 12px 36px 12px 36px !important;
  }

  .additional-chart-block .field input[type="date"],
  .additional-chart-block .field input[type="time"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    min-height: 44px;
    text-align: center !important;
    padding: 12px 14px !important;
    padding-right: 36px !important;
    font-size: 16px !important;
  }

  .birth-details-block .autocomplete-suggestions {
    z-index: 9999;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Hero section: avoid clipping; allow vertical overflow so placement stays correct */
  .hero {
    overflow-x: visible;
    overflow-y: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Center hero text (h1 + p) only within the TOP HALF; bottom half unchanged */
  .hero-content {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 50vh;
    margin-top: -1.5vh;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5vh;
    overflow: visible;
    box-sizing: border-box;
  }
  .hero-content h1 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }
  .hero-content p {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* CTA stays in original position (no override) */
  .hero-planets {
    gap: 24px;
    padding: 0 24px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .planet-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
  }

  /* Core benefits section: ensure no clipping */
  .core-benefits {
    padding: 80px 24px;
    overflow: visible;
    height: auto;
    min-height: auto;
  }

  .core-benefits-container {
    max-width: 100%;
    padding: 0 24px;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    column-gap: 64px;
    row-gap: 24px;
    box-sizing: border-box;
    overflow: visible;
  }

  /* Shape 160px; question a bit closer to shape */
  .core-benefit-description {
    top: calc(50% + 90px);
    white-space: nowrap;
  }

  .core-benefit-block {
    margin: 0;
  }

  /* Ensure all shapes are the same size in tablet view */
  .core-benefit-block::before {
    width: 160px;
    height: 160px;
  }

  .core-benefit-block:hover::before {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  section:first-of-type:not(.hero) {
    margin-top: -56px;
    padding-top: 112px;
  }

  section:first-of-type:not(.hero).healing-practices,
  section:first-of-type:not(.hero).faq,
  section:first-of-type:not(.hero).insights-landing,
  section:first-of-type:not(.hero).intake {
    padding-top: 112px;
  }

  /* Section right after hero (homepage): less top padding to avoid white gap */
  .hero + section {
    padding-top: 48px;
  }

  body {
    padding-top: 56px;
  }

  /* Ascendant reset pages: remove white gap but keep content below header */
  main[class$="-page"] {
    margin-top: -56px;
    padding-top: 112px;
  }

  /* Ascendant reset wizard: chip text not blue, left-aligned on mobile */
  main[class$="-page"] .wizard-chips {
    justify-content: flex-start;
  }
  main[class$="-page"] .wizard-chip {
    color: #252525 !important;
    text-align: left !important;
  }

  .hero-planet-circle {
    opacity: 0.10;
  }

  .hero-planet-circle--sun,
  .hero-planet-circle--moon,
  .hero-planet-circle--mercury,
  .hero-planet-circle--venus,
  .hero-planet-circle--mars,
  .hero-planet-circle--jupiter,
  .hero-planet-circle--saturn {
    width: 260px;
    height: 260px;
  }

  .hero-planet-circle--sun {
    top: -18%;
    left: -20%;
  }

  .hero-planet-circle--moon {
    top: -18%;
    right: -22%;
  }

  .hero-planet-circle--mercury {
    top: 38%;
    left: -22%;
  }

  .hero-planet-circle--mars {
    top: 40%;
    right: -24%;
  }

  .hero-planet-circle--venus {
    bottom: -10%;
    left: -18%;
  }

  .hero-planet-circle--jupiter {
    bottom: -14%;
    right: -18%;
  }

  .hero-planet-circle--saturn {
    width: 320px;
    height: 320px;
    top: 48%;
  }

  h2 {
    font-size: 28px;
  }

  .header {
    padding: 8px 16px;
    min-height: 56px;
    align-items: center;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo {
    height: 32px;
  }

  .logo img {
    height: 120px;
    width: auto;
    transform: scale(0.55);
    transform-origin: left center;
  }

  .header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-mobile-cta {
    display: inline-block;
    padding: 8px 16px;
    font-size: var(--text-caption);
  }

  .hamburger {
    display: flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .hamburger.active {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 2101;
  }

  .hamburger.active span {
    background-color: var(--primary) !important;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  /* Small screens: right-slide nav matching tablet behavior */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 340px);
    max-width: 340px;
    bottom: 0;
    background-color: var(--cream-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 20px 24px;
    box-sizing: border-box;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
    max-height: 100vh;
    overflow-y: auto;
    touch-action: manipulation;
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav.mobile-menu-enhanced > :not(.mobile-menu-panel) {
    display: none !important;
  }

  .mobile-menu-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
  }

  .mobile-menu-group {
    width: 100%;
    padding: 16px 0 20px;
    border-bottom: 1px solid rgba(185, 151, 80, 0.45);
    box-sizing: border-box;
    overflow: visible;
  }

  .mobile-menu-section-heading {
    font-family: var(--font-body);
    font-size: var(--text-caption);
    line-height: 1.4;
    color: var(--tertiary);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .mobile-menu-group--reach-out .mobile-menu-section-heading {
    margin-bottom: 20px;
  }

  .mobile-menu-subheading {
    font-family: var(--font-heading);
    font-size: var(--text-body);
    line-height: 1.4;
    color: var(--primary);
    margin: 14px 0 4px;
  }

  .nav .mobile-menu-link {
    display: block;
    width: 100%;
    padding: 9px 0;
    border-bottom: none;
    font-family: var(--font-heading);
    font-size: var(--text-body);
    color: var(--primary) !important;
    box-sizing: border-box;
  }

  .nav .mobile-menu-resource-link {
    padding-left: 22px;
    font-size: var(--text-caption);
    opacity: 0.9;
  }

  .mobile-menu-contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    overflow: visible;
  }

  .nav .mobile-menu-contact-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 42px;
    margin-top: 0;
    padding: 10px 12px;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 0 0 1px rgba(185, 151, 80, 0.72);
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-caption);
    line-height: 1.2;
    box-sizing: border-box;
    overflow: visible;
  }

  .nav .mobile-menu-contact-cta + .mobile-menu-contact-cta {
    margin-left: 0;
  }

  .nav .mobile-menu-book-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    min-height: 48px;
    padding: 15px 20px;
    border: 1px solid var(--tertiary);
    border-radius: var(--radius-pill);
    background-color: var(--secondary);
    color: var(--primary) !important;
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--text-body);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .nav .mobile-menu-group--reach-out .mobile-menu-book-cta {
    margin-top: 12px;
  }

  .nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(248, 246, 242, 0.2);
    font-size: var(--text-caption);
    color: var(--cream-white) !important;
    transition: opacity 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav:not(.mobile-menu-enhanced) a:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):hover,
  .nav:not(.mobile-menu-enhanced) a:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):active {
    opacity: 0.9;
    padding-left: 8px;
    color: var(--secondary-lighter) !important;
  }

  .nav a:active {
    transition: none;
  }

  .nav .header-cta:not(.mobile-menu-book-cta) {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
    border-bottom: none;
    padding: 10px 16px;
    font-size: var(--text-caption);
    white-space: nowrap;
    line-height: 1;
    background-color: var(--secondary);
    color: var(--primary) !important;
  }

  .nav .header-cta:not(.mobile-menu-book-cta):hover {
    background-color: var(--secondary-light);
    color: var(--primary) !important;
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(248, 246, 242, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream-white);
    font-size: var(--text-caption);
  }

  .dropdown-arrow {
    display: inline-block;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: none;
    min-width: auto;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 12px 0 12px 24px;
    font-size: var(--text-caption);
    /* Force divider on last dropdown item to override .nav a:last-child rule */
    border-bottom: 1px solid rgba(248, 246, 242, 0.2) !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-link {
    border-bottom: none !important;
    color: var(--primary) !important;
    margin-top: 0 !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    transition: color 0.2s ease !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-resource-link {
    padding-left: 22px !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-resource-link:hover,
  .nav.mobile-menu-enhanced .mobile-menu-resource-link:active {
    padding-left: 22px !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-link:hover,
  .nav.mobile-menu-enhanced .mobile-menu-link:active,
  .nav.mobile-menu-enhanced .mobile-menu-resource-link:hover,
  .nav.mobile-menu-enhanced .mobile-menu-resource-link:active,
  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:hover,
  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:active {
    color: var(--secondary) !important;
    opacity: 1 !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-contact-cta {
    display: inline-flex !important;
    width: 100% !important;
    margin-top: 0 !important;
    font-family: var(--font-body) !important;
    font-size: var(--text-caption) !important;
    line-height: 1.2 !important;
    padding: 10px 12px !important;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(185, 151, 80, 0.72) !important;
    overflow: visible !important;
    transition: color 0.2s ease !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:hover,
  .nav.mobile-menu-enhanced .mobile-menu-contact-cta:active {
    padding: 10px 12px !important;
    padding-left: 12px !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-book-cta {
    width: 100% !important;
    margin: 0 !important;
    min-height: 48px !important;
    border: 1px solid var(--tertiary) !important;
    padding: 15px 20px !important;
    font-size: var(--text-body) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.02em !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-book-cta:hover,
  .nav.mobile-menu-enhanced .mobile-menu-book-cta:active {
    background-color: var(--secondary-light) !important;
    color: var(--primary) !important;
  }

  .nav.mobile-menu-enhanced .mobile-menu-link:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):hover,
  .nav.mobile-menu-enhanced .mobile-menu-link:not(.mobile-menu-contact-cta):not(.mobile-menu-book-cta):not(.mobile-menu-resource-link):active {
    padding-left: 0 !important;
  }

  html, body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;
  }

  html {
    padding: 0;
  }

  body {
    padding-top: 56px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    height: calc(100vh + 56px);
    margin-top: -56px;
    padding: 0;
    padding-top: 56px;
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  .hero-top,
  .hero-bottom {
    left: 0;
    right: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
    text-align: center;
  }

  .hero-content {
    padding: 0 20px;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 50vh;
    margin-top: -1.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5vh;
    overflow: visible;
    box-sizing: border-box;
  }
  
  .hero-content h1 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
    white-space: normal;
    text-align: center;
  }
  
  .hero-content p {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-cta {
    position: absolute;
    top: calc(10px + 3 * (100vh - 20px) / 4 + 15px + 56px - 5vh);
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    font-size: 24px !important;
    padding: 23px 48px !important;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(67, 16, 57, 0.25), 0 2px 4px rgba(64, 192, 197, 0.3);
    border-width: 3px;
    z-index: 10;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-planets {
    top: calc(10px + 2 * (100vh - 20px) / 4 + 15px + 4.5vh * 0.65 + 56px);
    gap: 13px;
    padding: 0 10px;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .hero-content {
    padding: 0 20px;
  }

  .pricing-details {
    gap: 2px;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pricing-detail-item {
    font-size: 14px !important;
    min-height: 0;
    margin-bottom: 0;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.15;
    white-space: normal;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .hero-content p {
    position: static;
    left: auto;
    transform: none;
    font-size: 22px;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-content p span {
    white-space: normal;
    text-align: center;
  }

  .hero-content p span:first-child {
    margin-bottom: 0;
  }

  .hero-planets::-webkit-scrollbar {
    display: none;
  }

  .planet-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    min-width: 45px;
  }

  /* Small screens: allow hero body to wrap so it isn't cut off */
  @media (max-width: 540px) {
    .hero-content h1 {
      font-size: 32px;
      padding: 0 12px;
      white-space: normal;
      text-align: center;
    }
    .hero-content p {
      font-size: 17px;
      width: 100%;
      max-width: 100%;
      padding: 0 12px;
      text-align: center;
    }
    .hero-content p span {
      white-space: normal;
      line-height: 1.35;
      text-align: center;
    }
    .hero-content p span:first-child {
      margin-bottom: 0;
    }
  }

  @media (max-width: 380px) {
    .hero-content h1 {
      font-size: 28px;
      white-space: normal;
      text-align: center;
    }
    .hero-content p {
      font-size: 15px;
      width: 100%;
      max-width: 100%;
      padding: 0 8px;
      text-align: center;
    }
    .hero-content p span {
      line-height: 1.35;
      text-align: center;
    }
  }

  .reach-out-list {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 14px;
    max-width: 560px;
    align-items: stretch;
  }

  .reach-out-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 16px 18px;
    min-height: 108px;
    height: 100%;
    justify-content: flex-start;
  }

  .reach-out-text {
    font-size: 17px;
    text-align: left;
    margin: 0;
  }

  .reach-out-subtext {
    font-size: 13px;
  }

  .reach-out-detail {
    font-size: 13px;
    text-align: left;
  }

  .reach-out-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .reach-out-icon-circle-outer {
    width: 52px;
    height: 52px;
  }

  .reach-out-icon-circle {
    width: 44px;
    height: 44px;
    top: 4px;
    left: 4px;
  }

  .reach-out-icon {
    width: 22px;
    height: 22px;
  }

  .reach-out-icon-image {
    width: 22px;
    height: 22px;
  }

  .reach-out-bullets {
    gap: 14px;
  }

  .reach-out-bullets li {
    font-size: var(--text-small);
    padding-left: 20px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .area-item {
    padding: 16px 16px;
  }

  .area-item-link {
    gap: 14px;
  }

  .area-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }

  .area-icon-primary-circle {
    width: 48px;
    height: 48px;
  }

  .area-icon {
    width: 24px;
    height: 24px;
  }

  .area-title {
    font-size: 16px;
    margin-bottom: 0;
  }

  .area-detail {
    font-size: 13px;
  }

  .area-cta {
    min-height: 0;
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-top: 0;
  }

  .area-topics-toggle {
    min-height: 0;
    padding: 0;
    margin-top: 0;
    font-size: 13px;
  }

  .area-actions {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: auto;
    padding-top: 10px;
  }
}

@media (max-width: 640px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .area-item {
    padding: 12px 14px;
  }

  .area-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .area-icon-primary-circle {
    width: 40px;
    height: 40px;
  }

  .area-icon {
    width: 20px;
    height: 20px;
  }

  .area-title {
    font-size: 15px;
  }

  /* 1-col compact: CTA + Topics inline, no auto stretch, no big gaps */
  .area-actions {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    margin-top: 8px !important;
    padding-top: 0 !important;
  }

  .area-topics-content .area-card-bullets {
    margin: 10px 0 0 0;
    padding-top: 10px;
  }

  .area-topics-content.is-open {
    max-height: 200px;
  }

  .area-card-bullets li {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .pricing-grid,
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
  }

  .pricing-card,
  .package-card {
    width: 100%;
    min-width: 0;
  }

  .pricing-expand-content,
  .pricing-expand-section {
    text-align: left;
  }

  .pricing-expand-section h4,
  .pricing-expand-section ul {
    text-align: left;
  }

  .pricing-expand-section li {
    text-align: left;
  }

  .pricing-expand-section h4 {
    font-size: var(--text-body);
  }

  .pricing-expand-section li {
    font-size: 13px;
  }

  .pricing-expand-toggle {
    font-size: 13px;
    padding: 8px 16px;
  }

  .pricing-container,
  .packages-container {
    padding: 32px 20px;
  }

  .process-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    max-width: 640px;
    padding: 0 8px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    max-width: 100%;
    text-align: left;
  }

  .process-divider {
    width: calc(100% - 32px);
    height: 3px;
    margin: 0 auto;
  }

  .process-icon {
    grid-row: 1 / 3;
    width: 76px;
    height: 76px;
    margin: 0;
    padding: 13px;
  }

  .process-heading {
    grid-column: 2;
    margin: 0 0 8px;
    text-align: left;
  }

  .process-text {
    grid-column: 2;
    text-align: left;
  }

  .contact {
    padding: 56px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 34px;
    padding: 0;
    align-items: center;
  }

  .contact-heading {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .contact-description {
    font-size: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.55;
    max-width: 620px;
  }
  .contact-cta {
    font-size: var(--text-small);
    padding: 10px 24px;
  }

  .contact-icons {
    flex-direction: row;
    gap: 28px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
  }

  .contact-icons-band {
    padding: 22px 12px;
  }

  .footer {
    padding: 15px 20px 28px;
  }

  .footer-content {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-logo img {
    height: 112px;
  }

  .footer-nav {
    gap: 12px;
    margin-top: -6px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-nav a {
    font-size: var(--text-caption);
    white-space: normal;
    padding: 4px 8px;
  }

  .footer-newsletter {
    margin-top: 12px;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid rgba(248, 246, 242, 0.12);
  }

  .footer-newsletter-text {
    font-size: var(--text-caption);
    line-height: 1.45;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .footer-newsletter-form input[type="email"] {
    width: 100%;
    max-width: 100%;
    font-size: var(--text-caption);
    padding: 10px 14px;
  }

  .footer-newsletter-form button {
    width: 100%;
    max-width: 220px;
    font-size: var(--text-caption);
    padding: 10px 16px;
  }

  .footer-heading {
    font-size: 18px;
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-description {
    font-size: var(--text-caption);
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.5;
  }

  .footer-description > span:first-of-type {
    white-space: normal;
  }

  .footer-cta {
    font-size: var(--text-small);
    padding: 12px 24px;
    margin-bottom: 12px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-socials {
    gap: 18px;
    margin-top: 2px;
  }

  .footer-social {
    width: 28px;
    height: 28px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .footer-nav-policies {
    gap: 12px;
    padding-top: 8px;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav-policies a {
    font-size: 11px;
    white-space: normal;
    padding: 4px 6px;
  }

  .footer-legal {
    margin-top: 4px;
    padding: 12px 20px 0;
  }

  .footer-legal p {
    font-size: 11px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 3px;
  }

  .contact-label {
    font-size: var(--text-small);
    margin-top: 2px;
    white-space: nowrap;
  }

  .intake {
    padding: 112px 20px 80px;
  }

  .intake-container h1 {
    font-size: 28px;
  }

  /* Intake form: center-align all fields on mobile for consistency with native date/time */
  .intake .birth-details-block .field label,
  .intake .birth-details-block .field input,
  .intake .birth-details-block .field select,
  .intake .birth-details-block .field textarea,
  .intake .additional-chart-block .field label,
  .intake .additional-chart-block .field input,
  .intake .additional-chart-block .field select,
  .intake .additional-chart-block .field textarea,
  .intake .intake-section-personal .field label,
  .intake .intake-section-personal .field input,
  .intake .intake-section-personal .field select,
  .intake .intake-section-personal .field textarea,
  .intake .intake-optional .field label,
  .intake .intake-optional .field textarea {
    text-align: center;
  }

  .intake .tob-unknown-label {
    text-align: center;
  }

  .intake-container {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .intake-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .intake-section-personal {
    grid-column: 1;
  }
  
  .birth-details-section {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
  }

  .birth-details-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: visible;
  }
  
  .birth-details-block .field {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* Allow Place of Birth dropdown to show on mobile */
  .birth-details-block .field:has(.autocomplete-wrapper) {
    overflow: visible;
  }
  
  .birth-details-block .field input:not([type="checkbox"]),
  .birth-details-block .field select,
  .birth-details-block .field textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .birth-details-block {
    padding: 24px 16px;
  }
  
  .birth-details-block .field input[type="date"],
  .birth-details-block .field input[type="time"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 12px 14px !important;
    padding-right: 36px !important;
    overflow: hidden !important;
    text-align: center !important;
    font-size: 16px !important;
    min-height: 44px;
  }

  /* Place of Birth dropdown: ensure it shows above other form elements on mobile */
  .birth-details-block .autocomplete-suggestions,
  .additional-chart-block .autocomplete-suggestions {
    z-index: 9999;
    position: absolute;
  }
  
  /* Additional charts wrapper and blocks - full width on mobile */
  #additional-charts-wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: visible;
    box-sizing: border-box;
  }
  
  .additional-chart-block {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 24px 16px;
    overflow: visible;
    box-sizing: border-box;
  }
  
  .additional-chart-block .field {
    width: 100%;
    min-width: 0;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* Allow Place of Birth dropdown to show on mobile */
  .additional-chart-block .field:has(.autocomplete-wrapper) {
    overflow: visible;
  }
  
  .additional-chart-block .field input:not([type="checkbox"]),
  .additional-chart-block .field select,
  .additional-chart-block .field textarea,
  .additional-chart-block .field .autocomplete-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .additional-chart-block .field input[type="date"],
  .additional-chart-block .field input[type="time"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
    padding: 12px 14px !important;
    padding-right: 36px !important;
    overflow: hidden !important;
    text-align: center !important;
    font-size: 16px !important;
    min-height: 44px;
  }

  /* Primary Area of Guidance: center display text on mobile */
  .birth-details-block .field .custom-select-display,
  .additional-chart-block .field .custom-select-display {
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 36px 12px 36px !important;
    font-size: 16px !important;
  }

  /* Mobile Date and Time Input Fixes */
  .field input[type="date"],
  .field input[type="time"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 12px 14px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(67, 16, 57, 0.2) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbfd 100%) !important;
    height: auto;
    min-height: 44px;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-align: left !important;
  }

  .field input[type="date"]::-webkit-calendar-picker-indicator,
  .field input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
  }

  .field input[type="date"]:focus,
  .field input[type="time"]:focus {
    outline: none !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 3px rgba(64, 192, 197, 0.15) !important;
  }

  .field input[type="date"].required-empty,
  .field input[type="time"].required-empty,
  .field input[type="date"].error,
  .field input[type="time"].error {
    border-color: #d32f2f !important;
  }
}

/* Confirmation Page */
.confirmation {
  background-color: var(--cream-white);
  padding: 200px 40px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-heading {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.confirmation-message {
  font-size: 20px;
  color: var(--primary);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.confirmation-next-step {
  font-size: var(--text-body);
  color: var(--primary);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.8;
}

.confirmation-next-step strong {
  font-weight: 700;
}

.confirmation-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--text-body);
  transition: background-color 0.3s;
  margin-top: 24px;
}

.confirmation-cta:hover {
  background: var(--secondary-light);
}

.redirect-message {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--primary);
  margin-top: 24px;
  opacity: 0.8;
}

.redirect-message {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--primary);
  margin-top: 24px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .confirmation {
    padding: 100px 20px;
  }
  .confirmation-heading {
    font-size: 32px;
  }
  .confirmation-message {
    font-size: 17px;
  }
}

/* Booking link will be replaced with Cal.com */

/* Cal.com Booking Modal */
#cal-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

#cal-modal {
  position: relative;
  background-color: var(--cream-white);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
  z-index: 10;
  font-family: var(--font-heading);
  line-height: 1;
  padding: 0;
}

.cal-modal-close:hover {
  background-color: rgba(67, 16, 57, 0.1);
}

.cal-modal-instruction {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  padding: 24px 48px 16px 24px;
  margin: 0;
  line-height: 1.5;
  background-color: rgba(185, 151, 80, 0.12);
  border-radius: 6px;
  margin-left: 24px;
  margin-right: 24px;
}

#cal-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 24px 24px;
  min-height: 500px;
}

/* Full-screen redirect message (after Cal.com slot selection, before confirmation page) */
.redirect-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background-color: rgba(67, 16, 57, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.redirect-overlay-content {
  background-color: var(--cream-white);
  padding: 32px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  text-align: center;
}

.redirect-overlay-text {
  font-family: var(--font-heading);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

#cal-modal-content iframe {
  width: 100%;
  min-height: 650px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  #cal-modal {
    max-height: 95vh;
    border-radius: 16px;
  }

  #cal-modal-overlay {
    padding: 10px;
  }

  .cal-modal-instruction {
    padding: 16px 20px 12px 20px;
    font-size: 14px;
    margin-left: 16px;
    margin-right: 16px;
  }

  #cal-modal-content {
    padding: 0 16px 16px 16px;
    min-height: 500px;
  }

  #cal-modal-content iframe {
    min-height: 600px;
  }

  .cal-modal-close {
    top: 12px;
    right: 12px;
  font-size: 28px;
    width: 36px;
    height: 36px;
  }
}

/* Reserved Page (After Cal.com Booking) */
.reserved {
  background-color: var(--cream-white);
  padding: 160px 40px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserved-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.reserved-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.reserved-subheading {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.reserved-message,
.reserved-next-step {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.reserved-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 16px 42px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-top: 32px;
  transition: background-color 0.3s;
}

.reserved-cta:hover {
  background-color: var(--secondary-light);
}

@media (max-width: 768px) {
  .reserved {
    padding: 120px 24px;
  }

  .reserved-heading {
    font-size: var(--text-h2);
  }

  .reserved-subheading {
    font-size: 20px;
  }

  .reserved-cta {
    font-size: var(--text-body);
    padding: 14px 32px;
  }
}

/* Privacy Policy Page */
/* About Transition Section */
.about-transition {
  background-color: var(--primary);
  padding: var(--section-padding);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Shooting Star */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--cream-white), transparent);
  border-radius: 2px;
  top: -100px;
  right: 20%;
  transform: rotate(-45deg);
  transform-origin: center;
  opacity: 0;
  animation: shootStar 3s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 1;
}

.shooting-star::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--cream-white);
  border-radius: 50%;
  top: 0;
  left: -1px;
  box-shadow: 0 0 10px 2px var(--cream-white);
}

@keyframes shootStar {
  0% {
    top: -100px;
    right: 20%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% + 100px);
    right: -20%;
    opacity: 0;
  }
}

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

.transition-content {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.transition-moon {
  width: 75px;
  height: 75px;
  transform: rotate(-45deg);
  display: block;
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 15%;
}

.transition-text {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.8;
  color: var(--cream-white);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

/* Star animation - stronger blinking */
@keyframes starBlink {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

.about-transition .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: var(--cream-white);
  border-radius: 50%;
  animation: starBlink 4s ease-in-out infinite;
}

/* Varying star sizes */
.about-transition .star:nth-child(odd) {
  width: 1.8px;
  height: 1.8px;
}

.about-transition .star:nth-child(3n) {
  width: 2.2px;
  height: 2.2px;
}

.about-transition .star:nth-child(5n) {
  width: 1.5px;
  height: 1.5px;
}

.about-transition .star:nth-child(1) { animation-delay: 0s; }
.about-transition .star:nth-child(2) { animation-delay: 0.18s; }
.about-transition .star:nth-child(3) { animation-delay: 0.36s; }
.about-transition .star:nth-child(4) { animation-delay: 0.54s; }
.about-transition .star:nth-child(5) { animation-delay: 0.72s; }
.about-transition .star:nth-child(6) { animation-delay: 0.9s; }
.about-transition .star:nth-child(7) { animation-delay: 1.08s; }
.about-transition .star:nth-child(8) { animation-delay: 1.26s; }
.about-transition .star:nth-child(9) { animation-delay: 1.44s; }
.about-transition .star:nth-child(10) { animation-delay: 1.62s; }
.about-transition .star:nth-child(11) { animation-delay: 1.8s; }
.about-transition .star:nth-child(12) { animation-delay: 1.98s; }
.about-transition .star:nth-child(13) { animation-delay: 2.16s; }
.about-transition .star:nth-child(14) { animation-delay: 2.34s; }
.about-transition .star:nth-child(15) { animation-delay: 2.52s; }
.about-transition .star:nth-child(16) { animation-delay: 2.7s; }
.about-transition .star:nth-child(17) { animation-delay: 2.88s; }
.about-transition .star:nth-child(18) { animation-delay: 3.06s; }
.about-transition .star:nth-child(19) { animation-delay: 3.24s; }
.about-transition .star:nth-child(20) { animation-delay: 3.42s; }
.about-transition .star:nth-child(21) { animation-delay: 3.6s; }
.about-transition .star:nth-child(22) { animation-delay: 3.78s; }
.about-transition .star:nth-child(23) { animation-delay: 0.27s; }
.about-transition .star:nth-child(24) { animation-delay: 0.45s; }
.about-transition .star:nth-child(25) { animation-delay: 0.63s; }
.about-transition .star:nth-child(26) { animation-delay: 0.81s; }
.about-transition .star:nth-child(27) { animation-delay: 0.99s; }
.about-transition .star:nth-child(28) { animation-delay: 1.17s; }

@media (max-width: 768px) {
  .about-transition {
    padding: 80px 24px;
  }
  
  .transition-content {
    gap: 32px;
  }
  
  .transition-text {
    font-size: 18px;
  }
  
  .transition-illustration {
    max-width: 300px;
  }
}

/* About Hero Section with Photo */
.about-hero {
  background-color: var(--primary);
  padding: 120px 40px 95px;
  width: 100%;
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-hero-photo {
  flex-shrink: 0;
}

.about-photo-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-white-circle {
  position: absolute;
  width: 245px;
  height: 245px;
  background-color: white;
  border-radius: 50%;
  z-index: 1;
}

.about-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.about-circle-outline {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.about-hero-intro {
  flex: 1;
  text-align: left;
}

.about-hero .about-hero-intro h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h2) !important;
  line-height: 1.2;
  font-weight: 500;
  color: var(--cream-white);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.about-hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.5;
  color: var(--tertiary);
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  text-align: center;
}

.about-hero-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: rgba(248, 246, 242, 0.9);
  margin: 0;
  text-align: center;
}

.about-quote-band {
  background: var(--primary-dark);
  padding: 20px 16px;
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
}

.about-quote-band-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-quote-band-text {
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  /* Tablet (769–1024px) — was rendering ~17px before, now ~26–28px.
     Desktop ≥1281px hits the 30px ceiling. */
  font-size: clamp(20px, 2.7vw, 30px);
  line-height: 1.3;
  color: var(--tertiary);
  font-weight: 500;
  font-style: italic;
  white-space: normal;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 102px 16px 50px;
  }
  
  .about-hero-content {
    flex-direction: column;
    text-align: left;
    gap: 24px;
  }
  
  .about-photo-wrapper {
    width: 160px;
    height: 160px;
  }
  
  .about-white-circle {
    width: 180px;
    height: 180px;
  }
  
  .about-hero .about-hero-intro h1 {
    font-size: clamp(22px, 5.2vw, 28px) !important;
    line-height: 1.2;
  }

  .about-hero-tagline {
    font-size: clamp(13px, 3.4vw, 15px);
    line-height: 1.5;
  }

  .about-hero-text {
    font-size: var(--text-body);
    line-height: 1.6;
  }

  .about-quote-band {
    padding: 14px 8px;
  }

  .about-quote-band-text {
    font-size: clamp(18px, 4.6vw, 22px);
    line-height: 1.3;
    white-space: normal;
    max-width: 28ch;
    margin: 0 auto;
  }
}

/* About Page Sections */
.about-section {
  width: 100%;
  padding: var(--section-padding);
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
}

/* Keep collapsed bands compact so more sections are visible upfront */
.collapsible-section.collapsed {
  padding-top: 44px;
  padding-bottom: 44px;
}

.about-section-1 {
  background-color: var(--cream-white);
  color: var(--primary);
}

.about-section-2 {
  background-color: var(--primary-light);
  color: var(--cream-white);
}

.about-section-3 {
  background-color: var(--cream-white);
  color: var(--primary);
}

.about-section-4 {
  background-color: var(--primary-light);
  color: var(--cream-white);
}

.about-section-5 {
  background-color: var(--cream-white);
  color: var(--primary);
}

.about-section-6 {
  background-color: var(--primary-light);
  color: var(--cream-white);
}

/* Section 6 removed - now only 5 sections */

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 48px;
}

.about-section-1 h2,
.about-section-3 h2,
.about-section-5 h2 {
  color: var(--primary);
}

.about-section-2 h2,
.about-section-4 h2,
.about-section-6 h2 {
  color: var(--cream-white);
}

.about-content p {
  font-size: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.about-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.about-content li {
  font-size: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.about-section-1 p,
.about-section-1 li,
.about-section-3 p,
.about-section-3 li,
.about-section-5 p,
.about-section-5 li {
  color: var(--primary);
}

.about-section-2 p,
.about-section-2 li,
.about-section-4 p,
.about-section-4 li,
.about-section-6 p,
.about-section-6 li {
  color: var(--cream-white);
}

/* Collapsible Sections */
.about-section-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  margin-bottom: 0;
  color: inherit;
  position: relative;
}

.about-section-toggle h2 {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.toggle-icon {
  font-size: var(--text-body);
  transition: transform 0.3s ease;
  margin-left: 0;
  flex-shrink: 0;
  color: inherit;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-section-2 .toggle-icon,
.about-section-4 .toggle-icon,
.about-section-6 .toggle-icon {
  color: var(--cream-white);
}

.about-section-1 .toggle-icon,
.about-section-3 .toggle-icon,
.about-section-5 .toggle-icon {
  color: var(--primary);
}

.collapsible-section.collapsed .toggle-icon {
  transform: translateY(-50%) rotate(-90deg);
}

.about-section-content {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.collapsible-section.collapsed .about-section-content {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
}

.collapsible-section:not(.collapsed) .about-section-content {
  max-height: 5000px;
  opacity: 1;
  margin-top: 24px;
}

/* Desktop: enforce collapsed state when .collapsed is present (no default expanded) */
@media (min-width: 769px) {
  .collapsible-section.collapsed .about-section-content {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
  }
  .collapsible-section:not(.collapsed) .about-section-toggle h2 {
    margin-bottom: 48px;
  }
}

/* Mobile/tablet: About section spacing */
@media (max-width: 768px) {
  .collapsible-section {
    padding: 80px 24px;
  }

  .collapsible-section.collapsed {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .about-section-toggle {
    margin-bottom: 24px;
  }
  
  .collapsible-section.collapsed .about-section-toggle {
    margin-bottom: 0;
  }
  
  .about-section-3 .toggle-icon {
    color: var(--primary-light);
  }
}

/* About CTA Section */
.about-cta-section {
  background-color: var(--primary);
  color: var(--cream-white);
  width: 100%;
  padding: var(--section-padding);
}

.about-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-content > :first-child {
  margin-top: 0;
}

.about-cta-content > :last-child {
  margin-bottom: 0;
}

.about-cta-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--cream-white);
  letter-spacing: -0.3px;
}

.about-cta-subtext {
  font-size: var(--text-small);
  font-weight: 400;
  margin-bottom: 32px;
  color: rgba(248, 246, 242, 0.85);
  font-family: var(--font-body);
  line-height: 1.7;
}

/* Same body size as homepage Session Experience intro (.process-intro); not the link row */
.about-cta-subtext:not(.about-cta-links) {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--cream-white);
  opacity: 0.9;
}

/* About CTA service links: smaller so they fit one line on desktop; wrap on small screens so they don't get cut off */
.about-cta-links {
  font-size: 13px;
  white-space: nowrap;
  margin-top: 40px;
  margin-bottom: 0;
}

.about-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .about-cta-text {
    font-size: var(--text-h3);
  }

  /* Keep same CTA gap and link size on mobile */
  .about-cta {
    margin-top: 40px;
  }
  .about-cta-links {
    font-size: 13px;
    margin-top: 40px;
    margin-bottom: 0;
    white-space: normal;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }
}

/* Tablet: same CTA gap and link size as desktop; allow links to wrap so they don't get cut off */
@media (max-width: 1024px) {
  .about-cta {
    margin-top: 40px;
  }
  .about-cta-links {
    font-size: 13px;
    margin-top: 40px;
    margin-bottom: 0;
    white-space: normal;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }
}

.about-cta-section .cta {
  padding: 22px 50px;
  font-size: 22.5px;
}

/* Privacy Policy Page (for other pages using this class) */
.privacy-policy {
  background-color: var(--cream-white);
  padding: var(--section-padding);
  min-height: calc(100vh - 72px);
}

.privacy-policy h1 {
  font-size: calc((var(--text-h2) * 0.5) + 8px);
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: calc(var(--text-h2) * 0.5);
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--primary);
  text-align: left;
}

.privacy-content h3 {
  font-size: calc((var(--text-h4) * 0.5) + 3px);
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-body);
  text-align: left;
  text-transform: none;
}

.privacy-content p,
.privacy-content li {
  font-family: var(--font-body);
  font-size: calc((var(--text-h4) * 0.5) + 3px);
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 10px;
}

.privacy-intro {
  font-family: var(--font-body);
  font-size: calc((var(--text-h4) * 0.5) + 3px);
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 12px;
}

.privacy-content ul {
  margin-left: 24px;
  margin-bottom: 14px;
}

.privacy-content li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .privacy-content h2 {
    margin-top: 22px;
    margin-bottom: 8px;
  }

  .privacy-content h3 {
    margin-top: 16px;
    margin-bottom: 6px;
  }

  .privacy-content p,
  .privacy-content li,
  .privacy-intro {
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .privacy-content ul {
    margin-bottom: 10px;
  }
}

/* Insights Page */
/* Resource landings (Insights / Healing / Reset): title = homepage section h2 pattern; lead = About hero .about-hero-text */
.insights-landing {
  background-color: var(--cream-white);
  padding: var(--section-padding);
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
}

.insights-landing h1,
.healing-practices h1,
.ascendant-reset-page h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-h2);
  line-height: 1.2;
  margin: 0 0 32px;
  color: var(--primary);
}

.insights-intro,
.healing-practices-intro p,
.ascendant-reset-intro,
.ascendant-reset-subtext {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--primary-light);
  text-align: center;
}

.ascendant-reset-subtext {
  margin: 0 auto 48px;
  color: var(--primary);
}

.insights-intro {
  margin: 0 auto 48px;
  max-width: min(900px, 100%);
}

.insights-search-filter {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.insights-search {
  flex: 1;
}

.insights-search-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--primary);
  background-color: var(--white);
  transition: border-color 0.3s;
}

.insights-search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.insights-search-input::placeholder {
  color: var(--primary);
  opacity: 0.5;
}

.insights-filter {
  flex-shrink: 0;
}

.insights-filter-select {
  padding: 14px 40px 14px 20px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--primary);
  background-color: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23431039' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  transition: border-color 0.3s;
}

.insights-filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

.insights-filter-select:hover {
  border-color: var(--primary);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-post-card {
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(67, 16, 57, 0.1);
}

.blog-post-card-title {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-post-card-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-post-card-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--primary);
  opacity: 0.6;
  font-family: var(--font-body);
}

/* Blog Post Template */
.blog-post-section {
  background-color: var(--cream-white);
  padding: var(--section-padding);
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.1);
  border-radius: 8px;
  padding: 48px;
}

.blog-post-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.1);
}

.blog-back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 16px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.blog-back-link:hover {
  opacity: 1;
}

.blog-post-title {
  font-size: 34px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: left;
}

.blog-post-meta {
  display: flex;
  gap: 24px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  opacity: 0.7;
}

.blog-post-date,
.blog-post-category {
  display: inline-block;
}

.blog-post-content {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--primary);
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content h2 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: left;
  text-transform: none;
}

.blog-post-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
  text-transform: none;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.blog-post-content li {
  margin-bottom: 12px;
}

.blog-post-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(67, 16, 57, 0.1);
  text-align: center;
}

.blog-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  transition: background-color 0.3s;
}

.blog-cta:hover {
  background: var(--secondary-light);
}

@media (max-width: 768px) {
  .insights-landing,
  .blog-post-section {
    padding: 80px 20px;
  }

  .insights-landing h1,
  .healing-practices h1,
  .ascendant-reset-page h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  [class$="-hero"] h1 {
    font-size: 28px !important;
  }

  .insights-intro,
  .healing-practices-intro p,
  .ascendant-reset-intro,
  .ascendant-reset-subtext {
    font-size: var(--text-body);
    line-height: 1.6;
  }

  .ascendant-reset-subtext {
    margin-bottom: 40px;
  }

  .insights-search-filter {
    flex-direction: column;
    gap: 16px;
  }

  .insights-search,
  .insights-filter {
    width: 100%;
  }

  .insights-filter-select {
    width: 100%;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-post {
    padding: 32px 24px;
  }

  .blog-post-title {
    font-size: 28px;
  }

  .blog-post-content h2 {
    font-size: var(--text-h3);
  }

  .blog-post-content h3 {
    font-size: 20px;
  }
}

/* Healing Practices Page */
.healing-practices {
  background-color: var(--cream-white);
  padding: var(--section-padding);
}

.healing-practices-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* .healing-practices h1 — grouped with .insights-landing h1 above */

.healing-practices-intro {
  color: var(--primary-light);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 1200px;
}

.healing-practices-intro p {
  margin-bottom: 20px;
}

.healing-practices-intro p:last-child {
  margin-bottom: 0;
}

/* .ascendant-reset-page h1 — grouped with resource landing titles above */

.healing-search-filter {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.healing-search {
  flex: 1;
}

.healing-search-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--primary);
  background-color: var(--white);
  transition: border-color 0.3s;
}

.healing-search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.healing-search-input::placeholder {
  color: var(--primary);
  opacity: 0.5;
}

.healing-filter {
  flex-shrink: 0;
}

.healing-filter-select {
  padding: 14px 40px 14px 20px;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--primary);
  background-color: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23431039' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  min-width: 280px;
}

.healing-filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

.healing-filter-select:hover {
  border-color: var(--primary);
}

.healing-subsection {
  margin-bottom: 80px;
}

.healing-subsection h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  text-align: center;
  text-transform: none;
}

.healing-subsection h2 a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.3s;
}

.healing-subsection h2 a:hover {
  opacity: 0.7;
}

.healing-content {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--primary);
}

.healing-content p {
  margin-bottom: 24px;
}

.healing-category {
  margin-bottom: 64px;
}

.healing-category h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  text-align: left;
  text-transform: none;
}

.healing-modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.healing-modality-card {
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.1);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.healing-modality-card:hover {
  box-shadow: 0 4px 12px rgba(67, 16, 57, 0.1);
  transform: translateY(-2px);
}

.healing-modality-name {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  text-align: center;
}

.healing-modality-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.healing-modality-cta {
  display: inline-block;
  padding: 8px 16px;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-size: var(--text-small);
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-family: var(--font-heading);
}

.healing-modality-cta:hover {
  background-color: var(--primary);
  color: var(--cream-white);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .healing-practices {
    padding: 80px 20px;
  }

  .healing-practices-intro {
    margin-bottom: 48px;
    padding: 0 10px;
  }

  .healing-practices-intro p {
    margin-bottom: 16px;
  }

  .healing-search-filter {
    flex-direction: column;
    gap: 16px;
  }

  .healing-search,
  .healing-filter {
    width: 100%;
  }

  .healing-filter-select {
    width: 100%;
    min-width: auto;
  }

  .healing-subsection {
    margin-bottom: 64px;
  }

  .healing-subsection h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .healing-category h2 {
    font-size: var(--text-h3);
    margin-bottom: 24px;
  }

  .healing-modalities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .healing-modality-name {
    font-size: 20px;
  }

  .healing-modality-card {
    padding: 20px;
  }
}

/* Modality Detail Page Styles */
.modality-detail {
  padding: 120px 80px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.modality-detail h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h1-page);
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.modality-category-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}

.modality-section {
  margin-bottom: 40px;
}

.modality-section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--primary);
  margin-bottom: 20px;
  text-align: left;
}

.modality-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modality-section li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.modality-section li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.related-practices {
  background-color: var(--cream-white);
  border: 1px solid var(--primary-light);
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 40px;
}

.related-practices h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
}

.related-practices-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-practice-link {
  background-color: var(--brand-white);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.related-practice-link:hover {
  background-color: var(--primary);
  color: var(--cream-white);
}

.modality-faq {
  margin-bottom: 48px;
}

.modality-faq h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--primary);
  margin-bottom: 24px;
  text-align: left;
}

.modality-faq-item {
  border-bottom: 1px solid var(--primary-light);
  padding: 20px 0;
}

.modality-faq-item:first-of-type {
  border-top: 1px solid var(--primary-light);
}

.modality-faq-question {
  font-family: var(--font-heading);
  font-size: var(--faq-question-size);
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.modality-faq-answer {
  font-family: var(--font-body);
  font-size: var(--faq-answer-size);
  color: var(--text-dark);
  line-height: 1.7;
}

.modality-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.modality-cta-primary {
  background-color: var(--primary);
  color: var(--cream-white);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.modality-cta-primary:hover {
  background-color: var(--primary-light);
}

.modality-cta-secondary {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.modality-cta-secondary:hover {
  background-color: var(--primary);
  color: var(--cream-white);
}

@media (max-width: 768px) {
  .modality-detail {
    padding: 100px 20px 60px;
  }

  .modality-detail h1 {
    font-size: 28px;
  }

  .modality-section h2 {
    font-size: 20px;
  }

  .modality-section li {
    font-size: var(--text-small);
  }

  .related-practices {
    padding: 20px;
  }

  .related-practices-links {
    gap: 8px;
  }

  .related-practice-link {
    font-size: var(--text-caption);
    padding: 6px 14px;
  }

  .modality-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .modality-cta-primary,
  .modality-cta-secondary {
    text-align: center;
  }
}

/* Reading & Viewing Resource Styles */
.reading-category {
  margin-bottom: 64px;
}

.reading-category h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.reading-modality {
  margin-bottom: 48px;
  padding: 24px;
  background-color: var(--cream-white);
  border-radius: 12px;
}

.reading-modality h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}

.resource-type {
  margin-bottom: 24px;
}

.resource-type h4 {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-type h4::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-item {
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--primary-light);
}

.resource-title {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.resource-meta {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 4px;
}

.resource-description {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}

.resource-link {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resource-link:hover {
  text-decoration: underline;
}

.reading-search-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.reading-search {
  flex: 1;
  min-width: 200px;
}

.reading-search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--primary-light);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  outline: none;
}

.reading-filter {
  min-width: 200px;
}

.reading-filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--primary-light);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  background-color: var(--brand-white);
  cursor: pointer;
}

@media (max-width: 768px) {
  .reading-category h2 {
    font-size: 22px;
  }
  
  .reading-modality {
    padding: 16px;
  }
  
  .reading-modality h3 {
    font-size: 18px;
  }
  
  .reading-search-filter {
    flex-direction: column;
  }
  
  .reading-search,
  .reading-filter {
    width: 100%;
    min-width: auto;
  }
}

/* Practitioner Listings Styles */
.practitioner-intro {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 40px;
  padding: 20px;
  background-color: var(--cream-white);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.practitioner-region {
  margin-bottom: 64px;
}

.practitioner-region h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.practitioner-modality {
  margin-bottom: 48px;
}

.practitioner-modality h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.practitioner-list {
  display: grid;
  gap: 16px;
}

.practitioner-card {
  background-color: var(--cream-white);
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.practitioner-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.practitioner-name {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.practitioner-location {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--primary);
  margin-bottom: 8px;
}

.practitioner-training {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

.practitioner-link {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.practitioner-link:hover {
  text-decoration: underline;
}

.practitioner-search-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.practitioner-search {
  flex: 1;
  min-width: 200px;
}

.practitioner-search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--primary-light);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  outline: none;
}

.practitioner-filter {
  min-width: 180px;
}

.practitioner-filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--primary-light);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  background-color: var(--brand-white);
  cursor: pointer;
}

@media (max-width: 768px) {
  .practitioner-region h2 {
    font-size: 22px;
  }
  
  .practitioner-modality h3 {
    font-size: 17px;
  }
  
  .practitioner-card {
    padding: 16px;
  }
  
  .practitioner-search-filter {
    flex-direction: column;
  }
  
  .practitioner-search,
  .practitioner-filter {
    width: 100%;
    min-width: auto;
  }
}

/* Materials Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(67, 16, 57, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.materials-modal {
  background-color: var(--white);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(67, 16, 57, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.1);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--primary);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--primary-light);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-content {
  padding: 24px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  line-height: 1.6;
}

.modal-content p {
  margin-bottom: 16px;
}

.materials-section,
.environment-section {
  margin-top: 24px;
  margin-bottom: 24px;
}

.materials-section h4,
.environment-section h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
}

.materials-section ul {
  margin-left: 20px;
  margin-top: 8px;
}

.materials-section li {
  margin-bottom: 8px;
}

.acknowledgment-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(67, 16, 57, 0.1);
}

.acknowledgment-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.acknowledgment-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.acknowledgment-checkbox span {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid rgba(67, 16, 57, 0.1);
}

.btn-cancel,
.btn-confirm {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-cancel {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid rgba(67, 16, 57, 0.2);
}

.btn-cancel:hover {
  background-color: rgba(67, 16, 57, 0.05);
}

.btn-confirm {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-confirm:hover:not(:disabled) {
  background-color: var(--secondary-light);
}

.btn-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ================================================
   NIGHT & MORNING RITUALS PAGE
   ================================================ */

/* Ritual Hero */
.ritual-hero {
  padding: 120px 40px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-white) 0%, var(--white) 100%);
}

.ritual-hero-content h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ritual-hero-subhead {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  color: var(--primary-light);
  font-weight: 300;
}

/* Ritual Container */
.ritual-container {
  max-width: 900px;
  margin: 0 auto;
}

/* The Problem Section */
.ritual-problem {
  padding: 60px 40px;
  text-align: center;
  background-color: var(--white);
}

.ritual-statement {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 400;
}

.ritual-statement-highlight {
  color: var(--secondary);
  font-style: italic;
  margin-top: 24px;
}

/* The Promise Section */
.ritual-promise {
  padding: 60px 40px;
  text-align: center;
  background-color: var(--primary);
}

.ritual-promise-text {
  font-size: var(--text-h3);
  color: var(--white);
  font-weight: 400;
}

/* Ritual Overview Section */
.ritual-overview {
  padding: 80px 40px;
  background-color: var(--cream-white);
}

.ritual-overview h2 {
  margin-bottom: 48px;
}

.ritual-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.ritual-column-header {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.ritual-column-night .ritual-column-header {
  background: linear-gradient(135deg, #2d1f3d 0%, #431039 100%);
}

.ritual-column-morning .ritual-column-header {
  background: linear-gradient(135deg, #f5a623 0%, #f7c157 100%);
}

.ritual-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.ritual-column-header h3 {
  font-size: var(--text-h3);
  margin-bottom: 4px;
}

.ritual-column-night .ritual-column-header h3,
.ritual-column-night .ritual-column-header .ritual-time {
  color: var(--white);
}

.ritual-column-morning .ritual-column-header h3,
.ritual-column-morning .ritual-column-header .ritual-time {
  color: var(--primary);
}

.ritual-time {
  font-family: var(--font-body);
  font-size: var(--text-small);
  opacity: 0.8;
}

/* Ritual Cards */
.ritual-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(67, 16, 57, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ritual-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(67, 16, 57, 0.1);
}

.ritual-card-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: var(--text-small);
}

.ritual-card-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  text-align: left;
  color: var(--primary);
}

.ritual-card-content p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ritual-card-why {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--secondary);
  font-style: italic;
}

/* Why It Works Section */
.ritual-why {
  padding: 80px 40px;
  background-color: var(--white);
}

.ritual-why h2 {
  margin-bottom: 40px;
}

.ritual-why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.ritual-why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ritual-why-bullet {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 500;
}

.ritual-why-point p {
  font-size: 18px;
  color: var(--primary);
}

/* Tracker Section */
.ritual-tracker {
  padding: 80px 40px;
  background-color: var(--cream-white);
}

.ritual-tracker h2 {
  margin-bottom: 16px;
}

.ritual-tracker-intro {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--primary-light);
  text-align: center;
  margin-bottom: 48px;
}

.ritual-tracker-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ritual-tracker-mockup {
  background: linear-gradient(135deg, #f8f6f2 0%, #efe9e3 100%);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-tracker-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-tracker-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.ritual-icon-large {
  font-size: 48px;
  margin-bottom: 16px;
  letter-spacing: 8px;
}

.ritual-tracker-placeholder p {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
}

.ritual-tracker-placeholder-sub {
  font-family: var(--font-body);
  font-size: 14px !important;
  color: var(--primary-light) !important;
}

.ritual-tracker-cta {
  text-align: center;
}

.ritual-tracker-includes {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary);
  margin-bottom: 24px;
}

.ritual-download-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.ritual-email-input {
  padding: 16px 20px;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.ritual-email-input:focus {
  border-color: var(--secondary);
}

.ritual-email-input::placeholder {
  color: var(--primary-lighter);
}

.ritual-download-btn {
  padding: 16px 32px;
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ritual-download-btn:hover:not(:disabled) {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
}

.ritual-download-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.ritual-form-note {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--primary-lighter);
  margin-top: 12px;
}

/* Milestones Section */
.ritual-milestones {
  padding: 80px 40px;
  background-color: var(--white);
}

.ritual-milestones h2 {
  margin-bottom: 48px;
}

.ritual-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ritual-week {
  text-align: center;
  padding: 32px 24px;
  background-color: var(--cream-white);
  border-radius: 12px;
}

.ritual-week-number {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.ritual-week h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

.ritual-week p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary-light);
  line-height: 1.5;
}

/* Consultation CTA Section */
.ritual-consultation {
  padding: 80px 40px;
  background-color: var(--cream-white);
}

.ritual-consultation-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(67, 16, 57, 0.08);
}

.ritual-consultation-text {
  font-size: 20px;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ritual-consultation-link {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ritual-consultation-link:hover {
  color: var(--primary);
}

/* FAQ Section */
.ritual-faq {
  padding: 80px 40px;
  background-color: var(--white);
}

.ritual-faq h2 {
  margin-bottom: 48px;
}

.ritual-faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.ritual-faq-item {
  padding: 24px;
  background-color: var(--cream-white);
  border-radius: 12px;
}

.ritual-faq-question {
  font-size: var(--faq-question-size);
  color: var(--primary);
  margin-bottom: 12px;
  text-align: left;
}

.ritual-faq-answer {
  font-family: var(--font-body);
  font-size: var(--faq-answer-size);
  color: var(--primary-light);
  line-height: 1.7;
}

/* Ritual Page Mobile Styles */
@media (max-width: 768px) {
  .ritual-hero {
    padding: 112px 20px 60px;
  }
  
  .ritual-hero-content h1 {
    font-size: 36px;
  }
  
  .ritual-hero-subhead {
    font-size: 18px;
  }
  
  .ritual-problem,
  .ritual-promise {
    padding: 40px 20px;
  }
  
  .ritual-statement {
    font-size: 22px;
  }
  
  .ritual-promise-text {
    font-size: 18px;
  }
  
  .ritual-overview,
  .ritual-why,
  .ritual-tracker,
  .ritual-milestones,
  .ritual-consultation,
  .ritual-faq {
    padding: 60px 20px;
  }
  
  .ritual-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .ritual-card {
    padding: 20px;
  }
  
  .ritual-card-content h4 {
    font-size: var(--text-body);
  }
  
  .ritual-tracker-preview {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .ritual-weeks {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .ritual-week {
    padding: 24px 16px;
  }
  
  .ritual-week h4 {
    font-size: 18px;
  }
  
  .ritual-consultation-box {
    padding: 32px 24px;
  }
  
  .ritual-consultation-text {
    font-size: 18px;
  }
  
  .ritual-faq-item {
    padding: 20px;
  }
  
  .ritual-faq-question {
    font-size: var(--faq-question-size);
  }
}

@media (max-width: 480px) {
  .ritual-hero-content h1 {
    font-size: 28px;
  }
  
  .ritual-weeks {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   INSIGHT ARTICLE PAGES (Planetary Remedies, etc.)
   ================================================ */

/* Article Container */
.insight-article {
  padding: 100px 40px 80px;
  background-color: var(--white);
  overflow-x: clip;
}

.insight-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Hero */
.insight-hero {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(67, 16, 57, 0.1);
}

.insight-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.insight-hero h1 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.insight-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--primary-light);
}

/* Sections */
.insight-section {
  padding: 32px 0 24px;
  margin-bottom: 6px;
}

/* Automatic mini break between any two sections that don’t have an explicit
   .insight-break between them (covers remaining “gap” points across articles) */
.insight-section + .insight-section {
  margin-top: 12px;
}

.insight-section h2 {
  font-size: 28px;
  text-align: left;
  margin-bottom: 24px;
  color: var(--primary);
}

.insight-section h3 {
  font-size: 22px;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.insight-section h4 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 8px;
  color: var(--primary);
}

.insight-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 16px;
}

.insight-section p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Visual page breaks (shapes only, no lines) – outside container, centered in gap */
.insight-break {
  margin: 18px 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.insight-break--planet {
  margin: 24px 0;
  min-height: 600px;
  width: 100%;
  margin-left: 0;
}

.insight-break--planet .insight-break-circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* Tablet: scale down large planet so it doesn’t overwhelm layout */
@media (max-width: 1024px) {
  .insight-break--planet {
    min-height: 360px;
  }

  .insight-break--planet .insight-break-circle {
    width: 360px;
    height: 360px;
  }
}

.insight-break--planet.insight-break--sun .insight-break-circle { background-color: #FF6B35; }
.insight-break--planet.insight-break--moon .insight-break-circle { background-color: #F5E6D3; border: 1px solid rgba(67,16,57,0.12); }
.insight-break--planet.insight-break--mars .insight-break-circle { background-color: #E63946; }
.insight-break--planet.insight-break--mercury .insight-break-circle { background-color: #06A77D; }
.insight-break--planet.insight-break--jupiter .insight-break-circle { background-color: #F7B801; }
.insight-break--planet.insight-break--venus .insight-break-circle { background-color: #E3F2FD; border: 1px solid rgba(67,16,57,0.12); }
.insight-break--planet.insight-break--saturn .insight-break-circle { background-color: #1A1A1A; }
.insight-break--planet.insight-break--rahu .insight-break-circle { background-color: #4A4A4A; }
.insight-break--planet.insight-break--ketu .insight-break-circle { background-color: #6C757D; }
.insight-break--planet.insight-break--featured .insight-break-circle { background-color: #E3F2FD; border: 1px solid rgba(67,16,57,0.12); }

/* Neutral 1: Steel blue – 3 sets of 4 shapes (circle, pill, diamond, triangle) */
.insight-break--neutral-1 {
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.insight-break--neutral-1 .insight-break-circle {
  flex-shrink: 0;
}

.insight-break--neutral-1 .insight-break-circle:nth-child(4n+1) {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #4682B4;
}

/* center shape = soft pill */
.insight-break--neutral-1 .insight-break-circle:nth-child(4n+2) {
  width: 68px;
  height: 21px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6BA3D1, #8FB8DC);
}

/* right shape = small “star” (diamond) */
.insight-break--neutral-1 .insight-break-circle:nth-child(4n+3) {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background-color: #8FB8DC;
  transform: rotate(45deg);
}

.insight-break--neutral-1 .insight-break-circle:nth-child(4n) {
  width: 35px;
  height: 30px;
  background-color: #6BA3D1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
}

/* Neutral 2: Plum – 3 sets of 4 shapes (circle, pill, diamond, triangle) */
.insight-break--neutral-2 {
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.insight-break--neutral-2 .insight-break-circle {
  flex-shrink: 0;
}

.insight-break--neutral-2 .insight-break-circle:nth-child(4n+1) {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #DDA0DD;
}

.insight-break--neutral-2 .insight-break-circle:nth-child(4n+2) {
  width: 68px;
  height: 21px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E6C4E6, #F0D8F0);
}

.insight-break--neutral-2 .insight-break-circle:nth-child(4n+3) {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background-color: #F0D8F0;
  transform: rotate(45deg);
}

.insight-break--neutral-2 .insight-break-circle:nth-child(4n) {
  width: 35px;
  height: 30px;
  background-color: #E6C4E6;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
}

/* Hide neutral decorative breaks entirely – keep only planet breaks in articles */
.insight-break--neutral-1,
.insight-break--neutral-2 {
  display: none;
}

/* Lists */
.insight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.insight-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid rgba(67, 16, 57, 0.05);
}

.insight-list li:last-child {
  border-bottom: none;
}

.insight-list li::before {
  content: "•";
  color: var(--secondary);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 12px;
}

.insight-list li strong {
  color: var(--primary);
  font-weight: 500;
}

.insight-numbered {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  counter-reset: insight-counter;
}

.insight-numbered li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary);
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  counter-increment: insight-counter;
}

.insight-numbered li::before {
  content: counter(insight-counter);
  color: var(--white);
  background-color: var(--secondary);
  font-size: var(--text-caption);
  font-weight: 500;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 12px;
}

/* Remedy Cards */
.remedy-card {
  background-color: var(--cream-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.remedy-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.remedy-card p {
  margin-bottom: 8px;
}

.remedy-card p:last-child {
  margin-bottom: 0;
}

/* Highlight Section */
.insight-highlight {
  background-color: var(--cream-white);
  padding: 32px;
  border-radius: 16px;
}

.insight-highlight h2 {
  margin-bottom: 16px;
}

/* FAQ */
.insight-faq {
  padding: 24px;
  background-color: var(--cream-white);
  border-radius: 12px;
  margin-bottom: 16px;
}

.insight-faq h4 {
  font-size: var(--text-body);
  margin-bottom: 12px;
  color: var(--primary);
}

.insight-faq p {
  margin-bottom: 0;
  color: var(--primary-light);
}

/* Related Links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.related-links a {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--secondary);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.related-links a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* Social Sharing Buttons */
.insight-social-sharing {
  text-align: center;
  margin: 48px 0;
}

.insight-social-sharing h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--primary);
}

.social-share-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--white);
}

.social-share-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-share-facebook {
  background-color: #1877F2;
}

.social-share-facebook:hover {
  background-color: #166FE5;
  transform: translateY(-2px);
}

.social-share-twitter {
  background-color: #1DA1F2;
}

.social-share-twitter:hover {
  background-color: #1A91DA;
  transform: translateY(-2px);
}

.social-share-linkedin {
  background-color: #0077B5;
}

.social-share-linkedin:hover {
  background-color: #006399;
  transform: translateY(-2px);
}

.social-share-whatsapp {
  background-color: #25D366;
}

.social-share-whatsapp:hover {
  background-color: #22C55E;
  transform: translateY(-2px);
}

/* Email CTA */
.insight-email-cta {
  text-align: center;
  padding: 40px;
  background-color: var(--cream-white);
  border-radius: 16px;
}

.insight-email-cta h3 {
  font-size: var(--text-h3);
  margin-bottom: 12px;
  text-align: center;
}

.insight-email-cta p {
  text-align: center;
  margin-bottom: 24px;
}

.insight-email-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.insight-email-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(67, 16, 57, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  outline: none;
}

.insight-email-form input:focus {
  border-color: var(--secondary);
}

.insight-email-form button {
  padding: 14px 24px;
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-small);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.insight-email-form button:hover {
  background-color: var(--secondary-light);
}

/* Consultation CTA */
.insight-consult-cta {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(67, 16, 57, 0.1);
}

.insight-consult-cta p {
  text-align: center;
  margin-bottom: 16px;
}

.insight-consult-link {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
}

.insight-consult-link:hover {
  color: var(--primary);
}

/* Back Link */
.insight-back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--primary-light);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.insight-back-link:hover {
  color: var(--primary);
}

/* Featured Pathways Grid */
.featured-pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

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

/* Insight Featured Series Card */
.insight-featured-series {
  margin-bottom: 48px;
}

.insight-series-card {
  display: block;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--cream-white);
  padding: 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-series-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(67, 16, 57, 0.2);
}

.insight-series-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.insight-series-card h2 {
  font-size: 32px;
  color: var(--cream-white);
  margin-bottom: 12px;
  text-align: left;
}

.insight-series-card p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.insight-series-cta {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  color: var(--secondary);
}

/* Blog Post Cards */
.blog-post-card {
  display: block;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 36px 28px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(67, 16, 57, 0.1);
}

.blog-post-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  flex-shrink: 0;
}
/* Planet colour circles (Insights article covers) */
.blog-post-card-icon--featured { background-color: #E3F2FD; border: 1px solid rgba(255,255,255,0.5); }
.blog-post-card-icon--sun { background-color: #FF6B35; }
.blog-post-card-icon--moon { background-color: #F5E6D3; border: 1px solid rgba(67,16,57,0.12); }
.blog-post-card-icon--mars { background-color: #E63946; }
.blog-post-card-icon--mercury { background-color: #06A77D; }
.blog-post-card-icon--jupiter { background-color: #F7B801; }
.blog-post-card-icon--venus { background-color: #E3F2FD; border: 1px solid rgba(67,16,57,0.12); }
.blog-post-card-icon--saturn { background-color: #1A1A1A; }
.blog-post-card-icon--rahu { background-color: #4A4A4A; }
.blog-post-card-icon--ketu { background-color: #6C757D; }

.blog-post-card-title {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

.blog-post-card-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.6;
  color: var(--primary-light);
  margin-bottom: 16px;
  text-align: center;
}

.blog-post-card-category {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
}

.blog-post-card-cta {
  font-family: var(--font-heading);
  font-size: var(--text-small);
  color: var(--secondary);
  font-weight: 500;
  display: inline-block;
}

.blog-post-card-featured {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border: 2px solid var(--primary);
}

.blog-post-card-featured .blog-post-card-title {
  color: var(--cream-white);
}

.blog-post-card-featured .blog-post-card-excerpt {
  color: rgba(255, 255, 255, 0.85);
}

.blog-post-card-featured .blog-post-card-cta {
  color: var(--secondary);
}

/* Blog Posts Grid Layout */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .insight-series-card {
    padding: 28px;
  }
  
  .insight-series-card h2 {
    font-size: var(--text-h3);
  }
}

/* Planet Hub Page */
.planet-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.planet-card {
  background-color: var(--white);
  border: 1px solid rgba(67, 16, 57, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(67, 16, 57, 0.12);
}

.planet-card-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: block;
  flex-shrink: 0;
}
/* Planet colour circles (Planetary Remedies hub) */
.planet-card-icon--sun { background-color: #FF6B35; }
.planet-card-icon--moon { background-color: #F5E6D3; border: 1px solid rgba(67,16,57,0.12); }
.planet-card-icon--mars { background-color: #E63946; }
.planet-card-icon--mercury { background-color: #06A77D; }
.planet-card-icon--jupiter { background-color: #F7B801; }
.planet-card-icon--venus { background-color: #E3F2FD; border: 1px solid rgba(67,16,57,0.12); }
.planet-card-icon--saturn { background-color: #1A1A1A; }
.planet-card-icon--rahu { background-color: #4A4A4A; }
.planet-card-icon--ketu { background-color: #6C757D; }

.planet-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.planet-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--primary-light);
  line-height: 1.5;
  margin: 0;
}

.planet-card-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--secondary);
}

/* Insight Article Mobile Styles */
@media (max-width: 768px) {
  .insight-article {
    padding: 80px 20px 60px;
  }
  
  .insight-hero h1 {
    font-size: 36px;
  }
  
  .insight-subtitle {
    font-size: var(--text-body);
  }
  
  .insight-section h2 {
    font-size: var(--text-h3);
  }
  
  .insight-section h3 {
    font-size: 20px;
  }
  
  .remedy-card {
    padding: 20px;
  }
  
  .insight-highlight {
    padding: 24px;
  }
  
  .related-links {
    flex-direction: column;
  }
  
  .related-links a {
    text-align: center;
  }
  
  .insight-email-form {
    flex-direction: column;
  }
  
  .planet-hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .planet-card {
    padding: 24px 20px;
  }

  .planet-card-icon {
    width: 120px;
    height: 120px;
  }

  /* scale down decorative breaks on smaller screens */
  .insight-break {
    margin: 14px 0;
    min-height: 64px;
  }

  .insight-break--planet {
    margin: 20px 0;
    min-height: 220px;
  }

  .insight-break--planet .insight-break-circle {
    width: 200px;
    height: 200px;
  }

  .insight-break--neutral-1 .insight-break-circle:nth-child(4n+1),
  .insight-break--neutral-2 .insight-break-circle:nth-child(4n+1) {
    width: 45px;
    height: 45px;
  }

  .insight-break--neutral-1 .insight-break-circle:nth-child(4n+2),
  .insight-break--neutral-2 .insight-break-circle:nth-child(4n+2) {
    width: 64px;
    height: 19px;
  }

  .insight-break--neutral-1 .insight-break-circle:nth-child(4n+3),
  .insight-break--neutral-2 .insight-break-circle:nth-child(4n+3) {
    width: 32px;
    height: 32px;
  }

  .insight-break--neutral-1 .insight-break-circle:nth-child(4n),
  .insight-break--neutral-2 .insight-break-circle:nth-child(4n) {
    width: 32px;
    height: 28px;
  }
}

/* FAQ Chat Widget */
.whatsapp-floating-button {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tertiary);
  border: 2px solid var(--tertiary);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(67, 16, 57, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-floating-button:hover {
  background: var(--tertiary-light);
  border-color: var(--tertiary);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(67, 16, 57, 0.3);
}

.whatsapp-floating-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.faq-chat-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--tertiary);
  color: var(--tertiary);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(67, 16, 57, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.faq-chat-button:hover {
  background: rgba(185, 151, 80, 0.1);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(67, 16, 57, 0.3);
}

.faq-chat-button.active {
  background: transparent;
  color: var(--tertiary);
  border-color: var(--tertiary);
}

.faq-chat-panel {
  position: fixed;
  bottom: 136px;
  right: 24px;
  width: 400px;
  max-width: calc(100vw - 48px);
  height: 600px;
  max-height: calc(100vh - 140px);
  background: var(--cream-white);
  border: 2px solid var(--tertiary);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(67, 16, 57, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.faq-chat-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.faq-chat-header {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--cream-white);
  padding: 20px;
  border-radius: 14px 14px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 24px;
}

.faq-chat-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream-white);
  text-align: left;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.faq-chat-close {
  background: none;
  border: none;
  color: var(--cream-white);
  font-size: var(--text-h3);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.faq-chat-close:hover {
  opacity: 0.7;
}

.faq-chat-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-category-item {
  border-bottom: 1px solid rgba(67, 16, 57, 0.1);
}

.faq-category-item:last-child {
  border-bottom: none;
}

.faq-category-header {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: var(--faq-question-size) !important;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s ease;
}

.faq-category-header:hover {
  color: var(--primary-light);
}

.faq-category-arrow {
  font-size: var(--text-caption);
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-category-item.active .faq-category-arrow {
  transform: rotate(180deg);
}

.faq-category-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.faq-category-item.active .faq-category-options {
  max-height: 2000px;
  padding-left: 0;
  padding-bottom: 8px;
  padding-top: 4px;
}

.faq-option-button {
  background: var(--primary-light);
  color: var(--cream-white);
  border: 2px solid var(--tertiary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--faq-answer-size) !important;
  transition: all 0.3s ease;
  line-height: 1.4;
  white-space: nowrap;
  flex: 0 0 auto;
}

.faq-option-button:hover {
  background: var(--primary);
  border-color: var(--secondary);
}

.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  margin-top: 0;
  width: 100%;
  flex-basis: 100%;
  order: 999;
}

.faq-answer-container.active {
  max-height: 2000px;
  padding: 12px 16px 16px;
  margin-top: 8px;
  background: var(--primary);
  border-radius: 12px;
}

/* Force entire answer text to cream white so it is visible on primary BG */
#faq-chat-content .faq-answer-container.active,
#faq-chat-content .faq-answer-container.active * {
  color: var(--cream-white) !important;
}

/* Wrapper added by faq-chat.js - force all content inside to cream white */
.faq-answer-text,
.faq-answer-text p,
.faq-answer-text strong,
.faq-answer-text ul,
.faq-answer-text li,
.faq-answer-text a {
  color: var(--cream-white) !important;
}

/* Floating FAQ answer: Inter, 14px to match founder note / accordion answers */
.faq-answer-container .faq-answer-text,
.faq-answer-container .faq-answer-text p,
.faq-answer-container .faq-answer-text strong,
.faq-answer-container .faq-answer-text ul,
.faq-answer-container .faq-answer-text li,
.faq-answer-container .faq-answer-text a {
  font-family: var(--font-body) !important;
  font-size: var(--faq-answer-size) !important;
}

.faq-answer-container p {
  margin: 0;
  color: var(--cream-white) !important;
  font-family: var(--font-body);
  font-size: var(--faq-answer-size);
  line-height: 1.6;
  word-wrap: break-word;
}

.faq-answer-container a {
  color: var(--cream-white) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-container a:hover {
  color: var(--cream-white) !important;
  opacity: 0.9;
}

.faq-answer-container ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
  color: var(--cream-white) !important;
}

.faq-answer-container ul li {
  margin-bottom: 6px;
  padding-left: 4px;
  color: var(--cream-white) !important;
}

.faq-answer-container strong {
  color: var(--cream-white) !important;
}

.faq-suggestions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.faq-suggestions p {
  color: var(--cream-white);
}

.faq-suggestion-btn {
  background: var(--primary);
  color: var(--cream-white);
  border: 1px solid var(--primary-lighter);
  padding: 10px 14px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--faq-answer-size);
  transition: all 0.3s ease;
  margin-top: 4px;
}

.faq-suggestion-btn:hover {
  background: var(--primary-light);
  color: var(--cream-white);
  border-color: var(--secondary);
}

@media (max-width: 768px) {
  .faq-chat-panel {
    width: calc(100vw - 24px);
    right: 12px;
    left: 12px;
    top: 56px;
    bottom: auto;
    height: calc(100vh - 56px - 20px);
    max-height: calc(100vh - 56px - 20px);
    border-radius: 12px 12px 0 0;
    z-index: 1001;
    border-width: 1px;
  }

  .faq-chat-panel .faq-chat-header {
    padding: 14px 16px;
    padding-top: calc(14px + env(safe-area-inset-top, 0));
    border-radius: 12px 12px 0 0;
  }

  .faq-chat-panel .faq-chat-header h3 {
    font-size: 18px;
  }

  .faq-chat-close {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  .faq-chat-content {
    padding: 10px 16px 16px;
    gap: 2px;
  }

  .faq-chat-button {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: var(--text-body);
  }

  .whatsapp-floating-button {
    bottom: 68px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .faq-category-header {
    font-size: var(--faq-question-size) !important;
    padding: 10px 0;
  }

  .faq-option-button {
    font-size: var(--faq-answer-size) !important;
    padding: 6px 12px;
  }

  .faq-option-answer {
    font-size: var(--faq-answer-size);
  }

  .faq-answer-container.active {
    padding: 10px 12px 12px;
    margin-top: 6px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .reach-out-list {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .area-item {
    padding: 12px 14px;
  }

  .area-item-link {
    gap: 12px;
  }

  .area-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .area-icon-primary-circle {
    width: 40px;
    height: 40px;
  }

  .area-icon {
    width: 20px;
    height: 20px;
  }

  .area-title {
    font-size: 15px;
  }

  .area-cta {
    margin-top: 0;
    font-size: 14px;
  }

  .area-topics-toggle {
    margin-top: 0;
    font-size: 13px;
  }

  .area-actions {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 8px !important;
    padding-top: 0 !important;
  }

  .area-topics-content .area-card-bullets {
    margin: 8px 0 0 0;
    padding-top: 8px;
  }

  .reach-out-item {
    min-height: 104px;
    height: 100%;
    padding: 14px 16px;
    gap: 14px;
  }

  .hero-content .cta {
    padding: 16px 36px !important;
    font-size: 20px !important;
  }

  .about-cta-section .cta {
    padding: 16px 32px;
    font-size: 18px;
  }
  .founder-photo-wrapper {
    width: 200px;
    height: 200px;
  }

  .founder-white-circle {
    width: 225px;
    height: 225px;
  }
}

@media (max-width: 480px) {
  .faq-chat-panel {
    width: calc(100vw - 16px);
    right: 8px;
    left: 8px;
    height: calc(100vh - 56px - 16px);
    max-height: calc(100vh - 56px - 16px);
    border-radius: 10px 10px 0 0;
  }

  .faq-chat-panel .faq-chat-header {
    padding: 12px 12px;
    padding-top: calc(12px + env(safe-area-inset-top, 0));
    border-radius: 10px 10px 0 0;
  }

  .faq-chat-panel .faq-chat-header h3 {
    font-size: var(--text-body);
  }

  .faq-chat-close {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .faq-chat-content {
    padding: 8px 12px 12px;
  }

  .faq-category-header {
    font-size: var(--faq-question-size) !important;
    padding: 8px 0;
  }

  .faq-option-button {
    font-size: var(--faq-answer-size) !important;
    padding: 5px 10px;
  }

  .faq-option-answer {
    font-size: var(--faq-answer-size);
  }

  .faq-answer-container.active {
    padding: 8px 10px 10px;
    margin-top: 4px;
    border-radius: 8px;
  }
}

/* Note: a previous @media (prefers-color-scheme: dark) block here was
   forcing partial dark styles when users had system dark mode on, which
   conflicted with the rest of the site (still light) and produced the
   "header turns dark / pink text" symptom on Android Chrome and reading
   mode. Removed in favor of the global color-scheme: light opt-out. */

/* Homepage hero overhaul — fully coded background (no raster image) */
.hero.hero-overhaul {
  position: relative;
  height: 95vh;
  height: 95dvh;
  min-height: 95vh;
  min-height: 95dvh;
  overflow: hidden;
  background: var(--primary);
}

/* Opt the moon and waves out of Chrome Android auto-dark.
   - forced-color-adjust:none on the moon stops auto-dark from rewriting
     its box-shadow ring colors (which was producing the hollow-circle).
   - isolation:isolate puts the moon in its own stacking context so the
     classifier skips it.
   - forced-color-adjust:none on the waves SVG (and each <path>) stops
     auto-dark's image-pipeline from recoloring the inline SVG fills.
   No effect in light mode — these are pure "hands off" signals. */
.hero.hero-overhaul .hero-moon {
  forced-color-adjust: none;
  isolation: isolate;
}

.hero.hero-overhaul .hero-waves,
.hero.hero-overhaul .hero-wave {
  forced-color-adjust: none;
}

.hero.hero-overhaul .hero-top,
.hero.hero-overhaul .hero-bottom,
.hero.hero-overhaul .hero-planets {
  display: none;
}

.hero.hero-overhaul::before {
  content: none;
}

.hero-bg-layers {
  display: none;
}

/* Moon: simplified solid-disc + ring borders (no filter/box-shadow stack) */
.hero-moon {
  position: absolute;
  top: 8%;
  right: 6%;
  width: clamp(110px, 14vw, 180px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #4f2348;
  border: 2px solid #7d5976;
  z-index: 1;
  pointer-events: none;
}

.hero-moon::before {
  content: "";
  position: absolute;
  inset: -9%;
  border-radius: 50%;
  border: 2px solid #724d6a;
}

.hero-moon::after {
  content: "";
  position: absolute;
  /* Outer ring: gap intentionally smaller than the inner gap (-9%)
     so the perceived spacing between rings 2-3 matches rings 1-2.
     Equal math here looks uneven because the outer arc is longer. */
  inset: -15%;
  border-radius: 50%;
  border: 2px solid #68415f;
}

/* Bottom wave bands built with plain blocks (more stable than SVG fills).
   Fixed cm height keeps band proportions physically consistent across screens. */
.hero-waves {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  /* Desktop: keep waves below arrow with extra clearance. */
  height: 30%;
  display: block;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 0;
  /* Soft pink separators so they blend in light mode but still separate in dark mode */
  border-top: 2px solid rgba(137, 107, 132, 0.34);
}

/* Five-band stack: topmost band removed; remaining bands keep original sizes. */
.hero-wave-2 {
  height: 16.6667%;
  bottom: 66.6667%;
  background: #7d5976;
}

.hero-wave-3 {
  height: 16.6667%;
  bottom: 50%;
  background: #724d6a;
}

.hero-wave-4 {
  height: 16.6667%;
  bottom: 33.3333%;
  background: #68415f;
}

.hero-wave-5 {
  height: 16.6667%;
  bottom: 16.6667%;
  background: #5f3256;
}

.hero-wave-6 {
  height: 16.6667%;
  bottom: 0;
  background: #55274d;
  border-bottom: 2px solid rgba(137, 107, 132, 0.34);
}

.hero-stars {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 66%;
  z-index: 2;
  pointer-events: none;
}

.hero-stars .star {
  position: absolute;
  border-radius: 50%;
  background: rgba(248, 246, 242, 0.9);
  box-shadow: 0 0 6px rgba(248, 246, 242, 0.55);
  opacity: 0.35;
  animation-name: starPulse;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-stars .star:nth-child(3n) {
  width: 1.5px;
  height: 1.5px;
}

.hero-stars .star:nth-child(3n + 1) {
  width: 2.3px;
  height: 2.3px;
}

.hero-stars .star:nth-child(3n + 2) {
  width: 1px;
  height: 1px;
}

.hero-stars .star:nth-child(1)  { left: 4%;  top: 8%;  animation-duration: 4.2s; animation-delay: 0.1s; }
.hero-stars .star:nth-child(2)  { left: 9%;  top: 13%; animation-duration: 2.7s; animation-delay: 1.4s; }
.hero-stars .star:nth-child(3)  { left: 2%;  top: 18%; animation-duration: 3.8s; animation-delay: 2.9s; }
.hero-stars .star:nth-child(4)  { left: 11%; top: 11%; animation-duration: 3.1s; animation-delay: 0.8s; }
.hero-stars .star:nth-child(5)  { left: 7%;  top: 23%; animation-duration: 4.6s; animation-delay: 2.2s; }
.hero-stars .star:nth-child(6)  { left: 24%; top: 6%;  animation-duration: 3.4s; animation-delay: 1.1s; }
.hero-stars .star:nth-child(7)  { left: 34%; top: 13%; animation-duration: 4.1s; animation-delay: 0.3s; }
.hero-stars .star:nth-child(8)  { left: 39%; top: 9%;  animation-duration: 2.8s; animation-delay: 2.6s; }
.hero-stars .star:nth-child(9)  { left: 30%; top: 19%; animation-duration: 3.6s; animation-delay: 1.9s; }
.hero-stars .star:nth-child(10) { left: 55%; top: 16%; animation-duration: 4.3s; animation-delay: 0.6s; }
.hero-stars .star:nth-child(11) { left: 68%; top: 5%;  animation-duration: 3.2s; animation-delay: 2.4s; }
.hero-stars .star:nth-child(12) { left: 3%;  top: 31%; animation-duration: 2.9s; animation-delay: 1.7s; }
.hero-stars .star:nth-child(13) { left: 8%;  top: 35%; animation-duration: 4.4s; animation-delay: 0.4s; }
.hero-stars .star:nth-child(14) { left: 13%; top: 32%; animation-duration: 3.5s; animation-delay: 2.8s; }
.hero-stars .star:nth-child(15) { left: 5%;  top: 41%; animation-duration: 3s;   animation-delay: 1.3s; }
.hero-stars .star:nth-child(16) { left: 20%; top: 43%; animation-duration: 4.5s; animation-delay: 0.9s; }
.hero-stars .star:nth-child(17) { left: 27%; top: 36%; animation-duration: 3.3s; animation-delay: 2.1s; }
.hero-stars .star:nth-child(18) { left: 47%; top: 31%; animation-duration: 2.6s; animation-delay: 0.5s; }
.hero-stars .star:nth-child(19) { left: 58%; top: 34%; animation-duration: 4s;   animation-delay: 1.6s; }
.hero-stars .star:nth-child(20) { left: 48%; top: 46%; animation-duration: 3.7s; animation-delay: 2.5s; }
.hero-stars .star:nth-child(21) { left: 6%;  top: 56%; animation-duration: 3.9s; animation-delay: 0.2s; }
.hero-stars .star:nth-child(22) { left: 11%; top: 60%; animation-duration: 2.9s; animation-delay: 1.8s; }
.hero-stars .star:nth-child(23) { left: 15%; top: 54%; animation-duration: 4.6s; animation-delay: 2.7s; }
.hero-stars .star:nth-child(24) { left: 25%; top: 58%; animation-duration: 3.1s; animation-delay: 1s; }
.hero-stars .star:nth-child(25) { left: 34%; top: 50%; animation-duration: 4.2s; animation-delay: 0.7s; }
.hero-stars .star:nth-child(26) { left: 41%; top: 59%; animation-duration: 2.8s; animation-delay: 2.3s; }
.hero-stars .star:nth-child(27) { left: 52%; top: 54%; animation-duration: 3.6s; animation-delay: 1.2s; }
.hero-stars .star:nth-child(28) { left: 63%; top: 50%; animation-duration: 4.4s; animation-delay: 0.4s; }
.hero-stars .star:nth-child(29) { left: 71%; top: 44%; animation-duration: 3.4s; animation-delay: 2.9s; }
.hero-stars .star:nth-child(30) { left: 75%; top: 49%; animation-duration: 2.7s; animation-delay: 1.5s; }
.hero-stars .star:nth-child(31) { left: 80%; top: 42%; animation-duration: 4.1s; animation-delay: 0.8s; }
.hero-stars .star:nth-child(32) { left: 84%; top: 51%; animation-duration: 3.8s; animation-delay: 2.4s; }
.hero-stars .star:nth-child(33) { left: 69%; top: 56%; animation-duration: 3.2s; animation-delay: 1.9s; }
.hero-stars .star:nth-child(34) { left: 88%; top: 58%; animation-duration: 4.5s; animation-delay: 0.1s; }
.hero-stars .star:nth-child(35) { left: 95%; top: 52%; animation-duration: 2.9s; animation-delay: 2.2s; }
.hero-stars .star:nth-child(36) { left: 8%;  top: 73%; animation-duration: 3.7s; animation-delay: 0.6s; }
.hero-stars .star:nth-child(37) { left: 13%; top: 78%; animation-duration: 4.3s; animation-delay: 1.7s; }
.hero-stars .star:nth-child(38) { left: 3%;  top: 82%; animation-duration: 2.8s; animation-delay: 2.6s; }
.hero-stars .star:nth-child(39) { left: 10%; top: 86%; animation-duration: 3.9s; animation-delay: 1.1s; }
.hero-stars .star:nth-child(40) { left: 22%; top: 70%; animation-duration: 3.3s; animation-delay: 0.3s; }
.hero-stars .star:nth-child(41) { left: 28%; top: 83%; animation-duration: 4.6s; animation-delay: 2s; }
.hero-stars .star:nth-child(42) { left: 35%; top: 76%; animation-duration: 2.6s; animation-delay: 1.4s; }
.hero-stars .star:nth-child(43) { left: 40%; top: 87%; animation-duration: 4s;   animation-delay: 0.9s; }
.hero-stars .star:nth-child(44) { left: 46%; top: 73%; animation-duration: 3.1s; animation-delay: 2.8s; }
.hero-stars .star:nth-child(45) { left: 52%; top: 82%; animation-duration: 4.4s; animation-delay: 1.6s; }
.hero-stars .star:nth-child(46) { left: 44%; top: 91%; animation-duration: 3.5s; animation-delay: 0.5s; }
.hero-stars .star:nth-child(47) { left: 57%; top: 77%; animation-duration: 2.7s; animation-delay: 2.3s; }
.hero-stars .star:nth-child(48) { left: 61%; top: 81%; animation-duration: 4.2s; animation-delay: 1.3s; }
.hero-stars .star:nth-child(49) { left: 59%; top: 89%; animation-duration: 3.6s; animation-delay: 0.7s; }
.hero-stars .star:nth-child(50) { left: 66%; top: 71%; animation-duration: 3.4s; animation-delay: 2.5s; }
.hero-stars .star:nth-child(51) { left: 72%; top: 79%; animation-duration: 4.1s; animation-delay: 1.8s; }
.hero-stars .star:nth-child(52) { left: 68%; top: 87%; animation-duration: 2.9s; animation-delay: 0.4s; }
.hero-stars .star:nth-child(53) { left: 78%; top: 73%; animation-duration: 3.8s; animation-delay: 2.7s; }
.hero-stars .star:nth-child(54) { left: 82%; top: 79%; animation-duration: 4.5s; animation-delay: 1.1s; }
.hero-stars .star:nth-child(55) { left: 87%; top: 83%; animation-duration: 3.2s; animation-delay: 0.2s; }
.hero-stars .star:nth-child(56) { left: 91%; top: 75%; animation-duration: 2.8s; animation-delay: 2.1s; }
.hero-stars .star:nth-child(57) { left: 96%; top: 89%; animation-duration: 4.3s; animation-delay: 1.5s; }
.hero-stars .star:nth-child(58) { left: 18%; top: 93%; animation-duration: 3s;   animation-delay: 0.8s; }
.hero-stars .star:nth-child(59) { left: 31%; top: 92%; animation-duration: 4.6s; animation-delay: 2.9s; }
.hero-stars .star:nth-child(60) { left: 77%; top: 93%; animation-duration: 3.7s; animation-delay: 1.9s; }

.hero-stars .star:nth-child(6),
.hero-stars .star:nth-child(11),
.hero-stars .star:nth-child(18),
.hero-stars .star:nth-child(25),
.hero-stars .star:nth-child(29),
.hero-stars .star:nth-child(35),
.hero-stars .star:nth-child(46),
.hero-stars .star:nth-child(55) {
  width: 2.8px;
  height: 2.8px;
  background: rgba(248, 246, 242, 1);
  box-shadow: 0 0 10px rgba(248, 246, 242, 0.85), 0 0 3px rgba(248, 246, 242, 1);
}

.hero-stars .star:nth-child(3),
.hero-stars .star:nth-child(14),
.hero-stars .star:nth-child(22),
.hero-stars .star:nth-child(38),
.hero-stars .star:nth-child(42),
.hero-stars .star:nth-child(49),
.hero-stars .star:nth-child(56) {
  width: 0.7px;
  height: 0.7px;
  opacity: 0.3;
  box-shadow: 0 0 3px rgba(248, 246, 242, 0.4);
}

@keyframes starPulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.hero.hero-overhaul .hero-content {
  z-index: 3;
  height: auto;
  min-height: 0;
  justify-content: center;
  top: calc(clamp(80px, 10vh, 120px) + var(--hero-block-shift) + var(--hero-extra-shift));
  bottom: calc(36% + 4px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-top: 0 !important;
  padding: 0 clamp(16px, 4vw, 48px);
  box-sizing: border-box;
  gap: 0;
  transform: none;
}

.hero.hero-overhaul .hero-content h1 {
  max-width: min(900px, 90vw);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.65rem, 2.4vw + 1.15rem, 3.85rem);
  line-height: 1.15;
  white-space: normal;
  text-wrap: balance;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero.hero-overhaul .hero-content h1 .hero-line {
  display: inline-block;
  width: auto;
  text-align: center;
  /* Must beat any parent white-space resets (narrow breakpoints) */
  white-space: nowrap !important;
}

.hero.hero-overhaul .hero-content h1 .hero-nowrap-line {
  display: inline-block;
  width: auto;
  white-space: nowrap !important;
}

/* Keep both headline rows and the accent word at the same computed size (italic alone can read smaller) */
.hero.hero-overhaul .hero-content h1 .hero-line,
.hero.hero-overhaul .hero-content h1 .hero-nowrap-line {
  font-size: inherit;
}

/* Italic focal word — light gold mixed with cream so it stays warm but below CTA intensity */
.hero.hero-overhaul .hero-content h1 .hero-accent {
  font-style: italic;
  font-weight: inherit;
  font-size: 1em;
  color: var(--tertiary-light);
  color: color-mix(in srgb, var(--tertiary-light) 68%, var(--cream-white) 32%);
  letter-spacing: -0.01em;
}

.hero.hero-overhaul .hero-content .hero-subhead {
  max-width: min(900px, 90vw);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: calc(var(--text-h4) * var(--hero-subhead-scale));
  line-height: 1.35;
  white-space: normal;
  text-wrap: balance;
  margin: 0;
  margin-top: clamp(10px, 1.6vw, 22px);
}

.hero.hero-overhaul .hero-content p.hero-support .hero-support-line1 {
  display: inline;
}

/* Use p.hero-support so we beat legacy `.hero-content p { font-size: 28px }` */
.hero.hero-overhaul .hero-content p.hero-support {
  max-width: min(720px, 88vw);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.6vw + 0.75rem, 1.35rem);
  line-height: 1.65;
  opacity: 0.9;
  white-space: normal;
  text-wrap: initial;
  text-align: center;
  margin: 0;
  margin-top: clamp(14px, 2vw, 26px);
}

.hero.hero-overhaul .hero-cta {
  position: static;
  transform: none;
  top: auto;
  bottom: auto;
  left: auto;
  z-index: 4;
  margin: 0;
  margin-top: clamp(30px, 4.8vw, 66px);
  align-self: center;
  font-size: clamp(16px, 1.8vw, 25.5px);
  padding: clamp(14px, 1.7vw, 23px) clamp(28px, 3.5vw, 54px);
}

.hero.hero-overhaul .hero-scroll-indicator {
  display: block;
  position: static;
  align-self: center;
  width: 18px;
  height: 18px;
  margin-top: clamp(20px, 3.5vw, 40px);
  border-right: 1.5px solid rgba(248, 246, 242, 0.75);
  border-bottom: 1.5px solid rgba(248, 246, 242, 0.75);
  transform: translateY(0) rotate(45deg);
  animation: heroArrowFloat 2.2s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
  flex-shrink: 0;
}

@keyframes heroArrowFloat {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(7px) rotate(45deg);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero.hero-overhaul {
    height: 95vh;
    height: 95dvh;
    min-height: 95vh;
    min-height: 95dvh;
    box-sizing: border-box;
    padding-top: 12px;
  }

  .hero-stars {
    width: 82%;
    height: 56%;
  }

  .hero-moon {
    top: 8%;
    right: 6%;
    width: clamp(100px, 14vw, 160px);
  }

  .hero-waves {
    /* Tablet: arrow ≈ 36% from bottom, leave ~4% gap. */
    height: 32%;
  }

  .hero.hero-overhaul .hero-content {
    top: calc(clamp(72px, 10vh, 120px) + var(--hero-block-shift) + var(--hero-extra-shift));
    bottom: calc(36% + 4px);
    justify-content: center;
  }
}

/* Tablet: scale down from desktop, but clearly above section h2 (34px) and body (16px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero.hero-overhaul .hero-content h1 {
    font-size: clamp(2.5rem, 2.5vw + 1.15rem, 3.25rem);
    max-width: min(900px, calc(92vw - clamp(48px, 10vw, 120px)));
    line-height: 1.18;
  }

  .hero.hero-overhaul .hero-content p.hero-support {
    font-size: clamp(1.125rem, 0.6vw + 0.7rem, 1.25rem);
    max-width: min(640px, 92vw);
  }
}

@media (max-width: 768px) {
  .hero.hero-overhaul {
    height: 95vh;
    height: 95dvh;
    min-height: 95vh;
    min-height: 95dvh;
    padding-top: 14px;
  }

  .hero.hero-overhaul .hero-content {
    top: calc(clamp(118px, 16vh, 160px) + var(--hero-block-shift) + var(--hero-extra-shift));
    bottom: calc(29% + 10px);
    justify-content: center;
    padding: 0 clamp(12px, 4vw, 22px);
    margin-top: 0 !important;
    transform: none !important;
  }

  .hero-stars {
    width: 94%;
    height: 72%;
  }

  .hero-moon {
    top: 8%;
    right: 4%;
    width: clamp(84px, 16vw, 120px);
  }

  .hero-waves {
    /* Mobile: arrow ≈ 29% from bottom, leave ~4% gap. */
    height: 25%;
  }

  .hero.hero-overhaul .hero-content h1 {
    font-size: clamp(2.15rem, 6vw, 2.75rem);
    white-space: normal;
    line-height: 1.22;
    max-width: min(100%, 94vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero.hero-overhaul .hero-content h1 .hero-line,
  .hero.hero-overhaul .hero-content h1 .hero-nowrap-line {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: inherit;
    white-space: normal !important;
    overflow-wrap: normal;
  }

  .hero.hero-overhaul .hero-content .hero-subhead {
    font-size: clamp(14px, 3.8vw, 16px);
    white-space: normal;
    line-height: 1.6;
    max-width: min(100%, 34ch);
    width: 100%;
    margin-top: clamp(14px, 2.8vw, 22px);
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .hero.hero-overhaul .hero-content p.hero-support {
    font-size: clamp(17px, 3vw, 19px);
    margin-top: clamp(14px, 2.8vw, 22px);
    white-space: normal;
    text-wrap: initial;
    line-height: 1.6;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .hero.hero-overhaul .hero-content p.hero-support .hero-support-line1 {
    white-space: nowrap;
  }

  .hero.hero-overhaul .hero-cta {
    position: static;
    transform: none;
    bottom: auto;
    left: auto;
    top: auto;
    margin: clamp(30px, 6vw, 48px) 0 0 0;
    align-self: center;
    font-size: 19px !important;
    padding: 16px 40px !important;
    border-width: 1.5px;
  }

  .hero.hero-overhaul .hero-scroll-indicator {
    width: 16px;
    height: 16px;
    margin-top: clamp(18px, 3vw, 28px);
  }
}

@media (max-width: 480px) {
  .hero-stars {
    width: 95%;
    height: 74%;
  }

  .hero.hero-overhaul {
    height: 95vh;
    height: 95dvh;
    min-height: 95vh;
    min-height: 95dvh;
    padding-top: 16px;
  }

  .hero.hero-overhaul .hero-content {
    top: calc(clamp(122px, 17vh, 168px) + var(--hero-block-shift) + var(--hero-extra-shift));
    bottom: calc(28% + 8px);
    justify-content: center;
    padding: 0 clamp(16px, 4vw, 28px);
    margin-top: 0 !important;
    transform: none !important;
  }

  .hero-moon {
    top: 10%;
    right: 5%;
    width: clamp(62px, 16vw, 92px);
  }

  .hero-waves {
    /* Small mobile: arrow ≈ 28% from bottom, leave ~4% gap. */
    height: 24%;
  }

  .hero.hero-overhaul .hero-content h1 {
    font-size: clamp(2rem, 6.5vw, 2.25rem);
    line-height: 1.24;
    max-width: min(100%, 96vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero.hero-overhaul .hero-content .hero-subhead {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.58;
    max-width: min(100%, 30ch);
    width: 100%;
    margin-top: clamp(12px, 2.8vw, 18px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero.hero-overhaul .hero-content p.hero-support {
    font-size: clamp(16px, 4vw, 17px);
    margin-top: clamp(12px, 2.8vw, 18px);
    line-height: 1.6;
    text-wrap: initial;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero.hero-overhaul .hero-cta {
    position: static;
    transform: none;
    bottom: auto;
    left: auto;
    top: auto;
    margin: clamp(24px, 6vw, 36px) 0 0 0;
    align-self: center;
    font-size: 18px !important;
    padding: 16px 34px !important;
    border-width: 1.6px;
  }

  .hero.hero-overhaul .hero-scroll-indicator {
    width: 14px;
    height: 14px;
    margin-top: clamp(14px, 3.5vw, 22px);
  }
}

@media (max-width: 360px) {
  .hero.hero-overhaul .hero-content {
    top: calc(clamp(92px, 13vh, 124px) + var(--hero-block-shift) + var(--hero-extra-shift));
    bottom: calc(36% + 8px);
    justify-content: center;
    padding: 0 8px;
  }

  .hero.hero-overhaul .hero-content h1 {
    font-size: clamp(1.85rem, 7vw, 2.05rem);
    line-height: 1.26;
    max-width: min(100%, 96vw);
    width: 100%;
    color: var(--cream-white);
    opacity: 1;
    position: relative;
    top: 0;
    margin-top: 0 !important;
  }

  .hero.hero-overhaul .hero-content .hero-subhead {
    font-size: clamp(13px, 3.7vw, 14px);
    line-height: 1.58;
  }

  .hero.hero-overhaul .hero-content p.hero-support {
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.6;
    text-wrap: initial;
  }

  .hero.hero-overhaul .hero-content p.hero-support .hero-support-line1 {
    white-space: normal;
  }
}

/* Show first benefit section with hero on desktop */
.hero.hero-overhaul + .core-benefits {
  padding-top: 40px;
}

/* Core benefits layout lock: keep 3 blobs in one row */
.core-benefits {
  height: auto;
  min-height: 0;
  padding: 40px 24px 40px;
}

.core-benefits-container {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  column-gap: 56px;
  row-gap: 10px;
}

.core-benefit-block {
  min-height: 260px;
  padding: 28px 14px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .core-benefits {
    padding: 40px 24px 40px !important;
  }

  .core-benefits-container {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 32px !important;
    row-gap: 16px !important;
    padding: 0 16px !important;
  }

  .core-benefit-block {
    min-height: 240px !important;
    padding: 24px 12px !important;
  }

  .core-benefit-block::before {
    width: 150px !important;
    height: 150px !important;
  }

  .core-benefit-title {
    font-size: var(--text-h3) !important;
    white-space: nowrap !important;
  }

  .core-benefit-description {
    font-size: var(--text-small) !important;
    top: calc(50% + 84px) !important;
    white-space: nowrap !important;
    width: max-content !important;
    max-width: 100% !important;
    line-height: 1.4 !important;
  }
}

/* Section 2: three blobs in one row down to ~481px; typography = larger orb title, smaller caption */
@media (max-width: 768px) and (min-width: 481px) {
  .core-benefits {
    padding: 28px 10px 28px !important;
  }

  .core-benefits-container {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 8px !important;
    row-gap: 8px !important;
    padding: 0 6px !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  .core-benefit-block {
    min-height: 168px !important;
    padding: 12px 4px !important;
  }

  .core-benefit-block::before {
    width: 92px !important;
    height: 92px !important;
  }

  .core-benefit-title {
    font-size: clamp(17px, 4.2vw, 22px) !important;
    white-space: nowrap !important;
  }

  .core-benefit-description {
    font-size: clamp(11px, 2.6vw, 13px) !important;
    top: calc(50% + 52px) !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    width: max-content !important;
    max-width: 100% !important;
    padding: 0 2px !important;
    letter-spacing: -0.02em !important;
  }
}

@media (max-width: 480px) {
  .core-benefits {
    padding: 24px 16px 24px !important;
  }

  .core-benefits-container {
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    column-gap: 0 !important;
    padding: 0 !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .core-benefit-block {
    min-height: 170px !important;
    padding: 14px 8px !important;
  }

  .core-benefit-block::before {
    width: 130px !important;
    height: 130px !important;
  }

  .core-benefit-title {
    font-size: var(--text-h3) !important;
    white-space: nowrap !important;
  }

  .core-benefit-description {
    font-size: var(--text-small) !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    width: max-content !important;
    top: calc(50% + 64px) !important;
    padding: 0 !important;
  }
}

/* Homepage section rhythm lock: keep vertical spacing visually consistent */
body.home > section:not(.hero) {
  border-bottom: 3px solid rgba(185, 151, 80, 0.45);
}

/* Hero-to-next-section separator: thin like wave separator lines */
body.home > .hero.hero-overhaul {
  border-bottom: 0.5px solid rgba(185, 151, 80, 0.34);
}

body.home .about-saumya,
body.home .brand-highlights,
body.home .reach-out,
body.home .areas,
body.home .pricing,
body.home .safe-space,
body.home .testimonial,
body.home .packages,
body.home .process,
body.home .founder-note {
  padding-top: 72px;
  padding-bottom: 72px;
}

body.home .founder-note {
  display: none;
}

/* Keep hamburger white across all pages/modes */
.hamburger span {
  background-color: var(--cream-white) !important;
}

body.home .about-saumya h2,
body.home .brand-highlights h2,
body.home .reach-out h2,
body.home .areas h2,
body.home .pricing h2,
body.home .safe-space h2,
body.home .testimonial h2,
body.home .packages h2,
body.home .process h2,
body.home .founder-heading {
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  body.home .about-saumya,
  body.home .brand-highlights,
  body.home .reach-out,
  body.home .areas,
  body.home .pricing,
  body.home .safe-space,
  body.home .testimonial,
  body.home .packages,
  body.home .process,
  body.home .founder-note {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  body.home .about-saumya h2,
  body.home .brand-highlights h2,
  body.home .reach-out h2,
  body.home .areas h2,
  body.home .pricing h2,
  body.home .safe-space h2,
  body.home .testimonial h2,
  body.home .packages h2,
  body.home .process h2,
  body.home .founder-heading {
    margin-bottom: 28px;
  }
}
