:root {
    --rose: #c9968a;
    --rose-light: #e8c9c2;
    --rose-pale: #f5eeec;
    --rose-dark: #9e6d64;
    --cream: #faf7f5;
    --white: #ffffff;
    --text: #3a2f2c;
    --text-soft: #7a6660;
    --border: #e8d8d4;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250,247,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
  }
  nav.scrolled { border-color: var(--border); }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo svg { width: 36px; height: 36px; }
  .nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--rose-dark);
    letter-spacing: .02em;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 400;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--rose); }

  .nav-cta {
    background: var(--rose);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: .82rem !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .2s;
  }
  .nav-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); color: white !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
  }

  .hero-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    max-width: 660px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--rose-light);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 28px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--rose);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 8px 28px rgba(201,150,138,.3);
  }
  .btn-primary:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201,150,138,.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-dark);
    text-decoration: none;
    font-size: .88rem;
    letter-spacing: .04em;
    font-weight: 400;
    transition: gap .2s;
  }
  .btn-secondary:hover { gap: 14px; }
  .btn-secondary svg { width: 18px; height: 18px; }

  .hero-crp {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-crp-line { width: 32px; height: 1px; background: var(--rose-light); }
  .hero-crp-text {
    font-size: .78rem;
    letter-spacing: .1em;
    color: var(--text-soft);
    text-transform: uppercase;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
  }

  .hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(250,247,245,0.96) 0%,
      rgba(250,247,245,0.88) 38%,
      rgba(250,247,245,0.60) 62%,
      rgba(250,247,245,0.22) 100%
    );
  }

  .hero-badge {
    position: absolute;
    bottom: 48px;
    right: 60px;
    left: auto;
    transform: none;
    z-index: 2;
    background: white;
    border-radius: 16px;
    padding: 18px 28px;
    box-shadow: 0 20px 50px rgba(58,47,44,.12);
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
  }
  .hero-badge-icon {
    width: 44px; height: 44px;
    background: var(--rose-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hero-badge-icon svg { width: 22px; height: 22px; color: var(--rose); }
  .hero-badge-text { font-size: .82rem; color: var(--text-soft); line-height: 1.5; }
  .hero-badge-text strong { color: var(--text); display: block; font-weight: 500; font-size: .9rem; }

  /* ─── SECTION GENERIC ─── */
  section { padding: 100px 80px; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--rose-light);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--rose); }

  /* ─── WHAT IS EMDR ─── */
  .emdr {
    background: white;
    padding: 100px 80px;
  }

  .emdr-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .emdr-photo-wrap {
    position: relative;
  }
  .emdr-photo {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 520px;
    display: block;
  }
  .emdr-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--rose-pale);
    z-index: -1;
  }
  .emdr-accent2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--rose-light);
    z-index: -1;
  }

  .emdr-content .section-title { margin-bottom: 28px; }

  .emdr-text {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .emdr-highlight {
    background: var(--rose-pale);
    border-left: 3px solid var(--rose);
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--rose-dark);
    margin: 28px 0;
    line-height: 1.6;
  }

  /* ─── WHEN TO SEEK ─── */
  .when {
    background: var(--cream);
    max-width: 100%;
  }
  .when-inner { max-width: 1200px; margin: 0 auto; }

  .when-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: end;
  }

  .when-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    align-self: end;
  }

  .when-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .when-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .when-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201,150,138,.15);
    border-color: var(--rose-light);
  }

  .when-card-icon {
    width: 48px; height: 48px;
    background: var(--rose-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .when-card-icon svg { width: 22px; height: 22px; color: var(--rose); }

  .when-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
  }
  .when-card p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
  }

  /* ─── SERVICES ─── */
  .services {
    background: var(--rose-pale);
    padding: 100px 80px;
  }
  .services-inner { max-width: 1200px; margin: 0 auto; }
  .services-header { text-align: center; margin-bottom: 64px; }
  .services-header .section-label { justify-content: center; }
  .services-header .section-label::before { display: none; }
  .services-header .section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--rose-light);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(201,150,138,.18);
  }
  .service-card.featured {
    background: var(--rose);
    border-color: var(--rose);
    grid-column: 1 / -1;
    color: white;
  }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--rose-light);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
  }
  .service-card.featured .service-num { color: rgba(255,255,255,.35); }

  .service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
  }
  .service-card.featured .service-body h3 { color: white; }
  .service-body p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
  }
  .service-card.featured .service-body p { color: rgba(255,255,255,.8); }

  /* ─── HOW IT WORKS ─── */
  .how {
    background: white;
    padding: 100px 80px;
  }
  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .how-steps { display: flex; flex-direction: column; gap: 0; }

  .how-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .how-step:last-child { border-bottom: none; }

  .how-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--rose-light);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    padding-top: 2px;
  }
  .how-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
  }
  .how-step p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
  }

  .how-photo {
    border-radius: 20px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
  }

  /* ─── ABOUT ─── */
  .about {
    background: var(--cream);
    padding: 100px 80px;
  }
  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-text .section-title { margin-bottom: 24px; }
  .about-body {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 40px;
  }

  .about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .about-tag {
    padding: 7px 18px;
    border-radius: 30px;
    border: 1px solid var(--rose-light);
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--rose-dark);
    background: var(--rose-pale);
    font-weight: 400;
  }

  .about-photo-wrap { position: relative; }
  .about-photo {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
  }
  .about-photo-deco {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--rose-pale);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 12px 36px rgba(58,47,44,.08);
    border: 1px solid var(--border);
  }
  .about-photo-deco p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--rose-dark);
    line-height: 1.5;
    max-width: 200px;
  }

  /* ─── PLANS ─── */
  .plans {
    background: white;
    padding: 80px 80px;
  }
  .plans-inner { max-width: 1200px; margin: 0 auto; }
  .plans-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; }
  .plans-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  .plan-pill {
    padding: 8px 20px;
    background: var(--rose-pale);
    border-radius: 30px;
    font-size: .82rem;
    color: var(--rose-dark);
    font-weight: 400;
    border: 1px solid var(--border);
  }

  /* ─── QUOTE ─── */
  .quote-section {
    background: var(--rose);
    padding: 80px;
    text-align: center;
  }
  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.5;
  }
  .quote-author {
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
  }

  /* ─── CTA ─── */
  .cta-section {
    background: var(--cream);
    padding: 120px 80px;
    text-align: center;
  }
  .cta-inner { max-width: 600px; margin: 0 auto; }
  .cta-section .section-title { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 20px; }
  .cta-section .section-label { justify-content: center; }
  .cta-section .section-label::before { display: none; }
  .cta-section .section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--rose-light);
  }
  .cta-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 44px;
  }
  .cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text);
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--rose-light);
    letter-spacing: .02em;
  }
  .footer-crp {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
  }
  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .footer-links a {
    text-decoration: none;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--rose-light); }
  .footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.25);
    letter-spacing: .04em;
  }

  /* ─── TRANSFORMS ─── */
  .transforms {
    background: linear-gradient(135deg, #fdf6f4 0%, #f9eeeb 100%);
    padding: 100px 80px;
  }
  .transforms-inner { max-width: 1200px; margin: 0 auto; }
  .transforms-header { text-align: center; margin-bottom: 64px; }
  .transforms-header .section-label { justify-content: center; }
  .transforms-header .section-label::before { display: none; }
  .transforms-header .section-label::after {
    content: ''; display: inline-block;
    width: 24px; height: 1px; background: var(--rose-light);
  }
  .transforms-subtitle {
    font-size: .98rem; line-height: 1.8;
    color: var(--text-soft); font-weight: 300;
    max-width: 600px; margin: 0 auto;
  }
  .transforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
  }
  .transform-card {
    background: white;
    border-radius: 18px;
    padding: 28px 22px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
  }
  .transform-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-light), var(--rose));
    opacity: 0;
    transition: opacity .25s;
  }
  .transform-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(201,150,138,.18); border-color: var(--rose-light); }
  .transform-card:hover::before { opacity: 1; }
  .transform-icon {
    width: 50px; height: 50px;
    background: var(--rose-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .transform-icon svg { width: 24px; height: 24px; color: var(--rose); }
  .transform-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500;
    color: var(--text); margin-bottom: 8px;
  }
  .transform-card p {
    font-size: .84rem; line-height: 1.65;
    color: var(--text-soft); font-weight: 300;
  }
  .transforms-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(201,150,138,.1);
  }
  .transforms-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-style: italic;
    color: var(--rose-dark); margin-bottom: 24px;
    line-height: 1.5;
  }

  /* ─── MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(58,47,44,.55);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .modal-overlay.active { opacity: 1; pointer-events: all; }
  .modal-box {
    background: white;
    border-radius: 24px;
    max-width: 680px; width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(58,47,44,.2);
    transform: translateY(20px);
    transition: transform .3s;
    scrollbar-width: thin;
    scrollbar-color: var(--rose-light) transparent;
  }
  .modal-overlay.active .modal-box { transform: translateY(0); }
  .modal-photo {
    width: 100%; height: 280px;
    object-fit: cover; object-position: center 30%;
    border-radius: 24px 24px 0 0;
    display: block;
  }
  .modal-body { padding: 36px; }
  .modal-tag {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose-dark);
    font-size: .7rem; letter-spacing: .12em;
    text-transform: uppercase; font-weight: 500;
    padding: 5px 14px; border-radius: 20px;
    margin-bottom: 14px;
  }
  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 400;
    color: var(--text); line-height: 1.25;
    margin-bottom: 20px;
  }
  .modal-text {
    font-size: .93rem; line-height: 1.85;
    color: var(--text-soft); font-weight: 300;
  }
  .modal-text p { margin-bottom: 16px; }
  .modal-close-btn {
    width: 40px; height: 40px;
    border-radius: 50%; border: 1px solid var(--border);
    background: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    float: right; margin: -8px -8px 16px 16px;
    transition: background .2s;
  }
  .modal-close-btn:hover { background: var(--rose-pale); }
  .modal-close-btn svg { width: 16px; height: 16px; color: var(--text-soft); }

  /* ─── BLOG (updated) ─── */
  .blog-card-photo {
    height: 220px; overflow: hidden;
    border-radius: 0; position: relative;
  }
  .blog-card.main-post .blog-card-photo { height: 300px; }
  .blog-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 15%;
    display: block;
    transition: transform .4s ease;
  }
  .blog-card:hover .blog-card-photo img { transform: scale(1.04); }
  .blog-card-photo .blog-card-tag { position: absolute; top: 16px; left: 16px; }

  /* ─── VIDEO ─── */
  .video-section {
    background: var(--rose-pale);
    padding: 100px 80px;
  }
  .video-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .video-embed-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--text);
    box-shadow: 0 24px 60px rgba(58,47,44,.2);
    max-height: 560px;
  }
  .video-embed-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .video-content .section-title { margin-bottom: 20px; }
  .video-text {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 32px;
  }
  .video-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
  }
  .video-pill {
    padding: 7px 18px;
    border-radius: 30px;
    border: 1px solid var(--rose-light);
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--rose-dark);
    background: white;
    font-weight: 400;
  }

  /* ─── REVIEWS CAROUSEL ─── */
  .reviews-carousel-wrap { position: relative; }
  .reviews-track { overflow: hidden; }
  .reviews-slider {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
  }
  .reviews-slider .review-card { flex-shrink: 0; }
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .2s;
    flex-shrink: 0;
  }
  .carousel-btn:hover { background: var(--rose-pale); border-color: var(--rose-light); transform: scale(1.05); }
  .carousel-btn:disabled { opacity: .35; cursor: default; transform: none; }
  .carousel-btn svg { width: 18px; height: 18px; color: var(--text-soft); }
  .carousel-dots { display: flex; gap: 6px; align-items: center; }
  .carousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background .2s, width .25s, border-radius .25s;
    border: none; padding: 0;
  }
  .carousel-dot.active { background: var(--rose); width: 22px; border-radius: 4px; }

  /* ─── REVIEWS ─── */
  .reviews {
    background: white;
    padding: 100px 80px;
  }
  .reviews-inner { max-width: 1200px; margin: 0 auto; }
  .reviews-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: end;
  }
  .reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
  }
  .reviews-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--rose);
    line-height: 1;
  }
  .reviews-score-detail { display: flex; flex-direction: column; gap: 4px; }
  .reviews-stars { display: flex; gap: 3px; }
  .reviews-stars svg { width: 16px; height: 16px; fill: #f4b942; }
  .reviews-count { font-size: .78rem; color: var(--text-soft); letter-spacing: .04em; }
  .reviews-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    align-self: end;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review-card.featured-review {
    grid-column: 1 / -1;
  }
  .review-card {
    background: var(--rose-pale);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s, box-shadow .25s;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201,150,138,.15);
  }
  .review-card.featured-review {
    background: var(--rose);
    border-color: var(--rose);
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .review-quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: .6;
    color: var(--rose-light);
    font-style: italic;
    flex-shrink: 0;
  }
  .review-card.featured-review .review-quote-icon { color: rgba(255,255,255,.3); }
  .review-stars { display: flex; gap: 3px; }
  .review-stars svg { width: 14px; height: 14px; fill: #f4b942; }
  .review-card.featured-review .review-stars svg { fill: rgba(255,255,255,.8); }
  .review-text {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--text-soft);
    font-weight: 300;
    font-style: italic;
    flex: 1;
  }
  .review-card.featured-review .review-text { color: rgba(255,255,255,.9); font-size: 1.05rem; }
  .review-author { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
  .review-name { font-size: .88rem; font-weight: 500; color: var(--text); }
  .review-card.featured-review .review-name { color: white; }
  .review-date { font-size: .75rem; color: var(--text-soft); letter-spacing: .04em; }
  .review-card.featured-review .review-date { color: rgba(255,255,255,.55); }
  .google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    font-size: .78rem;
    color: var(--text-soft);
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .google-badge svg { width: 18px; height: 18px; }

  /* ─── BLOG ─── */
  .blog { background: var(--cream); padding: 100px 80px; }
  .blog-inner { max-width: 1200px; margin: 0 auto; }
  .blog-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 64px;
    gap: 40px;
  }
  .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-dark);
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap .2s;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  .blog-link:hover { gap: 14px; }
  .blog-link svg { width: 16px; height: 16px; }
  .blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
  }
  .blog-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(58,47,44,.1);
  }
  .blog-card.main-post { grid-row: span 2; }
  .blog-card-visual {
    height: 200px;
    background: var(--rose-pale);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .blog-card.main-post .blog-card-visual { height: 280px; }
  .blog-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: radial-gradient(var(--rose) 1px, transparent 1px);
    background-size: 20px 20px;
  }
  .blog-visual-icon {
    width: 64px; height: 64px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201,150,138,.2);
    position: relative;
  }
  .blog-visual-icon svg { width: 28px; height: 28px; color: var(--rose); }
  .blog-card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: white;
    color: var(--rose-dark);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
  }
  .blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  .blog-card-date {
    font-size: .73rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 500;
  }
  .blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
  }
  .blog-card.main-post .blog-card-title { font-size: 1.55rem; }
  .blog-card-excerpt {
    font-size: .87rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
    flex: 1;
  }
  .blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rose-dark);
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
    transition: gap .2s;
  }
  .blog-card-read:hover { gap: 12px; }
  .blog-card-read svg { width: 14px; height: 14px; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp .7s ease both; }
  .hero-title   { animation: fadeUp .7s .12s ease both; }
  .hero-subtitle{ animation: fadeUp .7s .22s ease both; }
  .hero-actions { animation: fadeUp .7s .32s ease both; }
  .hero-crp     { animation: fadeUp .7s .42s ease both; }
  .hero-badge   { animation: fadeUp .8s .6s ease both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav { padding: 18px 32px; }
    .nav-links { gap: 22px; }
    .reviews-header { grid-template-columns: 1fr; gap: 24px; }
    .review-card.featured-review { flex-direction: column; gap: 20px; }
    .video-inner { grid-template-columns: 1fr; gap: 48px; }
    .video-embed-wrap { max-height: 400px; }
    .transforms-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card.main-post { grid-row: span 1; }
    .blog-header { grid-template-columns: 1fr; }
    section, .emdr, .how, .about, .services, .plans, .cta-section, .reviews, .blog { padding: 70px 40px; }
    footer { padding: 50px 40px; }
    .hero { min-height: 85vh; }
    .hero-left { padding: 120px 40px 100px; max-width: 100%; }
    .hero-photo-overlay { background: linear-gradient(160deg, rgba(250,247,245,0.97) 0%, rgba(250,247,245,0.88) 50%, rgba(250,247,245,0.55) 100%); }
    .hero-badge { right: 20px; bottom: 24px; }
    .emdr-inner, .how-inner, .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .when-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { grid-column: 1; }
    .quote-section { padding: 60px 40px; }
  }

  @media (max-width: 640px) {
    /* NAV */
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-logo img { height: 44px; }

    /* HERO */
    .hero { min-height: 100svh; }
    .hero-left { padding: 100px 24px 120px; max-width: 100%; }
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1.1; }
    .hero-subtitle { font-size: .95rem; max-width: 100%; margin-bottom: 32px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .btn-primary { width: 100%; justify-content: center; padding: 16px 24px; }
    .hero-badge { right: 16px; bottom: 20px; padding: 12px 16px; gap: 10px; white-space: normal; max-width: calc(100% - 32px); }
    .hero-badge-text { font-size: .76rem; }
    .hero-badge-icon { width: 36px; height: 36px; flex-shrink: 0; }
    .hero-photo-overlay { background: linear-gradient(160deg, rgba(250,247,245,0.97) 0%, rgba(250,247,245,0.93) 55%, rgba(250,247,245,0.65) 100%); }

    /* SECTIONS */
    section, .emdr, .how, .about, .services, .plans, .cta-section, .quote-section, .reviews, .blog { padding: 56px 20px; }
    footer { padding: 40px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }

    /* SECTION HEADINGS */
    .section-label { font-size: .7rem; }
    h2 { font-size: clamp(2rem, 8vw, 2.8rem) !important; }

    /* EMDR / HOW / ABOUT */
    .emdr-inner, .how-inner, .about-inner { grid-template-columns: 1fr; gap: 36px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* TRANSFORMS */
    .transforms-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .transform-card { padding: 20px 16px; }

    /* SERVICES */
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { grid-column: 1; }

    /* WHEN / PLANS */
    .when-grid { grid-template-columns: 1fr; }
    .when-header { grid-template-columns: 1fr; gap: 20px; }
    .plans-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .plans-grid { grid-template-columns: 1fr; }

    /* REVIEWS */
    .reviews-header { grid-template-columns: 1fr; gap: 20px; }
    .review-card { padding: 24px 20px; }
    .review-card.featured-review { flex-direction: column; gap: 16px; }

    /* VIDEO */
    .video-inner { grid-template-columns: 1fr; gap: 36px; }
    .video-embed-wrap { max-height: 260px; border-radius: 16px; }

    /* BLOG */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card.main-post { grid-row: span 1; }
    .blog-card-img { height: 200px; }
    .blog-header { grid-template-columns: 1fr; gap: 16px; }

    /* MODAL */
    .modal-box { width: 95vw; max-height: 90vh; overflow-y: auto; padding: 24px 20px; border-radius: 20px; }
    .modal-photo { height: 200px; border-radius: 12px; }

    /* CTA */
    .cta-section .btn-primary { width: 100%; justify-content: center; }
    .cta-inner { gap: 28px; }
    
    /* FOOTER */
    .footer-links { flex-direction: column; gap: 12px; }
  }

  /* ─── TRANSFORMS ACCORDION (mobile) ─── */
  @media (max-width: 640px) {
    .transforms-grid { grid-template-columns: 1fr; gap: 0; border: 1px solid rgba(201,150,138,.18); border-radius: 20px; overflow: hidden; }
    .transform-card { border-radius: 0 !important; border: none !important; border-bottom: 1px solid rgba(201,150,138,.15) !important; padding: 0 !important; cursor: pointer; box-shadow: none !important; transform: none !important; transition: background .2s; }
    .transform-card:last-child { border-bottom: none !important; }
    .transform-card-header { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
    .transform-card p { display: none; padding: 0 20px 18px; margin: 0; font-size: .9rem; line-height: 1.7; color: var(--text-soft); }
    .transform-card.open p { display: block; }
    .transform-card.open { background: rgba(201,150,138,.06); }
    .transform-card-chevron { margin-left: auto; width: 18px; height: 18px; color: var(--rose); transition: transform .25s; flex-shrink: 0; }
    .transform-card.open .transform-card-chevron { transform: rotate(180deg); }
    .transform-icon { width: 36px; height: 36px; min-width: 36px; }
    .transform-card h3 { font-size: 1rem; margin: 0; }
  }
  @media (min-width: 641px) {
    .transform-card-header { display: contents; }
    .transform-card-chevron { display: none; }
  }

    /* ===== SOURCES TICKER ===== */
    .sources-ticker-section {
      padding: 64px 0 72px;
      background: #FAF6F3;
      border-top: 1px solid rgba(201,150,138,0.18);
      overflow: hidden;
    }

    .sources-label {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 14px;
    }

    .sources-label-line {
      display: block;
      width: 48px;
      height: 1px;
      background: rgba(201,150,138,0.5);
    }

    .sources-label-text {
      font-family: 'DM Sans', 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #C9968A;
    }

    .sources-subtitle {
      text-align: center;
      font-family: 'DM Sans', 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #9A7B7B;
      margin-bottom: 44px;
      padding: 0 24px;
    }

    .ticker-wrapper {
      overflow: hidden;
      width: 100%;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .ticker-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: ticker-scroll 38s linear infinite;
    }

    .ticker-track:hover {
      animation-play-state: paused;
    }

    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .ticker-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 18px 28px;
      background: #fff;
      border: 1px solid rgba(201,150,138,0.22);
      border-radius: 12px;
      text-decoration: none;
      min-width: 240px;
      flex-shrink: 0;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .ticker-item:hover {
      border-color: #C9968A;
      box-shadow: 0 4px 20px rgba(201,150,138,0.18);
      transform: translateY(-2px);
    }

    .ticker-source {
      font-family: 'DM Sans', 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #C9968A;
    }

    .ticker-title {
      font-family: 'DM Sans', 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #4A3A3A;
      line-height: 1.4;
    }

    @media (max-width: 640px) {
      .sources-ticker-section { padding: 48px 0 56px; }
      .ticker-item { min-width: 200px; padding: 14px 20px; }
    }