/* ===== MESMERA — Premium Skincare Studio ===== */
/* Design tokens & base reset */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --clay: #C9A68B;
  --clay-dark: #b8936f;
  --clay-light: #d9c0a9;
  --green: #8A9A82;
  --green-dark: #6e8065;
  --green-light: #a3b09c;
  --cream: #F8F5F0;
  --cream-dark: #EDE8E0;
  --text: #2B2B2B;
  --text-light: #5a5a5a;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,166,139,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--clay);
  border: 1px solid var(--clay);
}

.btn-ghost:hover {
  background: var(--clay);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(248,245,240,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.navbar.scrolled .navbar-logo {
  color: var(--text);
}

.logo-sub {
  font-size: 0.55em;
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.7;
  vertical-align: baseline;
  margin-left: 0.15em;
}

.navbar-nav {
  display: flex;
  gap: 2.5rem;
}

.navbar-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s var(--ease);
  position: relative;
}

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  gap: 0;
  margin-right: 1rem;
  order: 2;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s var(--ease);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-sans);
  line-height: 1;
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.lang-btn.active {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* Scrolled state — dark buttons */
.navbar.scrolled .lang-switcher {
  background: rgba(43,43,43,0.06);
  backdrop-filter: blur(8px);
  border-color: rgba(43,43,43,0.1);
}

.navbar.scrolled .lang-btn {
  color: rgba(43,43,43,0.45);
}

.navbar.scrolled .lang-btn:hover {
  color: var(--text);
  background: rgba(43,43,43,0.06);
}

.navbar.scrolled .lang-btn.active {
  background: rgba(43,43,43,0.1);
  color: var(--text);
}

/* Mobile lang switcher */
.lang-switcher-mobile {
  margin-bottom: 1.5rem;
  justify-content: center;
  background: rgba(43,43,43,0.05);
  border-color: rgba(43,43,43,0.1);
  backdrop-filter: none;
  padding: 3px;
}

.lang-switcher-mobile .lang-btn {
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 6px 14px;
}

.lang-switcher-mobile .lang-btn.active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width 0.3s var(--ease);
}

.navbar-nav a:hover::after { width: 100%; }

.navbar.scrolled .navbar-nav a {
  color: var(--text-light);
}

.navbar.scrolled .navbar-nav a:hover {
  color: var(--text);
}

.navbar-cta {
  font-size: 0.7rem;
  padding: 0.7rem 1.6rem;
  letter-spacing: 0.12em;
}

.navbar.scrolled .navbar-cta {
  background: var(--clay);
  color: var(--white);
}

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

.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: -15% 0 -15% 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 8s var(--ease);
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43,43,43,0.35) 0%,
    rgba(43,43,43,0.2) 50%,
    rgba(43,43,43,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

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

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.about-text .btn {
  margin-top: 0.5rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Services Carousel */
.services-carousel-wrapper {
  position: relative;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.services-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}
.services-grid::-webkit-scrollbar { display: none; }

.services-grid .service-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  min-width: 0;
}

@media (max-width: 1200px) {
  .services-grid .service-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 768px) {
  .services-grid .service-card { flex: 0 0 85%; }
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--clay);
  color: var(--white);
  transform: scale(1.1);
}
.carousel-dots {
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay-light);
  transition: all 0.3s;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--clay);
  width: 24px;
  border-radius: 4px;
}

/* Blog link inside card */
.service-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--clay-dark);
  letter-spacing: 0.03em;
  margin-top: 0.6rem;
  transition: color 0.3s, gap 0.3s;
}
.service-blog-link:hover {
  color: var(--text);
  gap: 0.5rem;
}
.service-blog-link svg {
  width: 14px;
  height: 14px;
}

.service-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.service-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clay-light), var(--cream-dark));
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.service-card-body {
  padding: 1.8rem;
}

.service-card-body h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.service-duration {
  font-size: 0.75rem;
  color: var(--clay);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.service-card .btn {
  width: 100%;
  font-size: 0.7rem;
  padding: 0.8rem;
}

/* ===== WHY MESMERA ===== */
.why {
  background: var(--cream);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.pillar {
  padding: 2rem 1rem;
}

.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 40px; height: 40px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}

.testimonial-stars {
  color: var(--clay);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--cream-dark), var(--clay-light));
  min-height: 280px;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:nth-child(1) { grid-row: span 2; min-height: 580px; }

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail svg {
  width: 20px; height: 20px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--clay);
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--clay-dark); }

.contact-hours {
  margin-top: 2rem;
}

.contact-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.88rem;
  color: var(--text-light);
}

.hours-row span:first-child {
  font-weight: 400;
  color: var(--text);
}

.contact-map {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(0.95);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--green);
  padding: 5rem 0;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.final-cta .btn {
  background: var(--white);
  color: var(--green-dark);
}

.final-cta .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream-dark);
  padding: 3rem 0;
  text-align: center;
}

.footer-content p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--clay); }

.footer-domains {
  font-size: 0.75rem;
  color: var(--clay);
  letter-spacing: 0.05em;
}

/* ===== FADE-IN ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(248,245,240,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6rem;
  padding-bottom: 2rem;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text);
  transition: color 0.3s;
}

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

/* When mobile nav is active, force logo to dark */
.mobile-nav.active ~ .navbar .navbar-logo,
.navbar.mobile-open .navbar-logo {
  color: var(--text) !important;
}
.hamburger.active span {
  background: var(--text) !important;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .navbar { padding: 0.8rem 0; }
  .navbar-nav, .navbar-cta { display: none; }
  .lang-switcher:not(.lang-switcher-mobile) { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Logo on mobile */
  .navbar-logo {
    font-size: 1.3rem;
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img { height: 300px; }

  .service-card {
    flex: 0 1 100%;
    min-width: unset;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 1;
    min-height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  /* Final CTA adjustments */
  .final-cta { padding: 3.5rem 0; }
  .final-cta h2 { font-size: 1.6rem; }

  /* Salonized widget mobile fix — keep visible but not overlapping iOS bar */
  .salonized-booking-launcher,
  iframe[src*="salonized"],
  div[class*="salonized"]:not(.salonized-booking) button,
  div[class*="salonized"]:not(.salonized-booking) {
    bottom: 16px !important;
    right: 16px !important;
    z-index: 9998 !important;
  }
}

@media (max-width: 480px) {
  section { padding: 3rem 0; }

  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.85rem; margin-bottom: 2rem; }

  .navbar-logo { font-size: 1.2rem; }
  .logo-sub { font-size: 0.5em; }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn { width: 100%; max-width: 280px; }

  .service-card-body { padding: 1.4rem; }
  .service-card-body h3 { font-size: 1.15rem; }

  .about-text h2 { font-size: 1.5rem; }
  .contact-info h2 { font-size: 1.5rem; }
}

/* iOS safe area padding */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
}


/* ===== 2026 Service menu & trust improvements ===== */
.expertise { padding: 1.5rem 0 5rem; background: var(--cream, #f7f3ee); }
.expertise-panel { display:grid; grid-template-columns:1.4fr 1fr; gap:3rem; align-items:center; padding:2.6rem; background:#fff; border:1px solid rgba(60,52,47,.12); border-radius:2px; }
.expertise-panel h2 { margin:.4rem 0 1rem; }
.expertise-panel p { line-height:1.75; }
.expertise-badges { display:grid; gap:.75rem; }
.expertise-badges span { padding:1rem 1.1rem; border-left:3px solid var(--gold, #b69b7a); background:#f8f6f2; font-size:.92rem; }
.skin-analysis-cta { display:flex; justify-content:space-between; align-items:center; gap:2rem; padding:2.2rem; margin:0 0 2.5rem; background:#66747b; color:#fff; }
.skin-analysis-cta h3 { color:#fff; margin:.35rem 0 .6rem; font-size:clamp(1.4rem,2.5vw,2rem); }
.skin-analysis-cta p { max-width:700px; margin:0; line-height:1.65; opacity:.92; }
.cta-kicker { text-transform:uppercase; letter-spacing:.13em; font-size:.72rem; font-weight:700; opacity:.85; }
.skin-analysis-cta .btn { flex:0 0 auto; background:#fff; color:#4e5c62; }
.service-menu { display:grid; gap:2rem; }
.service-category { background:#fff; border:1px solid rgba(60,52,47,.12); }
.service-category-head { padding:1rem 1.4rem; background:#66747b; color:#fff; text-transform:lowercase; font-size:1.05rem; letter-spacing:.02em; }
.menu-treatment { display:grid; grid-template-columns:minmax(0,1fr) 270px; gap:1.5rem; padding:1.5rem 1.4rem; border-top:1px solid rgba(60,52,47,.1); }
.menu-treatment:first-of-type { border-top:0; }
.menu-treatment h3 { margin:0 0 .25rem; font-size:1.3rem; font-weight:500; }
.menu-treatment small { display:block; margin-bottom:.45rem; font-size:.86rem; color:#6d7477; text-transform:lowercase; }
.menu-treatment p { margin:0; max-width:760px; line-height:1.55; color:#616161; }
.menu-treatment em { display:block; margin-top:.45rem; font-size:.76rem; color:#777; }
.menu-treatment-meta { display:flex; justify-content:flex-end; align-items:center; gap:1.2rem; text-align:right; white-space:nowrap; color:#66747b; }
.menu-treatment-meta strong { display:block; font-size:1.22rem; font-weight:500; }
.price-pair span { min-width:92px; }
.add-on { background:#f5f7f7; }
.featured-treatment { background:#fbf8f3; }
.service-menu-footer { display:flex; justify-content:space-between; align-items:center; gap:2rem; margin-top:2rem; padding:1.5rem 0; }
.service-menu-footer p { margin:0; max-width:760px; color:#646464; }
.google-review-panel { display:flex; justify-content:space-between; align-items:center; gap:2rem; padding:3rem; background:#fff; border:1px solid rgba(60,52,47,.12); }
.google-review-panel h2 { margin:.4rem 0 .8rem; }
.google-review-panel p { max-width:680px; line-height:1.7; }
.results-gallery { padding:6rem 0; background:#f7f3ee; }
.results-placeholder { display:grid; grid-template-columns:1fr auto 1fr; gap:1.25rem; align-items:center; max-width:900px; margin:0 auto; }
.result-frame { min-height:300px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; border:1px dashed rgba(60,52,47,.35); background:#fff; text-align:center; padding:2rem; }
.result-frame span { text-transform:uppercase; letter-spacing:.14em; font-size:.75rem; font-weight:700; }
.result-frame p { color:#777; }
.result-arrow { font-size:2rem; color:#8c8075; }
@media (max-width: 800px) {
  .expertise-panel { grid-template-columns:1fr; gap:1.5rem; padding:1.6rem; }
  .skin-analysis-cta, .google-review-panel, .service-menu-footer { align-items:flex-start; flex-direction:column; padding:1.6rem; }
  .menu-treatment { grid-template-columns:1fr; gap:1rem; }
  .menu-treatment-meta { justify-content:flex-start; text-align:left; flex-wrap:wrap; }
  .results-placeholder { grid-template-columns:1fr; }
  .result-arrow { transform:rotate(90deg); text-align:center; }
}
