:root {
  --ink: #2d2924;
  --muted: #5d6c70;
  --line: #ded8cc;
  --paper: #fbfdfc;
  --soft: #f4f1eb;
  --mint: #bdb29e;
  --mint-dark: #9f927b;
  --coral: #d06c55;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(45, 41, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(251, 253, 252, 0.92);
  border-bottom: 1px solid rgba(217, 230, 226, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo {
  width: 128px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--mint-dark);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--mint-dark);
  border-radius: 8px;
  font-weight: 700;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 78px) 72px;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 23, 25, 0.78) 0%, rgba(5, 23, 25, 0.5) 45%, rgba(5, 23, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 23, 25, 0.28), rgba(5, 23, 25, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc6b8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.header-action:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--mint-dark);
  box-shadow: 0 14px 28px rgba(159, 146, 123, 0.28);
}

.button.primary:hover {
  background: var(--mint);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.button.large {
  min-width: 190px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info span {
  color: var(--muted);
  margin-top: 4px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.proof-strip article {
  min-height: 170px;
  padding: 26px clamp(18px, 3vw, 34px);
  background: var(--soft);
}

.proof-strip span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--mint-dark);
  border-radius: 8px;
  font-weight: 900;
}

.proof-strip strong,
.proof-strip p {
  display: block;
}

.proof-strip strong {
  margin-top: 16px;
  font-size: 1.08rem;
}

.proof-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section,
.split-section,
.cta-section,
.contact-section,
.comfort-section,
.testimonials-section,
.faq-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 78px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.treatment-card,
.contact-card,
.contact-form,
.steps-grid article,
.testimonial-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(45, 41, 36, 0.06);
}

.treatment-card {
  min-height: 232px;
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--mint-dark);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 900;
}

.treatment-card p,
.split-copy p,
.cta-section p,
.contact-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--soft);
}

.split-copy {
  max-width: 680px;
}

.split-copy p {
  font-size: 1.08rem;
}

.split-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint-dark);
  content: "✓";
  font-weight: 900;
}

.comfort-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(45, 41, 36, 0.95), rgba(82, 74, 62, 0.76)),
    url("https://images.unsplash.com/photo-1609840114035-3c981b782dfe?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.comfort-content {
  max-width: 760px;
}

.comfort-section .eyebrow {
  color: #ffc6b8;
}

.comfort-list {
  display: grid;
  max-width: 620px;
  gap: 12px;
  margin-top: 28px;
}

.comfort-list p {
  margin: 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.comfort-list strong {
  color: var(--white);
}

.steps-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article,
.testimonial-grid article {
  padding: 26px;
}

.steps-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--mint-dark);
  border-radius: 50%;
  font-weight: 900;
}

.steps-grid p,
.testimonial-grid p,
.faq-list p {
  color: var(--muted);
}

.testimonials-section,
.faq-section {
  background: var(--soft);
}

.testimonial-grid p {
  margin-top: 0;
  font-size: 1.05rem;
}

.testimonial-grid strong {
  color: var(--mint-dark);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0 0 20px;
}

.cta-section {
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.cta-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(280px, 1fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.contact-card,
.contact-form,
.map-card {
  padding: clamp(22px, 4vw, 36px);
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(45, 41, 36, 0.06);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 6px;
}

.contact-card h2 {
  margin-bottom: 18px;
}

.text-link {
  color: var(--mint-dark);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font: inherit;
}

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  filter: drop-shadow(0 14px 24px rgba(31, 174, 91, 0.32));
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.site-footer {
  padding: 26px clamp(20px, 5vw, 78px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-action {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: var(--mint-dark);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(18px, 4vw, 64px);
    right: clamp(18px, 4vw, 64px);
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(45, 41, 36, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    color: var(--ink);
    border-radius: 6px;
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: var(--soft);
    color: var(--mint-dark);
  }

  .treatment-grid,
  .proof-strip,
  .quick-info,
  .split-section,
  .contact-section,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 104px;
  }

  .mobile-menu {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 104px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 23, 25, 0.82) 0%, rgba(5, 23, 25, 0.28) 100%),
      linear-gradient(90deg, rgba(5, 23, 25, 0.62), rgba(5, 23, 25, 0.12));
  }

  h1 {
    font-size: 3rem;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}
