/*
Theme Name: Women's Clarity Lab
Theme URI: https://womensclarity.com
Author: Mansi Sagar Sachde
Author URI: https://womensclarity.com
Description: A warm, elegant life coaching theme for Women's Clarity Lab by Mansi Sagar Sachde — Women's Clarity & Life Empowerment Coach.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: womens-clarity-lab
Tags: coaching, women, empowerment, one-page, elegant
*/

/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --cream: #FEF8EE;
  --cream2: #F5EDD8;
  --gold-dark: #6B4408;
  --gold-mid: #9E6C1A;
  --gold: #C6982A;
  --gold-lt: #D4A843;
  --gold-pale: #EDD890;
  --gold-wash: #F5E8C0;
  --teal: #1A5850;
  --charcoal: #2A1E0E;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* =============================================
   NAVIGATION
   ============================================= */
nav,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 248, 238, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-pale);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold-dark);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  color: var(--cream);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5% 80px 8%;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
h1.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 420px;
  margin: 20px 0 40px;
}
.hero-sub strong { color: var(--gold-dark); font-weight: 600; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-dark);
  color: var(--cream);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(101, 68, 8, 0.25);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  color: var(--cream);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--gold-wash);
  transform: translateY(-2px);
  color: var(--gold-dark);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-pale);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream2) 0%, var(--gold-wash) 100%);
}
.hero-photo-frame {
  position: absolute;
  inset: 40px 40px 40px 0;
  border-radius: 4px 160px 4px 160px;
  overflow: hidden;
  background: var(--gold-pale);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  left: -16px;
  background: var(--white);
  border: 2px solid var(--gold-pale);
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: 0 8px 40px rgba(101, 68, 8, 0.15);
  z-index: 3;
}
.badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.badge-role { font-size: 0.68rem; color: var(--gold-mid); }

/* =============================================
   TAGLINE BAND
   ============================================= */
.tagline-band {
  background: var(--gold-dark);
  padding: 18px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.tag-item {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tag-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
.tag-item:last-child::after { display: none; }

/* =============================================
   SECTIONS COMMON
   ============================================= */
section { padding: 96px 8%; }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  text-align: center;
  color: var(--gold-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  text-align: center;
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 60px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--cream2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: 120px 8px 120px 8px;
  object-fit: cover;
  height: 500px;
  box-shadow: 16px 16px 0 var(--gold-pale);
}
.about-img-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: var(--gold-dark);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(101, 68, 8, 0.3);
  text-align: center;
}
.about-img-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .txt {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1.2;
  margin-bottom: 22px;
}
.about h2 em { font-style: italic; color: var(--gold); }
.about p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.about-tag {
  background: var(--gold-wash);
  color: var(--gold-dark);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 500;
  border: 1px solid var(--gold-pale);
}

.about-sig {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-style: italic;
  color: var(--gold);
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: 20px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.service-card:not(.locked):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(101, 68, 8, 0.1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-lt));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-card:not(.locked):hover::before { transform: scaleX(1); }

.service-icon { font-size: 1.9rem; margin-bottom: 16px; display: block; }

.service-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; color: var(--gold); }

.service-card.locked { cursor: default; }
.lock-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(245, 237, 216, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.lock-icon { font-size: 1.6rem; }
.lock-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 5px 14px;
  border-radius: 50px;
}

/* =============================================
   MODULES
   ============================================= */
.modules { background: var(--cream2); }

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

.module-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--gold-pale);
  transition: all 0.3s;
  position: relative;
}
.module-item:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(101, 68, 8, 0.07);
}
.mod-badge {
  background: var(--gold-dark);
  color: var(--cream);
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.mod-desc {
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.7;
}
.mod-ro {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: var(--gold-wash);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--gold-pale);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(101, 68, 8, 0.08);
}
.testi-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 22px;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gold-pale);
  padding-top: 16px;
}
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.testi-name { font-weight: 600; font-size: 0.86rem; color: var(--gold-dark); }
.testi-role { font-size: 0.72rem; color: var(--gold-mid); }

/* =============================================
   BOOKING
   ============================================= */
.booking {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #3A1C04 100%);
  text-align: center;
  padding: 110px 8%;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  width: 550px; height: 550px;
  border-radius: 50%;
  border: 1px solid rgba(198, 152, 42, 0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.booking::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(198, 152, 42, 0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.booking-inner { position: relative; z-index: 1; }

.booking-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.booking h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}
.booking h2 em { font-style: italic; color: var(--gold-pale); }

.booking-intro {
  font-size: 1rem;
  color: rgba(254, 248, 238, 0.75);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.booking-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(198, 152, 42, 0.35);
  border-radius: 24px;
  padding: 42px 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 460px;
  width: 100%;
}

.booking-steps {
  display: flex;
  gap: 20px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.bstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.bstep-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.bstep-txt {
  font-size: 0.68rem;
  color: rgba(254, 248, 238, 0.65);
  text-align: center;
  max-width: 85px;
}
.bstep-arrow {
  color: rgba(254, 248, 238, 0.25);
  font-size: 1.2rem;
  padding-top: 8px;
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.28);
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.booking-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}
.booking-ig {
  font-size: 0.76rem;
  color: rgba(254, 248, 238, 0.5);
  letter-spacing: 0.08em;
}
.booking-div {
  width: 56px;
  height: 1px;
  background: rgba(198, 152, 42, 0.28);
}

/* =============================================
   FOOTER
   ============================================= */
footer,
.site-footer {
  background: var(--charcoal);
  padding: 56px 8% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 10px;
}
.footer-tag {
  font-size: 0.8rem;
  color: rgba(254, 248, 238, 0.48);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-contact {
  font-size: 0.78rem;
  color: rgba(254, 248, 238, 0.62);
  line-height: 2.1;
}
.footer-contact a { color: var(--gold-lt); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-pale); }

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(254, 248, 238, 0.48);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-pale); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(254, 248, 238, 0.28);
}
.footer-copy span { color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-eyebrow { animation-delay: 0.1s; }
h1.hero-title { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-btns { animation-delay: 0.5s; }
.hero-stats { animation-delay: 0.65s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   WORDPRESS ALIGNMENT CLASSES
   ============================================= */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gold-mid); text-align: center; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about { grid-template-columns: 1fr; padding: 64px 6%; }
  .services-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .booking-card { padding: 30px 24px; }
  section { padding: 70px 6%; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
