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

body {
  font-family: 'Libre Franklin', sans-serif;
  color: #5A4A42;
  background-color: #F9F7F4;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Abhaya Libre', serif;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #44647B;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.3rem;
  color: #F9F7F4;
  text-decoration: none;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #F4DFDA;
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-links .dropdown {
  position: relative;
  cursor: pointer;
}

.nav-links .dropdown::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #44647B;
  min-width: 200px;
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 200;
}

.dropdown-wrapper:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #F4DFDA;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.1);
  color: #F9F7F4;
}

.nav-cta {
  background: #C98786;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Abhaya Libre', serif;
}

.nav-cta:hover {
  background: #A8806F;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #F9F7F4;
}

/* HERO */
.hero {
  background: #F9F7F4;
  padding: 60px 40px 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  max-width: 1150px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 540px;
}

.hero-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C98786;
  margin-bottom: 10px;
}

.hero-headline {
  font-family: 'Abhaya Libre', serif;
  font-size: 48px;
  font-weight: 700;
  color: #44647B;
  margin-bottom: 12px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 72px;
  }
}

.hero-subheadline {
  font-family: 'Abhaya Libre', serif;
  font-size: 24px;
  color: #C98786;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.4;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 30px;
  }
}

.hero-body {
  font-size: 16px;
  color: #5A4A42;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-cta {
  display: inline-block;
  background: #C98786;
  color: #fff;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Abhaya Libre', serif;
}

.hero-cta:hover {
  background: #A8806F;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  align-self: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* TWO SIDES */
.two-sides {
  background: #F4DFDA;
  padding: 80px 40px;
}

.two-sides-inner {
  max-width: 800px;
  margin: 0 auto;
}

.two-sides-title {
  font-family: 'Abhaya Libre', serif;
  font-size: 2.4rem;
  color: #44647B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}





.two-sides-body {
  font-size: 1rem;
  color: #5A4A42;
  margin-bottom: 24px;
  line-height: 1.8;
}

.side-label {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.2rem;
  color: #C98786;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
  margin-top: 28px;
}

.two-sides-highlight {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.25rem;
  color: #44647B;
  text-align: center;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 24px;
  font-style: italic;
}

.center-cta {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background: #C98786;
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Abhaya Libre', serif;
}

.cta-button:hover {
  background: #A8806F;
}

.cta-arrow::after {
  content: '';
}

/* WHY IT HURTS */
.why-hurts {
  background: #F9F7F4;
  padding: 80px 40px;
}

.why-hurts-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Abhaya Libre', serif;
  font-size: 2.4rem;
  color: #44647B;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.why-hurts-body {
  font-size: 1rem;
  color: #5A4A42;
  margin-bottom: 20px;
  line-height: 1.8;
}

.highlight-text {
  color: #C98786;
  font-weight: 600;
}

.bold-highlight {
  color: #44647B;
  font-weight: 700;
}

/* WHY PAIN HASN'T GONE */
.why-pain {
  background: #F4DFDA;
  padding: 80px 40px;
}

.why-pain-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-subheading {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.25rem;
  color: #44647B;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-pain-body {
  font-size: 1rem;
  color: #5A4A42;
  margin-bottom: 20px;
  line-height: 1.8;
}

.italic-highlight {
  font-style: italic;
  color: #C98786;
}

/* WHAT HELPS */
.what-helps {
  background: #F4DFDA;
  padding: 80px 40px;
}

.what-helps-inner {
  max-width: 800px;
  margin: 0 auto;
}

.what-helps-body {
  font-size: 1rem;
  color: #5A4A42;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* HOW IT WORKS / METHOD */
.method {
  background: #F9F7F4;
  padding: 80px 40px;
}

.method-inner {
  max-width: 800px;
  margin: 0 auto;
}

.method-body {
  font-size: 1rem;
  color: #5A4A42;
  margin-bottom: 20px;
  line-height: 1.8;
}

.method-sub {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.55rem;
  color: #44647B;
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 600;
}

.pillar-title {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.2rem;
  color: #C98786;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.shift-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}





/* AREAS OF SUPPORT */
.areas {
  background: #F9F7F4;
  padding: 80px 40px;
}

.areas-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* PRICING */
.pricing {
  background: #F4DFDA;
  padding: 80px 40px;
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ABOUT */
.about {
  background: #F9F7F4;
  padding: 80px 40px;
}

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

.about-photo-round {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.about-welcome {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.3rem;
  color: #C98786;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
}

.about-signature {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.3rem;
  color: #C98786;
  font-weight: 600;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: #44647B;
  color: #F9F7F4;
  padding: 40px;
  text-align: center;
}

.footer a {
  color: #F4DFDA;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.85rem;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #C69F91;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    align-items: center;
  }
  .hero-headline {
    font-size: 48px;
    white-space: normal;
  }
  .hero-image {
    max-width: 100%;
    align-self: auto;
  }
  .hero-image img {
    height: auto;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #f5e6dc;
    padding: 20px;
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
    background: #44647B;
  }
  .mobile-toggle {
    display: block;
  }
  .nav {
    padding: 16px 20px;
  }
  .two-sides, .why-hurts, .why-pain, .what-helps, .method {
    padding: 50px 20px;
  }
  .section-heading, .two-sides-title {
    font-size: 1.85rem;
  }
}
