/* ============================================
   STUDIO DU CORPO - Luxury Pilates
   Mobile-First Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --cream: #F5E6DC;
  --cream-light: #FBF4EF;
  --blush: #EDDDD3;
  --rose: #A0364D;
  --rose-dark: #8A2E42;
  --rose-light: #C4687A;
  --charcoal: #2B2B2B;
  --warm-gray: #6B5E58;
  --white: #FFFFFF;
  --gold: #C8A96E;
  --whatsapp: #25D366;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  --nav-height: 72px;
  --section-padding: 64px 20px;
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 24px rgba(43, 43, 43, 0.06);
  --shadow-elevated: 0 8px 32px rgba(43, 43, 43, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(160, 54, 77, 0.08), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(200, 169, 110, 0.12), transparent 25%),
    linear-gradient(180deg, #F5E6DC 0%, #FBF4EF 35%, #F5E6DC 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--warm-gray);
  max-width: 480px;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--rose-light);
  margin: 16px 0 24px;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.section-header .section-divider {
  margin: 16px auto 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, #C4687A 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(160, 54, 77, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(160, 54, 77, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--rose);
  border: 1.5px solid var(--rose);
}

.btn-secondary:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

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

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245, 230, 220, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(245, 230, 220, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(160, 54, 77, 0.1);
  box-shadow: 0 2px 16px rgba(43, 43, 43, 0.04);
}

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

.nav-logo-link {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
}

.nav-links {
  display: none;
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
  flex-shrink: 0;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(245, 230, 220, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--charcoal);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.58s; }

.mobile-menu .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.active .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}

.nav-cta {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  background: var(--cream);
  background-image: url('../assets/hero-bg-mobile.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 769px) {
  .hero {
    background-image: url('../assets/hero-bg-desktop.webp');
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 236, 227, 0.85);
  pointer-events: none;
}

.hero-logo {
  width: 260px;
  height: auto;
  margin-bottom: 32px;
  animation: heroLogoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  max-width: 340px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

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

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--rose-light);
  margin-bottom: 20px;
  animation: heroFadeUp 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
  animation: heroFadeUp 0.6s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  animation: heroFadeUp 0.6s ease-out 0.7s forwards;
  opacity: 0;
}

.hero-proof-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-proof-score {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--charcoal);
}

.hero-proof-star {
  width: 16px;
  height: 16px;
}

.hero-proof-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--warm-gray);
  margin-left: 2px;
}

.hero .btn {
  animation: heroFadeUp 0.6s ease-out 0.8s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.4;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: var(--warm-gray);
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  padding: var(--section-padding);
  background: var(--cream-light);
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 54, 77, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.benefit-card-highlight {
  background: linear-gradient(160deg, #FFF6F1 0%, #F4E6DC 100%);
  border: 1px solid rgba(160, 54, 77, 0.1);
}

.benefit-card-highlight .highlight-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

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

.benefit-card-highlight li {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.benefit-card-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-light);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(160, 54, 77, 0.12);
  border-color: rgba(160, 54, 77, 0.15);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(160, 54, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
  background: rgba(160, 54, 77, 0.14);
  transform: scale(1.1) rotate(-3deg);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.benefit-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 56px 24px;
  background: var(--rose);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43, 43, 43, 0.75) 0%, rgba(43, 43, 43, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  transition: background 0.5s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(0deg, rgba(160, 54, 77, 0.7) 0%, rgba(43, 43, 43, 0.05) 55%, transparent 100%);
}

.service-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.service-card-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   OUR SPACE SECTION
   ============================================ */
.space {
  padding: var(--section-padding);
  background: var(--cream-light);
  overflow: hidden;
}

.space .section-header {
  margin-bottom: 32px;
}

.swiper-space {
  width: 100%;
  overflow: visible;
  margin-bottom: 32px;
}

.swiper-space .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.swiper-space .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-space {
  margin-top: 24px;
  position: relative !important;
  bottom: auto !important;
}

.swiper-pagination-space .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--blush);
  opacity: 1;
  transition: all var(--transition);
}

.swiper-pagination-space .swiper-pagination-bullet-active {
  background: var(--rose);
  width: 24px;
  border-radius: 4px;
}

.space-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateX(4px);
}

.amenity-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.amenity-item:hover svg {
  transform: scale(1.15);
}

.amenity-item span {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--cream);
}

.swiper-testimonials {
  width: 100%;
  overflow: visible;
  margin-bottom: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 54, 77, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  height: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(160, 54, 77, 0.1);
  border-color: rgba(160, 54, 77, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: var(--blush);
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testimonial-source {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--warm-gray);
}

.swiper-pagination-testimonials {
  margin-top: 24px;
  position: relative !important;
  bottom: auto !important;
}

.swiper-pagination-testimonials .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--blush);
  opacity: 1;
  transition: all var(--transition);
}

.swiper-pagination-testimonials .swiper-pagination-bullet-active {
  background: var(--rose);
  width: 24px;
  border-radius: 4px;
}

/* Google rating badge */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.google-rating span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--warm-gray);
}

.google-rating .stars {
  display: flex;
  gap: 2px;
}

.google-rating .stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* Videos */
.videos-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  cursor: pointer;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper .video-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.video-wrapper .video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.video-wrapper:hover .video-play-btn {
  transform: scale(1.1);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--rose);
  margin-left: 3px;
}

/* ============================================
   ABOUT PILATES SECTION
   ============================================ */
.results {
  padding: var(--section-padding);
  background: var(--cream-light);
}

.results-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.results-item {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 54, 77, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--rose-light);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-left-color 0.3s ease,
              border-left-width 0.3s ease;
}

.results-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(160, 54, 77, 0.1);
  border-left-color: var(--rose);
  border-left-width: 5px;
}

.results-week {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
  display: inline-block;
  transition: letter-spacing 0.3s ease;
}

.results-item:hover .results-week {
  letter-spacing: 3px;
}

.results-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.results-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--section-padding);
}

.pricing-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 54, 77, 0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.pricing-highlight p {
  margin: 0;
  width: 100%;
}

.pricing-from {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
  margin-bottom: 8px !important;
}

.pricing-conditions {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  margin-top: 16px !important;
  line-height: 1.6;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-currency {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.pricing-highlight:hover .pricing-amount {
  color: var(--rose);
}

.pricing-period {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--warm-gray);
}


.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   CTA BANNER 2 (with background image)
   ============================================ */
.cta-image-banner {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-image-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.6);
}

.cta-image-banner h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.cta-image-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACT / LOCATION SECTION
   ============================================ */
.location {
  padding: var(--section-padding);
  background: var(--cream);
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(160, 54, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
}

.contact-item .contact-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
}

.contact-item .contact-value {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-item a.contact-value:hover {
  color: var(--rose);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram {
  padding: var(--section-padding);
  background: var(--cream-light);
  text-align: center;
}

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

.instagram-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-handle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.instagram-mockup {
  max-width: 260px;
  filter: drop-shadow(0 16px 40px rgba(43, 43, 43, 0.12));
}

/* ============================================
   HERO POINTS (pills)
   ============================================ */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  animation: heroFadeUp 0.6s ease-out 1s forwards;
  opacity: 0;
}

.hero-points li {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(160, 54, 77, 0.1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--warm-gray);
}

/* ============================================
   TRUST BAND
   ============================================ */
.trust-band {
  padding: 18px 24px;
  margin: 0 20px;
  border-top: 1px solid rgba(160, 54, 77, 0.12);
  border-bottom: 1px solid rgba(160, 54, 77, 0.12);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
}

.trust-band strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--cream-light);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 54, 77, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  line-height: 1.3;
}

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

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--rose);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
}

.faq-cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 16px;
  filter: brightness(0) invert(0.9);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 16px;
}

.footer-address {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--rose-light);
  background: rgba(160, 54, 77, 0.15);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--blush);
}

.footer-copy {
  font-size: 12px;
  color: var(--warm-gray);
  opacity: 0.7;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ============================================
   SWIPER NAV ARROWS (Desktop)
   ============================================ */
.swiper-nav-btn {
  display: none;
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 40px;
  }

  .section-title {
    font-size: 38px;
  }

  .hero-logo {
    width: 320px;
  }

  .hero-headline {
    font-size: 48px;
    max-width: 500px;
  }

  .trust-band {
    margin: 0 40px;
    padding: 20px 32px;
    font-size: 15px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card-overlay h3 {
    font-size: 22px;
  }

  .service-card-overlay p {
    font-size: 13px;
  }

  .swiper-space .swiper-slide {
    aspect-ratio: 4 / 3;
  }

  .space-amenities {
    grid-template-columns: repeat(3, 1fr);
  }

  .videos-grid {
    flex-direction: row;
  }

  .results-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: none;
  }

  .pricing-highlight {
    padding: 48px 40px;
  }

  .location-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .location-info {
    flex: 1;
  }

  .location-map {
    flex: 1;
    height: 380px;
  }

  .instagram-content {
    flex-direction: row;
    text-align: left;
  }

  .instagram-text {
    align-items: flex-start;
    flex: 1;
  }

  .instagram-mockup {
    max-width: 300px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --nav-height: 80px;
    --section-padding: 100px 48px;
  }

  .section-title {
    font-size: 48px;
  }

  .trust-band {
    margin: 0 48px;
    padding: 22px 40px;
    font-size: 16px;
  }

  /* Nav Desktop */
  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    transition: color var(--transition);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-links a:hover {
    color: var(--rose);
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-logo {
    height: 48px;
    max-width: 200px;
  }

  /* Hero Desktop */
  .hero-logo {
    width: 360px;
  }

  .hero-headline {
    font-size: 56px;
    max-width: 600px;
  }

  .hero .btn {
    width: auto;
  }

  /* Benefits Desktop */
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  /* CTA */
  .cta-banner h2 {
    font-size: 36px;
  }

  /* Services Desktop */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .service-card {
    aspect-ratio: 3 / 4;
  }

  .service-card-overlay h3 {
    font-size: 24px;
  }

  .service-card-overlay p {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }

  /* Space Desktop */
  .swiper-space .swiper-slide {
    aspect-ratio: 16 / 10;
  }

  .space-amenities {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .swiper-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--rose-light);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all var(--transition);
  }

  .swiper-nav-btn:hover {
    background: var(--rose);
    border-color: var(--rose);
  }

  .swiper-nav-btn:hover svg {
    stroke: var(--white);
  }

  .swiper-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--rose);
    fill: none;
    stroke-width: 1.5;
  }

  .swiper-nav-prev {
    left: 16px;
  }

  .swiper-nav-next {
    right: 16px;
  }

  /* Testimonials Desktop */
  .testimonial-card {
    padding: 32px 28px;
  }

  /* Results Desktop */
  .results-timeline {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  /* Pricing Desktop */
  .pricing-highlight {
    max-width: 520px;
    padding: 56px 48px;
  }

  .pricing-amount {
    font-size: 56px;
  }

  /* CTA Image Banner Desktop */
  .cta-image-banner {
    padding: 120px 48px;
    background-attachment: fixed;
  }

  .cta-image-banner h2 {
    font-size: 42px;
    max-width: 600px;
  }

  /* Location Desktop */
  .location-content {
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 64px;
  }

  .location-map {
    height: 400px;
  }

  /* Instagram Desktop */
  .instagram-content {
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 64px;
  }

  .instagram-handle {
    font-size: 28px;
  }

  .instagram-mockup {
    max-width: 320px;
    transform: rotate(-3deg);
    transition: transform 0.6s ease;
  }

  .instagram-mockup:hover {
    transform: rotate(0deg);
  }

  /* Footer Desktop */
  .footer {
    padding: 56px 48px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .whatsapp-float::before {
    animation: none;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Disable parallax on mobile/tablet */
@media (max-width: 1023px) {
  .cta-image-banner {
    background-attachment: scroll;
  }
}

/* Fix iOS fixed background */
@supports (-webkit-touch-callout: none) {
  .cta-image-banner {
    background-attachment: scroll;
  }
}
