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

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

:root {
  /* Paleta oficial Coty Ilumina */
  --violet-dark: #363759;   /* Violeta oscuro */
  --indigo: #57558D;         /* Índigo */
  --violet-light: #CEC6E3;  /* Violeta claro */
  --lavender: #DED6EC;       /* Lavanda */
  --navy: #193F67;           /* Azul violacio */
  --lime: #D5D938;           /* Verde claro */
  --lime-bright: #f1e30f;    /* Verde lima / logo */
  --cream: #F2E9C6;          /* Amarillo desaturado */
  --peach: #F2D3AC;          /* Durazno */
  --white: #ffffff;

  /* Aliases funcionales */
  --gold: var(--lime-bright);
  --gold-dim: var(--lime);
  --dark: var(--violet-dark);
  --dark-mid: #2d2b52;
  --cream-mid: #e5dcb0;
  --text: var(--violet-dark);
  --text-mid: var(--indigo);
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
p { font-size: 1.05rem; line-height: 1.85; }

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

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(13, 11, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 227, 15, 0.15);
  transition: background 0.3s;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-style: italic;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }

.navbar__cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  display: inline-block;
}

.navbar__cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.navbar__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(241,227,15,0.15);
  z-index: 99;
}

.navbar__mobile-menu.open { display: block; }

.navbar__mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.navbar__mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 8vw, 8rem) 5rem;
  position: relative;
  overflow: hidden;
}

/* photo fades in from right — bottom-anchored portrait */
.hero__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 95%;
  width: 42%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, black 55%),
                      linear-gradient(to top, transparent 0%, black 8%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, black 55%),
              linear-gradient(to top, transparent 0%, black 8%);
  mask-composite: intersect;
}

/* text wrapper sits above the photo */
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* orbit ring — slow spin, very faint */
.hero__orbit {
  width: clamp(480px, 65vw, 820px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  animation: orbit-spin 90s linear infinite;
}
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* scattered star sparkles */
.hero__star { opacity: 0; animation: star-twinkle 4s ease-in-out infinite; }
.hero__star--1 { width: 20px; top: 22%; left: 11%;  animation-delay: 0s;    opacity: 0; }
.hero__star--2 { width: 13px; top: 14%; left: 52%;  animation-delay: 1.4s;  opacity: 0; }
.hero__star--3 { width: 16px; bottom: 22%; left: 16%; animation-delay: 2.7s; opacity: 0; }
@keyframes star-twinkle {
  0%, 100% { opacity: 0;    transform: scale(0.8); }
  50%       { opacity: 0.55; transform: scale(1);   }
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,197,225,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(241,227,15,0.04) 0%, transparent 65%);
  top: 60%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__logo {
  width: clamp(200px, 40vw, 360px);
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  max-width: 800px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero__sub {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── HERO CLUB CTA ── */
.hero__club-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.hero__club-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.btn-club-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 1.1rem 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(241,227,15,0.25);
}
.btn-club-hero:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(241,227,15,0.35);
}
.hero__club-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.hero__club-secondary:hover { color: rgba(255,255,255,0.75); }

/* ── STICKY MOBILE BAR ── */
.sticky-club-bar {
  display: none; /* hidden by default, shown on mobile via JS */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-top: 1px solid rgba(241,227,15,0.25);
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
}
.sticky-club-bar.is-visible { display: flex; }
.sticky-club-bar__price {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.sticky-club-bar__btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.7rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.sticky-club-bar__btn:hover { background: var(--white); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-2px);
}

.hero__scroll {
  display: none; /* reemplazado por el link "Ver todos los servicios →" en el CTA */
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(241,227,15,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 40vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 8vw, 8rem) 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero__content { max-width: 700px; }

.page-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  max-width: 540px;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 8rem);
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--dark); color: var(--white); }
.section--lavender { background: rgba(206,197,225,0.12); }

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
  display: block;
}

.section--dark .section__eyebrow { color: var(--gold); }

.section__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  opacity: 0.6;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__text h2 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about__text h2 em { color: var(--lavender-deep); font-style: italic; }

.about__text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.about__text .btn-primary { margin-top: 1rem; color: var(--dark); }

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar {
  padding: 3.5rem 2.5rem;
  background: var(--white);
  transition: background 0.3s;
}

.pillar:hover { background: var(--cream); }

.pillar__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(241,227,15,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pillar__title {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.pillar h3 { margin-bottom: 1rem; color: var(--text); }
.pillar p { color: var(--text-mid); font-size: 0.98rem; }

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid rgba(206,197,225,0.3);
  padding: 2.8rem 2.2rem;
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13,11,26,0.1);
}

.service-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card__sub {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.97rem;
  flex: 1;
}

.service-card__price {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-mid);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--text);
}

.service-card__price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.2rem;
}

.service-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color 0.2s;
}

.service-card__link::after { content: ' →'; }
.service-card__link:hover { color: var(--text); }

/* ── SERVICE DETAIL (servicios.html) ── */
.service-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 8rem);
}

.service-detail + .service-detail { border-top: 1px solid var(--cream-mid); }

.service-detail__header { margin-bottom: 3rem; }

.service-detail__tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 1rem;
  display: block;
}

.service-detail__header h2 { margin-bottom: 0.5rem; }
.service-detail__header .sub {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text-mid);
}

.service-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail__desc p { color: var(--text-mid); margin-bottom: 1.2rem; }

.service-detail__includes h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.includes-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: 0.97rem;
}

.includes-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-detail__for {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.service-detail__for h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
}

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.for-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: 0.97rem;
}

.for-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lavender-deep);
}

.service-detail__price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-mid);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.price-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
}

.price-display small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  min-height: 560px;
  overflow: hidden;
}

.photo-strip__img {
  overflow: hidden;
}

.photo-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip__img:hover img {
  transform: scale(1.04);
}

.photo-strip__text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  color: var(--white);
}

.photo-strip__text .section__eyebrow { color: var(--gold); }

.photo-strip__text h2 {
  color: var(--white);
  font-style: italic;
  margin: 0.8rem 0 1.5rem;
}

.photo-strip__text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .photo-strip {
    grid-template-columns: 1fr;
    grid-template-rows: 360px auto 360px;
  }
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.cta-banner h2 em { color: var(--gold); }

.cta-banner p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 3rem;
}

/* ── QUOTE SECTION ── */
.quote-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-section blockquote::before { content: '"'; color: var(--gold); }
.quote-section blockquote::after { content: '"'; color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 7rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-info p { color: var(--text-mid); margin-bottom: 2rem; }

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.contact-info__value {
  color: var(--text);
  font-size: 0.97rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--cream-mid);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lavender-deep);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #c0392b;
  background: rgba(192,57,43,.04);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  padding: 2rem;
  background: rgba(206,197,225,0.2);
  border: 1px solid var(--lavender);
  text-align: center;
  margin-top: 1rem;
}

.form-success p {
  color: var(--lavender-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 4rem clamp(1.5rem, 8vw, 8rem) 2.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/deco/pattern-brand.png');
  background-size: 280px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.footer > * { position: relative; z-index: 1; }

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__brand img { height: 36px; margin-bottom: 1rem; }

.footer__brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.5rem;
  display: block;
}

.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer__col ul { list-style: none; }

.footer__col li { margin-bottom: 0.7rem; }

.footer__col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
}

.footer__social a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__photo-placeholder { max-height: 400px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .pillars { grid-template-columns: 1fr; gap: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .service-detail__price-block { flex-direction: column; }
  .hero__scroll { display: none; } /* evita que tape el link del CTA en mobile */
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero__scroll { display: none; }
}

/* ══════════════════════════════════════════════
   ANIMATIONS & MICRO-INTERACTIONS
   ══════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lime-bright); transform-origin: left;
  transform: scaleX(0); z-index: 200; pointer-events: none;
}

/* ── Custom cursor ── */
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--lime-bright); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s; will-change: left, top;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(213,217,56,.45); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
  will-change: left, top;
}
.cursor-ring.hover  { width: 58px; height: 58px; border-color: rgba(213,217,56,.2); background: rgba(213,217,56,.05); }
.cursor-ring.click  { transform: translate(-50%,-50%) scale(.78); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Marquee ticker ── */
.marquee {
  overflow: hidden; background: var(--violet-dark);
  border-top: 1px solid rgba(213,217,56,.12);
  border-bottom: 1px solid rgba(213,217,56,.12);
  padding: 1rem 0;
}
.marquee__track {
  display: flex; white-space: nowrap;
  animation: marquee 32s linear infinite; width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.4); padding: 0 2.2rem;
}
.marquee__item.accent { color: var(--lime-bright); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Fade variants ── */
.fade-left  { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
.fade-right { opacity: 0; transform: translateX( 40px); transition: opacity .8s ease, transform .8s ease; }
.scale-up   { opacity: 0; transform: scale(.92);        transition: opacity .7s ease, transform .7s ease; }
.fade-left.visible, .fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-up.visible                       { opacity: 1; transform: scale(1); }

/* ── Hero logo float ── */
.hero__logo { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ── Gold shimmer on em text ── */
.hero h1 em {
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-bright) 40%, #ffffa0 50%, var(--lime-bright) 60%, var(--lime) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { from { background-position: 0% center; } to { background-position: 200% center; } }

/* ── Ripple ── */
.btn-primary, .btn-outline { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.28);
  transform: scale(0); animation: ripple .55s linear forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ── Nav underline slide ── */
.navbar__links a { position: relative; }
.navbar__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.navbar__links a:hover::after, .navbar__links a.active::after {
  transform: scaleX(1); transform-origin: left;
}

/* ── Navbar scrolled state ── */
.navbar.scrolled {
  background: rgba(54,55,89,.97);
  border-bottom-color: rgba(213,217,56,.22);
}

/* ── Card 3D tilt ── */
.service-card { will-change: transform; transition: transform .1s ease, box-shadow .1s ease; }

/* ── FAQ accordion ── */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--cream-mid); padding: 1.8rem 0; }
.faq__question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 1rem; user-select: none;
  width: 100%; background: none; border: none; padding: 0; text-align: left;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  color: var(--text); font-weight: 400;
}
.faq__question h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  color: var(--text); font-weight: 400;
}
.faq__icon {
  flex-shrink: 0; width: 20px; height: 20px; position: relative;
  color: var(--gold-dim);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: currentColor;
  border-radius: 2px; top: 50%; left: 50%;
  transition: transform .3s ease, opacity .3s;
}
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 1.5px; height: 14px; transform: translate(-50%,-50%); }
.faq__item.open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq__item.open .faq__answer { max-height: 320px; padding-top: 1rem; }
.faq__answer p { color: var(--text-mid); font-size: .97rem; }

/* ── Section reveal delay helpers ── */
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ── STATS COUNTER ── */
.stats-section { background: var(--violet-dark); padding: 5rem 2rem; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 860px; margin: 0 auto; text-align: center;
}
.stat__number {
  display: block;
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 300; color: var(--lime-bright); line-height: 1;
  min-height: 1.2em;
}
.stat__label {
  display: block; margin-top: .7rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(222,214,236,.5);
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial {
  background: var(--cream-pale); border-radius: 14px;
  padding: 2.2rem 2rem 1.8rem; position: relative;
  border: 1px solid var(--cream-mid);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(54,55,89,.1); }
.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-size: 5.5rem; line-height: .75;
  color: var(--lavender-light); position: absolute; top: 1.4rem; left: 1.6rem;
  pointer-events: none;
}
.testimonial__quote {
  font-size: .97rem; color: var(--text-mid); line-height: 1.75;
  padding-top: 2.2rem; font-style: italic;
}
.testimonial__author { margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid var(--cream-mid); }
.testimonial__name { display: block; font-weight: 600; color: var(--text); font-size: .88rem; }
.testimonial__role { display: block; font-size: .78rem; color: var(--text-light); margin-top: .25rem; letter-spacing: .06em; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 600px) { .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; } }

/* ── CUTOUT CARDS (home services) ── */
.cutout-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}

.cutout-card {
  position: relative; background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(54,55,89,.07);
  transition: box-shadow .35s ease, transform .35s ease;
}
.cutout-card:hover {
  box-shadow: 0 14px 48px rgba(54,55,89,.14);
  transform: translateY(-5px);
}

/* media */
.cutout-card__media {
  position: relative; height: 270px;
  border-radius: 20px 20px 0 0; overflow: hidden;
}
.cutout-card__media img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: top center;
  transition: transform .6s ease;
}
.cutout-card:hover .cutout-card__media img { transform: scale(1.04); }
.cutout-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(54,55,89,.45));
}

/* inset label — sits at image/content boundary (outside media, z-index above it) */
.cutout-card__label {
  position: absolute; top: 270px; left: 0; z-index: 3;
  transform: translateY(-100%);
  background: var(--white); padding: .55rem 1rem .55rem .9rem;
  border-top-right-radius: 20px;
  display: flex; flex-direction: column; gap: 1px;
}
/* concave corner — right side, bottom edge aligns with image/content boundary → shows white ✓ */
.cutout-card__label::after {
  content: ''; position: absolute;
  right: -20px; bottom: 0;
  width: 20px; height: 20px;
  background: radial-gradient(circle at 0 0, transparent 20px, var(--white) 20px);
}
.cutout-card__label::before { display: none; }
.cutout-card__label-num {
  font-family: 'Inter', sans-serif; font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--violet-dark); line-height: 1;
}
.cutout-card__label-type {
  font-family: 'Inter', sans-serif; font-size: .62rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase; color: var(--indigo); opacity: .7;
}

/* price pin — top-right of image */
.cutout-card__pin {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: var(--violet-dark); color: var(--white);
  padding: .5rem 1rem; border-bottom-left-radius: 16px;
  font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .01em; white-space: nowrap;
}

/* content */
.cutout-card__content { padding: 1.4rem 1.4rem 3.8rem; }
.cutout-card__content h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--text); margin-bottom: .55rem; line-height: 1.2;
}
.cutout-card__content p {
  font-size: .9rem; color: var(--text-mid); line-height: 1.72; margin: 0;
}
.cutout-card__footer {
  border-top: 1px solid var(--cream-mid);
  padding-top: .75rem; margin-top: 1rem;
}
.cutout-card__footer span {
  font-size: .74rem; letter-spacing: .05em; color: var(--indigo); opacity: .65;
}

/* floating CTA pill */
.cutout-card__cta {
  position: absolute; bottom: 1.1rem; right: 1.1rem;
  background: var(--lime-bright); color: var(--violet-dark);
  padding: .48rem 1.15rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-decoration: none;
  transition: background .2s, transform .15s ease;
}
.cutout-card__cta:hover { background: var(--lime); transform: scale(.97); }

@media (max-width: 1024px) { .cutout-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .cutout-cards { grid-template-columns: 1fr; max-width: 440px; } }

/* ── SERVICES PAGE REDESIGN ── */

/* Hero override for services page */
.page-hero--services {
  min-height: 58vh; align-items: stretch;
  padding-bottom: 0; padding-top: 0;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 0;
}
.page-hero__left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem,8vw,8rem) 4rem;
}
.page-hero__photo {
  position: relative; overflow: hidden;
}
.page-hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center var(--nav-h);
  display: block;
}
@media (max-width: 860px) {
  .page-hero--services { grid-template-columns: 1fr; }
  .page-hero__photo { display: none; }
  .page-hero__left { padding: calc(var(--nav-h) + 2rem) clamp(1.5rem,8vw,8rem) 3rem; }
}
.page-hero--services h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.page-hero__services-pills {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2.5rem;
}
.hero-pill {
  padding: .55rem 1.3rem; border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  text-decoration: none; transition: background .2s, border-color .2s, color .2s;
}
.hero-pill:hover { background: rgba(255,255,255,.1); border-color: var(--lime-bright); color: var(--lime-bright); }

/* Service selector — sticky nav + active state */
.services-selector {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--cream); border-bottom: 1px solid var(--cream-mid);
  position: sticky; top: 76px; z-index: 80;
}
.sel-card {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 1.2rem;
  padding: 1.4rem clamp(1.2rem,4vw,2.5rem);
  text-decoration: none; border-right: 1px solid var(--cream-mid);
  transition: background .22s; position: relative;
}
.sel-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.sel-card:last-child { border-right: none; }
.sel-card:hover, .sel-card--active { background: white; }
.sel-card--active::after, .sel-card:hover::after { transform: scaleX(1); }
.sel-card:hover .sel-card__arrow, .sel-card--active .sel-card__arrow { transform: translateX(5px); }
.sel-card__num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
  line-height: 1; color: var(--lavender-light); transition: color .22s;
}
.sel-card--active .sel-card__num { color: var(--violet-mid); }
.sel-card h3 { font-size: .95rem; color: var(--text); margin-bottom: .2rem; }
.sel-card p { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
.sel-card__price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--violet-mid); white-space: nowrap;
}
.sel-card__arrow { color: var(--gold); font-size: 1.1rem; transition: transform .2s; }
@media (max-width: 768px) {
  .services-selector { grid-template-columns: 1fr; position: static; }
  .sel-card { border-right: none; border-bottom: 1px solid var(--cream-mid); }
  .sel-card:last-child { border-bottom: none; }
}

/* Service header with photo */
.svc-header-wrap {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 3.5rem; align-items: start; margin-bottom: 3.5rem;
}
.svc-header-wrap--reverse { grid-template-columns: 300px 1fr; }
.svc-header-wrap--reverse .svc-header-wrap__photo { order: -1; }
.svc-header-wrap .svc-header { margin-bottom: 1.5rem; }
.svc-header-wrap__photo {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4; position: relative;
}
.svc-header-wrap__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform .6s ease;
}
.svc-header-wrap__photo:hover img { transform: scale(1.04); }
@media (max-width: 860px) {
  .svc-header-wrap, .svc-header-wrap--reverse { grid-template-columns: 1fr; }
  .svc-header-wrap--reverse .svc-header-wrap__photo { order: 0; }
  .svc-header-wrap__photo { aspect-ratio: 4/3; max-height: 380px; }
}

/* Service sections */
.svc-section {
  padding: clamp(5rem,9vw,9rem) clamp(1.5rem,8vw,8rem);
  position: relative; overflow: hidden;
}
.svc-section--light { background: white; }
.svc-section--cream { background: var(--cream); }

.svc-section__bg-num {
  position: absolute; right: clamp(.5rem,4vw,4rem); top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem,18vw,18rem); font-weight: 300; line-height: 1;
  color: rgba(206,198,227,.16); pointer-events: none; user-select: none;
  letter-spacing: -.02em;
}

.svc-section__inner { max-width: 920px; margin: 0 auto; position: relative; }

/* Header */
.svc-header { margin-bottom: 3rem; }
.svc-header__tag {
  display: block; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--lavender-deep); margin-bottom: 1rem;
}
.svc-header h2 { font-size: clamp(2.4rem,5vw,4rem); margin-bottom: .5rem; }
.svc-header__sub {
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--text-mid);
}

/* Quick stats row */
.svc-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--cream-mid); border-radius: 12px;
  overflow: hidden; margin-bottom: 3.5rem;
}
.svc-stat {
  padding: 1.2rem 1rem; text-align: center;
  border-right: 1px solid var(--cream-mid);
}
.svc-stat:last-child { border-right: none; }
.svc-section--cream .svc-stat { background: white; }
.svc-stat__val {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; color: var(--text); line-height: 1.1;
}
.svc-stat__key {
  display: block; font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-light); margin-top: .4rem;
}
@media (max-width: 600px) { .svc-stats { grid-template-columns: repeat(2,1fr); } .svc-stat:nth-child(2) { border-right: none; } .svc-stat:nth-child(1), .svc-stat:nth-child(2) { border-bottom: 1px solid var(--cream-mid); } }

/* Body: desc + includes grid */
.svc-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-bottom: 3rem;
}
@media (max-width: 780px) { .svc-body { grid-template-columns: 1fr; gap: 2.5rem; } }

.svc-desc p { color: var(--text-mid); margin-bottom: 1.2rem; font-size: .97rem; line-height: 1.8; }
.svc-desc__quote {
  border-left: 3px solid var(--gold); padding: .8rem 1.2rem;
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--lavender-deep);
  margin: 1.5rem 0; background: var(--cream-pale); border-radius: 0 8px 8px 0;
}

/* ── Col izquierda: desc + includes apilados ── */
.svc-col-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ── Bloque "¿Por qué nace?" ── */
.svc-why {
  background: var(--dark);
  border-radius: 18px;
  padding: 2.8rem clamp(1.8rem, 5%, 3.2rem);
}
.svc-why__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 1.6rem;
}
.svc-why p {
  color: rgba(255,255,255,0.78);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.svc-why__punchy {
  color: rgba(255,255,255,0.92) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem !important;
  font-style: italic;
  line-height: 1.7 !important;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}
.svc-why__closing {
  color: var(--white) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem !important;
  font-style: italic;
  margin-top: 1.6rem !important;
  margin-bottom: 0 !important;
}

.svc-includes__title {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1.2rem; display: block;
}
.svc-includes__list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.svc-includes__list li {
  padding-left: 1.4rem; position: relative;
  color: var(--text-mid); font-size: .95rem; line-height: 1.6;
}
.svc-includes__list li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}

/* "Para vos si" section */
.svc-for { margin-bottom: 3rem; }
.svc-for__title {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1.4rem; display: block;
}
.svc-for__grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem;
}
@media (max-width: 600px) { .svc-for__grid { grid-template-columns: 1fr; } }
.svc-for__item {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .9rem 1.1rem; background: var(--cream-pale);
  border: 1px solid var(--cream-mid); border-radius: 10px;
  font-size: .93rem; color: var(--text-mid); line-height: 1.55;
}
.svc-section--cream .svc-for__item { background: white; }
.svc-for__item::before {
  content: '✓'; color: var(--lime-bright); font-weight: 700;
  flex-shrink: 0; font-size: .95rem; margin-top: .05rem;
}

/* Price block */
.svc-price {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  padding: 2.2rem 2.8rem; border-radius: 14px;
  background: var(--violet-dark);
}
.svc-price__left { display: flex; flex-direction: column; gap: .4rem; }
.svc-price__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 300;
  color: white; line-height: 1;
}
.svc-price__note {
  font-size: .78rem; color: rgba(255,255,255,.5);
  letter-spacing: .07em; max-width: 320px;
}
@media (max-width: 600px) { .svc-price { flex-direction: column; align-items: flex-start; padding: 1.8rem; } }

/* ══════════════════════════════════════════════
   BRAND DECORATIVE ELEMENTS
   ══════════════════════════════════════════════ */

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/*
 * Blend mode strategy:
 * - Secciones CLARAS (cream, white): mix-blend-mode: multiply
 *   → blanco del PNG desaparece, el color se fusiona con el fondo claro
 * - Secciones OSCURAS (hero, page-hero): CSS mask-image radial
 *   → recorta el PNG en un óvalo suave, solo queda el brillo central
 *   (screen/multiply no hacen desaparecer el fondo blanco sobre oscuro)
 */

/* ── Hero: blob enmascarado con degradado radial ── */
.hero__blob {
  width: 340px;
  top: 8%; right: -40px;
  opacity: 0.75;
  filter: blur(3px);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black 0%, transparent 68%);
}

/* ── Sticker flotante en sección de tarjetas (cream) ── */
.section--cream { position: relative; overflow: visible; }
.cards__sticker {
  width: 120px;
  top: -40px; right: clamp(1rem, 5%, 5rem);
  opacity: 0.92;
  animation: sticker-spin 22s linear infinite;
  z-index: 4;
}

/* ── Page hero blobs (servicios / contacto): mask radial sobre oscuro ── */
.page-hero__blob {
  width: 380px;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  opacity: 0.7;
  filter: blur(2px);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black 0%, transparent 68%);
}

/* ── Contact sticker (sección blanca) ── */
.contact-info { position: relative; }
.contact__sticker {
  width: 106px;
  bottom: -1rem; right: -1rem;
  opacity: 0.82;
  mix-blend-mode: multiply;
  animation: sticker-spin 28s linear infinite;
}

@keyframes sticker-spin {
  to { transform: rotate(360deg); }
}

/* ── Footer pattern ── */
.footer::before {
  mix-blend-mode: screen;
  opacity: 0.05;
}

@media (max-width: 768px) {
  .hero__blob      { width: 240px; right: -20px; opacity: 0.65; }
  .hero__photo     { width: 65%; opacity: 0.25; }
  .hero__orbit     { width: 340px; }
  .hero__star--1, .hero__star--2, .hero__star--3 { display: none; }
  .cards__sticker  { width: 80px; top: -28px; right: 1rem; }
  .contact__sticker { width: 72px; }
  .page-hero__blob  { width: 240px; opacity: 0.6; }
}

/* ══════════════════════════════════════════════════════════════
   GALERÍA DE FOTOS (Cambio 7)
   ══════════════════════════════════════════════════════════════ */
.gallery-section { padding-bottom: 5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-grid__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-mid);
}
.gallery-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-grid__item:hover img { transform: scale(1.04); }
.gallery-empty {
  text-align: center;
  color: var(--text-mid);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  padding: 3rem 1rem;
  display: none; /* se muestra con JS si no hay fotos */
}
.gallery-empty.show { display: block; }

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIOS EN VIDEO (Cambio 8)
   ══════════════════════════════════════════════════════════════ */
.video-section { padding-bottom: 5rem; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.video-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(54,55,89,0.12);
}
.video-item__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-item__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-item__caption {
  padding: 1rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.video-empty {
  text-align: center;
  color: var(--text-mid);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  padding: 3rem 1rem;
  display: none;
}
.video-empty.show { display: block; }

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   PRE-CHECKOUT MODAL
   ══════════════════════════════════════════════ */

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.checkout-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.checkout-modal[hidden] { display: none !important; }

.checkout-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 48, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.checkout-modal__box {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border: 1px solid rgba(241, 227, 15, 0.22);
  padding: 2.8rem 2.2rem 2.2rem;
  max-width: 430px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.checkout-modal.is-open .checkout-modal__box {
  transform: translateY(0);
}

.checkout-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}
.checkout-modal__close:hover { color: rgba(255,255,255,0.75); }

.checkout-modal__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.checkout-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.checkout-modal__price {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.8rem;
}

.checkout-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.checkout-modal__field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.checkout-modal__field input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 0.82rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.checkout-modal__field input::placeholder {
  color: rgba(255,255,255,0.2);
}
.checkout-modal__field input:focus {
  border-color: rgba(241, 227, 15, 0.55);
  background: rgba(255,255,255,0.07);
}

.checkout-modal__optional {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  margin-left: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.checkout-modal__submit {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 0;
}
.checkout-modal__submit:hover:not(:disabled) {
  background: var(--white);
  transform: translateY(-2px);
}
.checkout-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-modal__error {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.6rem;
  display: none;
}
.checkout-modal__error.is-visible { display: block; }

.checkout-modal__footer {
  margin-top: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

@media (max-width: 480px) {
  .checkout-modal__box { padding: 2rem 1.4rem 1.6rem; }
  .checkout-modal__title { font-size: 1.6rem; }
}
