:root {
  /* Light Cream Theme */
  --black: #1A090D;      /* Very dark maroon (used for dark text) */
  --dark: #FDFBFA;       /* Lightest cream (main bg) */
  --dark2: #FAF6F2;      /* Slightly darker cream (cards/alt bg) */
  --gold: #731A27;       /* Main Maroon */
  --gold-light: #9C2637; /* Lighter Maroon */
  --gold-dark: #4A1019;  /* Dark Maroon */
  --white: #FFFFFF;      /* Pure white for pure cards */
  --cream: #F5EFEB;      /* Warm beige background */
  --text: #3E2026;       /* Dark text */
  --text-dim: #755B60;   /* Muted dark text */
  --border: rgba(115, 26, 39, 0.15); /* Maroon tinted border */
  --radius: 12px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* PROMO BAR */
.promo-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.promo-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}
.promo-countdown-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  background: rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 6px;
  min-width: 32px;
  text-align: center;
  display: inline-block;
}
@media (max-width: 720px) {
  .promo-bar {
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.7rem;
  }
  .promo-countdown {
    font-size: 0.8rem;
    gap: 6px;
    padding: 6px 10px;
  }
  .promo-countdown-value {
    font-size: 1.1rem;
    min-width: 28px;
    padding: 3px 8px;
  }
}

/* HERO OFFER */
.hero-offer {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-countdown {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-start;
}
.hero-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.hero-countdown-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-countdown-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .hero-countdown {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-countdown-item {
    min-width: 45px;
  }
  .hero-countdown-value {
    font-size: 1.3rem;
  }
  .hero-countdown-label {
    font-size: 0.6rem;
  }
}
.offer-tag {
  background: rgba(115, 26, 39, 0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: fit-content;
}
.offer-text {
  font-size: 1.1rem;
  color: var(--black);
  font-family: var(--font-serif);
}
.offer-text strong { color: var(--gold); font-size: 1.3rem; }

/* NAV */
.nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  top: 0;
  background: rgba(253,251,250,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: baseline; gap: 2px; }
.logo-v { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); font-weight: 500; }
.logo-text { font-family: var(--font-serif); font-size: 1.6rem; color: var(--black); font-weight: 300; }
.logo-sub { font-size: 0.5rem; letter-spacing: 0.25em; color: var(--gold); margin-left: 6px; font-weight: 600; align-self: center; opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--black); transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--white) !important; padding: 10px 22px; border-radius: 4px; font-weight: 600; letter-spacing: 0.05em; transition: background 0.3s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-wa { background: #25D366 !important; }
.nav-wa:hover { background: #20BA5A !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 2000;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(115, 26, 39, 0.6);
}

/* ═══ HERO — CINEMATIC FULL VIEWPORT ═══════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed background media */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img,
.hero-bg-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  /* Left: strong cream/white fade for text legibility; right: subtle vignette */
  background: linear-gradient(
    105deg,
    rgba(253,251,250,0.97) 0%,
    rgba(253,251,250,0.92) 30%,
    rgba(253,251,250,0.55) 52%,
    rgba(253,251,250,0.10) 70%,
    rgba(26,9,13,0.15) 100%
  );
}

/* Inner grid */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

/* ── LEFT TEXT ─────────────────────── */
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.36em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  font-weight: 300; color: var(--black);
  line-height: 1.0; margin-bottom: 28px;
  animation: fadeUp 0.9s 0.2s both;
}
.hero-title em {
  color: var(--gold); font-style: italic; display: block;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-dim);
  line-height: 1.85; margin-bottom: 44px;
  animation: fadeUp 0.9s 0.3s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.9s 0.4s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeUp 0.9s 0.5s both;
}
.stat { text-align: left; }
.stat-num {
  display: block; font-family: var(--font-serif);
  font-size: 2rem; color: var(--gold); font-weight: 500;
}
.stat-label {
  font-size: 0.64rem; letter-spacing: 0.12em;
  color: var(--text-dim); text-transform: uppercase;
}
.stat-divider { width: 1px; height: 36px; background: var(--border); }

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

/* ── RIGHT VISUAL ────────────────── */
.hero-visual {
  position: relative;
  animation: fadeUp 1s 0.35s both;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
}
.hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(26,9,13,0.18),
              0 8px 24px rgba(26,9,13,0.08);
  position: absolute;
}
.hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease;
}

.card-main {
  top: 0; left: 0;
  width: 85%; height: 85%;
  z-index: 2;
}
.card-secondary {
  bottom: 0; right: 0;
  width: 65%; height: 65%;
  z-index: 1;
  border: 4px solid var(--white);
}

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

/* Badge inside card */
.hero-card-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: var(--white);
  padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(115,26,39,0.3);
  animation: floatBadge 3.5s 1s ease-in-out infinite;
}
.badge-icon { font-size: 1rem; }
.badge-text { font-size: 0.72rem; font-weight: 600; line-height: 1.4; }

/* Rating pill above card */
.hero-rating-pill {
  position: absolute; top: -15px; right: 15%;
  background: var(--white); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  animation: floatBadge 4s 1.5s ease-in-out infinite;
  z-index: 3;
}
.rating-stars { color: #E8A020; font-size: 0.88rem; letter-spacing: 1px; }
.rating-text { font-size: 0.72rem; font-weight: 700; color: var(--black); white-space: nowrap; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.63rem; letter-spacing: 0.24em; color: var(--text-dim);
  text-transform: uppercase; animation: fadeUp 1s 0.8s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%     { opacity: 0.3; transform: scaleY(0.5); }
}

/* Hide old hero classes no longer needed */
.hero-left, .hero-right, .hero-img-stack, .hero-img-top,
.hero-img-bottom, .hero-badge-float, .hero-hud,
.hero-sticky-spacer, .hero-canvas { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 0 40px; }
  .hero-visual { display: none; }
  .hero-bg-video {
    object-position: center center;
  }
  .hero-bg-overlay {
    background: linear-gradient(105deg,
      rgba(253,251,250,0.96) 0%,
      rgba(253,251,250,0.85) 50%,
      rgba(253,251,250,0.55) 100%);
  }
}

@media (max-width: 768px) {
  .price-tabs {
    width: 100%;
  }

  .tab-btn {
    flex: 1 1 50%;
    padding: 12px 16px;
  }

  .hero {
    min-height: 760px;
    height: auto;
    align-items: flex-start;
  }
  .hero-bg-video {
    object-position: 62% center;
  }
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(253,251,250,0.92) 0%,
      rgba(253,251,250,0.88) 30%,
      rgba(253,251,250,0.68) 58%,
      rgba(253,251,250,0.3) 100%
    );
  }
  .hero-inner {
    padding: 110px 22px 92px;
    align-items: flex-start;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.1rem);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 30px;
  }
  .hero-actions {
    margin-bottom: 34px;
  }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .stat-divider {
    display: none;
  }
  .stat {
    min-width: calc(50% - 9px);
  }
  .scroll-indicator {
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 720px;
  }
  .hero-bg-video {
    object-position: 68% center;
  }
  .hero-inner {
    padding: 98px 16px 78px;
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(2.35rem, 11.8vw, 3.2rem);
  }
  .hero-sub {
    font-size: 0.92rem;
  }
  .stat {
    min-width: 100%;
  }
  .stat-num {
    font-size: 1.65rem;
  }
}


/* BUTTONS */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 4px; font-size: 0.82rem;
  letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase;
  transition: all 0.3s; cursor: pointer; border: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(115,26,39,0.3); }
.btn-ghost {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  padding: 14px 32px; border-radius: 4px; font-size: 0.82rem;
  letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold-dark); color: var(--white); background: var(--gold-dark); }
.btn-full { width: 100%; text-align: center; }

/* TRUST BAR */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; }
.trust-inner { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; padding: 0 20px; }
.trust-item { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--black); text-transform: uppercase; white-space: nowrap; font-weight: 500;}
.trust-icon { color: var(--gold); margin-right: 6px; }

/* SECTIONS */
/* UTILS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 0; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; display: block; font-weight: 600; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--black); font-weight: 400; line-height: 1.2; }
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--text-dim); margin-top: 16px; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }
.body-text { color: var(--text); margin-bottom: 16px; line-height: 1.8; font-size: 1.05rem;}

/* ABOUT */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: 20px; height: 560px; object-fit: cover; display: block; box-shadow: 0 32px 80px rgba(26,9,13,0.12); }
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(115,26,39,0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exp-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 500; line-height: 1; color: var(--white); }
.exp-text { font-size: 0.65rem; letter-spacing: 0.15em; font-weight: 700; opacity: 0.9; color: var(--white); }
.about-copy { padding-bottom: 40px; }

/* SIDE BY SIDE REUSABLE SECTIONS */
.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.side-by-side.reverse { direction: rtl; }
.side-by-side.reverse .side-copy { direction: ltr; }
.side-by-side.reverse .side-visual { direction: ltr; }

.side-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(26,9,13,0.15);
}
.side-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 10s ease;
}
.side-visual:hover .side-img { transform: scale(1.08); }

.side-copy {
  max-width: 520px;
}

@media (max-width: 1024px) {
  .nav { top: 0; padding: 10px 20px; background: rgba(253,251,250,0.98); }
  .promo-bar { font-size: 0.65rem; padding: 10px; }
  
  .hero { height: auto; min-height: 100vh; padding: 140px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; padding: 0; }
  
  /* Make sure hero images STAY on mobile */
  .hero-visual { 
    display: flex; 
    justify-content: center; 
    width: 100%; 
    max-width: 400px; 
    margin: 0 auto;
    position: relative;
    height: 400px;
  }
  .card-main { width: 280px; height: 350px; left: 0; }
  .card-close { width: 180px; height: 220px; right: 0; bottom: 0; }
  .badge-float { display: none; } /* Hide tiny floating badges to avoid clutter */
  
  .hero-text { align-items: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  
  .side-by-side { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .side-by-side.reverse { flex-direction: column; direction: ltr; } 
  .side-copy { margin: 0 auto; order: 2; }
  .side-visual { order: 1; width: 100%; }
  .side-img { height: 300px; border-radius: 16px; }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-img { height: 320px; }
  .about-experience-badge { right: 50%; transform: translateX(50%); bottom: -15px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .logo-sub { display: inline; font-size: 0.45rem; } /* Show BEAUTY CENTER on mobile */
  
  /* Improve section spacing on mobile */
  .hero { padding: 100px 20px 60px; }
  .side-by-side { padding: 60px 20px; }
  .about { padding: 60px 20px; }
  .tech { padding: 60px 20px; }
  .prices { padding: 60px 20px; }
  .reviews { padding: 60px 20px; }
  .booking { padding: 60px 20px; }
}

.feature-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.check { color: var(--gold); font-size: 1rem; }

/* TECH */
.tech { background: var(--dark); }
.tech .section-title { color: var(--black); }
.tech .section-desc { color: var(--text-dim); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.24);
  box-shadow: 0 22px 48px rgba(10, 6, 8, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: 0 30px 62px rgba(10, 6, 8, 0.32);
}

.tech-card-featured {
  border-color: rgba(184, 134, 11, 0.55);
}

.tech-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.tech-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.tech-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 9, 13, 0.08) 40%, rgba(26, 9, 13, 0.5) 100%);
}

.tech-badge-card {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(26, 9, 13, 0.78);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  text-transform: uppercase;
}

.tech-content {
  padding: 28px 28px 30px;
}

.tech-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 500;
}

.tech-card p {
  color: var(--text-dim);
  margin-bottom: 22px;
  line-height: 1.7;
}

.tech-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.tech-list li {
  font-size: 0.87rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.tech-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.tech-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.tech-link:hover { color: var(--gold-light); }

@media (max-width: 1024px) {
  .tech-grid {
    gap: 22px;
  }
  .tech-content {
    padding: 24px;
  }
  .tech-card h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 900px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tech-visual,
  .tech-image {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .tech {
    padding: 56px 16px;
  }
  .tech .section-header {
    margin-bottom: 34px;
  }
  .tech-card {
    border-radius: 16px;
  }
  .tech-visual,
  .tech-image {
    min-height: 190px;
  }
  .tech-content {
    padding: 20px 18px 22px;
  }
  .tech-card h3 {
    font-size: 1.38rem;
    margin-bottom: 10px;
  }
  .tech-card p {
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  .tech-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }
  .tech-list li {
    font-size: 0.84rem;
  }
}

/* TRUST CTA */
.trust-cta-section {
  padding: 8px 20px 56px;
  background: linear-gradient(180deg, #f7f1ec 0%, #fdfaf8 100%);
}

.trust-cta-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(115, 26, 39, 0.14);
  border-bottom: 1px solid rgba(115, 26, 39, 0.1);
}

.trust-cta-section .section-title {
  color: var(--black);
}

.trust-cta-copy {
  flex: 0 0 auto;
  min-width: 240px;
}

.trust-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  flex: 1 1 auto;
}

.trust-cta-stat {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 150px;
  position: relative;
}

.trust-cta-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42px;
  background: rgba(115, 26, 39, 0.14);
}

.trust-cta-stat strong {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 500;
  color: #731A27;
  line-height: 1;
}

.trust-cta-stat span {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 600;
  text-align: center;
}

.trust-cta-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 900px) {
  .trust-cta-shell {
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
    gap: 14px;
  }
  .trust-cta-copy {
    min-width: 0;
    text-align: center;
  }
  .trust-cta-stats {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .trust-cta-stat:not(:last-child)::after {
    display: none;
  }
  .trust-cta-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .trust-cta-section {
    padding: 0 16px 48px;
  }
  .trust-cta-shell {
    padding: 12px 0 0;
    gap: 16px;
  }
  .trust-cta-actions {
    width: 100%;
  }
  .trust-cta-actions .btn-gold {
    width: 100%;
  }
  .trust-cta-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .trust-cta-stat {
    width: auto;
    min-width: 108px;
    flex: 1 0 auto;
    align-items: center;
    padding: 8px 6px;
  }
  .trust-cta-stat span {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .trust-cta-copy .section-title {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }
  .trust-cta-stats {
    gap: 6px;
  }
  .trust-cta-stat strong {
    font-size: 1.25rem;
  }
}

/* FAQ */
.faq {
  background: linear-gradient(180deg, #fff 0%, #f8f4f1 100%);
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(115, 26, 39, 0.1);
  border-radius: 22px;
  padding: 0 24px;
  box-shadow: 0 10px 28px rgba(26, 9, 13, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(115, 26, 39, 0.22);
  box-shadow: 0 16px 38px rgba(26, 9, 13, 0.08);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 42px 22px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--black);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 26, 39, 0.08);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 0.97rem;
}

@media (max-width: 600px) {
  .faq {
    padding: 56px 16px;
  }
  .faq-grid {
    gap: 12px;
  }
  .faq-item {
    border-radius: 18px;
    padding: 0 16px;
  }
  .faq-item summary {
    padding: 18px 38px 18px 0;
    font-size: 0.95rem;
  }
  .faq-item p {
    padding-bottom: 18px;
    font-size: 0.92rem;
  }
}

/* BEFORE/AFTER RESULTS — Accordion */
.results {
  background: var(--white);
  padding: 80px 0;
}
.results-accordion {
  display: flex;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 500px;
}
.results-panel {
  position: relative;
  flex: 0.15;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease;
  box-shadow: 0 12px 40px rgba(26,9,13,0.1);
  text-decoration: none;
  opacity: 0.2;
}
.results-panel.active {
  flex: 1;
  opacity: 1;
}
.results-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.results-panel.active img {
  transform: scale(1);
}
.results-panel:not(.active) img {
  transform: scale(1.1);
}
.results-panel-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
  pointer-events: none;
}
.results-panel:not(.active) .results-panel-label {
  opacity: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  bottom: 50%;
  transform: translateX(-50%) translateY(50%);
  padding: 16px 10px;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .results {
    padding: 48px 0;
  }
  .results-accordion {
    flex-direction: row;
    overflow-x: auto;
    height: auto;
    padding: 0 16px;
    gap: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .results-panel {
    flex: 0 0 auto;
    min-width: 280px;
    height: 350px;
    border-radius: 12px;
    scroll-snap-align: start;
  }
  .results-panel.active {
    height: 400px;
  }
  .results-panel:not(.active) .results-panel-label {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    bottom: 50%;
    transform: translateX(-50%) translateY(50%);
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .results-panel.active {
    height: 300px;
  }
}

/* HOW */
.how { background: var(--cream); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; max-width: 280px; text-align: center; padding: 40px 24px; }
.step-num { font-family: var(--font-serif); font-size: 3.5rem; color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 16px; }
.step h4 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--black); margin-bottom: 10px; font-weight: 500; }
.step p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.3; margin-top: 60px; }

/* PRICES */
.prices { background: var(--dark); }
.price-tabs { display: flex; gap: 0; justify-content: center; margin-bottom: 48px; border: 1px solid var(--border); border-radius: 8px; width: fit-content; margin-left: auto; margin-right: auto; overflow: hidden; background: var(--white); flex-wrap: wrap; max-width: 100%; }
.tab-btn { padding: 12px 24px; background: transparent; color: var(--text-dim); border: none; cursor: pointer; font-size: 0.82rem; letter-spacing: 0.08em; font-family: var(--font-sans); transition: all 0.3s; }
.tab-btn.active { background: var(--gold); color: var(--white); font-weight: 600; }
.price-panel.hidden { display: none; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}
.price-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(115,26,39,0.08); }
.price-name { font-size: 0.88rem; color: var(--black); margin-bottom: 6px; font-weight: 600; line-height: 1.4; }
.price-duration { font-size: 0.73rem; color: var(--text-dim); letter-spacing: 0.05em; margin-bottom: 16px; }
.price-row { display: flex; align-items: center; justify-content: space-between; }
.price-vals { display: flex; gap: 12px; align-items: baseline; }
.price-first { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 600; }
.price-second { font-size: 0.9rem; color: var(--text-dim); text-decoration: line-through; }
.price-second-only { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 600; }
.price-book { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; border: 1px solid var(--border); padding: 6px 14px; border-radius: 4px; cursor: pointer; transition: all 0.3s; background: transparent; font-family: var(--font-sans); font-weight:600; }
.price-book:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.price-label { font-size: 0.68rem; color: var(--text-dim); margin-bottom: 4px; }
.price-cta { text-align: center; margin-top: 56px; }
.price-cta p { color: var(--text); margin-bottom: 16px; }

/* TESTI */
.testi { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.03); display: flex; flex-direction: column; gap: 12px; }
.testi-avatar-img {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background-size: 200% 200%;
  background-repeat: no-repeat;
}

.avatar-sarah  { background-image: url('assets/avatars4.png'); background-position: 0% 0%; }
.avatar-lena   { background-image: url('assets/avatars4.png'); background-position: 100% 0%; }
.avatar-yasmin { background-image: url('assets/avatars4.png'); background-position: 0% 100%; }
.avatar-faruk  { background-image: url('assets/avatars4.png'); background-position: 100% 100%; }

.avatar-maria { 
  background-image: url('assets/avatars2.png'); 
  background-size: 200% 100%;
  background-position: 0% 50%; 
}
.avatar-nadia { 
  background-image: url('assets/avatars2.png'); 
  background-size: 200% 100%;
  background-position: 100% 50%; 
}
.stars { color: #E8A020; letter-spacing: 2px; font-size: 0.9rem; }
.testi-card p { font-size: 0.88rem; color: var(--text); line-height: 1.85; font-style: italic; flex: 1; }
.testi-author { display: flex; flex-direction: column; gap: 2px; padding-top: 8px; border-top: 1px solid var(--border); }
.testi-name { font-size: 0.85rem; color: var(--black); font-weight: 700; }
.testi-zone { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; }
.review-bar { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 56px; padding: 28px 40px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); flex-wrap: wrap; }
.review-bar-stars { font-size: 1.4rem; color: #E8A020; }
.review-bar-text { font-size: 0.95rem; color: var(--black); }

/* INSTAGRAM */
.insta-section {
  background: linear-gradient(180deg, #fff 0%, #f8f4f1 100%);
  padding-top: 88px;
  padding-bottom: 88px;
}

.insta-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 40px;
  align-items: center;
}

.insta-copy .section-header,
.insta-copy .section-desc {
  margin-left: 0;
}

.insta-copy .section-desc {
  max-width: 520px;
}

.insta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.insta-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(115, 26, 39, 0.14);
  background: rgba(255,255,255,0.75);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.insta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(115, 26, 39, 0.22);
  color: var(--black);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-ghost-dark:hover {
  background: rgba(115, 26, 39, 0.06);
  border-color: rgba(115, 26, 39, 0.35);
}

.insta-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 20px;
}

.insta-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 26px;
  background: #eadfd9;
  box-shadow: 0 18px 50px rgba(26, 9, 13, 0.14);
}

.insta-card-large {
  grid-row: span 2;
  min-height: 620px;
}

.insta-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.insta-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  background: #d9cbc3;
}

.insta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 9, 13, 0.08) 30%, rgba(26, 9, 13, 0.74) 100%);
}

.insta-sound-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(26, 9, 13, 0.48);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.insta-sound-toggle:hover {
  background: rgba(26, 9, 13, 0.62);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.insta-card:hover .insta-card-image,
.insta-card:hover .insta-card-video {
  transform: scale(1.04);
}

.insta-card-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insta-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.insta-card-overlay strong {
  font-size: 1rem;
  line-height: 1.35;
}

.insta-card-overlay-profile strong {
  max-width: 20ch;
}

@media (max-width: 980px) {
  .insta-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .insta-copy {
    text-align: center;
  }
  .insta-copy .section-desc {
    max-width: 680px;
    margin: 0 auto;
  }
  .insta-meta {
    justify-content: center;
  }
  .insta-actions {
    justify-content: center;
  }
  .insta-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insta-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .insta-section {
    padding: 56px 16px;
  }
  .insta-shell {
    gap: 22px;
  }
  .insta-copy {
    text-align: left;
  }
  .insta-copy .section-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .insta-copy .section-desc {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .insta-meta {
    justify-content: flex-start;
    margin: 18px 0 22px;
  }
  .insta-actions {
    flex-direction: column;
  }
  .insta-actions .btn-gold,
  .insta-actions .btn-ghost-dark {
    width: 100%;
  }
  .insta-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .insta-card {
    min-height: 250px;
    border-radius: 18px;
  }
  .insta-card-large {
    min-height: 460px;
    border-radius: 20px;
  }
  .insta-card-video,
  .insta-card-image {
    object-position: center center;
  }
  .insta-card-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 6px;
  }
  .insta-card-overlay strong {
    font-size: 0.96rem;
    line-height: 1.3;
  }
  .insta-sound-toggle {
    top: 14px;
    right: 14px;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .insta-section {
    padding: 52px 14px;
  }
  .insta-chip {
    padding: 7px 12px;
    font-size: 0.76rem;
  }
  .insta-card {
    min-height: 230px;
  }
  .insta-card-large {
    min-height: 400px;
  }
  .insta-sound-toggle {
    left: 14px;
    right: auto;
  }
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #731A27, #4A1019, #2E1017);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 20px; text-align: center;
}
.cta-banner-inner h2 { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3rem); color: var(--white); margin: 12px 0 16px; font-weight: 300; }
.cta-banner-inner h2 em { color: #E8CC9A; font-style: italic; }
.cta-banner-inner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner-inner .btn-gold { background: var(--white); color: var(--gold); border: 1px solid var(--white); }
.cta-banner-inner .btn-gold:hover { background: transparent; color: var(--white); box-shadow: none; }

/* BOOKING */
.booking { background: var(--dark); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.c-icon { font-size: 1.1rem; width: 24px; }
.contact-item a { color: var(--gold); font-weight: 500; }
.booking-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.03); }
.booking-form h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--black); margin-bottom: 28px; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-dim); text-transform: uppercase; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px 14px; color: var(--black);
  font-family: var(--font-sans); font-size: 0.9rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(115,26,39,0.1); }
.form-group select option { background: var(--white); color: var(--black); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* FOOTER */
.footer { 
  background: linear-gradient(135deg, var(--black) 0%, #2A1518 100%); 
  border-top: 2px solid var(--gold); 
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/dus.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.045;
  pointer-events: none;
}

@media (min-width: 901px) {
  .footer::after {
    background-attachment: fixed;
  }
}

@media (max-width: 900px) {
  .footer::after {
    background-attachment: scroll;
  }
}

.footer-inner { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1.5fr; 
  gap: 48px; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding-bottom: 48px; 
  position: relative;
  z-index: 1;
}

.footer-brand { 
  display: flex; 
  flex-direction: column; 
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.footer-logo .logo-v {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.footer-logo .logo-text {
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-serif);
  line-height: 1;
}

.footer-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-left: 8px;
  font-weight: 400;
}

.footer-description {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.footer-address {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1rem;
  opacity: 0.8;
}

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

.footer-links h5 { 
  font-size: 0.75rem; 
  letter-spacing: 0.2em; 
  color: var(--gold-light); 
  text-transform: uppercase; 
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links a { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.7); 
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover { 
  color: var(--white);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -20px;
}

.footer-social { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.footer-social h5 { 
  font-size: 0.75rem; 
  letter-spacing: 0.2em; 
  color: var(--gold-light); 
  text-transform: uppercase; 
  margin-bottom: 12px;
  font-weight: 600;
}

.social-links { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.social-link { 
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.7); 
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover { 
  color: var(--white);
  transform: translateX(4px);
}

.social-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.footer-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding: 24px 0; 
  max-width: 1200px; 
  margin: 0 auto;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-certificates {
  display: flex;
  gap: 12px;
  align-items: center;
}

.certificate {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.certificate:hover {
  opacity: 1;
}

.certificate svg {
  display: block;
}

.footer-bottom p { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

.separator {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

/* ANIMATIONS */
.reveal-up { opacity: 0; transform: translateY(30px); animation: revealUp 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes revealUp { to { opacity:1; transform:translateY(0); } }

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.3s; }

/* MOBILE */
.btn-wa-large {
  display: inline-flex; align-items: center; gap: 14px;
  background: #25D366; color: #fff;
  padding: 18px 32px; border-radius: 12px; font-size: 1rem;
  font-weight: 600; letter-spacing: 0.02em; margin-bottom: 32px;
  transition: all 0.3s; box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  text-decoration: none; width: fit-content;
}
.btn-wa-large:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.4); }

@media (max-width: 1024px) {
  .hero-scroller { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 40px 40px; text-align: center; }
  .hero-left .hero-stats { justify-content: center; }
  .hero-left .hero-actions { justify-content: center; }
  .hero-right { height: 50vh; width: 100%; }
  .hero-img-stack { width: 92%; height: 90%; }
}
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; right: 20px; background: #fff; padding: 16px; gap: 8px; z-index: 999; box-shadow: 0 4px 20px rgba(0,0,0,0.15); border-radius: 12px; min-width: 200px; max-width: 280px; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; text-align: center; padding: 12px 16px; border-radius: 8px; background: #f8f8f8; transition: all 0.3s; white-space: nowrap; font-size: 13px; }
  .nav-links a:hover { background: #f0f0f0; }
  .nav-links .nav-cta, .nav-links .nav-wa { margin-top: 8px; color: #fff !important; }
  .nav-links .nav-cta { background: var(--gold) !important; }
  .nav-links .nav-cta:hover { background: var(--gold-light) !important; }
  .hamburger { display: flex; z-index: 1001; position: relative; background: #fff; padding: 12px 16px; border-radius: 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
  .hamburger span { background: var(--black); }
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 0; }
  .tech-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
  .footer-logo { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.5rem; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }
  .section-pad { padding: 70px 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-left { padding: 90px 24px 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-logo { justify-content: center; margin-bottom: 8px; }
  .footer-contact { align-items: center; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .trust-inner { gap: 20px; }
  
  /* Better mobile spacing */
  .section-pad { padding: 40px 16px; }
  .hero { padding: 80px 16px 40px; }
  .side-by-side { padding: 40px 16px; }
  .about { padding: 40px 16px; }
  .tech { padding: 40px 16px; }
  .prices { padding: 40px 16px; }
  .reviews { padding: 40px 16px; }
  .booking { padding: 40px 16px; }
  .booking-form-wrap { padding: 24px; }
  .price-tabs { flex-direction: column; width: 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
  .review-bar { flex-direction: column; text-align: center; gap: 12px; }
}

/* ═══ MOTION SYSTEM (Framer Motion Inspired) ══════════════════ */
.motion-up { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.motion-scale { opacity: 0; transform: scale(0.95); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.motion-left { opacity: 0; transform: translateX(-40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.motion-right { opacity: 0; transform: translateX(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }

.animate { opacity: 1 !important; transform: none !important; }

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ── TREATMENT CARDS ───────────────────────────── */
.treatment-cards {
  position: relative;
  overflow: hidden;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.treatment-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.treatment-image-wrap {
  width: calc(100% + 56px);
  margin: -32px -28px 4px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 12;
  background: linear-gradient(135deg, #efe6df, #f8f3ef);
}

.treatment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.treatment-image-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(26,9,13,0.1) 0%, rgba(26,9,13,0.72) 100%);
  backdrop-filter: blur(8px);
}

.treatment-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.treatment-focus {
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--white);
  font-weight: 600;
}

.treatment-card-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.treatment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.treatment-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(115,26,39,0.08);
  border: 1px solid rgba(115,26,39,0.12);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
}

.treatment-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--black);
  margin: 0;
  font-weight: 600;
}

.treatment-card-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

.treatment-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-card li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.treatment-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.treatment-card li:last-child {
  margin-bottom: 0;
}

.treatment-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(115,26,39,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,242,238,0.92) 100%);
  color: var(--brand);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-info-link::after {
  content: '→';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(115,26,39,0.18);
  background: rgba(115,26,39,0.06);
  color: var(--brand);
  flex-shrink: 0;
}

.treatment-info-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26,9,13,0.08);
  border-color: rgba(115,26,39,0.2);
}

.treatment-info-panel {
  margin-top: 4px;
  border: 1px solid rgba(115,26,39,0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,242,238,0.92) 100%);
  overflow: hidden;
}

.treatment-info-toggle {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.treatment-info-toggle::-webkit-details-marker {
  display: none;
}

.treatment-info-toggle::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(115,26,39,0.18);
  background: rgba(115,26,39,0.06);
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.treatment-info-panel[open] .treatment-info-toggle::after {
  content: '–';
}

.treatment-info-body {
  padding: 0 16px 16px;
}

.treatment-info-body p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.92rem;
}

.treatment-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.treatment-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184,134,11,0.1);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.treatment-card-actions {
  margin-top: auto;
  display: flex;
}

.treatment-card-btn {
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.treatment-card-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}

/* Featured Treatment Card */
.treatment-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
  position: relative;
}

.treatment-card.featured:hover {
  box-shadow: 0 16px 50px rgba(184,134,11,0.2);
}

.treatment-badge-featured {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
  z-index: 10;
}

.treatment-badge.badge-free {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: var(--white);
  font-weight: 700;
}

.treatment-card-btn.btn-featured {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  font-weight: 600;
  width: 100%;
}

.treatment-card-btn.btn-featured:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184,134,11,0.4);
}

.treatment-cta {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(26, 9, 13, 0.06);
}

.treatment-cta p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.treatment-detail-page {
  padding: 140px 40px 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f3ef 0%, #ffffff 100%);
}

.treatment-detail-shell {
  max-width: 1160px;
  margin: 0 auto;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.detail-back-link::before {
  content: '←';
}

.treatment-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: stretch;
  margin-bottom: 56px;
}

.treatment-detail-copy {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(115,26,39,0.08);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 18px 48px rgba(26,9,13,0.07);
}

.treatment-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 18px;
  font-weight: 500;
}

.treatment-detail-subtitle {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 58ch;
}

.treatment-detail-meta,
.detail-highlight-list,
.detail-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.treatment-detail-meta span,
.detail-highlight-list span,
.detail-quick-facts span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(115,26,39,0.08);
  border: 1px solid rgba(115,26,39,0.12);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
}

.treatment-detail-visual {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,9,13,0.16);
  background: #efe6df;
}

.treatment-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-detail-visual-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(26,9,13,0.16) 0%, rgba(26,9,13,0.78) 100%);
  backdrop-filter: blur(10px);
  color: #fff;
}

.treatment-detail-visual-overlay strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.treatment-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
}

.treatment-article {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(115,26,39,0.08);
  box-shadow: 0 18px 44px rgba(26,9,13,0.06);
  padding: 42px;
}

.treatment-article-section + .treatment-article-section {
  margin-top: 42px;
}

.treatment-article-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--black);
  margin: 0 0 18px;
  font-weight: 500;
}

.treatment-article-section p {
  margin: 0 0 18px;
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 1.02rem;
}

.treatment-article-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dark);
  line-height: 1.9;
}

.treatment-article-section li + li {
  margin-top: 10px;
}

.detail-callout {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(115,26,39,0.06), rgba(184,134,11,0.08));
  border: 1px solid rgba(115,26,39,0.1);
}

.detail-callout strong {
  display: block;
  color: var(--black);
  margin-bottom: 8px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-sidebar-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(115,26,39,0.08);
  box-shadow: 0 16px 36px rgba(26,9,13,0.05);
  padding: 24px;
}

.detail-sidebar-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 500;
}

.detail-sidebar-card p,
.detail-sidebar-card li {
  color: var(--text-dim);
  line-height: 1.75;
}

.detail-sidebar-card p {
  margin: 0 0 16px;
}

.detail-sidebar-card ul {
  margin: 0;
  padding-left: 18px;
}

.detail-sidebar-card .treatment-card-btn {
  margin-top: 16px;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .treatment-card {
    padding: 24px 20px;
  }

  .treatment-image-wrap {
    width: calc(100% + 40px);
    margin: -24px -20px 4px;
    aspect-ratio: 16 / 12;
  }

  .treatment-image-overlay {
    inset: auto 14px 14px 14px;
    padding: 12px 14px;
  }

  .treatment-focus {
    font-size: 0.9rem;
  }

  .treatment-info-toggle {
    padding: 13px 14px;
  }

  .treatment-info-body {
    padding: 0 14px 14px;
  }

  .treatment-detail-page {
    padding: 120px 20px 60px;
  }

  .treatment-detail-hero,
  .treatment-detail-layout {
    grid-template-columns: 1fr;
  }

  .treatment-detail-copy,
  .treatment-article {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .treatment-detail-visual {
    min-height: 360px;
    border-radius: 22px;
  }

  .treatment-detail-visual-overlay {
    inset: auto 14px 14px 14px;
    padding: 16px;
  }
  
  .treatment-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .treatment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .treatment-cta {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .treatments-grid {
    gap: 20px;
  }
  
  .treatment-card {
    padding: 20px 16px;
  }

  .treatment-image-wrap {
    width: calc(100% + 32px);
    margin: -20px -16px 2px;
    aspect-ratio: 16 / 12;
  }
  
  .treatment-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .treatment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .treatment-card li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .treatment-cta {
    padding: 20px 16px;
  }
}

/* Custom Spring Effect for Buttons */
.btn-gold:active { transform: scale(0.95); }

/* ── FRAMER MOTION-LIKE ANIMATIONS ───────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }
.fade-in.delay-4 { animation-delay: 0.6s; }
.fade-in.delay-5 { animation-delay: 0.75s; }

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

.motion-up {
  opacity: 0;
  transform: translateY(40px);
  animation: motionUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.motion-up.delay-1 { animation-delay: 0.2s; }
.motion-up.delay-2 { animation-delay: 0.4s; }
.motion-up.delay-3 { animation-delay: 0.6s; }
.motion-up.delay-4 { animation-delay: 0.8s; }

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

.motion-scale {
  opacity: 0;
  transform: scale(0.9);
  animation: motionScale 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.motion-scale.delay-1 { animation-delay: 0.3s; }
.motion-scale.delay-2 { animation-delay: 0.6s; }

@keyframes motionScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger animations for grids */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.stagger-item:nth-child(1) { animation-delay: 0s; }
.stagger-item:nth-child(2) { animation-delay: 0.15s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.45s; }
.stagger-item:nth-child(5) { animation-delay: 0.6s; }
.stagger-item:nth-child(6) { animation-delay: 0.75s; }

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

/* Hover animations with spring physics */
.spring-hover {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.spring-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax effect for hero */
.parallax-bg {
  transform: translateZ(0);
  will-change: transform;
}

/* ── GDPR COOKIE CONSENT BANNER ─────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px 40px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  flex: 1;
}
.cookie-banner-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--white);
}
.cookie-banner-message {
  font-size: 0.9rem;
  margin: 0 0 16px 0;
  color: var(--text-dim);
  line-height: 1.5;
}
.cookie-banner-message a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-message a:hover {
  color: var(--gold-light);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.1);
}
@media (max-width: 720px) {
  .cookie-banner {
    padding: 16px 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* ── FIRST VISITOR OFFER POPUP ─────────────────────── */
.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,9,13,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}
.offer-popup.show {
  opacity: 1;
  visibility: visible;
}
.offer-popup-inner {
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  transform: scale(0.8) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,134,11,0.1);
  overflow: hidden;
}
.offer-popup-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(184,134,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.offer-popup.show .offer-popup-inner {
  transform: scale(1) translateY(0);
}
.offer-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26,9,13,0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.offer-close-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: rotate(90deg);
}
.offer-popup-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-icon {
  font-size: 5rem;
  margin-bottom: 28px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.offer-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}
.offer-popup-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--black);
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.2;
}
.offer-popup-message {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}
.offer-popup-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin: 0 0 36px 0;
  line-height: 1.7;
  max-width: 380px;
}
.countdown-container {
  margin: 24px 0 32px 0;
}
.countdown-label {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 500;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-timer {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.countdown-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.countdown-item .countdown-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.offer-popup-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(184,134,11,0.4);
  position: relative;
  overflow: hidden;
}
.offer-popup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.offer-popup-btn:hover::before {
  left: 100%;
}
.offer-popup-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184,134,11,0.5);
}
@media (max-width: 720px) {
  .offer-popup-inner {
    padding: 48px 28px;
  }
  .offer-popup-title {
    font-size: 2.2rem;
  }
  .offer-popup-message {
    font-size: 1.25rem;
  }
  .offer-popup-sub {
    font-size: 0.95rem;
  }
  .offer-popup-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 1.05rem;
  }
  .offer-icon {
    font-size: 4rem;
  }
  .countdown-timer {
    gap: 12px;
  }
  .countdown-item {
    min-width: 60px;
  }
  .countdown-value {
    font-size: 1.8rem;
  }
  .countdown-item .countdown-label {
    font-size: 0.65rem;
  }
}
