/* ============================================================
   GenCounselling — Main Stylesheet
   Mobile-first, no JS dependencies
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #faf8f5;
  --bg-alt:      #f0ebe3;
  --bg-dark:     #4a3b30;
  --text:        #2d2019;
  --text-mid:    #5c4c43;
  --text-light:  #8a7a72;
  --brand:       #4a3b30;
  --accent:      #c8937a;
  --accent-soft: #e8cfc4;
  --sage:        #8aab97;
  --sage-soft:   #d4e6dc;
  --white:       #ffffff;
  --border:      #ddd5cc;
  --shadow:      0 2px 16px rgba(74,59,48,0.10);
  --radius:      12px;
  --radius-sm:   6px;
  --max-w:       1100px;
  --font-body:   'Lato', sans-serif;
  --font-head:   'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--brand);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.4em; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.88); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section-dark .section-label { color: var(--accent-soft); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-mid);
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(74,59,48,0.18); text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: #b8806a; }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: #759d85; }

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(74,59,48,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--brand);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 0.3rem 0;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* Hamburger toggle — CSS only */
#nav-toggle { display: none; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

#nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu open */
#nav-toggle:checked ~ .nav-links {
  display: flex;
}

/* Desktop nav */
@media (min-width: 860px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Mobile menu dropdown */
@media (max-width: 859px) {
  .nav-inner { position: relative; flex-wrap: wrap; height: auto; padding: 0.75rem 1.25rem; }
  .nav-logo { padding: 0.3rem 0; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1rem;
    gap: 0.1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .nav-links a { padding: 0.55rem 0; font-size: 0.95rem; display: block; }
  .container.nav-inner { padding: 0 1.25rem; }
}

/* --- Hero Sections --- */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.8rem; }

.hero-home {
  background: linear-gradient(135deg, #4a3b30 0%, #6b4f40 60%, #8a6755 100%);
  padding: 6rem 0 5rem;
}
.hero-home h1 { margin-bottom: 1.2rem; }
.hero-home .hero-sub { font-size: 1.2rem; }

.hero-page {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, #4a3b30 0%, #7a5c4c 100%);
}
.hero-page h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 580px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card-accent { border-top: 4px solid var(--accent); }
.card-sage   { border-top: 4px solid var(--sage); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card-sage .card-icon { background: var(--sage-soft); }

/* --- Framework Pillars --- */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: pillar;
}

@media (min-width: 640px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 2rem 5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  counter-increment: pillar;
}
.pillar::before {
  content: counter(pillar);
  position: absolute;
  top: 1.8rem;
  left: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar:nth-child(odd)::before { background: var(--accent); }

/* --- Two-column content --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 720px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col-reverse > *:first-child { order: 2; }
  .two-col-reverse > *:last-child  { order: 1; }
}

/* --- Highlight Box --- */
.highlight-box {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.highlight-box-sage {
  background: var(--sage-soft);
  border-left-color: var(--sage);
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.55rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* --- Quote / Testimonial --- */
.quote-block {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.quote-block p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brand);
  margin-bottom: 0.8rem;
}
.quote-block cite {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: normal;
}

/* --- Credentials Bar --- */
.creds-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  text-align: center;
}
.creds-bar .creds-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.creds-bar .cred-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.creds-bar .cred-item span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
}

/* --- Pricing Card --- */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}
.price-card .price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--brand);
  line-height: 1;
  margin: 0.8rem 0 0.3rem;
}
.price-card .price-label { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.2rem; }

/* --- Timeline / Steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 27px;
  bottom: 28px;
  width: 2px;
  background: var(--border);
}
.step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 0 0 2rem 0;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step:nth-child(even) .step-num { background: var(--accent); }
.step-body { padding-top: 0.8rem; }

/* --- Banner / CTA Section --- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #b8806a 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2, .cta-banner h3 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 580px; margin: 0 auto 1.6rem; }

/* --- Blog / Article Cards --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(74,59,48,0.14); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.92rem; color: var(--text-mid); }
.blog-card a.read-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}

/* --- Article / Blog Post --- */
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 { margin-top: 2rem; }
.article-content h3 { margin-top: 1.5rem; }
.article-content p, .article-content li { color: var(--text-mid); }

/* --- Disclaimer Banner --- */
.disclaimer {
  background: #f7f3ef;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 2rem 0;
  line-height: 1.5;
}
.disclaimer strong { color: var(--text-mid); }

/* --- Footer --- */
.site-footer {
  background: var(--brand);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.7rem;
  display: block;
}
.footer-logo span { color: var(--accent-soft); }
.footer-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-emergency {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-emergency strong { color: var(--white); }

/* --- Tag Chips --- */
.chip {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--accent-soft);
  color: var(--brand);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0.2rem;
}
.chip-sage { background: var(--sage-soft); }

/* ============================================================
   WIX MIGRATION — Home page design system
   Matches help3203.wixsite.com/gencounselling
   ============================================================ */

/* --- Wix colour tokens --- */
:root {
  --wix-taupe:       #c4bab2;
  --wix-taupe-dark:  #a89890;
  --wix-card-bg:     #c2b2a9;
  --wix-cream:       #f5f0ea;
  --wix-sage-bg:     #c8d5cd;
  --wix-teal:        #3d6659;
  --wix-teal-dark:   #2d4e43;
  --wix-heading:     #3a5647;
  --wix-text:        #2c2c2c;
  --wix-text-mid:    #555555;
  --wix-marquee-bg:  #8aab97;
  --wix-font-head:   'Fraunces', Georgia, serif;
  --wix-font-body:   'DM Sans', 'Lato', sans-serif;
}

/* --- Wix shared layout --- */
.wix-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   WIX HEADER / NAV
   ============================================================ */
.wix-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.wix-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.wix-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wix-teal);
  font-family: var(--wix-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.wix-logo:hover { text-decoration: none; color: var(--wix-teal-dark); }
.wix-logo svg { flex-shrink: 0; }

/* hamburger — CSS only */
#wix-nav-toggle { display: none; }

.wix-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.wix-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wix-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
#wix-nav-toggle:checked ~ nav .wix-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#wix-nav-toggle:checked ~ nav .wix-hamburger span:nth-child(2) { opacity: 0; }
#wix-nav-toggle:checked ~ nav .wix-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.wix-nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.8rem;
  align-items: center;
}

.wix-nav-links a {
  font-family: var(--wix-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--wix-text);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.wix-nav-links a:hover { color: var(--wix-teal); }
.wix-nav-links a.active { text-decoration: underline; text-underline-offset: 4px; }

.wix-nav-cta {
  background: var(--wix-teal) !important;
  color: #fff !important;
  border-radius: 99px;
  padding: 0.55rem 1.3rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.wix-nav-cta:hover { background: var(--wix-teal-dark) !important; }

/* desktop nav */
@media (min-width: 900px) {
  .wix-hamburger { display: none; }
  .wix-nav-links { display: flex !important; }
  .wix-nav-cta-item { margin-left: 0.5rem; }
}

/* mobile nav */
@media (max-width: 899px) {
  .wix-nav-inner { flex-wrap: wrap; height: auto; padding: 0.75rem 1.5rem; }
  #wix-nav-toggle:checked ~ nav .wix-nav-links {
    display: flex !important;
  }
  .wix-nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    gap: 0;
  }
  .wix-nav-links li { width: 100%; }
  .wix-nav-links a { display: block; padding: 0.6rem 0; font-size: 1rem; }
  .wix-nav-cta { border-radius: 99px !important; margin-top: 0.5rem; display: inline-block; }
}

/* ============================================================
   WIX HERO
   ============================================================ */
.wix-hero {
  background: var(--wix-taupe);
  padding: 4rem 0 4.5rem;
  text-align: center;
}

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

.wix-hero h1 {
  font-family: var(--wix-font-head);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--wix-text);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.wix-hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.wix-hero-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--wix-taupe-dark);
}
.wix-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wix-hero-body {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.wix-btn-pill-outline {
  display: inline-block;
  border: 1.5px solid var(--wix-text);
  border-radius: 99px;
  padding: 0.7rem 2rem;
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: var(--wix-text);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.wix-btn-pill-outline:hover {
  background: var(--wix-text);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .wix-hero-images { grid-template-columns: 1fr; max-width: 320px; }
  .wix-hero-img { aspect-ratio: 4/3; }
}

/* ============================================================
   WIX FAMILIAR SECTION
   ============================================================ */
.wix-familiar {
  background: var(--wix-cream);
  padding: 5rem 0 3rem;
  text-align: center;
}

.wix-familiar-inner { display: flex; flex-direction: column; align-items: center; }

.wix-familiar h2 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--wix-heading);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.wix-familiar-list {
  margin-bottom: 1.5rem;
}
.wix-familiar-list p {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  line-height: 1.8;
  margin-bottom: 0.2rem;
}
.wix-familiar-close {
  margin-top: 0.8rem !important;
  font-style: italic;
}

.wix-support-title {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--wix-heading);
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* ============================================================
   WIX SERVICE CARDS
   ============================================================ */
.wix-support {
  background: var(--wix-cream);
  padding: 2.5rem 0 5rem;
}

.wix-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (max-width: 640px) {
  .wix-card-grid { grid-template-columns: 1fr; }
}

.wix-service-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.wix-service-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--wix-taupe-dark);
  overflow: hidden;
  flex-shrink: 0;
}
.wix-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wix-service-body {
  background: var(--wix-card-bg);
  padding: 1.4rem 1.6rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wix-service-body h3 {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wix-text);
  margin-bottom: 0.6rem;
}

.wix-service-body p {
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  color: var(--wix-text);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}

.wix-card-btn {
  display: inline-block;
  border: 1.5px solid var(--wix-teal);
  border-radius: 99px;
  padding: 0.45rem 1.2rem;
  font-family: var(--wix-font-body);
  font-size: 0.82rem;
  color: var(--wix-teal);
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.wix-card-btn:hover {
  background: var(--wix-teal);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   WIX ABOUT SECTION
   ============================================================ */
.wix-about {
  background: var(--wix-sage-bg);
  padding: 5rem 0;
}

.wix-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 720px) {
  .wix-about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.wix-about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--wix-taupe);
  aspect-ratio: 3/4;
}
.wix-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wix-about-text h2 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--wix-text);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.wix-about-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.wix-cred-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.wix-cred-list li {
  margin-bottom: 0.3rem;
}
.wix-cred-list a {
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  color: var(--wix-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wix-cred-list a:hover { color: var(--wix-teal-dark); }

.wix-pt-badge img {
  height: 56px;
  width: auto;
  display: block;
  margin-top: 0.5rem;
}

/* ============================================================
   WIX CTA SECTION
   ============================================================ */
.wix-cta-section {
  background: var(--wix-taupe);
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wix-cta-card {
  background: var(--wix-taupe-dark);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.wix-cta-card h2 {
  font-family: var(--wix-font-head);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.wix-cta-card p {
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.8rem;
}

.wix-btn-pill-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.75);
  border-radius: 99px;
  padding: 0.7rem 2.2rem;
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.wix-btn-pill-light:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}

@media (max-width: 600px) {
  .wix-cta-card { padding: 2.5rem 1.5rem; }
}

/* ============================================================
   WIX MARQUEE
   ============================================================ */
.wix-marquee {
  background: var(--wix-marquee-bg);
  overflow: hidden;
  padding: 1.1rem 0;
}

.wix-marquee-track {
  display: flex;
  width: max-content;
  animation: wix-marquee-scroll 28s linear infinite;
}

.wix-marquee-track span {
  white-space: nowrap;
  font-family: var(--wix-font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
}

@keyframes wix-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WIX FOOTER
   ============================================================ */
.wix-footer {
  background: var(--wix-taupe);
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.wix-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 640px) {
  .wix-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.wix-footer-left p {
  font-family: var(--wix-font-body);
  font-size: 0.85rem;
  color: var(--wix-text);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.wix-footer-location {
  font-size: 0.85rem;
  color: var(--wix-text) !important;
}

.wix-privacy-btn {
  display: inline-block;
  border: 1.5px solid var(--wix-text);
  border-radius: 99px;
  padding: 0.5rem 1.4rem;
  font-family: var(--wix-font-body);
  font-size: 0.85rem;
  color: var(--wix-text);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.wix-privacy-btn:hover {
  background: var(--wix-text);
  color: #fff;
  text-decoration: none;
}

.wix-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.wix-footer-email {
  font-family: var(--wix-font-body);
  font-size: 0.9rem;
  color: var(--wix-text);
  text-decoration: none;
}
.wix-footer-email:hover { text-decoration: underline; }

.wix-fht-badge {
  height: 60px;
  width: auto;
}

.wix-footer-copy {
  font-family: var(--wix-font-body);
  font-size: 0.82rem;
  color: var(--wix-text-mid);
  margin: 0;
}

/* ============================================================
   ABOUT ME PAGE
   ============================================================ */

/* ── Block 1: Hero Bio ── */
.about-hero {
  background: var(--wix-taupe);
  padding: 5rem 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 780px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-hero-photo {
  border-radius: 20px;
  overflow: hidden;
  background: var(--wix-taupe-dark);
  aspect-ratio: 3/4;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.about-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.about-hero-text h1 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--wix-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-hello {
  font-family: var(--wix-font-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wix-heading);
  margin-bottom: 1rem;
}

.about-hero-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-accred-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin-top: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.about-accred-label {
  font-family: var(--wix-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wix-text-mid);
  margin-bottom: 0.8rem !important;
}

.about-accred-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
}
.about-accred-card ul li {
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  color: var(--wix-text);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

/* ── Block 2: Philosophy ── */
.about-philosophy {
  background: var(--wix-cream);
  padding: 5rem 0;
}

.about-section-heading {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--wix-heading);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.25;
}

.about-philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 700px) {
  .about-philosophy-content { grid-template-columns: 1fr; gap: 2rem; }
}

.about-subheading {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--wix-heading);
  margin-bottom: 1rem;
}

.about-philosophy-content p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Block 3: Who I Work With ── */
.about-who {
  background: var(--wix-sage-bg);
  padding: 4rem 0 5rem;
}

.about-who-inner {
  max-width: 760px;
}

.about-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin-bottom: 3rem;
}

.about-who-heading {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--accent, #c8937a);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.about-who-inner > p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-who-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}
.about-who-list li {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 0.3rem;
}

/* ── Block 4: More + CTA ── */
.about-more {
  background: var(--wix-cream);
  padding: 5rem 0;
}

.about-more-inner {
  max-width: 760px;
}

.about-more-inner p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-more-inner a {
  color: var(--wix-teal);
  text-decoration: underline;
}

.about-cta-block { text-align: center; }

.about-cta-block p {
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

.wix-btn-teal {
  display: inline-block;
  background: var(--wix-teal);
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.wix-btn-teal:hover { background: var(--wix-teal-dark); text-decoration: none; }

/* ── Block 5: Testimonials ── */
.about-testimonials {
  background: var(--wix-sage-bg);
  padding: 5rem 0 4rem;
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .about-testimonials-grid { grid-template-columns: 1fr; }
}

.about-testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.about-quote-icon {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--wix-sage-bg);
  line-height: 1;
  margin-bottom: 0.8rem;
  background: var(--wix-cream);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-testimonial-card p {
  font-family: var(--wix-font-body);
  font-size: 0.92rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-testimonial-attr {
  font-size: 0.85rem !important;
  color: var(--wix-text-mid) !important;
  margin-bottom: 0 !important;
}

.about-testimonial-disclaimer {
  font-family: var(--wix-font-body);
  font-size: 0.78rem;
  color: var(--wix-text-mid);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.svc-hero {
  background: var(--wix-cream);
  padding: 3rem 0 4rem;
  text-align: center;
}

.svc-hero-img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--wix-taupe-dark);
  aspect-ratio: 16/6;
  margin-bottom: 2.5rem;
}
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.svc-hero h1 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent, #c8937a);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svc-hero-body {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}
@media (max-width: 680px) {
  .svc-overview-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

.svc-overview-item h3 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--wix-heading);
  margin-bottom: 0.4rem;
}
.svc-overview-item p {
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  color: var(--wix-text-mid);
  line-height: 1.6;
}

.svc-pricing-note {
  font-family: var(--wix-font-body);
  font-size: 0.9rem;
  color: var(--wix-text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.svc-discovery-btn {
  display: inline-block;
  border: 1.5px solid var(--wix-marquee-bg);
  border-radius: 99px;
  padding: 0.9rem 2.2rem;
  font-family: var(--wix-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wix-marquee-bg);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.svc-discovery-btn:hover {
  background: var(--wix-marquee-bg);
  color: #fff;
  text-decoration: none;
}

/* ── Service sections ── */
.svc-section {
  background: var(--wix-cream);
  padding: 5rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.svc-section-alt { background: #f0ebe4; }

.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 760px) {
  .svc-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-section-alt .svc-image { order: -1; }
}

.svc-text h2 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--accent, #c8937a);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.svc-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.svc-subheading {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--wix-heading);
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
}

.svc-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.svc-list li {
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: var(--wix-text);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.svc-session-info {
  font-family: var(--wix-font-body);
  font-size: 0.9rem;
  color: var(--wix-text-mid);
  margin-bottom: 1.2rem !important;
}

.svc-btn {
  display: inline-block;
  border: 1.5px solid var(--wix-teal);
  border-radius: 99px;
  padding: 0.65rem 1.6rem;
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  color: var(--wix-teal);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.svc-btn:hover { background: var(--wix-teal); color: #fff; text-decoration: none; }

.svc-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--wix-taupe);
  aspect-ratio: 4/3;
}
.svc-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Not Sure section ── */
.svc-not-sure {
  background: var(--wix-cream);
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.svc-not-sure h2 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--wix-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.svc-not-sure p {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ============================================================
   COMPASSION-FIRST FRAMEWORK PAGE
   ============================================================ */

/* ── Block 1: Hero ── */
.cf-hero {
  background: var(--wix-cream);
  padding: 5rem 0;
}

.cf-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 760px) {
  .cf-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.cf-hero-text h1 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent, #c8937a);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.cf-tagline {
  font-family: var(--wix-font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--wix-heading);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.cf-hero-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.cf-hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--wix-taupe);
  aspect-ratio: 4/3;
}
.cf-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Block 2: Framework ── */
.cf-framework {
  background: var(--wix-taupe);
  padding: 5rem 0;
}

.cf-section-heading {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--wix-heading);
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.cf-section-intro {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.cf-framework-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .cf-framework-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.cf-framework-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--wix-taupe-dark);
  aspect-ratio: 4/3;
}
@media (min-width: 761px) {
  .cf-framework-image {
    aspect-ratio: 3/4;
    position: sticky;
    top: 90px;
  }
}
.cf-framework-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cf-pillars { display: flex; flex-direction: column; gap: 0; }

.cf-pillar {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cf-pillar:first-child { padding-top: 0; }
.cf-pillar:last-child { border-bottom: none; }

.cf-pillar h3 {
  font-family: var(--wix-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wix-teal);
  margin-bottom: 0.9rem;
}

.cf-pillar p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.cf-pillar p:last-child { margin-bottom: 0; }

/* ── Block 3: Why ── */
.cf-why {
  background: var(--wix-cream);
  padding: 5rem 0;
}

.cf-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 760px) {
  .cf-why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.cf-why-text h2 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent, #c8937a);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.cf-why-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cf-why-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--wix-taupe);
  aspect-ratio: 3/4;
}
.cf-why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Block 4: In Practice ── */
.cf-practice {
  background: var(--wix-taupe);
  padding: 5rem 0 4rem;
}

.cf-practice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .cf-practice-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.cf-practice-lead {
  font-family: var(--wix-font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wix-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cf-practice-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
}

.cf-practice-list ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}
.cf-practice-list li {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

/* ============================================================
   GROUNDING PAGE
   ============================================================ */

.gr-hero {
  background: var(--wix-cream);
  padding: 5rem 0;
}

.gr-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .gr-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.gr-hero-text h1 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--accent, #c8937a);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.gr-tagline {
  font-family: var(--wix-font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--wix-heading);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gr-hero-text p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Download form ── */
.gr-form {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  margin-top: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.gr-form-group {
  margin-bottom: 1rem;
}

.gr-form-group label {
  display: block;
  font-family: var(--wix-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wix-text-mid);
  margin-bottom: 0.35rem;
}

.gr-form-group input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: var(--wix-text);
  background: #fff;
  transition: border-color 0.2s;
}
.gr-form-group input:focus {
  outline: none;
  border-color: var(--wix-teal);
}

.gr-submit {
  width: 100%;
  padding: 0.8rem;
  background: var(--wix-marquee-bg);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.gr-submit:hover { background: #6d9882; }

.gr-form-note {
  font-family: var(--wix-font-body);
  font-size: 0.75rem;
  color: var(--wix-text-mid);
  line-height: 1.5;
  margin-top: 0.8rem;
  margin-bottom: 0 !important;
}

.gr-checkbox-group {
  margin-top: 0.25rem;
}
.gr-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  color: var(--wix-text-mid);
  line-height: 1.5;
  cursor: pointer;
}
.gr-checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--wix-teal);
  width: 16px;
  height: 16px;
}

.gr-form-success {
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wix-teal);
  margin-top: 0.75rem;
}

.gr-hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: #f0c8c8;
  aspect-ratio: 3/4;
}
.gr-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Block 2: Contents ── */
.gr-contents {
  background: var(--wix-taupe);
  padding: 5rem 0;
}

.gr-section-heading {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--wix-heading);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.gr-section-intro {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.gr-contents-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 700px) {
  .gr-contents-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.gr-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}
.gr-list li {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.gr-preview-image {
  border-radius: 20px;
  overflow: hidden;
  background: #f0c8c8;
  aspect-ratio: 3/4;
}
.gr-preview-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Block 3: CTA ── */
.gr-cta {
  background: var(--wix-cream);
  padding: 6rem 0;
  text-align: center;
}

.gr-cta h2 {
  font-family: var(--wix-font-head);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--wix-heading);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.gr-cta p {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.gr-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Wix Blog Grid ── */
.wix-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .wix-blog-grid { grid-template-columns: 1fr; }
}

.wix-blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wix-blog-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.wix-blog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.wix-blog-thumb-placeholder {
  width: 100%;
  height: 220px;
  background: var(--wix-taupe);
  display: block;
}

.wix-blog-body {
  padding: 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wix-blog-tag {
  font-family: var(--wix-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wix-teal);
  margin-bottom: 0.6rem;
}

.wix-blog-title {
  font-family: var(--wix-font-head);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--wix-text);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.wix-blog-excerpt {
  font-family: var(--wix-font-head);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--wix-text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wix-blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wix-blog-date {
  font-size: 0.8rem;
  color: #999;
}

.wix-blog-read {
  font-family: var(--wix-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wix-teal);
  text-decoration: none;
}
.wix-blog-read::after {
  content: '';
  position: absolute;
  inset: 0;
}
.wix-blog-card:hover .wix-blog-read { text-decoration: underline; }

/* --- Blog post body (server-rendered content from Quill) --- */
.blog-post-body {
  font-family: var(--wix-font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.blog-post-body p  { margin-bottom: 1.2em; }
.blog-post-body h2 { font-family: var(--wix-font-head); font-size: 1.5rem; font-weight: 600; color: var(--wix-text); margin: 2rem 0 0.75rem; }
.blog-post-body h3 { font-family: var(--wix-font-head); font-size: 1.2rem; font-weight: 600; color: var(--wix-text); margin: 1.5rem 0 0.5rem; }
.blog-post-body ul,
.blog-post-body ol { margin: 0 0 1.2em 1.5rem; }
.blog-post-body li { margin-bottom: 0.4em; }
.blog-post-body blockquote {
  border-left: 3px solid var(--wix-teal);
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: var(--wix-sage-bg);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--wix-text-mid);
}
.blog-post-body a { color: var(--wix-teal); text-decoration: underline; }
.blog-post-body strong { font-weight: 700; }
.blog-post-body em { font-style: italic; }

/* ============================================================
   Perimenopause Page
   ============================================================ */

/* --- Block 1: Hero --- */
.peri-hero {
  background: var(--wix-taupe);
  padding: 4rem 0 3rem;
}
.peri-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.peri-hero-text h1 {
  font-family: var(--wix-font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--wix-text);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.peri-hero-text p {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.peri-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.peri-list li {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text-mid);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.5;
}
.peri-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--wix-teal);
}
.peri-bold {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wix-text);
  line-height: 1.6;
}
.peri-hero-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 500px;
}

/* --- Block 2: Understanding Your Journey --- */
.peri-journey {
  background: var(--wix-sage-bg);
  padding: 4rem 0;
}
.peri-section-heading {
  font-family: var(--wix-font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--wix-heading);
  text-align: center;
  margin-bottom: 0.75rem;
}
.peri-section-intro {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.peri-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.peri-topic h3 {
  font-family: var(--wix-font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wix-heading);
  margin-bottom: 0.5rem;
}
.peri-topic p {
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: var(--wix-text-mid);
  line-height: 1.65;
}

/* --- Block 3: Who This Is For --- */
.peri-who {
  background: var(--wix-cream);
  padding: 4rem 0;
}
.peri-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.peri-who-text h2 {
  font-family: var(--wix-font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--wix-text);
  margin-bottom: 1rem;
}
.peri-who-text p {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.peri-who-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 460px;
}

/* --- Block 4: The Structured Programme --- */
.peri-programme {
  background: var(--wix-sage-bg);
  padding: 4rem 0;
}
.peri-programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.peri-programme-left h3,
.peri-programme-right h3 {
  font-family: var(--wix-font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wix-heading);
  margin-bottom: 0.75rem;
}
.peri-programme-left p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text-mid);
  margin-bottom: 1rem;
}
.peri-weeks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.peri-weeks li {
  font-family: var(--wix-font-body);
  font-size: 0.95rem;
  color: var(--wix-text-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(61,102,89,0.15);
  line-height: 1.5;
}
.peri-weeks li:last-child { border-bottom: none; }
.peri-weeks li strong {
  color: var(--wix-teal);
}
.peri-included-item {
  margin-bottom: 1.2rem;
}
.peri-included-item h4 {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--wix-text);
  margin-bottom: 0.25rem;
}
.peri-included-item p {
  font-family: var(--wix-font-body);
  font-size: 0.92rem;
  color: var(--wix-text-mid);
  line-height: 1.6;
}

/* --- Block 5: CTA --- */
.peri-cta {
  background: var(--wix-cream);
  padding: 4rem 0;
  text-align: center;
}
.peri-cta h2 {
  font-family: var(--wix-font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--wix-text);
  margin-bottom: 1rem;
}
.peri-cta p {
  font-family: var(--wix-font-body);
  font-size: 1rem;
  color: var(--wix-text-mid);
  max-width: 600px;
  margin: 0 auto 0.75rem;
  line-height: 1.7;
}
.peri-cta-sub {
  font-style: italic;
  margin-bottom: 2rem !important;
}
.peri-disclaimer {
  font-family: var(--wix-font-body);
  font-size: 0.8rem;
  color: var(--wix-text-mid);
  max-width: 560px;
  margin: 2rem auto 0 !important;
  line-height: 1.6;
}

/* --- Perimenopause Responsive --- */
@media (max-width: 768px) {
  .peri-hero-inner,
  .peri-who-inner,
  .peri-programme-grid {
    grid-template-columns: 1fr;
  }
  .peri-hero-image { order: -1; }
  .peri-topics-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Privacy Policy Page
   ============================================================ */

.priv-hero {
  background: var(--wix-taupe);
  padding: 3.5rem 0 2.5rem;
}
.priv-hero h1 {
  font-family: var(--wix-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--wix-text);
  margin-bottom: 0.5rem;
}
.priv-updated {
  font-family: var(--wix-font-body);
  font-size: 0.9rem;
  color: var(--wix-text-mid);
}

.priv-body {
  background: var(--wix-cream);
  padding: 3.5rem 0 5rem;
}
.priv-content {
  max-width: 760px;
}
.priv-content h2 {
  font-family: var(--wix-font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wix-heading);
  margin: 2.5rem 0 0.6rem;
}
.priv-content h2:first-child { margin-top: 0; }
.priv-content p {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text-mid);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.priv-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
}
.priv-content ul li {
  font-family: var(--wix-font-body);
  font-size: 0.97rem;
  color: var(--wix-text-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.priv-content a {
  color: var(--wix-teal);
  text-decoration: underline;
}
.priv-content a:hover { color: var(--wix-teal-dark); }

/* --- Utility --- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
