*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7f3ee;
  --sand: #e8dfd4;
  --warm-white: #fdfbf8;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8b7355;
  --text: #3d3530;
  --text-muted: #7a6f66;
  --shadow: 0 8px 32px rgba(61, 53, 48, 0.08);
  --shadow-lg: 0 16px 48px rgba(61, 53, 48, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Heebo', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
}

.fade-in {
  animation: fadeIn 0.8s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 3.5rem;
  }
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61, 53, 48, 0.06);
  padding-block: 0.65rem;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
}

.header--scrolled .header__logo-img {
  height: 42px;
}

.header__nav {
  display: flex;
  gap: 1.75rem;
  margin-inline: auto;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--gold-dark);
}

.header__cta {
  flex-shrink: 0;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.header__burger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger--open span:nth-child(2) {
  opacity: 0;
}
.header__burger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(212, 184, 150, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232, 223, 212, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  z-index: -1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.06'%3E%3Cpath fill='%238B7355' d='M50 5C30 30 10 50 10 70c0 15 15 25 40 25s40-10 40-25C90 50 70 30 50 5z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.hero__content {
  text-align: center;
  padding-block: 4rem;
}

.hero__logo {
  width: min(340px, 80vw);
  margin-inline: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(61, 53, 48, 0.1));
}

.hero__tagline-he {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.about__image-caption {
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-dark);
}

.about__image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius);
  z-index: -1;
}

.about__paragraph {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about__location {
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--gold-dark);
}

/* Treatments */
.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.treatment-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.treatment-card__image-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.treatment-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-card__image-wrap img {
  transform: scale(1.05);
}

.treatment-card__body {
  padding: 1.5rem;
}

.treatment-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.treatment-card__body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Results / Before & After */
.results {
  background: var(--warm-white);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  justify-content: center;
  gap: 1.5rem;
  align-items: stretch;
}

.result-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.result-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 0.5rem;
  height: 280px;
  flex-shrink: 0;
}

.result-card__image-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.result-card:hover .result-card__image-wrap img {
  transform: scale(1.02);
}

.result-card__body {
  padding: 0.85rem 1rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
}

.result-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--cream);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}

.result-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.results__note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(61, 53, 48, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(580px, 94vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  color: white;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 2rem;
  color: white;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__nav:hover {
  opacity: 1;
}

.lightbox__nav--prev {
  right: 1rem;
}

.lightbox__nav--next {
  left: 1rem;
}

/* Packages */
.packages {
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.packages__grid--two {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  max-width: 820px;
  margin-inline: auto;
  align-items: stretch;
}

.package-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
  height: 100%;
}

.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  text-align: center;
}

.package-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.package-card li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--sand);
  position: relative;
  padding-inline-start: 1.25rem;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: 600;
}

.package-card__prices {
  margin-bottom: 1.5rem;
}

.package-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.package-card__price span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-card__price strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-dark);
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

/* Reviews */
.reviews {
  background: var(--cream);
}

.reviews__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.reviews__list {
  display: grid;
  gap: 1rem;
  max-height: 420px;
  overflow-y: auto;
  padding-inline-start: 0.25rem;
}

.reviews__list::-webkit-scrollbar {
  width: 6px;
}

.reviews__list::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 3px;
}

.review-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  border-inline-start: 3px solid var(--gold-light);
}

.review-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.review-card__author {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.reviews__empty {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--sand);
}

.review-form {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-form h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.review-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.review-form label span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.review-form input,
.review-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--text);
  transition: border-color var(--transition);
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.review-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.review-form__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 500;
}

/* FAQ */
.faq__list {
  max-width: 760px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--sand);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold-dark);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  line-height: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-inline-end: 2.5rem;
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact__text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--gold);
}

.contact__address {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact__cta-card {
  background: white;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}

.contact__cta-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__logo {
  width: min(220px, 70vw);
  margin-inline: auto;
  opacity: 0.92;
}

.footer__domain {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .treatments__grid,
  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__grid {
    grid-template-columns: repeat(2, 240px);
  }

  .result-card__image-wrap {
    height: 260px;
  }

  .about__grid,
  .contact__inner,
  .reviews__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrap {
    max-width: 400px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .header__nav--open {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
    margin-inline-start: auto;
  }

  .treatments__grid,
  .packages__grid,
  .packages__grid--two {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .results__grid {
    grid-template-columns: minmax(0, 300px);
    max-width: 300px;
    margin-inline: auto;
  }

  .result-card__image-wrap {
    height: 300px;
  }
}
