/* ===================================
   SKIN THERAPY - Kamila Pietrzak
   Main Stylesheet
   =================================== */

/* --- CSS Variables --- */
:root {
  --color-bg-dark: #1a1714;
  --color-bg-darker: #12100e;
  --color-bg-light: #faf8f5;
  --color-bg-cream: #f5f0ea;
  --color-gold: #c9a96e;
  --color-gold-light: #dfc088;
  --color-gold-dark: #a8883f;
  --color-text-dark: #2c2824;
  --color-text-medium: #5a534c;
  --color-text-light: #e8e2da;
  --color-text-gold: #c9a96e;
  --color-border-light: rgba(201,169,110,0.2);
  --color-border-dark: rgba(201,169,110,0.15);
  --color-overlay: rgba(18,16,14,0.65);
  
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', 'Georgia', serif;
  
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 20px 0;
}

.gold-line--center {
  margin: 20px auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transition: left var(--transition);
  z-index: 0;
}

.btn:hover::before { left: 0; }
.btn:hover { color: var(--color-bg-dark); }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; width: 14px; height: 14px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn--filled {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.btn--filled::before {
  background: var(--color-gold-dark);
}

.btn--filled:hover {
  color: var(--color-bg-light);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(18,16,14,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav > a,
.nav-dropdown > a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  position: relative;
  padding: 4px 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.header__nav > a:hover,
.nav-dropdown > a:hover { color: var(--color-gold); }
.header__nav > a:hover::after { width: 100%; }

.header__nav > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  padding: 16px 0;
  background: rgba(18,16,14,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: none;
}

body.loaded .nav-dropdown__menu {
  transition: all var(--transition);
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 0.7rem !important;
  font-weight: 500;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-light);
}

.nav-dropdown__menu a:hover {
  color: var(--color-gold);
}

.header__cta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg-dark);
  background: var(--color-gold);
  padding: 10px 24px;
  transition: all var(--transition);
}

.header__cta:hover {
  background: var(--color-gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-text-light);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg-darker);
  z-index: 999;
  padding: 0 24px calc(40px + env(safe-area-inset-bottom));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav__links {
  padding-top: 100px;
}

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

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-text-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-dark);
}

.mobile-nav a:hover { color: var(--color-gold); }

.mobile-nav__sub {
  padding-left: 24px;
}

.mobile-nav__sub a {
  font-size: 1.1rem;
  color: var(--color-text-medium);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,16,14,0.5) 0%,
    rgba(18,16,14,0.3) 40%,
    rgba(18,16,14,0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: 300px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(232,226,218,0.7);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero__cta {
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
  align-self: center;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
  width: auto;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,226,218,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--cream {
  background: var(--color-bg-cream);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section__header p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--color-text-medium);
  line-height: 1.8;
}

.section--dark .section__header p {
  color: rgba(232,226,218,0.6);
}

/* --- Parallax Banner --- */
.parallax-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-darker);
}

.parallax-banner__bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 0;
}

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

.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.parallax-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.parallax-banner__content h2 {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* --- About / Intro --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__image {
  position: relative;
  overflow: hidden;
}

.intro__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.intro__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 1px solid var(--color-gold);
  transform: translate(20px, 20px);
  z-index: -1;
  pointer-events: none;
}

.intro__text h2 {
  margin-bottom: 8px;
}

.intro__text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text-medium);
  margin-bottom: 16px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-bg-light);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-gold);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--color-text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link:hover { color: var(--color-gold-dark); }

/* --- Pricing Snippet --- */
.pricing-snippet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--color-border-light);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-item {
  background: var(--color-bg-light);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.pricing-item:hover { background: var(--color-bg-cream); }

.pricing-item__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

.pricing-item__details {
  font-size: 0.75rem;
  color: var(--color-text-medium);
  margin-top: 2px;
}

.pricing-item__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-gold);
  white-space: nowrap;
}

/* --- Testimonials Slider --- */
.testimonials {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials__track {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial__stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-light);
  position: relative;
  margin-bottom: 24px;
  padding-top: 24px;
}

.testimonial__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-gold);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  line-height: 1;
}

.testimonial__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.testimonial__date {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-medium);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.testimonials__btn {
  background: none;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.testimonials__btn:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.testimonials__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.testimonials__dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* --- Contact Info Bar --- */
.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-bar__item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.contact-bar__item p {
  font-size: 0.85rem;
  color: var(--color-text-medium);
  line-height: 1.8;
}

.contact-bar__item a {
  color: var(--color-gold);
}

.contact-bar__item a:hover {
  color: var(--color-gold-light);
}

/* --- Hours --- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 500px;
  margin: 24px auto 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.85rem;
}

.hours-row__day { color: rgba(232,226,218,0.7); }
.hours-row__time { color: var(--color-gold); font-weight: 500; }

/* --- Footer --- */
.footer {
  background: var(--color-bg-darker);
  padding: 60px 0 24px;
  color: var(--color-text-light);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.8rem;
  color: rgba(232,226,218,0.5);
  line-height: 1.8;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(232,226,218,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--color-gold); }

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__social a svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(232,226,218,0.3);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* --- Booksy Reviews Badge --- */
.reviews-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border-radius: 32px;
  padding: 10px 22px 10px 16px;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
  overflow: hidden;
  white-space: nowrap;
  max-width: 240px;
  transition: max-width 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}

.reviews-badge.collapsed {
  max-width: 80px;
}

.reviews-badge:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.08);
}

.reviews-badge__star {
  color: #f5a623;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 6px;
}

.reviews-badge__score {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #2c2824;
  line-height: 1;
  flex-shrink: 0;
}

.reviews-badge__platform {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: #5a534c;
  line-height: 1;
  margin-left: 6px;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.reviews-badge.collapsed .reviews-badge__platform {
  opacity: 0;
  pointer-events: none;
}

/* Reviews popup — block transitions on page load to prevent flash */
.reviews-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 24px 24px;
  overflow-y: auto;
}

.reviews-popup-overlay.ready {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reviews-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.reviews-popup {
  background: var(--color-bg-light);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.1);
}

.reviews-popup-overlay.active .reviews-popup {
  transform: translateY(0);
}

.reviews-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-text-medium);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 1.4rem;
  transition: color var(--transition);
}

.reviews-popup__close:hover {
  color: var(--color-text-dark);
}

.reviews-popup__header {
  text-align: center;
  margin-bottom: 28px;
}

.reviews-popup__score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.reviews-popup__stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.reviews-popup__count {
  font-size: 0.75rem;
  color: var(--color-text-medium);
  letter-spacing: 0.05em;
}

.reviews-popup__source {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 4px;
}

.reviews-popup__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.reviews-popup__item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
}

.reviews-popup__item-stars {
  color: #f5a623;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews-popup__item-text {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.reviews-popup__item-author {
  font-size: 0.7rem;
  color: var(--color-text-medium);
}

.reviews-popup__cta {
  display: block;
  text-align: center;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 4px;
  transition: all var(--transition);
}

.reviews-popup__cta:hover {
  background: var(--color-gold-light);
}

/* --- Sticky CTA (mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
}

.sticky-cta a {
  display: block;
  text-align: center;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-darker);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,16,14,0.6);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 0;
}

.page-hero__content h1 {
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.page-hero__content p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(232,226,218,0.7);
}

/* --- Content Block --- */
.content-block {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.lead {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--color-text-medium);
}

/* --- Treatment Layout --- */
.treatment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.treatment--reverse {
  direction: rtl;
}

.treatment--reverse > * {
  direction: ltr;
}

.treatment__image {
  overflow: hidden;
}

.treatment__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.treatment__text h2 {
  margin-bottom: 4px;
}

.treatment__text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text-medium);
  margin-bottom: 12px;
}

.treatment__variants {
  margin-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.treatment__variant {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.treatment__variant-name {
  font-family: var(--font-display);
  font-size: 1rem;
}

.treatment__variant-details {
  font-size: 0.85rem;
  color: var(--color-text-medium);
}

.treatment__variant-details strong {
  color: var(--color-gold);
  font-weight: 600;
}

/* --- Treatments List --- */
.treatments-list {
  max-width: 800px;
  margin: 0 auto;
}

.treatment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.treatment-item__info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.treatment-item__info p {
  font-size: 0.85rem;
  color: var(--color-text-medium);
  line-height: 1.6;
}

.treatment-item__meta {
  text-align: right;
  white-space: nowrap;
}

.treatment-item__time {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-medium);
  margin-bottom: 4px;
}

.treatment-item__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
}

/* --- Addons Grid --- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
}

.addon-item {
  background: var(--color-bg-cream);
  padding: 16px 24px;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  border-left: 2px solid var(--color-gold);
}

/* --- FAQ --- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  text-align: left;
}

.faq-item__question svg {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-medium);
}

/* --- Steps Grid (vouchers) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-card__number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold);
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-text-medium);
  line-height: 1.7;
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .intro { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  
  html { font-size: 17px; }
  
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  
  .hero { max-height: none; min-height: 100vh; }
  .hero__logo { width: 240px; }
  .hero__cta { display: none; }
  .hero__scroll { bottom: 200px; }
  .hero__content { margin-top: -80px; }
  
  .section { padding: 60px 0; }
  
  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .intro__image img { height: 350px; }
  .intro__image::after { display: none; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .treatment { grid-template-columns: 1fr; gap: 32px; }
  .treatment--reverse { direction: ltr; }
  .treatment__image img { height: 300px; }
  
  .treatment-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .treatment-item__meta { text-align: left; }
  
  .addons-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .page-hero { min-height: 280px; }
  .page-hero__content { padding: 60px 24px 0; }
  
  .pricing-snippet { grid-template-columns: 1fr; }
  
  .contact-bar { grid-template-columns: 1fr; gap: 24px; }
  
  .hours-grid { grid-template-columns: 1fr; }
  
  .parallax-banner { height: 300px; }
  
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer__brand { text-align: center; }
  .footer__brand img { margin: 0 auto 16px; }
  .footer__social { justify-content: center; }
  .footer__col { text-align: center; }
  
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .sticky-cta { display: block; }
  .whatsapp-float { bottom: calc(70px + env(safe-area-inset-bottom)); }
  .reviews-badge { bottom: calc(70px + env(safe-area-inset-bottom)); }

  .footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* Reviews popup — carousel (1 visible, auto-rotate) */
.reviews-popup__list {
  position: relative;
  min-height: 200px;
}
.reviews-popup__item {
  position: absolute;
  inset: 0;
  border-top: none;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.reviews-popup__item.active {
  opacity: 1;
  visibility: visible;
}
.reviews-popup__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.reviews-popup__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.reviews-popup__dot.active {
  background: var(--color-gold-dark);
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__logo { width: 200px; }
  .btn { padding: 14px 28px; font-size: 0.7rem; }
  .service-card { padding: 32px 24px; }
}
