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

:root {
  --pink: #EDBFD8;
  --violet: #6b4c63;
  --yellow: #ffd966;
  --black: #000;
  --white: #fff;
  --gray: #4a4a4a;
  --gray-light: #707070;
  
  --font-heading: "Dosis", sans-serif;
  --font-body: "Pontano Sans", sans-serif;
  
  --container: 1100px;
  --gutter: clamp(20px, 4vw, 60px);
  
  --radius: 20px;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--violet);
}

a {
  text-decoration: none;
  transition: all var(--transition);
}

[hidden] {
  display: none !important;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--violet);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav__link {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}

.nav__link:hover {
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all var(--transition);
}

.nav-toggle.active .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-mobile__link {
  display: block;
  padding: 12px 0;
  color: var(--gray);
  font-weight: 500;
}

.nav-mobile__link:hover {
  color: var(--black);
}

.intro {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.intro__bg {
  position: absolute;
  inset: 0;
  background: var(--pink);
  z-index: -1;
}

.intro__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/intro.jpg') center/cover;
  opacity: 0.3;
}

.intro__content {
  position: relative;
  z-index: 2;
  animation: fadeIn 0.8s ease-out;
}

.intro__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro__lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--white);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 217, 102, 0.4);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 80px 0;
  position: relative;
  background: var(--white);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.section--pink {
  background: var(--pink);
  overflow: hidden;
}

.section--pink .section__title {
  color: var(--black);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.section--pink .section__subtitle {
  color: var(--violet);
  font-weight: 500;
}

.section__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  transform: skewY(-2deg);
  transform-origin: top left;
}

.bio {
  max-width: 1000px;
  margin: 0 auto 60px;
  /* text-align: center; */
}

.bio__photo {
  margin: 0 auto 40px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio__text {
  max-width: 70ch;
  margin: 0 auto;
}

.bio__subtitle {
  margin: 22px 0 10px;
  font-size: 1.4rem;
  color: var(--violet);
}

.callout {
  margin: 18px 0 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.price-levels {
  margin: 10px 0 18px;
  padding-left: 1.2rem;
}

.price-levels li {
  margin: 10px 0;
}

/* .bio__text p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
} */

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
}

.feature {
  text-align: center;
  padding: 25px 15px;
  background: transparent;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
  font-weight: 500;
  color: var(--black);
  font-size: 0.95rem;
}

.feature:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
}
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.price-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.6s ease-out !important;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px) !important;
}

.price-card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--black);
  font-weight: 700;
}

.price-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--violet);
  margin-bottom: 20px;
}

.price-card__description {
  margin-bottom: 30px;
  min-height: 80px;
  line-height: 1.6;
}

.pricing__note {
  text-align: center;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.footer {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer__title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--black);
  font-weight: 700;
}

.footer__link {
  color: var(--gray);
  font-weight: 500;
}

.footer__link:hover {
  color: var(--black);
  text-decoration: underline;
}

.footer__copy {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-light);
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .intro {
    min-height: 500px;
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section__shape {
    height: 60px;
  }
  
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .bio__photo {
    width: 250px;
    height: 250px;
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .feature {
    padding: 20px 10px;
  }
  
  .feature__text {
    font-size: 0.85rem;
  }
  
  .bio__photo {
    width: 200px;
    height: 200px;
  }
}