/* ============================================================
   EDYTA BEAUTY — Design System
   ============================================================ */

:root {
  --gold:        #C4964A;
  --gold-dark:   #9B7234;
  --gold-light:  #E8D4A0;
  --gold-pale:   #F9F3E6;
  --dark:        #110A03;
  --dark-2:      #2C1F14;
  --warm-white:  #FDFAF6;
  --cream:       #F2EDE4;
  --cream-dark:  #E5DDD4;
  --muted:       #7A6955;
  --text:        #2C1F14;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  56px;
  --space-xl:  88px;
  --space-2xl: 128px;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-full: 100px;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.28s var(--ease);
  --transition-slow: 0.55s var(--ease);

  --max-width: 1200px;
  --shadow-sm: 0 2px 12px rgba(44,31,20,0.07);
  --shadow-md: 0 8px 32px rgba(44,31,20,0.10);
  --shadow-lg: 0 20px 60px rgba(44,31,20,0.13);
  --shadow-gold: 0 8px 32px rgba(196,150,74,0.30);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); }

p {
  line-height: 1.78;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--light {
  color: var(--gold-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn--lg {
  padding: 17px 44px;
  font-size: 0.95rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--cream-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-monogram {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 5px;
}
.nav-logo-tagline {
  font-size: 0.52rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.footer .nav-logo-tagline {
  color: #8A7A6A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 100px 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--dark-2);
  margin-bottom: 24px;
  max-width: 520px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 44px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-divider {
  width: 56px;
  height: 1px;
  background: var(--cream-dark);
  margin: 48px 0 32px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.hero-rating-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.hero-rating-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #E8D4A0 0%, rgba(196,150,74,0.15) 60%, #F2EDE4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-placeholder {
  font-size: 8rem;
  opacity: 0.3;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-edge {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, var(--warm-white) 10%, transparent 50%);
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 48px;
  height: 1px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-2);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-val {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--gold-light);
  line-height: 1;
}
.trust-label {
  font-size: 0.72rem;
  color: #7A6955;
  line-height: 1.45;
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about-intro {
  padding: var(--space-2xl) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  aspect-ratio: 3 / 4;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #EDD9B0, #C4964A22, #F2EDE4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 0.68rem;
  letter-spacing: 1px;
  opacity: 0.9;
  line-height: 1.4;
  margin-top: 5px;
  display: block;
}
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 18px; font-size: 1.02rem; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text);
}
.about-feature-icon {
  width: 34px; height: 34px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card-image {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-image-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-image-ph { transform: scale(1.06); }

.service-card-body { padding: 20px 20px 22px; }
.service-card-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.25;
}
.service-card-desc {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ============================================================
   RESULTS / ANTES-DESPUÉS
   ============================================================ */
.results {
  padding: var(--space-2xl) 0;
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
}
.results-header-content { flex: 1; }
.results-header-content h2 { margin-bottom: 12px; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.result-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
}
.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  aspect-ratio: 1 / 1;
}
.result-img {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.result-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.result-ph {
  width: 100%; height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.result-label {
  position: absolute;
  bottom: 8px; left: 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(26,15,5,0.55);
  color: white;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}
.result-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  z-index: 1;
}
.result-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.result-info {
  padding: 15px 18px 18px;
}
.result-treatment {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 3px;
}
.result-sessions {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--dark-2);
}
.reviews .section-header h2 { color: white; }
.reviews .section-header p { color: #8A7A6A; }

.reviews-score {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}
.reviews-score-num {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.reviews-score-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 4px;
}
.reviews-score-count {
  font-size: 0.78rem;
  color: #7A6955;
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: #BDB4AC;
  font-style: italic;
  margin-bottom: 22px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  display: block;
}
.review-date {
  font-size: 0.71rem;
  color: #6A5E52;
  display: block;
  margin-top: 1px;
}
.reviews-footer {
  text-align: center;
}

/* ============================================================
   CLUB EB
   ============================================================ */
.club {
  padding: var(--space-2xl) 0;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
}
.club::before {
  content: 'EB';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 34vw;
  color: rgba(196,150,74,0.055);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 10px;
  user-select: none;
}
.club-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.club-content h2 { margin-bottom: 18px; }
.club-content > p { margin-bottom: 28px; font-size: 1.02rem; }
.club-benefits {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.club-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.club-benefit::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.club-visual {
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.club-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.club-visual-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(150deg, #EDD9B0, rgba(196,150,74,0.2));
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 8rem;
  opacity: 0.35;
  letter-spacing: 6px;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
  padding: var(--space-xl) 0;
  background: var(--dark);
  text-align: center;
}
.booking-cta h2 { color: white; margin-bottom: 16px; }
.booking-cta > .container--narrow > p { color: #8A7A6A; margin-bottom: 36px; font-size: 1.05rem; }
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: #6A5E52;
}
.booking-contact-item a {
  color: var(--gold-light);
  transition: color var(--transition);
}
.booking-contact-item a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  margin-bottom: 16px;
}
.footer-brand-tagline {
  font-size: 0.8rem;
  color: #4A3E35;
  line-height: 1.75;
  max-width: 230px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A3E35;
  transition: all var(--transition);
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 0.81rem;
  color: #4A3E35;
  transition: color var(--transition);
}
.footer-link:hover { color: #9A8878; }
.footer-contact-item {
  font-size: 0.81rem;
  color: #4A3E35;
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-contact-item a {
  color: #6A5E52;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 6px;
  transition: color var(--transition);
}
.footer-wa-link:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-text {
  font-size: 0.74rem;
  color: #3A3028;
}
.footer-bottom-text a {
  color: #3A3028;
  transition: color var(--transition);
}
.footer-bottom-text a:hover { color: #6A5E52; }

/* ============================================================
   ANIMATIONS — solo se activan cuando JS ha cargado (.js en <html>)
   ============================================================ */
.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.js .fade-up.d1 { transition-delay: 0.1s; }
.js .fade-up.d2 { transition-delay: 0.2s; }
.js .fade-up.d3 { transition-delay: 0.3s; }
.js .fade-up.d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { padding: 140px 48px 80px 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 64px;
    --space-2xl: 88px;
  }
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--warm-white);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 150;
  }
  .nav-links.open .nav-link { font-size: 1.6rem; font-family: var(--font-serif); }
  .nav-links.open .nav-cta { margin-left: 0; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 120px 20px 56px; }
  .hero-visual { height: 56vw; min-height: 260px; }
  .hero-scroll-indicator { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { order: -1; }
  .about-badge { right: 16px; bottom: -18px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Results */
  .results-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .results-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Club */
  .club-inner { grid-template-columns: 1fr; gap: 44px; }
  .club-visual { display: none; }

  /* Trust */
  .trust-bar-inner { gap: 28px; }
  .trust-sep { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-actions { flex-direction: column; width: 100%; }
  .booking-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
