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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fffff1;
  color: #444;
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

.section {
  padding: 40px 8%;
}

.soft-section {
  background: #ffffff;
}

.section-container {
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 850px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #5b6028;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.section-tag,
.hero-tag {
  display: inline-block;
  background: rgba(181, 121, 115, 0.15);
  color: #b57973;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-weight: 600;
}
/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 241, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #b57973;
}

.nav-btn,
.btn-primary,
.btn-secondary {
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-btn,
.btn-primary {
  background: #5b6028;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-block;
}

.nav-btn:hover,
.btn-primary:hover {
  background: #b57973;
  transform: translateY(-2px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(181, 121, 115, 0.25);
}

.btn-secondary {
  border: 1px solid #5b6028;
  color: #5b6028;
  padding: 14px 28px;
  border-radius: 50px;
}

.btn-secondary:hover {
  background: #5b6028;
  color: white;
}

/* HERO */

.hero {
  padding: 70px 8% 90px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 70px;
}
.hero-container {
  max-width: 1300px;
  margin: auto;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.hero-text {
  margin-top: -90px;
  max-width: 580px;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
  color: #5b6028;
  font-weight: 600;
  max-width: 900px;
}
.hero-image img {
  width: 530px;
  height: 200;
  border-radius: 30px;
  margin-top: -35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
}

.hero-description {
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.trust-line {
  display: flex;
  gap: 15px;
  color: #777;
  flex-wrap: wrap;
}
/* DESKTOP HERO CREDENTIALS */

.hero-credentials {
  margin-top: 18px;
  text-align: center;
}

.hero-credentials h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #5b6028;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.hero-credentials p {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-credentials span {
  font-size: 0.8rem;
  color: #777;
}
/* CARDS */

.cards-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card,
.faq-item {
  background: white;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.benefit-item {
  background: rgba(181, 121, 115, 0.08);
  padding: 24px;
  border-radius: 20px;
  font-weight: 500;
}

.center-button {
  text-align: center;
  margin-top: 60px;
}

/* ABOUT */

.about-grid,
.booklet-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img,
.booklet-image img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.credentials-box {
  margin-top: 40px;
  background: rgba(91, 96, 40, 0.07);
  padding: 35px;
  border-radius: 24px;
}

/* SERVICES */

.service-card {
  text-align: center;
}

.price {
  margin-top: 25px;
  font-size: 2rem;
  color: #5b6028;
  font-weight: 700;
}

.small-btn {
  margin-top: 20px;
}

/* FAQ */

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
}
.faq-item {
  background: #f7efed;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(181, 121, 115, 0.12);
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(181, 121, 115, 0.08);
}
/* CTA */

.final-cta {
  padding: 130px 8%;
  text-align: center;
  background: #5b6028;
  color: white;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  max-width: 750px;
  margin: 0 auto 40px;
}

.final-cta .btn-primary {
  background: white;
  color: #5b6028;
}

/* TESTIMONIALS */

.testimonials-section {
  background: #fffff1;
}

.testimonials-intro {
  max-width: 1200px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: rgba(181, 121, 115, 0.25);
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.9;
}

.testimonial-client {
  color: #5b6028;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
/* LEGAL PAGES */

.legal-section {
  padding: 120px 8%;
  background: #fffff1;
}

.legal-container {
  max-width: 900px;
  margin: auto;
}

.legal-updated {
  color: #777;
  margin-bottom: 50px;
}

.legal-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 28px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.legal-card h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card li {
  margin-bottom: 12px;
}

.legal-card a {
  color: #b57973;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #5b6028;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #b57973;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 100px 7%;
  }

  .legal-card {
    padding: 30px;
  }
}
/* FOOTER */

.footer {
  background: #ffffff;
  padding: 80px 8% 50px;
  text-align: center;
  border-top: 1px solid rgba(91, 96, 40, 0.08);
}

.footer-content {
  max-width: 900px;
  margin: auto;
}

.footer-logo {
  width: 180px;
  display: block;
  margin: 0 auto 30px auto;
}
.footer-description {
  font-size: 1.05rem;
  color: #5b6028;
  margin-bottom: 10px;
}

.footer-subtext {
  color: #777;
  margin-bottom: 35px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  background: #fffff1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6028;
  font-size: 1.1rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #b57973;
  color: white;
  transform: translateY(-3px);
}

.footer-contact {
  margin-bottom: 35px;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #666;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.footer-links a {
  text-decoration: none;
  color: #5b6028;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #b57973;
}

.footer-copy {
  color: #999;
  font-size: 0.9rem;
}

/* ===================================================== */
/* CLEAN MOBILE VERSION */
/* ===================================================== */

.menu-toggle {
  display: none;
}

.mobile-book-btn {
  display: none;
}
/* DEFAULT */

.mobile-hero-title,
.mobile-subtitle {
  display: none;
}

@media (max-width: 768px) {
  /* GENERAL */
  /* MOBILE HERO TEXT */

  .desktop-hero-title,
  .desktop-subtitle {
    display: none;
  }

  .mobile-hero-title,
  .mobile-subtitle {
    display: block;
  }

  body {
    overflow-x: hidden;
    padding-bottom: 110px;
  }

  .section {
    padding: 60px 6%;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  p {
    font-size: 1rem;
  }

  /* NAVBAR */

  .navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 241, 0.96);
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 14px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    height: 42px;
  }

  /* MENU BUTTON */

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: #5b6028;
  }

  /* MOBILE MENU */

  .nav-menu {
    display: none;

    position: absolute;
    top: 72px;
    right: 6%;

    background: white;

    padding: 24px;

    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

    flex-direction: column;

    gap: 18px;

    min-width: 220px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 1rem;
    color: #5b6028;
    text-decoration: none;
  }

  .nav-btn {
    display: none;
  }

  /* HERO */

  .hero {
    padding: 15px 6% 15px;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-top {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 15px;
    margin-bottom: 0;
    align-items: start;
    width: 100%;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  section.hero {
    min-height: auto !important;
  }
  /* LEFT SIDE */

  .hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 165px;
  }

  .hero-image img {
    width: 165px;
    height: 265px;

    object-fit: cover;

    border-radius: 24px;

    margin-top: 0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .hero-credentials {
    margin-top: 10px;

    text-align: center;
  }

  .hero-credentials h4 {
    font-size: 0.8rem;

    margin-bottom: 1px;

    color: #5b6028;

    line-height: 1.2;
    letter-spacing: 0.3px;

    font-family: "Playfair Display", serif;
  }

  .hero-credentials p {
    font-size: 0.64rem;

    color: #666;

    margin-bottom: 0;

    line-height: 1.3;
    text-transform: uppercase;

    letter-spacing: 1px;
  }

  .hero-credentials span {
    font-size: 0.62rem;

    letter-spacing: 0.5px;

    white-space: nowrap;
  }

  /* RIGHT SIDE */

  .hero-text {
    text-align: left;
    margin-top: -10px;
    width: 100%;
  }

  .hero-tag {
    display: none;
  }

  .mobile-hero-title {
    font-size: 1.6rem !important;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 10px;
    margin-top: 2px;
  }
  .hero-subtitle {
    font-size: 0.82rem;

    line-height: 1.6;

    margin-bottom: 0;
  }

  .hero-description,
  .trust-line {
    display: none;
  }

  /* BUTTONS */

  .hero-buttons {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 14px;

    margin-top: 26px;

    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    align-self: center;
    display: none;
  }

  /* GRIDS */

  .cards-grid,
  .benefits-grid,
  .testimonials-grid,
  .about-grid,
  .booklet-grid {
    grid-template-columns: 1fr;
  }

  /* CARDS */

  .card,
  .faq-item,
  .testimonial-card,
  .legal-card {
    padding: 28px;

    border-radius: 24px;
  }

  /* FOOTER */

  .footer {
    padding: 70px 6% 130px;
  }

  .footer-links {
    flex-direction: column;

    gap: 14px;
  }

  /* FLOATING BUTTON */

  .mobile-book-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    position: fixed;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    background: #5b6028;
    color: white;

    padding: 16px 28px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    z-index: 9999;
  }
}
.hero-description {
  display: none;
}
#therapy {
  padding-top: 10px;
}
