@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #161412;
  --pearl: #fbf8f4;
  --champagne: #eadfd2;
  --linen: #f5eee6;
  --blush: #d9bdb0;
  --taupe: #8f7b6e;
  --cocoa: #5c4a42;
  --shadow: 0 24px 80px rgba(92, 74, 66, 0.12);
  --glow: 0 18px 50px rgba(217, 189, 176, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--pearl);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cocoa);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--blush);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 16px;
}

.nav,
.mobile-menu {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(251, 248, 244, 0.72);
  box-shadow: 0 12px 45px rgba(92, 74, 66, 0.08);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 16px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.brand-subtitle {
  display: block;
  color: var(--taupe);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a,
.footer a {
  color: rgba(92, 74, 66, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--ink);
}

.nav-cta,
.mobile-cta {
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 14px 22px;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(92, 74, 66, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.menu-button span::before {
  transform: translateY(-7px);
}

.menu-button span::after {
  transform: translateY(6px);
}

.mobile-menu {
  display: none;
  gap: 4px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 24px;
}

.mobile-menu a {
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--cocoa);
  font-weight: 700;
}

.mobile-menu a:hover {
  background: white;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 168px 0 112px;
  background:
    radial-gradient(circle at top left, rgba(217, 189, 176, 0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(234, 223, 210, 0.72), transparent 36%);
}

.hero::before {
  position: absolute;
  top: 120px;
  left: 50%;
  z-index: -1;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(234, 223, 210, 0.65);
  filter: blur(70px);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0;
  color: var(--taupe);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 860px;
  margin-top: 20px;
  font-size: clamp(4rem, 9vw, 7.75rem);
  line-height: 0.88;
}

.lead,
.section-heading p,
.about-grid > div > p,
.contact-copy > p {
  color: rgba(92, 74, 66, 0.8);
  font-size: 1.08rem;
  line-height: 1.8;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 17px 28px;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: var(--glow);
}

.button-dark:hover {
  background: var(--cocoa);
}

.button-light {
  border: 1px solid rgba(92, 74, 66, 0.18);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.button-white {
  background: white;
  color: var(--ink);
}

.stats {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 48px 0 0;
}

.stats div {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  padding: 18px;
  backdrop-filter: blur(18px);
}

.stats dt {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.stats dd {
  margin: 4px 0 0;
  color: var(--taupe);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.floating-note {
  position: absolute;
  top: 70px;
  left: -18px;
  z-index: 2;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  color: var(--cocoa);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 20px;
  backdrop-filter: blur(18px);
}

.image-frame {
  position: relative;
  max-width: 560px;
  margin-left: auto;
}

.image-frame::before {
  position: absolute;
  inset: -14px -14px 14px 14px;
  z-index: -1;
  border: 1px solid rgba(92, 74, 66, 0.1);
  border-radius: 48px;
  content: "";
}

.image-frame img,
.about-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 48px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.care-card {
  position: absolute;
  bottom: 58px;
  left: 0;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  background: rgba(251, 248, 244, 0.88);
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(18px);
}

.care-card h2 {
  font-size: 2.15rem;
}

.care-card p {
  margin: 10px 0 0;
  color: rgba(92, 74, 66, 0.76);
  font-size: 0.9rem;
  line-height: 1.65;
}

.section {
  padding: 112px 0;
}

.section-warm {
  background: rgba(245, 238, 230, 0.72);
}

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

.section-heading h2,
.about h2,
.testimonials h2,
.contact h2,
.faq h2 {
  margin-top: 16px;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.section-heading p {
  max-width: 700px;
  margin: 22px 0 0;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.treatment-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.treatment-card:hover img {
  transform: scale(1.05);
}

.treatment-card > div {
  padding: 28px;
}

.treatment-card h3 {
  font-size: 2.1rem;
}

.treatment-card p {
  margin: 12px 0 0;
  color: rgba(92, 74, 66, 0.78);
  font-size: 0.94rem;
  line-height: 1.75;
}

.result {
  margin-top: 20px;
  border-radius: 20px;
  background: rgba(245, 238, 230, 0.85);
  color: var(--cocoa);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 16px;
}

.result span {
  display: block;
  margin-bottom: 8px;
  color: var(--taupe);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.treatment-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.treatment-card a:hover {
  gap: 13px;
}

.results-top,
.testimonial-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 40px;
}

.gallery-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.gallery-tabs button {
  width: 50px;
  height: 44px;
  border: 1px solid rgba(92, 74, 66, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--cocoa);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gallery-tabs button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.gallery {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.gallery-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  animation: fadeUp 0.45s ease;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.gallery-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--cocoa);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 10px 16px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.gallery-image:last-child > span {
  background: rgba(22, 20, 18, 0.9);
  color: white;
}

.gallery-image div {
  position: absolute;
  inset: auto 16px 16px;
  border-radius: 24px;
  background: rgba(251, 248, 244, 0.9);
  padding: 20px;
  backdrop-filter: blur(14px);
}

.gallery-image h3 {
  font-size: 2rem;
}

.gallery-image p {
  margin: 8px 0 0;
  color: rgba(92, 74, 66, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 64px;
}

.about-visual {
  position: relative;
}

.about-visual div {
  position: absolute;
  right: 40px;
  bottom: -32px;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(18px);
}

.about-visual h3 {
  margin-top: 12px;
  font-size: 2.1rem;
  line-height: 1;
}

.about-grid > div > p {
  margin-top: 24px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.values article {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 22px;
}

.values h3 {
  font-size: 1.75rem;
}

.values p {
  color: rgba(92, 74, 66, 0.75);
  font-size: 0.9rem;
  line-height: 1.65;
}

.testimonials {
  background: var(--ink);
  color: white;
}

.testimonials .eyebrow,
.testimonials p {
  color: rgba(234, 223, 210, 0.82);
}

.testimonial-head > p {
  max-width: 620px;
  margin: 0 0 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-grid figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  backdrop-filter: blur(18px);
}

.testimonial-grid figure > div {
  color: var(--champagne);
  letter-spacing: 0.18em;
}

.testimonial-grid blockquote {
  margin: 32px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-grid span {
  color: rgba(234, 223, 210, 0.72);
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 45px rgba(92, 74, 66, 0.08);
  backdrop-filter: blur(18px);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  padding: 22px 24px;
  text-align: left;
}

.faq-item button span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--linen);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: rgba(92, 74, 66, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 0 24px 24px;
}

.contact-card {
  overflow: hidden;
  border-radius: 44px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: white;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-copy {
  padding: 56px;
  background: linear-gradient(135deg, rgba(234, 223, 210, 0.18), transparent);
}

.contact-copy h2 {
  margin-top: 18px;
}

.contact-copy > p {
  color: rgba(234, 223, 210, 0.82);
}

address {
  display: grid;
  gap: 18px;
  margin: 40px 0;
  color: rgba(234, 223, 210, 0.86);
  font-style: normal;
}

address strong {
  color: white;
}

.contact-form {
  display: grid;
  gap: 20px;
  background: white;
  color: var(--ink);
  padding: 56px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(92, 74, 66, 0.1);
  border-radius: 20px;
  background: rgba(245, 238, 230, 0.5);
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0;
  padding: 16px;
  text-transform: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form > p {
  margin: 0;
  color: rgba(92, 74, 66, 0.6);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.footer {
  padding-bottom: 32px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(92, 74, 66, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(92, 74, 66, 0.72);
  padding: 24px;
}

.footer-card p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-card div {
  display: flex;
  gap: 22px;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(37, 211, 102, 0.42);
}

.whatsapp svg {
  width: 32px;
  height: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: fadeUp 0.8s ease forwards;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-card,
  .faq-grid,
  .results-top,
  .testimonial-head {
    grid-template-columns: 1fr;
  }

  .treatment-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-head > p,
  .image-frame {
    margin-left: 0;
  }

  .hero-visual {
    min-height: auto;
  }

  .care-card {
    bottom: 24px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-actions,
  .stats,
  .form-row,
  .values,
  .gallery-panel,
  .treatment-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .stats {
    display: grid;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .about h2,
  .testimonials h2,
  .contact h2,
  .faq h2 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .floating-note {
    display: none;
  }

  .image-frame::before {
    display: none;
  }

  .care-card,
  .about-visual div {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -50px 16px 0;
  }

  .gallery-tabs {
    justify-content: flex-start;
  }

  .contact-copy,
  .contact-form {
    padding: 32px 24px;
  }

  .footer-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .stats div {
    padding: 16px;
  }

  .treatment-card > div {
    padding: 24px;
  }

  .whatsapp {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
