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

:root {
  --cream: #FAF7F2;
  --nude: #E8DDD3;
  --warm-white: #FEFCFA;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --dark: #1A1A1A;
  --dark-soft: #2D2A26;
  --text: #3A3632;
  --text-light: #7A756E;
  --rose: #C9A89A;
  --rose-deep: #B08D7E;
  --accent: #8B7355;
  --border: rgba(196, 162, 101, 0.2);
  --shadow: 0 4px 40px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 12px 60px rgba(26, 26, 26, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* === TYPOGRAPHY === */
.heading-display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.heading-xl { font-size: clamp(2.2rem, 5vw, 4.2rem); }
.heading-lg { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
.heading-md { font-size: clamp(1.3rem, 2.5vw, 2rem); }
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.gold-line-center { margin: 20px auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .btn {
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-primary.btn-arrow, .btn-outline.btn-arrow {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 12px 18px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}
.btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 162, 101, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 162, 101, 0.4);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); font-weight: 300; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--dark) !important;
  color: var(--cream) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(196, 162, 101, 0.1);
  border: 1px solid var(--border);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeIn 1s ease 0.3s both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.5s both;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.9s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeUp 1s ease 1.1s both;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease 0.8s both;
}
.hero-img-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--nude), var(--rose));
  position: relative;
  overflow: hidden;
  border-radius: 240px 240px 0 0;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.rating {
  bottom: 40px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.hero-float-card .rating-text { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.05em; }
.hero-float-card.location {
  top: 60px;
  right: -20px;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  animation-delay: 1s;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--dark);
  padding: 28px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .btn {
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-primary.btn-arrow, .btn-outline.btn-arrow {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 12px 18px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header .heading-display { margin-bottom: 16px; }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* === TREATMENTS === */
.treatments { background: var(--warm-white); }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.treatment-card {
  background: var(--cream);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.treatment-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.treatment-card:hover::before { opacity: 1; }
.treatment-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.treatment-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.treatment-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.treatment-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.treatment-price {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .heading-display { color: var(--cream); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(250,247,242,0.6); margin-bottom: 32px; position: relative; font-size: 0.95rem; }

/* === USP === */
.usp { background: var(--cream); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp-item { text-align: center; padding: 24px 16px; }
.usp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}
.usp-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.usp-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* === ABOUT === */
.about { background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rose), var(--nude));
  position: relative;
  border-radius: 220px 220px 0 0;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-img::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}
.about-text .label { margin-bottom: 16px; display: block; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.8; }
.about-signature {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 28px;
}

/* === REVIEWS === */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--warm-white);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

/* === PROCESS === */
.process { background: var(--warm-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* === FAQ === */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.3s ease;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(135deg, var(--dark-soft) 0%, var(--dark) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 60%);
}
.final-cta .heading-display { color: var(--cream); margin-bottom: 16px; position: relative; }
.final-cta p {
  color: rgba(250,247,242,0.6);
  position: relative;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
}
.final-cta .btn { position: relative; }

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 64px 0 160px;
  color: rgba(250,247,242,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 300px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer a {
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  text-align: center;
}
.footer-bottom div:last-child {
  padding-top: 10px;
  border-top: 1px solid rgba(250,247,242,0.05);
  font-size: 0.7rem;
  color: rgba(250,247,242,0.35);
  width: 100%;
  text-align: center;
}
.footer-bottom a { display: inline; margin: 0; }

/* === STICKY CTA === */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-cta .btn { box-shadow: 0 8px 40px rgba(26,26,26,0.25); padding: 14px 28px; }



.insta-link { text-align: center; padding: 32px 0 48px; }
.insta-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
}
.insta-link a:hover { color: var(--gold); }

/* =======================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================= */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 120px 24px 60px;
  }
  .hero-img-frame {
    max-width: 380px;
    border-radius: 190px 190px 0 0;
  }
  .hero-float-card.rating { left: -10px; bottom: 30px; padding: 12px 18px; }
  .hero-float-card.location { right: -10px; top: 40px; padding: 12px 18px; }
  .treatment-grid { gap: 16px; }
  .treatment-card { padding: 32px 24px; }
  .usp-grid { gap: 20px; }
  .about-grid { gap: 48px; }
  .footer-grid { gap: 32px; }
}

/* =======================================
   RESPONSIVE — TABLET SMALL (max-width: 900px)
   ======================================= */
@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    padding: 40px 40px 32px;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.85rem; letter-spacing: 0.12em; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
  }
  .nav-overlay.open { display: block; }

  /* Nav logo smaller on tablet/mobile */
  .logo-svg { height: 56px; }

  /* Hero — stacked layout */
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 20px 60px;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-visual { order: -1; }
  .hero-img-frame {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 150px 150px 0 0;
  }
  .hero-float-card.rating {
    left: 50%;
    transform: translateX(-80%);
    bottom: -10px;
    padding: 10px 16px;
  }
  .hero-float-card.location {
    right: auto;
    left: 50%;
    transform: translateX(10%);
    top: 20px;
    padding: 10px 16px;
  }
  .hero-badge { margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }

  /* Treatments — 2 columns on tablet */
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* USP — 2 columns */
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* About — stacked */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .about-img::after { display: none; }
  .about-text { text-align: center; }
  .about-text .btn { margin: 0 auto; }
  .gold-line { margin: 20px auto; }

  /* Reviews — 1 column */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Process — 2 columns */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-steps::before { display: none; }

  /* Gallery */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Trust bar */
  .trust-bar-inner { gap: 20px; justify-content: center; }
  .trust-item { font-size: 0.62rem; letter-spacing: 0.1em; }
}

/* =======================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ======================================= */
@media (max-width: 600px) {
  .section-pad { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 0.88rem; }

  /* Nav logo smaller on mobile */
  .logo-svg { height: 46px; }

  /* Hero mobile fine-tuning */
  .hero-content { padding: 100px 16px 48px; gap: 32px; }
  .hero h1 { font-size: 2rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }
  .hero-img-frame {
    max-width: 240px;
    border-radius: 120px 120px 0 0;
  }
  .hero-float-card { padding: 8px 14px !important; }
  .hero-float-card .stars { font-size: 0.7rem; }
  .hero-float-card .rating-text { font-size: 0.6rem; }
  .hero-float-card.rating {
    bottom: -8px;
    left: 50%;
    transform: translateX(-75%);
  }
  .hero-float-card.location {
    top: 10px;
    left: 50%;
    transform: translateX(5%);
    font-size: 0.6rem;
  }
  .hero-badge { font-size: 0.58rem; padding: 6px 14px; margin-bottom: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.7rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.62rem; }

  /* Trust bar — stack on mobile */
  .trust-bar { padding: 20px 0; }
  .trust-bar-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .trust-item { font-size: 0.6rem; }

  /* Treatments — single column */
  .treatment-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .treatment-card { padding: 24px 20px; }
  .treatment-card h3 { font-size: 1.2rem; }
  .treatment-card p { font-size: 0.84rem; }

  /* USP — single column */
  .usp-grid { grid-template-columns: 1fr; gap: 8px; }
  .usp-item { padding: 20px 12px; }
  .usp-num { font-size: 2rem; }

  /* About */
  .about-grid { gap: 32px; }
  .about-img { max-width: 280px; aspect-ratio: 3/4; }
  .about-text h2 { font-size: 1.6rem; }
  .about-text p { font-size: 0.88rem; }
  .about-signature { font-size: 1.5rem; }

  /* Reviews */
  .review-card { padding: 28px 20px; }
  .review-card p { font-size: 0.85rem; }

  /* Process — single column */
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .step-num { width: 52px; height: 52px; font-size: 1.2rem; }
  .process-step h3 { font-size: 1.05rem; }
  .process-step p { font-size: 0.82rem; }

  /* FAQ */
  .faq-question { font-size: 1rem; padding: 20px 0; }
  .faq-answer p { font-size: 0.85rem; }

  /* CTA sections */
  .cta-banner { padding: 56px 0; overflow: hidden; }
  .cta-banner .btn { padding: 12px 16px; font-size: 0.62rem; letter-spacing: 0.1em; max-width: calc(100vw - 48px); white-space: normal; text-align: center; line-height: 1.4; }
  .final-cta { padding: 72px 0; }
  .final-cta p { font-size: 0.9rem; }


  /* Footer — single column */
  .footer { padding: 48px 0 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand p { max-width: 100%; }

  /* Sticky CTA — full width on mobile */
  .sticky-cta {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 12px 16px;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
  }
  .sticky-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.7rem;
    box-shadow: none;
  }
}

/* =======================================
   RESPONSIVE — VERY SMALL (max-width: 380px)
   ======================================= */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-img-frame { max-width: 200px; border-radius: 100px 100px 0 0; }
  .hero-float-card { display: none; }
  .heading-lg { font-size: 1.5rem; }
  .heading-xl { font-size: 1.8rem; }
  .btn { padding: 12px 20px; font-size: 0.65rem; letter-spacing: 0.15em; }
}

.logo-svg {
  height: 80px;
  width: auto;
  display: block;
  color: var(--dark);
}
.footer .logo-svg {
  height: 110px;
  color: var(--cream);
  margin-bottom: 20px;
}

/* === FLOATING INSTAGRAM === */
.floating-insta {
  position: fixed;
  right: 24px;
  bottom: 150px;
  transform: none;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.floating-insta.visible {
  opacity: 1;
  pointer-events: all;
}
.floating-insta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.4);
  transition: all 0.3s ease;
  
}
.floating-insta a:hover {
  color: var(--cream);
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(26, 26, 26, 0.4); background: var(--dark);
}
.floating-insta a:hover svg {
  stroke: var(--cream);
}
.floating-insta a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--dark);
  stroke-width: 2;
}
.floating-insta-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  transform: rotate(180deg);
}
@keyframes floatInsta {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .floating-insta {
    right: max(16px, env(safe-area-inset-right, 16px));
    bottom: 190px;
    top: auto;
    transform: none;
    flex-direction: column;
    gap: 0;
  }
  .floating-insta a { width: 44px; height: 44px; }
  .floating-insta a:hover svg {
  stroke: var(--cream);
}
.floating-insta a svg { width: 22px; height: 22px; }
  .floating-insta-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.55rem;
  }
}

/* Mobile menu extras */
.mobile-menu-logo-wrap {
  display: none;
}
.mobile-menu-logo {
  height: 60px;
  width: auto;
  color: var(--dark);
  margin-bottom: 12px;
}
.mobile-menu-legal {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    list-style: none;
  }
  .mobile-menu-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    list-style: none;
  }
  .mobile-menu-legal a {
    font-size: 0.7rem !important;
    color: var(--text-light) !important;
    letter-spacing: 0.1em !important;
  }
  .mobile-menu-legal span {
    color: var(--text-light);
    font-size: 0.7rem;
  }
}

.mobile-menu-credit {
  display: none;
  border-top: none !important;
  margin-top: 4px !important;
  padding-top: 0 !important;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.mobile-menu-credit a {
  color: var(--gold) !important;
  font-size: 0.65rem !important;
}
@media (max-width: 900px) {
  .mobile-menu-credit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
}
.scroll-top button:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(196, 162, 101, 0.4);
}
.scroll-top button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  .scroll-top { bottom: 130px; right: max(16px, env(safe-area-inset-right, 16px)); }
  .scroll-top button { width: 42px; height: 42px; }
  .scroll-top button svg { width: 18px; height: 18px; }
}

/* Mobile nav CTA next to burger */
.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 14px;
}
.nav-cta-mobile {
  display: none;
  padding: 8px 18px;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .btn {
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-primary.btn-arrow, .btn-outline.btn-arrow {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 12px 18px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}
.nav-cta-mobile:hover {
  background: var(--gold);
  color: var(--dark);
}

@media (max-width: 900px) {
  .nav-right-mobile {
    display: flex;
  }
  .nav-cta-mobile {
    display: inline-flex;
  }
  .nav-toggle {
    display: flex !important;
  }
}

@media (max-width: 400px) {
  .nav-cta-mobile {
    font-size: 0.55rem;
    padding: 7px 12px;
    letter-spacing: 0.1em;
  }
}

/* === GALLERY SLIDER === */
.gallery-section { background: var(--warm-white); }

.slider-wrapper { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.slider { overflow: hidden; border-radius: 4px; position: relative; cursor: grab; user-select: none; -webkit-user-select: none;  }
.slider:active { cursor: grabbing; }
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 16px;
  will-change: transform;
}
.slider-item {
  min-width: calc(33.333% - 11px);
  flex: 0 0 calc(33.333% - 11px);
  position: relative;
}
.slider-media {
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--dark);
  cursor: pointer;
}
.slider-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.slider-media.video {
  background: var(--dark);
}
.slider-media.image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.slider-media.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.slider-placeholder {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Video play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.video-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.video-play-btn.hidden { opacity: 0; pointer-events: none; }

.slider-caption {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--gold);
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.insta-link { text-align: center; }
.insta-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
}
.insta-link a:hover { color: var(--gold); }

/* Tablet: 2 items visible */
@media (max-width: 900px) {
  .slider-item { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); }
}
/* Mobile: 1 item visible */
@media (max-width: 600px) {
  .slider-item { min-width: 100%; flex: 0 0 100%; }
  .slider-track { gap: 12px; }
  .slider-wrapper { padding: 0 16px; }
  .video-play-btn { width: 50px; height: 50px; }
  .video-play-btn svg { width: 18px; height: 18px; }
}

/* === LIGHTBOX MODAL === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--dark);
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lightbox-nav svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 600px) {
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* Mobile menu maps button */
.mobile-menu-maps {
  display: none;
  list-style: none;
}
.mobile-menu-maps a {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.mobile-menu-maps a:hover {
  background: var(--gold);
  color: var(--dark) !important;
}
.mobile-menu-maps a svg {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .mobile-menu-maps {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10002;
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--dark-soft);
  border: 1px solid rgba(196, 162, 101, 0.25);
  border-radius: 4px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cookie-text {
  flex: 1;
  min-width: 0;
}
.cookie-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.cookie-text p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.55);
  margin: 0;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .btn {
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-primary.btn-arrow, .btn-outline.btn-arrow {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 12px 18px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}
.cookie-btn-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(250, 247, 242, 0.5);
  border: 1px solid rgba(250, 247, 242, 0.15);
}
.cookie-btn-decline:hover {
  border-color: rgba(250, 247, 242, 0.4);
  color: var(--cream);
}
@media (max-width: 700px) {
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); padding: 22px 20px; }
  .cookie-inner { flex-direction: column; gap: 18px; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; padding: 13px; font-size: 0.68rem; }
  .cookie-text h3 { font-size: 1rem; }
  .cookie-text p { font-size: 0.78rem; }
}

/* === FLOATING PHONE === */
.floating-phone {
  position: fixed;
  right: 24px;
  bottom: 210px;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
}
.floating-phone.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.floating-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.4);
  transition: all 0.3s ease;
}
.floating-phone a:hover {
  background: var(--dark);
  color: var(--cream);
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(26, 26, 26, 0.4);
}
.floating-phone a svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  .floating-phone { right: max(16px, env(safe-area-inset-right, 16px)); bottom: 250px; }
  .floating-phone a { width: 44px; height: 44px; }
  .floating-phone a svg { width: 20px; height: 20px; }
}


/* =======================================
   DEVICE-SPECIFIC BREAKPOINTS
   ======================================= */

/* --- Samsung Galaxy S23 / kleine Android (360px) --- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.7rem; }
  .heading-lg { font-size: 1.4rem; }
  .heading-xl { font-size: 1.7rem; }
  .btn { padding: 11px 18px; font-size: 0.62rem; letter-spacing: 0.12em; }
  .cta-banner .btn { font-size: 0.58rem; padding: 11px 14px; }
  .floating-phone a, .floating-insta a { width: 40px; height: 40px; }
  .floating-phone { right: 12px; }
  .floating-insta { right: 12px; }
  .scroll-top { right: 12px; }
  .scroll-top button { width: 38px; height: 38px; }
}

/* --- iPhone 13 / Xiaomi 13T / Standard Android (390–393px) --- */
@media (min-width: 361px) and (max-width: 394px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 1.9rem; }
  .heading-lg { font-size: 1.55rem; }
  .heading-xl { font-size: 1.95rem; }
  /* Alle langen Buttons umbrechen lassen */
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    box-sizing: border-box;
  }
  .cta-banner .btn {
    font-size: 0.6rem;
    padding: 12px 14px;
    letter-spacing: 0.08em;
  }
  /* Behandlungen & Preise Button */
  .btn-primary.btn-arrow {
    font-size: 0.6rem;
    padding: 12px 16px;
    letter-spacing: 0.1em;
    display: inline-block;
    max-width: calc(100vw - 36px);
  }
  .floating-phone { right: 14px; }
  .floating-insta { right: 14px; }
  .scroll-top { right: 14px; }
  .floating-phone a, .floating-insta a { width: 44px; height: 44px; }
  .scroll-top button { width: 40px; height: 40px; }
}

/* --- Samsung Galaxy S23+ / Pixel 7 / mittlere Android (375–420px) --- */
@media (min-width: 395px) and (max-width: 420px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 2rem; }
  .cta-banner .btn {
    font-size: 0.63rem;
    padding: 12px 16px;
    max-width: calc(100vw - 40px);
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .floating-phone { right: 16px; }
  .floating-insta { right: 16px; }
  .scroll-top { right: 16px; }
}

/* --- iPhone 13 Pro Max / iPhone 14 Pro Max / große Phones (421–430px) --- */
@media (min-width: 421px) and (max-width: 430px) {
  .container { padding: 0 22px; }
  .hero h1 { font-size: 2.1rem; }
  .cta-banner .btn {
    font-size: 0.65rem;
    padding: 13px 20px;
    max-width: calc(100vw - 44px);
  }
  .floating-phone { right: 18px; }
  .floating-insta { right: 18px; }
  .scroll-top { right: 18px; }
}

/* --- Landscape Mobile --- */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding: 80px 24px 40px; flex-direction: row; align-items: center; }
  .hero-img-frame { max-width: 180px; }
  .floating-phone, .floating-insta, .scroll-top { display: none; }
  .nav-links { height: 100dvh; overflow-y: auto; justify-content: flex-start; padding-top: 60px; }
}
