/* ========================================
   FONTS
   ======================================== */
@font-face {
  font-family: 'TAN Pearl';
  src: url('assets/fonts/TAN-Pearl-Regular.woff2') format('woff2'),
       url('assets/fonts/TAN-Pearl-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tenor Sans';
  src: url('assets/fonts/TenorSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'The Seasons';
  src: url('assets/fonts/the-seasons-regular/the-seasons-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Tenor Sans', sans-serif;
  background-color: #f8f5f0;
  color: #55281e;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s ease;
}

.navbar__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: #55281e;
  transition: opacity 0.3s ease;
}

.navbar__logo:hover {
  opacity: 0.7;
}

.navbar__logo-main {
  font-family: 'TAN Pearl', serif;
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: lowercase;
}

.navbar__logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
  color: #8f4d3b;
}

.navbar__logo-house {
  font-weight: 300;
  letter-spacing: 2px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #55281e;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__link:hover {
  color: #a76947;
}

.navbar__chevron {
  transition: transform 0.3s ease;
}

/* Dropdown */
.navbar__item {
  position: relative;
}

.navbar__item--dropdown:hover .dropdown,
.navbar__item--dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.navbar__item--dropdown:hover .navbar__chevron,
.navbar__item--dropdown:focus-within .navbar__chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: translateY(-8px);
  background: #fff;
  border-radius: 12px;
  padding: 12px 0;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(85, 40, 30, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown__link {
  display: block;
  padding: 10px 24px;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #55281e;
  transition: all 0.2s ease;
}

.dropdown__link:hover {
  background: rgba(167, 105, 71, 0.08);
  color: #a76947;
  padding-left: 28px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 110;
}

.navbar__hamburger span {
  display: block;
  height: 1.5px;
  background: #55281e;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(248, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu__link {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #55281e;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: #a76947;
}

.mobile-menu__item--dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.mobile-dropdown.active {
  display: flex;
}

.mobile-dropdown__link {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 15px;
  color: #8f4d3b;
  transition: color 0.3s ease;
}

.mobile-dropdown__link:hover {
  color: #a76947;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 60px;
  overflow: hidden;
}

.hero__content {
  flex: 0 0 44%;
  max-width: 600px;
  padding-top: 20px;
}

.hero__line {
  width: 80px;
  height: 2px;
  background: #55281e;
  margin-bottom: 40px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 0.8s ease 0.3s forwards;
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero__title {
  font-family: 'The Seasons', 'TAN Pearl', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #55281e;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #8f4d3b;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero__cta {
  display: inline-block;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #fff;
  background: #a76947;
  padding: 16px 36px;
  border-radius: 4px;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero__cta:hover {
  background: #8f4d3b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(167, 105, 71, 0.3);
}

/* Hero images */
.hero__images {
  flex: 1;
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 650px;
  margin-left: 40px;
}

.hero__img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(85, 40, 30, 0.12);
}

.hero__img img {
  transition: transform 0.6s ease;
}

.hero__img:hover img {
  transform: scale(1.03);
}

/* Image 1 — top left, tall landscape */
.hero__img--1 {
  width: 50%;
  height: 65%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(40px) rotate(-2deg);
  animation: imgReveal1 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* Image 2 — center, overlapping, larger */
.hero__img--2 {
  width: 55%;
  height: 78%;
  top: 18%;
  left: 26%;
  z-index: 2;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  animation: imgReveal2 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* Image 3 — right, vertical slice */
.hero__img--3 {
  width: 32%;
  height: 78%;
  top: 5%;
  right: -8%;
  opacity: 0;
  transform: translateX(40px) rotate(1deg);
  animation: imgReveal3 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

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

@keyframes imgReveal1 {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes imgReveal2 {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes imgReveal3 {
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.6s ease 1.4s forwards;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: #f8f5f0;
  padding: 0;
  position: relative;
}

.about__inner {
  position: relative;
  max-width: none;
  margin: 0;
}

.about__image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  width: 100%;
}

.about__image.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.about__overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ========================================
   TREATMENT SECTIONS
   ======================================== */
.treatment {
  background: #f8f5f0;
  padding: 100px 0 100px 48px;
  overflow: hidden;
}

.treatment__inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

.treatment__content {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.treatment__content.visible {
  opacity: 1;
  transform: translateY(0);
}

.treatment__title {
  font-family: 'The Seasons', 'TAN Pearl', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400;
  color: #55281e;
  line-height: 1.05;
  margin-bottom: 24px;
}

.treatment__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8f4d3b;
  margin-bottom: 36px;
}

.treatment__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  max-width: 420px;
}

.treatment__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-align: center;
  min-width: 140px;
}

.treatment__tag:nth-child(1) {
  background: #55281e;
  color: #fff;
}

.treatment__tag:nth-child(2) {
  background: #8f4d3b;
  color: #fff;
}

.treatment__tag:nth-child(3) {
  background: #a76947;
  color: #fff;
}

.treatment__tag:nth-child(4) {
  background: #c4956e;
  color: #fff;
}

.treatment__link-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treatment__link-line {
  width: 60px;
  height: 2px;
  background: #55281e;
}

.treatment__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #55281e;
  transition: color 0.3s ease;
}

.treatment__link:hover {
  color: #a76947;
}

.treatment__image {
  flex: 0 0 38%;
  max-width: none;
  border-radius: 12px 0 0 12px;
  margin-right: -40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(85, 40, 30, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.treatment__image.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.treatment__image--stack {
  position: relative;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  margin-right: 0;
  min-height: 620px;
}

.treatment__image-main {
  position: relative;
  width: 68%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(85, 40, 30, 0.12);
  z-index: 2;
}

.treatment__image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment__image-sub {
  position: absolute;
  right: -40px;
  bottom: 20px;
  width: 42%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(85, 40, 30, 0.15);
  z-index: 1;
}

.treatment__image-sub img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment__tag--wide {
  min-width: 220px;
}

/* Corporal — reversed layout */
.treatment--reverse {
  padding: 100px 48px 100px 0;
}

.treatment__inner--reverse {
  flex-direction: row;
}

.treatment__image--left {
  border-radius: 0 12px 12px 0;
  margin-right: 0;
  margin-left: -40px;
}

.treatment__content--right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.treatment__content--right .treatment__tags {
  justify-content: flex-end;
}

.treatment__link-wrapper--right {
  align-items: flex-end;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
  background: #f8f5f0;
  padding: 100px 48px;
  text-align: center;
}

.reviews__title {
  font-family: 'The Seasons', 'TAN Pearl', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: #55281e;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.reviews__summary {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reviews__rating-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #55281e;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reviews__stars {
  display: flex;
  gap: 2px;
}

.reviews__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #8f4d3b;
}

.reviews__google-link {
  margin-top: 4px;
  transition: opacity 0.3s ease;
}

.reviews__google-link:hover {
  opacity: 0.7;
}

.reviews__carousel {
  flex: 1;
  overflow: hidden;
}

.reviews__track-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsScroll 40s linear infinite;
  pointer-events: none;
  user-select: none;
}

.reviews__track-wrapper:hover .reviews__track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews__card {
  flex: 0 0 320px;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(85, 40, 30, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(85, 40, 30, 0.1);
}

.reviews__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a76947, #8f4d3b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.reviews__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #55281e;
}

.reviews__date {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #8f4d3b;
  opacity: 0.7;
}

.reviews__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.reviews__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #55281e;
}

/* ========================================
   TEAM
   ======================================== */
.team {
  padding: 100px 48px;
  text-align: center;
}

.team__title {
  font-family: 'TAN Pearl', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #55281e;
  margin-bottom: 16px;
  font-weight: 400;
}

.team__subtitle {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 15px;
  color: #8f4d3b;
  line-height: 1.6;
  margin-bottom: 60px;
}

.team__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 160px;
}

.team__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8ddd4;
}

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

.team__name {
  font-family: 'TAN Pearl', serif;
  font-size: 16px;
  color: #55281e;
  font-weight: 400;
}

.team__role {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 0;
  color: #fff;
  text-align: center;
}

.team__role--1 {
  background: #8f4d3b;
}

.team__role--2 {
  background: #55281e;
}

.team__role--3 {
  background: #a76947;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #3a1810;
  padding: 80px 48px 32px;
  color: #e8ddd4;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232, 221, 212, 0.15);
}

.footer__brand {
  flex: 0 0 auto;
}

.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: #e8ddd4;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo-main {
  font-family: 'TAN Pearl', serif;
  font-size: 42px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: lowercase;
}

.footer__logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
  color: #e8ddd4;
  opacity: 0.75;
}

.footer__logo-house {
  font-weight: 300;
  letter-spacing: 2px;
}

.footer__links {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e8ddd4;
  margin-bottom: 4px;
}

.footer__link {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  color: #e8ddd4;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 1;
}

.footer__info {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  color: #e8ddd4;
  opacity: 0.6;
  line-height: 1.5;
}

.footer__cta {
  display: inline-block;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #3a1810;
  background: #e8ddd4;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer__cta:hover {
  background: #fff;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 12px;
  color: #e8ddd4;
  opacity: 0.4;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 24px 32px;
  }

  .hero {
    padding: 120px 32px 60px;
  }

  .hero__content {
    flex: 0 0 45%;
  }

  .hero__images {
    margin-left: 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .about {
    padding: 0;
  }

  .about__overlay-text {
    font-size: 13px;
    letter-spacing: 1.2px;
    width: 88%;
  }

  .treatment {
    padding: 60px 24px;
  }

  .treatment__inner {
    flex-direction: column;
    gap: 40px;
  }

  .treatment__image {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 12px;
  }

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

  /* Belleza stacked images → stack vertically on mobile, 6 on top, 7 below */
  .treatment__image--stack {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: visible;
    border-radius: 0;
  }

  .treatment__image--stack .treatment__image-main,
  .treatment__image--stack .treatment__image-sub {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    z-index: auto;
  }

  .treatment__image--stack .treatment__image-sub {
    width: 80%;
    align-self: flex-end;
  }

  .treatment__tag {
    min-width: 0;
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .treatment__tag--wide {
    min-width: 0;
  }

  .treatment__title {
    font-size: clamp(44px, 10vw, 64px);
  }

  .treatment--reverse {
    padding: 60px 24px;
  }

  .treatment__inner--reverse {
    flex-direction: column;
  }

  .treatment__content--right {
    text-align: left;
    align-items: flex-start;
  }

  .treatment__content--right .treatment__tags {
    justify-content: flex-start;
  }

  .treatment__link-wrapper--right {
    align-items: flex-start;
  }

  .reviews {
    padding: 60px 24px;
  }

  .reviews__container {
    flex-direction: column;
    gap: 32px;
  }

  .reviews__carousel,
  .reviews__track-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .reviews__card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .footer {
    padding: 60px 24px 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .hero {
    flex-direction: column;
    padding: 100px 24px 80px;
    min-height: auto;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    text-align: left;
    margin-bottom: 48px;
    padding-top: 0;
  }

  .hero__images {
    flex: none;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
    margin-left: 0;
    position: relative;
    overflow: hidden;
  }

  .hero__img--1 {
    width: 55%;
    height: 52%;
    left: 0;
  }

  .hero__img--2 {
    width: 52%;
    height: 65%;
    top: 18%;
    left: 25%;
  }

  .hero__img--3 {
    width: 30%;
    height: 58%;
    right: 0;
  }

  .hero__scroll {
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 20px;
  }

  .navbar__logo {
    font-size: 24px;
  }

  .hero {
    padding: 90px 20px 70px;
  }

  .hero__title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cta {
    padding: 14px 28px;
    font-size: 12px;
  }

  .hero__images {
    height: 40vh;
    min-height: 280px;
  }
}
