*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{--pink:#c08496;--pink-light:#e8d0d8;--pink-dark:#a06878;--text:#3a2e30;--text-soft:#5a4548;--bg-hero:#cdb8c0;--bg-footer:#2a1e22;--white:#fff;}
html{scroll-behavior:smooth;}
body{font-family:'Lato',sans-serif;color:var(--text);background:#f5eaee;}

/* ── NAV ── */
nav{background:#fff;display:flex;align-items:center;justify-content:flex-end;padding:0 40px;height:80px;position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(160,100,120,0.08);overflow:visible;}
.logo-wrap{display:flex;align-items:center;justify-content:center;position:absolute;left:50%;transform:translateX(-50%);z-index:101;}
.logo-img{width:120px;height:120px;object-fit:contain;position:relative;top:36px;background:#fff;border-radius:50%;padding:4px;filter:drop-shadow(0 4px 14px rgba(100,60,80,0.18));}
.nav-links{display:flex;gap:24px;list-style:none;}
.nav-links a{text-decoration:none;color:var(--text);font-size:13px;letter-spacing:0.5px;transition:color 0.2s;}
.nav-links a:hover{color:var(--pink);}
.nav-right{display:flex;align-items:center;gap:20px;}
.nav-social{display:flex;gap:10px;font-size:15px;cursor:pointer;}
.nav-social span:hover{color:var(--pink);}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:6px;}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);margin:5px 0;transition:0.3s;}

/* ── MOBILE NAV — popup box, not full screen ── */
.mobile-nav{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(42,30,34,0.6);
  z-index:200;
  align-items:flex-start;
  justify-content:center;
  padding:90px 20px 20px;
  overflow-y:auto;
}
.mobile-nav.open{display:flex;}

.mobile-nav-panel{
  background:#fff;
  border-radius:18px;
  width:100%;
  max-width:320px;
  max-height:75vh;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  box-shadow:0 24px 60px rgba(0,0,0,0.35);
  padding:20px 24px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  position:relative;
}

.mobile-header{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  position:relative;
  margin-bottom:14px;
}

.mobile-nav-panel .logo-img{
  width:76px;
  height:76px;
  position:static;
  top:auto;
}

.mobile-close{
  position:absolute;
  top:-4px;
  right:-4px;
  background:rgba(60,40,48,0.06);
  border:none;
  font-size:16px;
  cursor:pointer;
  color:var(--text);
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s;
}
.mobile-close:hover{background:rgba(60,40,48,0.12);}

.mobile-nav a{
  font-size:17px;
  text-decoration:none;
  color:var(--text);
  font-family:'Cormorant Garamond',serif;
  padding:10px 4px;
  width:100%;
  text-align:center;
  border-bottom:1px solid #f0e0e6;
  transition:color 0.2s;
}
.mobile-nav a:last-child{border-bottom:none;}
.mobile-nav a:hover{color:var(--pink);}

/* ── SERVICES DROPDOWN ── */ .nav-links li.has-dropdown{position:relative;} .nav-links li.has-dropdown > a{display:inline-flex;align-items:center;cursor:pointer;} .nav-links .caret{font-size:9px;margin-left:5px;transition:transform .2s;} .nav-links li.has-dropdown:hover .caret{transform:rotate(180deg);} .nav-links .dropdown{ position:absolute;top:calc(100% + 10px);left:0; list-style:none;background:#fff;min-width:212px; border:1px solid #e8d0d8;border-radius:4px; box-shadow:0 12px 30px rgba(120,70,90,0.16); padding:8px 0; opacity:0;visibility:hidden;transform:translateY(6px); transition:opacity .2s ease,transform .2s ease,visibility .2s ease; z-index:300; } /* invisible bridge so the menu doesn't close as the mouse crosses the gap between "Services" and the dropdown */ .nav-links .dropdown::before{ content:'';position:absolute;top:-12px;left:0;width:100%;height:12px; } .nav-links li.has-dropdown:hover .dropdown, .nav-links li.has-dropdown:focus-within .dropdown{ opacity:1;visibility:visible;transform:translateY(0); } .nav-links .dropdown li{display:block;} .nav-links .dropdown a{ display:block;padding:10px 20px;font-size:13px;color:#3a2e30; white-space:nowrap;letter-spacing:0.3px; } .nav-links .dropdown a:hover{background:#fbeaf0;color:var(--pink-dark);}
/* ── BTNs ── */
.btn-pink{background:var(--pink);color:#fff;border:none;padding:13px 32px;font-size:14px;font-family:'Lato',sans-serif;letter-spacing:0.7px;cursor:pointer;transition:background 0.2s;border-radius:2px;text-decoration:none;display:inline-block;}
.btn-pink:hover{background:var(--pink-dark);}
.btn-outline{background:transparent;color:var(--text);border:1.5px solid var(--text);padding:12px 32px;font-size:14px;font-family:'Lato',sans-serif;letter-spacing:0.7px;cursor:pointer;transition:all 0.2s;border-radius:2px;text-decoration:none;display:inline-block;}
.btn-outline:hover{background:rgba(60,40,48,0.07);}
.btn-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.section-label{font-family:'Cormorant Garamond',serif;font-size:44px;font-weight:500;color:#2a1e22;line-height:1.2;margin-bottom:16px;}
.section-label em{font-family:'Dancing Script',cursive;font-size:52px;font-style:normal;}
.section-sub{font-size:15.5px;color:#4a3540;line-height:1.75;max-width:560px;margin:0 auto 44px;}

/* ── HERO ── */
.hero{position:relative;min-height:540px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;padding:110px 40px 90px;}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;}
.hero-content{position:relative;z-index:2;max-width:700px;}
.hero h1{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:600;color:#2a1e22;margin-bottom:20px;line-height:1.15;}
.hero p{font-size:16.5px;color:#4a3540;line-height:1.75;margin-bottom:36px;max-width:520px;margin-left:auto;margin-right:auto;}

/* ── AFFIRMATIONS ── */
.affirmations{background:linear-gradient(135deg,#2a1e22 0%,#3d2a30 100%);padding:56px 40px;text-align:center;overflow:hidden;position:relative;}
.affirmations::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c08496' fill-opacity='0.06'%3E%3Cpath d='M30 0 C28 4 24 6 20 4 C14 2 14 10 20 14 L30 22 L40 14 C46 10 46 2 40 4 C36 6 32 4 30 0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}
.aff-inner{position:relative;z-index:2;max-width:700px;margin:0 auto;}
.aff-quote{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:400;font-style:italic;color:#f0e4e8;line-height:1.5;transition:opacity 0.6s;min-height:80px;display:flex;align-items:center;justify-content:center;}
.aff-dots{display:flex;gap:10px;justify-content:center;margin-top:24px;}
.aff-dot{width:8px;height:8px;border-radius:50%;background:rgba(192,132,150,0.35);cursor:pointer;transition:background 0.3s;}
.aff-dot.active{background:#c08496;}

/* ── AFFIRMATION BUTTONS ── */
.aff-controls{display:flex;align-items:center;justify-content:center;gap:24px;margin-top:28px;}
.aff-btn{background:none;border:1px solid rgba(192,132,150,0.4);color:#c08496;width:40px;height:40px;border-radius:50%;font-size:18px;cursor:pointer;transition:background 0.3s,border-color 0.3s;display:flex;align-items:center;justify-content:center;}
.aff-btn:hover{background:rgba(192,132,150,0.15);border-color:#c08496;}

/* ── ABOUT ── */
.about{display:flex;gap:64px;align-items:flex-start;padding:80px 96px;background:linear-gradient(135deg,#ead8de 0%,#dfc8d0 50%,#e6d2d8 100%);}
.about-photo{width:340px;min-width:300px;border-radius:4px;background:linear-gradient(160deg,#e0bcc8 0%,#c8a0b2 50%,#b88a9e 100%);display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;min-height:400px;}
.about-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.about-placeholder{color:rgba(80,50,60,0.45);font-size:14px;font-style:italic;text-align:center;padding:20px;}
.about-text{flex:1;}
.about-text h2{font-family:'Cormorant Garamond',serif;font-size:44px;font-weight:500;margin-bottom:24px;color:#2a1e22;line-height:1.2;}
.about-text h2 em{font-family:'Dancing Script',cursive;font-size:52px;font-style:normal;}
.about-text p{font-size:15.5px;line-height:1.85;color:#4a3540;margin-bottom:16px;}
.awards-row{display:flex;gap:16px;margin-top:28px;flex-wrap:wrap;align-items:center;}
.award-badge{width:140px;height:140px;border-radius:50%;background:none;border:none;padding:0;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:transform 0.2s;flex-shrink:0;}
.award-badge:hover{transform:scale(1.05);}
.award-badge .badge-year{font-size:11px;color:var(--pink-dark);letter-spacing:1px;font-weight:700;text-transform:uppercase;}
.award-badge .badge-icon{font-size:22px;margin:4px 0;}
.award-badge .badge-title{font-size:9.5px;color:#4a3540;line-height:1.3;font-weight:600;}
.badge-img{width:140px;height:140px;object-fit:contain;border-radius:50%;}
.award-note{font-size:13px;color:#5a4548;font-style:italic;margin-top:12px;}

/* ── EVENTS ── */
.events{padding:80px 96px;background:linear-gradient(160deg,#2a1e22 0%,#3d2a30 100%);text-align:center;position:relative;overflow:hidden;}
.events::after{content:'2026';position:absolute;right:-40px;bottom:-60px;font-family:'Cormorant Garamond',serif;font-size:240px;color:rgba(192,132,150,0.06);line-height:1;pointer-events:none;}
.events .section-label{color:#f0e4e8;}
.events .section-label em{color:#e0b8c8;}
.events .section-sub{color:rgba(240,228,232,0.75);}
.event-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:40px 0;position:relative;z-index:2;}
.reel-credit {
  position: relative;
  z-index: 2;
  margin: -14px 0 34px;
  color: rgba(240, 228, 232, 0.68);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
}

.reel-credit::before,
.reel-credit::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px;
  background: rgba(224, 184, 200, 0.55);
  vertical-align: middle;
}
.event-img-slot{background:linear-gradient(145deg,#4a3040 0%,#3a2030 100%);border:1px solid rgba(192,132,150,0.2);border-radius:4px;height:220px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;cursor:pointer;transition:border-color 0.2s;}
.event-img-slot:hover{border-color:rgba(192,132,150,0.5);}
.event-img-slot .slot-icon{font-size:28px;opacity:0.5;}
.event-img-slot .slot-text{font-size:12px;color:rgba(240,228,232,0.4);letter-spacing:0.5px;}
.event-img-slot img{width:100%;height:100%;object-fit:cover;border-radius:4px;}
.event-img-slot video{width:100%;height:100%;object-fit:cover;border-radius:4px;display:block;}
.event-cta-box{background:rgba(192,132,150,0.12);border:1px solid rgba(192,132,150,0.25);border-radius:4px;padding:36px 40px;margin-top:8px;position:relative;z-index:2;}
.event-cta-box h3{font-family:'Cormorant Garamond',serif;font-size:28px;color:#f0e4e8;margin-bottom:10px;}
.event-cta-box p{color:rgba(240,228,232,0.7);font-size:15px;line-height:1.7;margin-bottom:24px;}
.btn-event{background:var(--pink);color:#fff;padding:15px 40px;font-size:15px;font-family:'Lato',sans-serif;letter-spacing:1px;font-weight:700;text-decoration:none;border-radius:2px;display:inline-block;transition:background 0.2s;}
.btn-event:hover{background:#b07080;}

/* ── CONVERSATIONS ── */
.convos{padding:80px 96px;background:linear-gradient(160deg,#f5eaee 0%,#ede0e6 100%);text-align:center;}
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
.video-card{background:#fff;border:1px solid #e0ccd4;border-radius:3px;overflow:hidden;transition:transform 0.2s,box-shadow 0.2s;}
.video-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(160,100,120,0.15);}
.video-thumb{height:190px;display:flex;align-items:center;justify-content:center;position:relative;cursor:pointer;}
.video-thumb::after{content:'';position:absolute;inset:0;background:rgba(50,20,30,0.15);transition:background 0.2s;}
.video-card:hover .video-thumb::after{background:rgba(50,20,30,0.05);}
.thumb-1{background:linear-gradient(145deg,#ddc0cc 0%,#c8a8b8 100%);}
.thumb-2{background:linear-gradient(145deg,#d4b8c8 0%,#c0a0b0 100%);}
.thumb-3{background:linear-gradient(145deg,#dab8c8 0%,#c4a4b4 100%);}
.play-btn{width:52px;height:52px;background:rgba(255,255,255,0.88);border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;z-index:2;transition:transform 0.2s;}
.video-card:hover .play-btn{transform:scale(1.1);}
.play-tri{width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent;border-left:18px solid var(--pink);margin-left:4px;}
.video-info{padding:16px 18px 20px;text-align:center;}
.video-info p{font-size:14px;color:#4a3540;line-height:1.5;margin-bottom:14px;min-height:42px;}
.watch-btn{background:var(--pink);color:#fff;border:none;width:100%;padding:11px;font-size:12px;letter-spacing:1.5px;font-weight:700;font-family:'Lato',sans-serif;cursor:pointer;transition:background 0.2s;border-radius:2px;}
.watch-btn:hover{background:var(--pink-dark);}
/* ── PROFESSIONAL VIDEO DESCRIPTIONS ── */

.vc-description {
  margin-top: 9px;
  color: rgba(240, 228, 232, 0.68);
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
}

.vc-description-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vc-description.expanded .vc-description-text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.vc-see-more {
  display: inline-block;
  margin-top: 7px;
  padding: 0;
  border: none;
  background: transparent;
  color: #e0b8c8;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vc-see-more:hover {
  color: #ffffff;
}

/* Stay tuned professional card */

.pro-card.stay-tuned-card {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  border: 1px dashed #c08496;
  background: linear-gradient(
    145deg,
    rgba(192, 132, 150, 0.12),
    rgba(255, 255, 255, 0.92)
  );
  text-align: center;
}

.stay-tuned-content {
  max-width: 260px;
}

.stay-tuned-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: #f2dde5;
  color: #a06878;
  font-size: 24px;
}

.pro-card.stay-tuned-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.pro-card.stay-tuned-card p {
  margin: 0;
  color: #5a4548;
}
/* ── JOURNAL ── */
.journal-sec{padding:80px 96px;background:linear-gradient(135deg,#ead8de 0%,#dfc8d0 100%);}
.journal-inner{display:flex;gap:64px;align-items:center;}
.journal-img-col{flex-shrink:0;width:340px;}
.journal-book{width:100%;border-radius:6px;box-shadow:0 20px 60px rgba(100,60,80,0.2);transition:transform 0.35s;}
.journal-book:hover{transform:translateY(-6px);}
.coming-soon-pill{display:inline-block;background:var(--pink);color:#fff;font-size:11px;letter-spacing:2px;font-weight:700;padding:5px 16px;border-radius:20px;margin-bottom:12px;}
.journal-text h2{font-family:'Cormorant Garamond',serif;font-size:40px;font-weight:500;color:#2a1e22;line-height:1.2;margin-bottom:20px;}
.journal-text h2 em{font-family:'Dancing Script',cursive;font-size:48px;font-style:normal;}
.journal-text p{font-size:15px;line-height:1.85;color:#4a3540;margin-bottom:14px;}
.journal-features{display:flex;flex-wrap:wrap;gap:10px;margin:20px 0 24px;}
.jf{background:#fff;border:1px solid #e0ccd4;border-radius:20px;padding:6px 16px;font-size:12.5px;color:#5a4548;}
/* ── JOURNAL IMAGE CAROUSEL ── */

.journal-carousel {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.journal-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.journal-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.journal-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 6px;
}

.journal-carousel-slide img {
  display: block;
  width: 100%;
  height: 470px;
  margin: 0 auto;
  object-fit: contain;

  /* No border or card background */
  border: none;
  border-radius: 0;
  background: transparent;

  box-shadow: 0 20px 50px rgba(100, 60, 80, 0.18);
}

.journal-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(192, 132, 150, 0.4);
  border-radius: 50%;
  background: rgba(42, 30, 34, 0.88);
  color: #e8d0d8;
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.journal-arrow:hover {
  border-color: #c08496;
  background: #c08496;
  color: #ffffff;
}

.journal-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.journal-arrow-prev {
  left: -22px;
}

.journal-arrow-next {
  right: -22px;
}

.journal-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.journal-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(160, 104, 120, 0.3);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.journal-carousel-dot.active {
  background: #a06878;
  transform: scale(1.35);
}

@media (max-width: 600px) {
  .journal-carousel {
    max-width: 320px;
  }

  .journal-carousel-slide img {
    height: 410px;
  }

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

  .journal-arrow-prev {
    left: 2px;
  }

  .journal-arrow-next {
    right: 2px;
  }
}
/* ── SYMPTOM CHECKER ── */
.symptom-sec{padding:80px 96px;background:linear-gradient(160deg,#f5eaee 0%,#ede0e6 100%);text-align:center;}
.sc-card{background:#fff;border:1px solid #e0ccd4;border-radius:4px;padding:48px 52px;max-width:820px;margin:0 auto;text-align:left;}
.sc-intro{text-align:center;margin-bottom:36px;}
.sc-intro p{font-size:15px;color:#5a4548;line-height:1.75;max-width:560px;margin:0 auto 24px;}
.sc-cats{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:32px;}
.sc-cat{border:1px solid #f0e0e8;border-radius:3px;padding:18px 20px;}
.sc-cat h4{font-family:'Cormorant Garamond',serif;font-size:17px;font-weight:600;color:#2a1e22;margin-bottom:10px;display:flex;align-items:center;gap:8px;}
.sc-cat ul{list-style:none;}
.sc-cat li{font-size:13.5px;color:#5a4548;padding:4px 0;border-bottom:1px solid #f5eaee;display:flex;align-items:center;gap:8px;}
.sc-cat li::before{content:'';width:12px;height:12px;border:1.5px solid var(--pink);border-radius:2px;flex-shrink:0;}
.sc-download-row{text-align:center;}
.sc-note{font-size:12px;color:#888;margin-top:12px;font-style:italic;}

/* ── PROFESSIONALS ── */
.pros{padding:80px 96px;background:linear-gradient(135deg,#ead8de 0%,#dfc8d0 100%);text-align:center;}
.pro-note{font-size:13px;color:var(--pink-dark);font-style:italic;margin-bottom:44px;}
.pro-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:28px;text-align:left;}
.pro-card{background:#fff;border:1px solid #e0ccd4;border-radius:3px;padding:26px 24px;transition:transform 0.2s,box-shadow 0.2s;}
.pro-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(160,100,120,0.12);}
.pro-cat{font-size:10px;letter-spacing:1.5px;color:var(--pink);font-weight:700;text-transform:uppercase;margin-bottom:8px;}
.pro-card h3{font-family:'Cormorant Garamond',serif;font-size:19px;font-weight:600;color:#2a1e22;margin-bottom:8px;}
.pro-card p{font-size:13px;color:#5a4548;line-height:1.65;margin-bottom:14px;}
.pro-links{display:flex;gap:10px;flex-wrap:wrap;}
.pro-link{font-size:12px;color:var(--pink-dark);text-decoration:none;border:1px solid var(--pink-light);border-radius:20px;padding:4px 12px;transition:background 0.2s;}
.pro-link:hover{background:var(--pink-light);}
.charity-note{background:linear-gradient(135deg,#2a1e22,#3d2a30);border-radius:4px;padding:24px 32px;text-align:center;margin-top:8px;}
.charity-note p{color:rgba(240,228,232,0.85);font-size:14px;line-height:1.7;}
.charity-note a{color:#e0b8c8;}

/* ── REVIEWS ── */
.reviews{padding:80px 96px;background:linear-gradient(160deg,#f5eaee 0%,#ede0e6 100%);text-align:center;}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
.review-card{background:#fff;border:1px solid #e0ccd4;border-radius:3px;padding:28px 26px;text-align:left;}
.review-q{font-size:36px;color:var(--pink-light);line-height:1;margin-bottom:12px;font-family:'Cormorant Garamond',serif;}
.review-text{font-size:14.5px;color:#4a3540;line-height:1.75;margin-bottom:16px;font-style:italic;}
.review-name{font-size:13px;font-weight:700;color:#2a1e22;letter-spacing:0.5px;}
.review-detail{font-size:12px;color:#888;margin-top:2px;}
.stars{color:#c08496;font-size:14px;margin-bottom:10px;}
.reviews-cta{margin-top:36px;font-size:14px;color:#5a4548;}

/* ── NEWSLETTER ── */
.newsletter{padding:80px 96px;background:var(--bg-hero);text-align:center;}
.newsletter h2{font-family:'Cormorant Garamond',serif;font-size:40px;font-weight:500;color:#2a1e22;margin-bottom:12px;}
.newsletter p{font-size:15px;color:#4a3540;margin-bottom:32px;line-height:1.75;}
.email-form{display:flex;max-width:480px;margin:0 auto;}
.email-form input{flex:1;padding:14px 18px;border:1.5px solid #c4a0b0;border-right:none;font-size:14.5px;font-family:'Lato',sans-serif;color:var(--text);background:#fff;outline:none;}
.email-form input::placeholder{color:#b09aaa;}
.email-form button{background:var(--pink);color:#fff;border:none;padding:14px 24px;font-size:13.5px;font-family:'Lato',sans-serif;font-weight:700;letter-spacing:0.8px;cursor:pointer;transition:background 0.2s;white-space:nowrap;}
.email-form button:hover{background:var(--pink-dark);}
.newsletter-note{font-size:12px;color:#888;margin-top:12px;font-style:italic;}

/* ── FOOTER ── */
footer{background:#2a1e22;color:rgba(255,255,255,0.75);padding:52px 96px 36px;display:flex;flex-direction:column;align-items:center;gap:24px;}
.footer-links{display:flex;gap:28px;list-style:none;flex-wrap:wrap;justify-content:center;}
.footer-links a{text-decoration:none;color:rgba(255,255,255,0.6);font-size:13px;letter-spacing:0.5px;transition:color 0.2s;}
.footer-links a:hover{color:var(--pink-light);}
.footer-social{display:flex;gap:14px;font-size:17px;}
.footer-social span{cursor:pointer;transition:color 0.2s;}
.footer-social span:hover{color:var(--pink-light);}
.footer-copy{font-size:12px;color:rgba(255,255,255,0.3);border-top:1px solid rgba(255,255,255,0.08);width:100%;text-align:center;padding-top:22px;}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .about{padding:60px 48px;gap:40px;}
  .pro-grid{grid-template-columns:repeat(2,1fr);}
  .journal-inner{gap:40px;}
}
.collective-card {
    max-width: 760px;
    margin: 28px auto 24px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.88);
    border-radius: 28px;
    box-shadow: 0 12px 35px rgba(80, 45, 65, 0.14);
    text-align: center;
}

.collective-card h2 {
    font-family: 'Lato', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    color: #111;
    margin-bottom: 14px;
    font-weight: 700;
}

.collective-strip {
    background: linear-gradient(90deg, #f6bfd3, #f8d5e3);
    color: #8d1f52;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 0 22px 22px 0;
    margin-bottom: 24px;
}

.collective-card p {
    color: #222;
    font-size: clamp(18px, 2.3vw, 27px);
    line-height: 1.55;
    margin: 0 auto 26px;
    max-width: 680px;
}

.collective-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 20px;
}

.collective-icons div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(248, 220, 231, 0.55);
}

.collective-icons span {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.collective-icons h3 {
    color: #9b2457;
    font-size: clamp(18px, 2.2vw, 26px);
    margin: 0;
}

@media (max-width: 700px) {
    .collective-card {
        padding: 22px 16px;
        margin-top: 24px;
    }

    .collective-icons {
        grid-template-columns: 1fr;
    }
}
@media(max-width:1050px){
  nav{padding:0 20px;}
  .nav-links:first-child,.nav-right .nav-links,.nav-social{display:none;}
  .hamburger{display:block;}
  .hero h1{font-size:36px;}
  .about{flex-direction:column;padding:48px 28px;}
  .about-photo{width:100%;min-width:unset;min-height:280px;}
  .events{padding:56px 28px;}
  .event-grid{grid-template-columns:1fr;}
  .convos{padding:56px 28px;}
  .video-grid{grid-template-columns:1fr;}
  .journal-sec{padding:56px 28px;}
  .journal-inner{flex-direction:column;}
  .journal-img-col{width:100%;max-width:320px;margin:0 auto;}
  .symptom-sec{padding:56px 28px;}
  .sc-card{padding:28px 20px;}
  .sc-cats{grid-template-columns:1fr;}
  .pros{padding:56px 28px;}
  .pro-grid{grid-template-columns:1fr;}
  .reviews{padding:56px 28px;}
  .reviews-grid{grid-template-columns:1fr;}
  .newsletter{padding:56px 28px;}
  footer{padding:40px 28px 28px;}
  .section-label{font-size:36px;}
  .section-label em{font-size:44px;}
}
.footer-logo{
display:flex;
justify-content:center;
margin-bottom:24px;
}

.footer-logo img{
width:100px;
height:auto;
object-fit:contain;
filter:drop-shadow(
0 4px 12px
rgba(0,0,0,0.15)
);
transition:transform .3s;
}

.footer-logo img:hover{
transform:scale(1.05);
}
/* ─────────────────────────────
   LADIES LET'S TALK FOOTER
───────────────────────────── */

.site-footer {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(224, 184, 200, 0.11),
      transparent 24%
    ),
    linear-gradient(145deg, #25191e 0%, #3b2530 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(224, 184, 200, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* Main footer layout */

.site-footer .footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(250px, 1.35fr)
    minmax(140px, 0.72fr)
    minmax(140px, 0.72fr)
    minmax(260px, 1.15fr);
  align-items: start;
  gap: 46px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 70px 0 56px;
}

/* Logo */

.site-footer .footer-logo-link {
  display: block;
  width: 166px;
  height: 166px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.site-footer .footer-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: none;
  transition: transform 0.25s ease;
}

.site-footer .footer-logo-link:hover .footer-brand-logo {
  transform: scale(1.03);
}

/* Brand text */

.site-footer .footer-tagline {
  max-width: 310px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.67);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

/* Instagram button */

.site-footer .footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(224, 184, 200, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #f3dce5;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 184, 200, 0.55);
  background: rgba(224, 184, 200, 0.13);
  color: #ffffff;
}

.site-footer .footer-social-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Footer columns */

.site-footer .footer-column,
.site-footer .footer-contact {
  min-width: 0;
  padding-top: 22px;
}

.site-footer .footer-column h3,
.site-footer .footer-contact h3 {
  margin: 0 0 19px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
}

/* Footer navigation
   Uses div.footer-nav so the main website nav CSS
   does not create white boxes.
*/

.site-footer .footer-nav {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-footer .footer-nav a {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Lato", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  white-space: normal;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-nav a:hover {
  transform: translateX(4px);
  color: #f0bfd0;
}

/* Contact section */

.site-footer .footer-small-title {
  display: block;
  margin-bottom: 7px;
  color: #dca9ba;
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.site-footer .footer-contact p {
  max-width: 280px;
  margin: 0 0 19px;
  color: rgba(255, 255, 255, 0.63);
  font-family: "Lato", sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
}

.site-footer .footer-email-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: #f3dce5;
  font-family: "Lato", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer .footer-email-link:hover {
  color: #ffffff;
}

.site-footer .footer-email-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(224, 184, 200, 0.13);
}

.site-footer .footer-email-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* Contact button */

.site-footer .footer-contact-btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 3px;
  background: #c08496;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-contact-btn:hover {
  transform: translateY(-2px);
  background: #a9687c;
  color: #ffffff;
}

/* Copyright */

.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Lato", sans-serif;
  font-size: 11.5px;
}

/* Tablet */

@media (max-width: 980px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-brand,
  .site-footer .footer-contact {
    grid-column: 1 / -1;
  }

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

  .site-footer .footer-tagline {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer .footer-social-links {
    justify-content: center;
  }

  .site-footer .footer-column {
    text-align: center;
  }

  .site-footer .footer-nav {
    align-items: center;
  }

  .site-footer .footer-contact {
    padding: 26px 22px;
    border: 1px solid rgba(224, 184, 200, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
  }

  .site-footer .footer-contact p {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer .footer-email-link {
    justify-content: center;
  }
}

/* Mobile */

@media (max-width: 560px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(calc(100% - 32px), 460px);
    padding: 46px 0 38px;
  }

  .site-footer .footer-brand,
  .site-footer .footer-contact,
  .site-footer .footer-column {
    grid-column: 1;
  }

  .site-footer .footer-logo-link {
    width: 142px;
    height: 142px;
  }

  .site-footer .footer-column {
    padding-top: 0;
    text-align: center;
  }

  .site-footer .footer-nav {
    align-items: center;
  }

  .site-footer .footer-contact {
    padding: 26px 18px;
  }

  .site-footer .footer-email-link {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer .footer-bottom {
    width: min(calc(100% - 32px), 460px);
  }
}

/* ─────────────────────────────────────
   LADIES LET'S TALK — MAILERLITE SIGNUP
───────────────────────────────────── */

.newsletter-signup {
  position: relative;
  overflow: hidden;
  padding: 90px 40px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(192,132,150,0.16),
      transparent 28%
    ),
    linear-gradient(135deg,#ead8de 0%,#f5eaee 100%);
}

/* subtle decorative circle */
.newsletter-signup::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -140px;
  top: -160px;
  border: 1px solid rgba(160,104,120,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;

  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 58px 60px;

  border: 1px solid rgba(192,132,150,0.22);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(42,30,34,0.98),
      rgba(61,42,48,0.98)
    );

  box-shadow:
    0 28px 70px rgba(80,45,65,0.20);
}


/* ── LEFT CONTENT ── */

.newsletter-copy {
  max-width: 460px;
}

.newsletter-eyebrow {
  display: inline-block;
  margin-bottom: 15px;

  color: #dca9ba;

  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.newsletter-copy h2 {
  margin: 0 0 18px;

  color: #ffffff;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;

  line-height: 1.05;
}

.newsletter-copy h2 em {
  display: inline-block;

  color: #e0b8c8;

  font-family: "Dancing Script", cursive;
  font-size: 1.12em;
  font-weight: 600;
  font-style: normal;
}

.newsletter-copy p {
  max-width: 430px;
  margin: 0;

  color: rgba(255,255,255,0.68);

  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}


/* little decorative line */

.newsletter-copy::after {
  content: "";
  display: block;

  width: 54px;
  height: 2px;

  margin-top: 28px;

  background: #c08496;
}


/* ─────────────────────────
   MAILERLITE FORM OVERRIDES
───────────────────────── */

.newsletter-form {
  min-width: 0;
  width: 100%;
}


/* remove MailerLite outer styling */

.newsletter-form .ml-form-embedContainer {
  display: block !important;
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
}


/* turn MailerLite into our own card */

.newsletter-form .ml-form-embedWrapper {
  display: block !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid rgba(224,184,200,0.18) !important;
  border-radius: 10px !important;

  background: rgba(255,255,255,0.07) !important;

  box-shadow: none !important;
}


/* form body */

.newsletter-form .ml-form-embedBody,
.newsletter-form .ml-form-successBody {
  padding: 34px !important;
}


/* remove MailerLite's extra heading if present */

.newsletter-form .ml-form-embedContent h4 {
  color: #ffffff !important;

  font-family: "Cormorant Garamond", serif !important;
  font-size: 30px !important;
  font-weight: 500 !important;

  line-height: 1.2 !important;
}


/* form description */

.newsletter-form .ml-form-embedContent p {
  color: rgba(255,255,255,0.66) !important;

  font-family: "Lato", sans-serif !important;
  font-size: 13.5px !important;

  line-height: 1.7 !important;
}


/* labels */

.newsletter-form
.ml-form-embedWrapper
.ml-block-form
.ml-field-group label {

  margin-bottom: 7px !important;

  color: #e8d0d8 !important;

  font-family: "Lato", sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;

  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
}


/* INPUTS */

.newsletter-form
.ml-form-embedWrapper
.ml-form-fieldRow input {

  width: 100% !important;

  padding: 14px 16px !important;

  border: 1px solid rgba(224,184,200,0.35) !important;
  border-radius: 4px !important;

  background: rgba(255,255,255,0.97) !important;

  color: #3a2e30 !important;

  font-family: "Lato", sans-serif !important;
  font-size: 14px !important;

  outline: none !important;

  transition:
    border-color .2s ease,
    box-shadow .2s ease !important;
}


.newsletter-form
.ml-form-embedWrapper
.ml-form-fieldRow input:focus {

  border-color: #c08496 !important;

  box-shadow:
    0 0 0 3px rgba(192,132,150,0.17) !important;
}


/* placeholder */

.newsletter-form input::placeholder {
  color: #a9929b !important;
}


/* field spacing */

.newsletter-form .ml-form-fieldRow {
  margin-bottom: 14px !important;
}


/* ── SUBSCRIBE BUTTON ── */

.newsletter-form
.ml-form-embedWrapper
.ml-form-embedSubmit button {

  width: 100% !important;

  padding: 15px 24px !important;

  border: 0 !important;
  border-radius: 4px !important;

  background: #c08496 !important;

  color: #ffffff !important;

  font-family: "Lato", sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;

  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;

  cursor: pointer !important;

  box-shadow:
    0 8px 20px rgba(192,132,150,0.22) !important;

  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease !important;
}


.newsletter-form
.ml-form-embedWrapper
.ml-form-embedSubmit button:hover {

  background: #a06878 !important;

  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(192,132,150,0.30) !important;
}


/* ── GDPR / CHECKBOX TEXT ── */

.newsletter-form .ml-form-checkboxRow label,
.newsletter-form .ml-form-embedPermissions label,
.newsletter-form .ml-form-embedPermissions p {

  color: rgba(255,255,255,0.60) !important;

  font-family: "Lato", sans-serif !important;
  font-size: 11.5px !important;

  line-height: 1.55 !important;
}


/* links in privacy wording */

.newsletter-form .ml-form-embedPermissions a,
.newsletter-form .ml-form-checkboxRow a {

  color: #e0b8c8 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}


/* SUCCESS MESSAGE */

.newsletter-form .ml-form-successContent h4 {

  color: #ffffff !important;

  font-family: "Cormorant Garamond", serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;

  text-align: center !important;
}


.newsletter-form .ml-form-successContent p {

  color: rgba(255,255,255,0.72) !important;

  font-family: "Lato", sans-serif !important;
  font-size: 14px !important;

  text-align: center !important;
}


/* ─────────────────────────
   TABLET
───────────────────────── */

@media (max-width: 900px) {

  .newsletter-signup {
    padding: 64px 28px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;

    gap: 38px;

    padding: 48px 42px;

    text-align: center;
  }

  .newsletter-copy {
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-copy p {
    margin: 0 auto;
  }

  .newsletter-copy::after {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ─────────────────────────
   MOBILE
───────────────────────── */

@media (max-width: 560px) {

  .newsletter-signup {
    padding: 42px 16px;
  }

  .newsletter-inner {
    gap: 30px;

    padding: 38px 20px;

    border-radius: 10px;
  }

  .newsletter-copy h2 {
    font-size: 39px;
  }

  .newsletter-copy p {
    font-size: 14px;
  }

  .newsletter-form .ml-form-embedBody,
  .newsletter-form .ml-form-successBody {
    padding: 24px 18px !important;
  }

}