:root {
  --green: #24471f;
  --green-deep: #21431d;
  --cta: #35e244;
  --teal: #245968;
  --white: #ffffff;
  --text: #1d1d1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.section {
  width: 100%;
}

.section--green {
  color: var(--white);
  background: var(--green);
}

.section--white {
  background: var(--white);
}

.container {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
}

.media {
  width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.12;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: clamp(1.65rem, 2.3vw, 2.6rem);
  line-height: 1.15;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 2px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.button--whatsapp {
  background: var(--cta);
}

.button--instagram {
  background: linear-gradient(180deg, #9f3de9 0%, #4035d4 100%);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45em;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✅";
  font-size: 0.95em;
}

.hero {
  padding: 82px 0;
}

.split--hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(42px, 5vw, 78px);
}

.hero h1 {
  font-size: clamp(2.1rem, 2.9vw, 3.1rem);
}

.hero__content > p:not(.eyebrow) {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.34vw, 1.22rem);
}

.hero__image {
  max-height: 760px;
}

.check-list--hero {
  margin-bottom: 42px;
  color: #35e071;
  font-size: clamp(0.87rem, 1.12vw, 1.05rem);
}

.treatment {
  padding: 110px 0 95px;
  color: var(--teal);
  text-align: center;
}

.treatment__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.treatment h2 {
  margin-bottom: 46px;
}

.treatment__list {
  margin-bottom: 58px;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.27rem);
}

.treatment__note {
  margin-bottom: 46px;
  font-size: clamp(1rem, 1.5vw, 1.27rem);
}

.treatment__image {
  width: min(100%, 420px);
  margin-top: 34px;
}

.bio {
  padding: 65px 0;
}

.split--bio {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
}

.bio h2 {
  margin-bottom: 48px;
}

.bio ul {
  margin: 0 0 42px;
  padding-left: 1.35em;
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
}

.bio li + li {
  margin-top: 8px;
}

.bio__image {
  max-height: 780px;
}

.benefits {
  overflow: hidden;
}

.split--benefits {
  min-height: 660px;
  grid-template-columns: minmax(0, 1.1fr) minmax(410px, 0.9fr);
}

.benefits__content {
  padding: 75px 0;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
}

.benefits__content > p {
  margin-bottom: 46px;
}

.benefits__list {
  max-width: 770px;
  margin-bottom: 48px;
}

.benefits__image {
  height: 100%;
  min-height: 660px;
}

.lower {
  padding: 56px 0 0;
}

.faq {
  text-align: center;
}

.faq h2 {
  margin-bottom: 12px;
}

.faq > p {
  margin-bottom: 46px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.faq ul {
  width: min(100%, 1160px);
  margin: 0 auto 48px;
  padding-left: 1.5em;
  text-align: left;
  font-size: clamp(0.98rem, 1.25vw, 1.15rem);
}

.faq li + li {
  margin-top: 30px;
}

.instagram {
  margin-top: 62px;
  text-align: center;
}

.instagram h2 {
  margin-bottom: 22px;
}

.instagram__image {
  width: min(100%, 1200px);
  margin: 0 auto 38px;
}

.location {
  margin-top: 92px;
}

.location h2 {
  margin-bottom: 26px;
}

.location p {
  margin-bottom: 25px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 600;
}

.location__map-link {
  display: block;
  cursor: pointer;
}

.location__map-link:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 4px;
}

.location__map {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  padding: 72px 24px 46px;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 650px);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  h1 br,
  h2 br {
    display: none;
  }

  .hero {
    padding: 50px 0;
  }

  .hero__content {
    text-align: left;
  }

  .hero__image {
    max-height: none;
  }

  .treatment {
    padding: 70px 0 60px;
  }

  .treatment h2,
  .treatment__list,
  .treatment__note {
    margin-bottom: 34px;
  }

  .treatment__note br {
    display: none;
  }

  .bio {
    padding: 58px 0;
  }

  .bio h2 {
    margin-bottom: 30px;
  }

  .benefits__content {
    padding: 64px 0 16px;
  }

  .benefits__content > p {
    margin-bottom: 30px;
  }

  .benefits__image {
    height: auto;
    min-height: 0;
  }

  .lower {
    padding-top: 50px;
  }

  .faq > p {
    margin-bottom: 32px;
  }

  .faq li + li {
    margin-top: 22px;
  }

  .instagram {
    margin-top: 52px;
  }

  .location {
    margin-top: 64px;
  }

  footer {
    padding-top: 55px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 30px, 440px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .eyebrow {
    font-size: 1.5rem;
  }

  .button {
    width: 100%;
  }

  .treatment__list {
    width: 100%;
  }

  .bio ul,
  .faq ul {
    padding-left: 1.2em;
  }

}
