/* ==========================================================================
   BESSÓ SALÓN — stylesheet
   Tokens -> Base -> Layout -> Components -> Sections -> Utilities -> Media
   ========================================================================== */

:root{
  /* ---- Color tokens (logo-derived, accents only) ---- */
  --c-black:        #0b0b0c;
  --c-black-soft:   #151517;
  --c-white:        #ffffff;
  --c-gray-50:      #f6f6f7;
  --c-gray-100:     #eeeeef;
  --c-gray-200:     #e2e2e4;
  --c-gray-400:     #a8a8ac;
  --c-gray-600:     #6b6b70;
  --c-fucsia:       #e5127d;
  --c-fucsia-dark:  #b80f65;
  --c-fucsia-tint:  #fce4f0;
  --c-lime:         #aecc00;
  --c-lime-dark:    #86a300;
  --c-lime-tint:    #f2f7d9;

  /* ---- Type ---- */
  --f-display: 'Fraunces', 'Iowan Old Style', serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --container-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --nav-h: 84px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: .25s;
  --dur-med: .6s;
  --dur-slow: .9s;
}

/* ================= RESET ================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl{ margin: 0; }
ul, ol{ padding: 0; list-style: none; }
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea{ font: inherit; color: inherit; }

body{
  font-family: var(--f-body);
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible{
  outline: 2px solid var(--c-fucsia);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--c-black); color: var(--c-white);
  padding: 12px 20px; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ================= LAYOUT HELPERS ================= */
.container{
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 32px;
}

.eyebrow{
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-fucsia-dark);
  margin-bottom: 18px;
  display: block;
}
.eyebrow--light{ color: var(--c-lime); }

.section-title{
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--c-black);
}
.section-title em{
  font-style: italic;
  font-weight: 450;
  color: var(--c-fucsia);
}
.section-title--light{ color: var(--c-white); }
.section-title--light em{ color: var(--c-lime); }

.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}

/* ================= BUTTONS ================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn--sm{ padding: 11px 22px; font-size: 14px; }
.btn--lg{ padding: 17px 34px; font-size: 15.5px; }

.btn--primary{
  background: var(--c-fucsia);
  color: var(--c-white);
  box-shadow: 0 8px 24px -8px rgba(229,18,125,.55);
}
.btn--primary:hover{ background: var(--c-fucsia-dark); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(229,18,125,.6); }
.btn--primary:active{ transform: translateY(0); }

.btn--ghost{
  background: transparent;
  color: var(--c-black);
  border: 1.5px solid var(--c-gray-200);
}
.btn--ghost:hover{ border-color: var(--c-black); transform: translateY(-2px); }

.btn--whatsapp{
  background: var(--c-lime);
  color: var(--c-black);
}
.btn--whatsapp:hover{ background: var(--c-lime-dark); transform: translateY(-2px); }

/* ================= NAVBAR ================= */
.navbar{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), height var(--dur-fast) var(--ease);
}
.navbar.is-scrolled{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  height: 72px;
}

.navbar__inner{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__logo{ display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.logo-mark{ height: 26px; width: auto; }
.logo-mark__b{ font-family: var(--f-display); font-weight: 600; font-size: 44px; fill: var(--c-black); }
.logo-mark__s{ font-family: var(--f-display); font-weight: 600; font-size: 44px; fill: var(--c-fucsia); }
.logo-mark__o{ font-family: var(--f-display); font-weight: 600; font-size: 44px; fill: var(--c-lime); }
.navbar__logo-sub{
  font-size: 10px; font-weight: 700; letter-spacing: .22em; color: var(--c-gray-600);
  align-self: center; margin-top: 6px;
}

.navbar__nav{ flex: 1; display: flex; justify-content: center; }
.navbar__links{ display: flex; gap: 34px; }
.navbar__links a{
  font-size: 14.5px; font-weight: 600; color: var(--c-black-soft);
  position: relative; padding: 6px 0;
}
.navbar__links a::after{
  content:''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--c-fucsia); transition: width var(--dur-fast) var(--ease);
}
.navbar__links a:hover::after{ width: 100%; }

.navbar__cta{ flex-shrink: 0; }

.navbar__burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.navbar__burger span{
  width: 22px; height: 1.6px; background: var(--c-black);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.navbar__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 490;
  background: var(--c-white);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 34px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.mobile-menu.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu ul{ display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu a{ font-family: var(--f-display); font-size: 28px; }
.mobile-menu__cta{ margin-top: 10px; }

/* ================= HERO ================= */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--c-white);
}

.hero__orbit{
  position: absolute;
  top: 50%; right: -10%;
  width: 620px; height: 620px;
  translate: 0 -50%;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}
.hero__orbit::before, .hero__orbit::after{
  content:''; position: absolute; inset: 0; border-radius: 50%;
  mix-blend-mode: multiply;
}
.hero__orbit::before{ background: var(--c-fucsia-tint); transform: translate(-60px, -40px) scale(.72); }
.hero__orbit::after{ background: var(--c-lime-tint); transform: translate(60px, 40px) scale(.72); }

.hero__grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  padding-block: 60px;
}

.hero__headline{
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero__headline em{ font-style: italic; color: var(--c-fucsia); font-weight: 450; }

.hero__lead{
  font-size: 17.5px;
  color: var(--c-gray-600);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero__actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }

.hero__social-proof{ display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--c-gray-600); }
.stars{ color: var(--c-fucsia); letter-spacing: 2px; font-size: 15px; }

.hero__media{ position: relative; }
.hero__photo{ position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; background: var(--c-black); }
.hero__photo img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__photo-ring{
  position: absolute; z-index: -1;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  right: -10%; bottom: -10%;
  background: var(--c-lime);
  opacity: .18;
}

/* ================= RESERVA ================= */
.reserva{
  background: var(--c-black);
  color: var(--c-white);
  padding-block: 110px;
  position: relative;
}
.reserva__grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.reserva__desc{ color: var(--c-gray-400); font-size: 16px; max-width: 380px; margin-bottom: 28px; }
.reserva__points{ display: flex; flex-direction: column; gap: 12px; }
.reserva__points li{
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--c-gray-400);
}
.reserva__points li::before{
  content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-lime); flex-shrink: 0;
}

.reserva__card{
  background: var(--c-black-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.reserva-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
}
.reserva-form[hidden]{ display: none; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field--full{ grid-column: 1 / -1; }
.field label{ font-size: 13px; font-weight: 600; color: var(--c-gray-400); }
.field__optional{ font-weight: 400; opacity: .7; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--c-white);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field select{ appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23a8a8ac' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field input::placeholder, .field textarea::placeholder{ color: var(--c-gray-600); }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--c-fucsia); background: rgba(255,255,255,.06);
}
.field textarea{ resize: vertical; min-height: 88px; }
.field input[type="date"]::-webkit-calendar-picker-indicator{ filter: invert(1) opacity(.7); cursor: pointer; }

.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color: var(--c-fucsia); }
.field__error{ font-size: 12.5px; color: var(--c-fucsia); min-height: 1em; }

.field--checkbox{ flex-direction: row; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.field--checkbox input{ margin-top: 3px; accent-color: var(--c-fucsia); width: 16px; height: 16px; flex-shrink: 0; }
.field--checkbox label{ font-size: 13.5px; color: var(--c-gray-400); font-weight: 400; }
.field--checkbox a{ color: var(--c-lime); text-decoration: underline; }
.field--checkbox .field__error{ width: 100%; }

.reserva-form__submit{ margin-top: 6px; }

.reserva-success{
  text-align: center;
  padding: 26px 10px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.reserva-success[hidden]{ display: none; }
.reserva-success svg{ color: var(--c-lime); }
.reserva-success p{ font-family: var(--f-display); font-size: 19px; font-style: italic; max-width: 380px; }

/* ================= CARDS GRID ================= */
.cards-grid{ display: grid; gap: 24px; }
.cards-grid--4{ grid-template-columns: repeat(4, 1fr); }
.cards-grid--3{ grid-template-columns: repeat(3, 1fr); }

/* ---- Beneficios ---- */
.beneficios{ padding-block: 120px; }
.benefit-card{
  padding: 34px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-gray-100);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.benefit-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(11,11,12,.16);
  border-color: transparent;
}
.benefit-card__icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-fucsia-tint); color: var(--c-fucsia-dark);
  margin-bottom: 22px;
}
.benefit-card:nth-child(2n) .benefit-card__icon{ background: var(--c-lime-tint); color: var(--c-lime-dark); }
.benefit-card h3{ font-family: var(--f-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.benefit-card p{ font-size: 14.5px; color: var(--c-gray-600); line-height: 1.55; }

/* ---- Paquetes ---- */
.paquetes{ padding-block: 120px; background: var(--c-gray-50); }
.package-card{
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  border: 1px solid var(--c-gray-100);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.package-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(11,11,12,.16); }
.package-card__badge{
  align-self: flex-start;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--c-white);
  background: var(--c-fucsia);
  margin-bottom: 20px;
}
.package-card:nth-child(2n) .package-card__badge{ background: var(--c-lime-dark); }
.package-card h3{ font-family: var(--f-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.package-card__price{ font-size: 14px; color: var(--c-gray-600); margin-bottom: 4px; }
.package-card__price strong{ font-family: var(--f-display); font-size: 24px; color: var(--c-black); font-weight: 600; }
.package-card__services{ margin: 18px 0 24px; display: flex; flex-direction: column; gap: 9px; }
.package-card__services li{ font-size: 13.5px; color: var(--c-gray-600); display: flex; gap: 8px; }
.package-card__services li::before{ content: '✓'; color: var(--c-fucsia-dark); font-weight: 700; }
.package-card .btn{ margin-top: auto; }

.paquetes__note{ margin-top: 28px; font-size: 12.5px; color: var(--c-gray-400); text-align: center; }

/* ---- Gift card ---- */
.giftcard{
  background: transparent;
  color: var(--c-white);
  padding-block: 34px 48px;
}
.giftcard__panel{
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr .82fr;
  align-items: center;
  gap: 26px;
  padding: 28px 42px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 46% 40%, rgba(255,255,255,.045), transparent 35%),
    linear-gradient(115deg, #0b0b0c 0%, #111113 52%, #0b0b0c 100%);
  box-shadow: 0 24px 60px -38px rgba(0,0,0,.65);
  overflow: hidden;
  position: relative;
}
.giftcard__panel::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.025) 50%, transparent 65%);
}
.giftcard__copy{ position: relative; z-index: 1; }
.giftcard__headline{
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 450;
  line-height: 1.07;
  letter-spacing: -.015em;
  color: var(--c-white);
}
.giftcard__name{
  margin-top: 13px;
  color: var(--c-fucsia);
  font-size: 17px;
  font-weight: 750;
}
.giftcard__desc{
  margin-top: 8px;
  color: #d2d2d4;
  font-size: 13.5px;
  line-height: 1.55;
}
.giftcard__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 39px;
  padding: 0 19px;
  border: 1px solid var(--c-lime-dark);
  border-radius: 6px;
  color: var(--c-lime);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.giftcard__cta:hover{
  color: var(--c-black);
  background: var(--c-lime);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(174,204,0,.85);
}
.giftcard__visual{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.giftcard__image{
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.42));
  transform: rotate(-3deg) translateZ(0);
  transform-origin: 50% 55%;
  transition: transform var(--dur-med) var(--ease), filter var(--dur-med) var(--ease);
  will-change: transform;
}
.giftcard__visual:hover .giftcard__image{
  transform: rotate(-5deg) translateY(-6px) scale(1.035);
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.52));
}
.giftcard__features{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-self: end;
}
.giftcard__features li{
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  color: #f0f0f1;
  font-size: 12.5px;
  line-height: 1.35;
}
.giftcard__feature-icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--c-lime-dark);
}
.giftcard__feature-icon svg{
  width: 31px;
  height: 31px;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Testimonios ---- */
.testimonios{ padding-block: 120px; }
.testimonial-card{
  padding: 34px 30px;
  border-radius: var(--radius-md);
  background: var(--c-gray-50);
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-card p{ font-family: var(--f-display); font-style: italic; font-size: 16.5px; line-height: 1.55; color: var(--c-black-soft); }
.testimonial-card footer{ display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card__avatar{
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-black); color: var(--c-white);
  font-size: 12.5px; font-weight: 700;
}
.testimonial-card cite{ font-style: normal; font-weight: 700; font-size: 14px; }

/* ---- Ubicación ---- */
.ubicacion{ padding-block: 120px; background: var(--c-gray-50); }
.ubicacion__grid{ display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.ubicacion__list{ display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.ubicacion__list li{ display: flex; gap: 16px; align-items: flex-start; }
.ubicacion__list svg{ width: 22px; height: 22px; color: var(--c-fucsia-dark); flex-shrink: 0; margin-top: 2px; }
.ubicacion__list strong{ display: block; font-size: 15.5px; margin-bottom: 3px; }
.ubicacion__list span{ font-size: 14px; color: var(--c-gray-600); }
.ubicacion__list a{ text-decoration: underline; text-underline-offset: 2px; }
.ubicacion__map{ border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: 0 30px 60px -30px rgba(11,11,12,.25); }
.ubicacion__map iframe{ width: 100%; height: 100%; border: 0; }

/* ================= MODAL ================= */
.modal{ position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden]{ display: none; }
.modal__backdrop{ position: absolute; inset: 0; background: rgba(11,11,12,.55); backdrop-filter: blur(4px); animation: fadeIn var(--dur-fast) var(--ease); }
.modal__panel{
  position: relative; z-index: 1;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  max-width: 460px; width: 100%;
  padding: 44px 40px 40px;
  animation: modalPop var(--dur-med) var(--ease);
  max-height: 86vh; overflow-y: auto;
}
@keyframes fadeIn{ from{ opacity: 0; } to{ opacity: 1; } }
@keyframes modalPop{ from{ opacity: 0; transform: translateY(18px) scale(.97); } to{ opacity: 1; transform: translateY(0) scale(1); } }

.modal__close{ position: absolute; top: 20px; right: 20px; color: var(--c-gray-600); padding: 6px; }
.modal__close:hover{ color: var(--c-black); }
.modal__badge{
  display: inline-flex; width: 30px; height: 30px; border-radius: 50%;
  align-items: center; justify-content: center; background: var(--c-fucsia); color: var(--c-white);
  font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
.modal__panel h3{ font-family: var(--f-display); font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.modal__price{ font-family: var(--f-display); font-size: 26px; color: var(--c-fucsia-dark); margin-bottom: 22px; }
.modal__services{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.modal__services li{ font-size: 14.5px; color: var(--c-black-soft); display: flex; gap: 9px; }
.modal__services li::before{ content: '✓'; color: var(--c-lime-dark); font-weight: 700; }
.modal__conditions{ font-size: 12.5px; color: var(--c-gray-400); margin-bottom: 26px; }
.modal__panel .btn{ width: 100%; }

/* ================= FOOTER ================= */
.footer{ background: var(--c-black); color: var(--c-gray-400); padding-top: 90px; }
.footer__grid{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .logo-mark--footer{ height: 24px; margin-bottom: 18px; }
.footer__brand .logo-mark__b{ fill: var(--c-white); }
.footer__brand p{ font-size: 14px; line-height: 1.6; max-width: 220px; }
.footer__brand em{ font-family: var(--f-display); font-style: italic; color: var(--c-lime); }
.footer__col h3{ font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--c-white); margin-bottom: 18px; }
.footer__col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer__col a{ font-size: 14px; }
.footer__col a:hover{ color: var(--c-white); }
.footer__social{ display: flex; gap: 12px; }
.footer__social a{
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; transition: border-color var(--dur-fast), background var(--dur-fast);
}
.footer__social svg{ width: 17px; height: 17px; }
.footer__social a:hover{ background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }
.footer__bottom{ display: flex; justify-content: space-between; padding-block: 24px; font-size: 12.5px; }

/* ================= WHATSAPP FAB ================= */
.whatsapp-fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-lime); color: var(--c-black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(174,204,0,.55);
  transition: transform var(--dur-fast) var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }

/* ================= SCROLL REVEAL ================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: .1s; }
[data-reveal-delay="2"]{ transition-delay: .2s; }
[data-reveal-delay="3"]{ transition-delay: .3s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px){
  .cards-grid--4{ grid-template-columns: repeat(2, 1fr); }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }
}

@media (max-width: 960px){
  .navbar__nav, .navbar__cta{ display: none; }
  .navbar__burger{ display: flex; margin-left: auto; }

  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media{ order: -1; }
  .hero__photo{ aspect-ratio: 16/11; }

  .reserva__grid{ grid-template-columns: 1fr; }
  .reserva__card{ padding: 30px; }
  .reserva-form{ grid-template-columns: 1fr; }

  .giftcard__grid{ grid-template-columns: 1fr; }
  .giftcard__visual{ order: -1; }

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

  .cards-grid--3{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px){
  .container{ padding-inline: 22px; }
  :root{ --nav-h: 72px; }
  .hero{ padding-top: 90px; }
  .cards-grid--4, .cards-grid--3{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom{ flex-direction: column; gap: 6px; }
  .beneficios, .paquetes, .giftcard, .testimonios, .ubicacion{ padding-block: 84px; }
  .reserva{ padding-block: 84px; }
  .modal__panel{ padding: 34px 24px 28px; }
  .hero__orbit{ width: 420px; height: 420px; right: -30%; }
}

/* ===== AJUSTE VISUAL PREMIUM SEGÚN DISEÑO APROBADO ===== */
.brand-logo{display:block;width:auto;object-fit:contain}
.brand-logo--header{height:48px;max-width:178px}
.brand-logo--footer{height:42px;max-width:165px;margin-bottom:20px}
.navbar__logo{align-items:center}

.hero{min-height:auto;padding-top:var(--nav-h);padding-bottom:112px;background:#fff}
.hero__grid{grid-template-columns:.9fr 1.1fr;gap:20px;padding-top:72px;padding-bottom:12px}
.hero__headline{font-family:var(--f-body);font-size:clamp(3.2rem,5.2vw,5.8rem);font-weight:700;line-height:.98;letter-spacing:-.055em}
.hero__headline em{font-style:normal;color:var(--c-fucsia)}
.hero__lead{max-width:510px;font-size:17px;line-height:1.7}
.hero__photo{aspect-ratio:1.08/1;border-radius:0;background:transparent;overflow:visible}
.hero__photo img{object-fit:contain;object-position:center bottom}
.hero__photo-ring{display:none}
.hero__orbit{opacity:.28;right:-7%;width:560px;height:560px}
.hero__social-proof{margin-top:24px}

.reserva{background:transparent;color:var(--c-white);padding:0 0 42px;margin-top:-62px;position:relative;z-index:4}
.reserva__grid{background:linear-gradient(145deg,#171719 0%,#070708 100%);grid-template-columns:.33fr .67fr;gap:44px;align-items:center;border-radius:22px;padding:34px 38px;box-shadow:0 28px 70px -38px rgba(0,0,0,.48);border:1px solid rgba(255,255,255,.08)}
.reserva__intro .eyebrow{display:none}
.reserva__intro .section-title{font-family:var(--f-body);font-size:clamp(2rem,3vw,3rem);font-weight:700;line-height:1.05;letter-spacing:-.04em}
.reserva__intro .section-title em{font-style:normal;color:var(--c-fucsia)}
.reserva__desc{font-size:14px;line-height:1.65;margin:18px 0 0;max-width:280px;color:#d0d0d3}
.reserva__points{display:none}
.reserva__card{background:transparent;border:0;border-radius:0;padding:0}
.reserva-form{grid-template-columns:1fr 1fr;gap:12px 16px}
.field{gap:0;position:relative}
.field>label:not([for="privacidad"]){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.field input[type="text"],.field input[type="tel"],.field input[type="email"],.field input[type="date"],.field select,.field textarea{min-height:52px;background:rgba(255,255,255,.015);border:1px solid rgba(255,255,255,.32);border-radius:7px;padding:14px 16px;font-size:14px}
.field textarea{min-height:52px;max-height:90px}
.field select{color:#dedee1}
.field input::placeholder,.field textarea::placeholder{color:#c4c4c8;opacity:1}
.field__error{position:absolute;left:2px;top:100%;font-size:10.5px;z-index:2}
.field--checkbox{grid-column:1/2;align-items:center;align-self:center;margin-top:4px}
.field--checkbox label{font-size:12.5px}
.reserva-form__submit{grid-column:2/3;margin-top:4px;border-radius:7px;min-height:50px;text-transform:uppercase;font-size:12.5px;letter-spacing:.02em}
.reserva__status{margin-top:0;background:#fff;color:#5f5f64;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:12px 32px;border-radius:0 0 18px 18px;box-shadow:0 18px 44px -34px rgba(0,0,0,.45);font-size:12.5px}
.reserva__status strong{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:var(--c-fucsia);color:#fff;margin-right:7px}
.reserva__status-whatsapp{background:var(--c-lime);color:#fff;padding:9px 18px;border-radius:999px;font-weight:700;white-space:nowrap}
.reserva__status-whatsapp:hover{background:var(--c-lime-dark)}

.beneficios{padding-top:24px}
.section-head{text-align:center;margin-left:auto;margin-right:auto}
.section-head .eyebrow{display:none}
.section-title{font-size:clamp(2rem,3vw,3.2rem)}
.benefit-card,.package-card,.testimonial-card{box-shadow:0 14px 34px -26px rgba(0,0,0,.28)}
.package-card{border-radius:18px}
.giftcard{margin:0 32px;border-radius:24px;padding-block:34px 56px}

@media(max-width:960px){
 .brand-logo--header{height:40px}
 .hero{padding-bottom:88px}
 .hero__grid{grid-template-columns:1fr;padding-top:34px}
 .hero__media{order:0}
 .hero__photo{aspect-ratio:1.2/1}
 .reserva{margin-top:-30px}
 .reserva__grid{grid-template-columns:1fr;gap:24px;padding:28px}
 .reserva__desc{max-width:none}
 .reserva__status{margin-inline:32px}
}
@media(max-width:640px){
 .brand-logo--header{height:34px;max-width:132px}
 .hero{padding-top:82px;padding-bottom:64px}
 .hero__grid{padding-top:22px}
 .hero__headline{font-size:clamp(2.8rem,14vw,4.4rem)}
 .hero__actions{display:grid;grid-template-columns:1fr;gap:12px}
 .hero__actions .btn{width:100%}
 .hero__photo{aspect-ratio:1/1.05}
 .reserva{margin-top:-18px;padding-bottom:62px}
 .reserva__grid{margin-inline:0;border-radius:18px;padding:26px 22px}
 .reserva-form{grid-template-columns:1fr}
 .field--full,.field--checkbox,.reserva-form__submit{grid-column:1}
 .reserva__status{margin-inline:22px;padding:14px 18px;flex-direction:column;text-align:center;border-radius:0 0 16px 16px}
 .giftcard{margin:0 14px}
}

/* ===== HERO IMAGE NATURAL INTEGRATION — 2026-08-03 ===== */
.hero__media{
  align-self: stretch;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.hero__media::before{
  content: 'BS';
  position: absolute;
  z-index: 0;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-54%);
  font-family: var(--f-display);
  font-size: clamp(14rem, 25vw, 26rem);
  line-height: .78;
  letter-spacing: -.11em;
  color: #f2f2f3;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero__photo{
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  height: 100%;
  min-height: 680px;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  isolation: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__photo::after{
  content: '';
  position: absolute;
  z-index: 2;
  left: -5%;
  right: -5%;
  bottom: -2px;
  height: 14%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 82%);
}
.hero__photo img{
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.98) contrast(1.01);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}
.hero__photo-ring{ display:none; }

@media (max-width: 1024px){
  .hero__media{ min-height: 590px; }
  .hero__photo{ min-height: 590px; width: min(100%, 530px); }
  .hero__media::before{ right: 0; font-size: clamp(12rem, 28vw, 20rem); }
}

@media (max-width: 760px){
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 42px;
    padding-bottom: 0;
  }
  .hero__copy{ text-align: left; }
  .hero__media{
    order: 2;
    min-height: 500px;
    margin-top: 12px;
    overflow: hidden;
  }
  .hero__photo{
    min-height: 500px;
    width: min(112%, 520px);
  }
  .hero__photo img{
    max-height: 590px;
    object-position: center bottom;
  }
  .hero__media::before{
    content:'BS';
    top: 48%;
    right: 1%;
    transform: translateY(-52%);
    font-size: clamp(10rem, 58vw, 18rem);
    color: #f1f1f2;
  }
  .hero__photo::after{ height: 11%; }
}

@media (max-width: 430px){
  .hero__media{ min-height: 440px; }
  .hero__photo{ min-height: 440px; width: 116%; }
  .hero__photo img{ max-height: 520px; }
  .hero__media::before{ font-size: 54vw; right: 2%; }
}

/* ===== FINAL HERO: TRANSPARENT PEOPLE OVER SITE BACKGROUND ===== */
.hero{
  background:#fff;
}
.hero__orbit{
  display:none;
}
.hero__media{
  min-height:680px;
  overflow:visible;
  background:transparent;
}
.hero__media::before{
  content:'BS';
  z-index:0;
  right:-2%;
  top:49%;
  transform:translateY(-50%);
  color:#f3f3f4;
  opacity:1;
  font-family:var(--f-display);
  font-size:clamp(15rem,24vw,25rem);
  font-weight:600;
  line-height:.78;
  letter-spacing:-.12em;
}
.hero__photo{
  width:min(100%,620px);
  height:auto;
  min-height:680px;
  overflow:visible;
  background:transparent;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero__photo::after{
  display:none;
}
.hero__photo img{
  position:relative;
  width:100%;
  height:auto;
  max-height:760px;
  object-fit:contain;
  object-position:center bottom;
  filter:none;
  -webkit-mask-image:none;
  mask-image:none;
}
@media(max-width:1024px){
  .hero__media{min-height:590px}
  .hero__photo{min-height:590px;width:min(100%,540px)}
  .hero__media::before{font-size:clamp(12rem,27vw,20rem);right:0}
}
@media(max-width:760px){
  .hero__media{
    min-height:490px;
    overflow:visible;
    margin-top:12px;
  }
  .hero__photo{
    min-height:490px;
    width:min(100%,500px);
  }
  .hero__photo img{
    width:100%;
    max-height:560px;
    object-position:center bottom;
  }
  .hero__media::before{
    top:48%;
    right:50%;
    transform:translate(50%,-50%);
    font-size:clamp(10rem,56vw,17rem);
    color:#f2f2f3;
  }
}
@media(max-width:430px){
  .hero__media{min-height:430px}
  .hero__photo{min-height:430px;width:100%}
  .hero__photo img{max-height:500px}
  .hero__media::before{font-size:55vw;right:50%}
}

/* ===== CORRECCIÓN FINAL HERO — FOTO INTEGRADA + BS DETRÁS ===== */
@media (min-width: 961px){
  .hero{
    padding-top: var(--nav-h);
    padding-bottom: 58px;
    overflow: hidden;
  }
  .hero__grid{
    grid-template-columns: .88fr 1.12fr;
    align-items: end;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 0;
  }
  .hero__copy{
    align-self: center;
    padding-bottom: 26px;
  }
  .hero__media{
    min-height: 560px;
    height: 560px;
    align-self: end;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
  }
  .hero__photo{
    width: min(100%, 610px);
    min-height: 560px;
    height: 560px;
    align-items: flex-end;
    overflow: visible;
  }
  .hero__photo img{
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 620px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
  }
  .hero__media::before{
    right: 0;
    top: 48%;
    transform: translateY(-50%);
    font-size: clamp(12rem, 20vw, 19rem);
    line-height: .78;
    color: #f0f0f2;
    opacity: .72;
    letter-spacing: -.12em;
  }
  .reserva{
    margin-top: -38px;
  }
}

@media (min-width: 761px) and (max-width: 960px){
  .hero{
    padding-bottom: 52px;
  }
  .hero__grid{
    padding-top: 18px;
    gap: 4px;
  }
  .hero__media{
    min-height: 500px;
    height: 500px;
    margin-top: 0;
  }
  .hero__photo{
    min-height: 500px;
    height: 500px;
    width: min(100%, 540px);
  }
  .hero__photo img{
    width: auto;
    height: 100%;
    max-height: 550px;
  }
  .hero__media::before{
    right: 50%;
    top: 49%;
    transform: translate(50%,-50%);
    font-size: clamp(11rem, 38vw, 17rem);
    opacity: .68;
  }
  .reserva{ margin-top: -26px; }
}

@media (max-width: 760px){
  .hero{
    padding-top: 76px;
    padding-bottom: 34px;
    overflow: hidden;
  }
  .hero__grid{
    padding-top: 16px;
    gap: 4px;
  }
  .hero__copy{
    padding-bottom: 4px;
  }
  .hero__media{
    min-height: 420px;
    height: 420px;
    margin-top: 0;
    overflow: visible;
  }
  .hero__photo{
    min-height: 420px;
    height: 420px;
    width: min(108%, 470px);
  }
  .hero__photo img{
    width: auto;
    height: 100%;
    max-width: 108%;
    max-height: 470px;
    object-position: center bottom;
  }
  .hero__media::before{
    right: 50%;
    top: 49%;
    transform: translate(50%,-50%);
    font-size: clamp(9.5rem, 50vw, 14rem);
    color: #f0f0f2;
    opacity: .72;
  }
  .reserva{
    margin-top: -12px;
  }
}

@media (max-width: 430px){
  .hero__media{
    min-height: 380px;
    height: 380px;
  }
  .hero__photo{
    min-height: 380px;
    height: 380px;
    width: 112%;
  }
  .hero__photo img{
    max-height: 430px;
  }
  .hero__media::before{
    font-size: 49vw;
    top: 50%;
  }
}

/* ===== AJUSTE DEFINITIVO: PERSONAJES APOYADOS EN EL FORMULARIO + BS VISIBLE ===== */
@media (min-width: 961px){
  .hero{
    padding-bottom: 0 !important;
    overflow: hidden;
  }
  .hero__grid{
    padding-bottom: 0 !important;
    align-items: end;
  }
  .hero__media{
    height: 590px !important;
    min-height: 590px !important;
    align-self: end;
    align-items: flex-end;
    overflow: visible;
  }
  .hero__photo{
    height: 590px !important;
    min-height: 590px !important;
    width: min(100%, 620px) !important;
    align-items: flex-end;
  }
  .hero__photo img{
    height: 100% !important;
    width: auto !important;
    max-height: none !important;
    object-position: center bottom !important;
    margin-bottom: 0 !important;
    transform: translateY(0) !important;
  }
  .hero__media::before{
    right: -18% !important;
    top: 52% !important;
    transform: translateY(-50%) !important;
    font-size: clamp(15rem, 21vw, 21rem) !important;
    opacity: .74 !important;
    letter-spacing: -.11em !important;
  }
  .reserva{
    margin-top: -1px !important;
    position: relative;
    z-index: 5;
  }
}

@media (min-width: 761px) and (max-width: 960px){
  .hero{padding-bottom:0 !important;overflow:hidden}
  .hero__media{height:520px !important;min-height:520px !important;align-items:flex-end}
  .hero__photo{height:520px !important;min-height:520px !important;width:min(100%,550px) !important}
  .hero__photo img{height:100% !important;width:auto !important;max-height:none !important;object-position:center bottom !important}
  .hero__media::before{right:-20% !important;top:52% !important;transform:translateY(-50%) !important;font-size:clamp(13rem,40vw,18rem) !important}
  .reserva{margin-top:-1px !important;z-index:5}
}

@media (max-width: 760px){
  .hero{padding-bottom:0 !important;overflow:hidden}
  .hero__grid{padding-bottom:0 !important}
  .hero__media{height:445px !important;min-height:445px !important;align-items:flex-end;overflow:visible}
  .hero__photo{height:445px !important;min-height:445px !important;width:min(112%,480px) !important;align-items:flex-end}
  .hero__photo img{height:100% !important;width:auto !important;max-height:none !important;max-width:112% !important;object-position:center bottom !important;margin-bottom:0 !important}
  .hero__media::before{right:-30% !important;top:52% !important;transform:translateY(-50%) !important;font-size:clamp(11rem,58vw,16rem) !important;opacity:.72 !important}
  .reserva{margin-top:-1px !important;z-index:5}
}

@media (max-width: 430px){
  .hero__media{height:400px !important;min-height:400px !important}
  .hero__photo{height:400px !important;min-height:400px !important;width:118% !important}
  .hero__media::before{right:-34% !important;font-size:61vw !important}
}

/* ===== PRUEBA SOCIAL EDITABLE ===== */
.hero__social-proof{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:2px;
}
.hero__client-avatars{
  display:flex;
  align-items:center;
  min-width:154px;
  flex:0 0 auto;
}
.hero__client-avatars img{
  width:50px;
  height:50px;
  border-radius:50%;
  object-fit:cover;
  object-position:center;
  border:3px solid #fff;
  background:#f2f2f2;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
}
.hero__client-avatars img + img{margin-left:-10px}
.hero__rating-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
  font-size:14px;
  line-height:1.25;
  color:var(--c-gray-600);
}
.hero__rating-copy .stars{
  font-size:19px;
  letter-spacing:4px;
  line-height:1;
}
.hero__rating-copy strong{
  color:var(--c-black);
  font-weight:800;
}

@media (min-width: 961px){
  .hero__media::before{
    top:31% !important;
    right:-11% !important;
    font-size:clamp(16rem,23vw,23rem) !important;
    opacity:.66 !important;
  }
}
@media (min-width: 761px) and (max-width: 960px){
  .hero__media::before{
    top:31% !important;
    right:-12% !important;
    font-size:clamp(13rem,41vw,19rem) !important;
  }
}
@media (max-width:760px){
  .hero__social-proof{gap:12px;align-items:center}
  .hero__client-avatars{min-width:146px}
  .hero__rating-copy{font-size:13px}
  .hero__rating-copy .stars{font-size:16px;letter-spacing:3px}
  .hero__media::before{
    top:28% !important;
    right:-17% !important;
    font-size:clamp(11rem,60vw,17rem) !important;
  }
}
@media (max-width:430px){
  .hero__social-proof{gap:10px}
  .hero__client-avatars{min-width:126px}
  .hero__rating-copy{font-size:12px}
  .hero__media::before{
    top:27% !important;
    right:-20% !important;
    font-size:64vw !important;
  }
}

/* Tamaños responsive de las fotos editables */
@media (max-width:760px){
  .hero__client-avatars img{width:46px;height:46px;border-width:2px}
  .hero__client-avatars img + img{margin-left:-10px}
}
@media (max-width:430px){
  .hero__client-avatars img{width:40px;height:40px}
  .hero__client-avatars img + img{margin-left:-9px}
}

/* Gift Card responsive refinement */
@media (max-width: 980px){
  .giftcard__panel{
    grid-template-columns: 1fr 1.15fr;
    padding: 30px 30px;
  }
  .giftcard__features{
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    justify-self: stretch;
    padding-top: 4px;
  }
  .giftcard__features li{ flex: 1; }
}
@media (max-width: 700px){
  .giftcard{ padding-block: 24px 36px; }
  .giftcard__panel{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px 28px;
    text-align: center;
  }
  .giftcard__copy{ order: 1; }
  .giftcard__visual{ order: 2; }
  .giftcard__features{ order: 3; flex-direction: column; align-items: stretch; padding-top: 4px; }
  .giftcard__features li{ text-align: left; max-width: 250px; margin-inline: auto; width: 100%; }
  .giftcard__headline{ font-size: clamp(1.65rem, 7vw, 2.05rem); }
  .giftcard__desc br{ display:none; }
  .giftcard__image{ width: min(92%, 420px); }
  .giftcard__cta{ width: auto; }
}

/* =========================================================
   GALERÍA DINÁMICA BESSÓ
   Layout modular inspirado en la referencia del usuario.
   ========================================================= */
.besso-gallery{
  padding:52px 0 34px;
  background:#fff;
}
.besso-gallery__grid{
  width:min(100%, 1120px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  grid-template-rows:repeat(4,minmax(118px,1fr));
  gap:14px;
  aspect-ratio:1.42/1;
}
.gallery-tile{
  margin:0;
  min-width:0;
  min-height:0;
  overflow:hidden;
  border-radius:12px;
  background:#f0f0f0;
}
.gallery-tile img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease, filter .45s ease;
}
.gallery-tile:hover img{ transform:scale(1.035); }

/* Mismo mapa visual del layout de referencia */
.gallery-tile--a{grid-column:1 / span 2;grid-row:1 / span 2;}
.gallery-tile--b{grid-column:3;grid-row:1;}
.gallery-tile--c{grid-column:4;grid-row:1;}
.gallery-tile--d{grid-column:3 / span 2;grid-row:2;}
.gallery-tile--e{grid-column:5 / span 2;grid-row:1 / span 2;}
.gallery-tile--f{grid-column:1 / span 3;grid-row:3 / span 2;}
.gallery-tile--g{grid-column:4;grid-row:3;}
.gallery-tile--h{grid-column:4;grid-row:4;}
.gallery-tile--i{grid-column:5 / span 2;grid-row:3;}
.gallery-tile--j{grid-column:5;grid-row:4;}
.gallery-tile--k{grid-column:6;grid-row:4;}

@media (max-width:900px){
  .besso-gallery{padding:40px 0 30px;}
  .besso-gallery__grid{gap:10px;grid-template-rows:repeat(4,minmax(84px,1fr));}
  .gallery-tile{border-radius:9px;}
}
@media (max-width:640px){
  .besso-gallery{padding:32px 0 26px;}
  .besso-gallery__grid{
    aspect-ratio:auto;
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:none;
    grid-auto-rows:165px;
    gap:9px;
  }
  .gallery-tile{grid-column:auto!important;grid-row:auto!important;border-radius:8px;}
  .gallery-tile:nth-child(3n+1){grid-row:span 2;}
  .gallery-tile:nth-child(4n+2){grid-column:span 2;}
}


/* AJUSTE 12-08: galería más cerca de Gift Card + ayuda en selector de servicio */
.besso-gallery{padding-bottom:10px;}
.giftcard{padding-top:10px;}
.field__services-link{
  display:inline-block;
  width:max-content;
  margin-top:12px;
  margin-bottom:1px;
  font-size:12px;
  line-height:1.2;
  color:var(--c-lime);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}
.field__services-link:hover{color:var(--c-lime-dark);opacity:1;}
.field select + .field__services-link + .field__error{margin-top:0;}
@media(max-width:900px){
  .besso-gallery{padding-bottom:8px;}
  .giftcard{padding-top:8px;}
}
@media(max-width:640px){
  .besso-gallery{padding-bottom:6px;}
  .giftcard{padding-top:6px;}
}

/* ===== SERVICIOS BESSÓ: ACORDEÓN PREMIUM ===== */
.services-accordion{scroll-margin-top:calc(var(--nav-h) + 24px);max-width:1040px;margin:92px auto 0;padding-top:76px;border-top:1px solid var(--c-gray-100)}
.services-accordion__head{text-align:center;max-width:680px;margin:0 auto 46px}
.services-accordion__head .section-title{margin-bottom:14px}
.services-accordion__head>p:last-child{font-size:14.5px;line-height:1.7;color:var(--c-gray-600);max-width:590px;margin-inline:auto}
.services-accordion__list{border-top:1px solid #ddd}
.service-group{border-bottom:1px solid #ddd;background:transparent}
.service-group summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:25px 4px;font-family:var(--f-display);font-size:clamp(19px,2vw,24px);font-weight:600;color:var(--c-black);transition:color var(--dur-med) var(--ease)}
.service-group summary::-webkit-details-marker{display:none}
.service-group summary:hover,.service-group[open] summary{color:var(--c-fucsia-dark)}
.service-group__mark{position:relative;width:22px;height:22px;flex:0 0 22px}
.service-group__mark::before,.service-group__mark::after{content:"";position:absolute;left:50%;top:50%;width:16px;height:1.5px;background:var(--c-lime-dark);transform:translate(-50%,-50%);transition:transform var(--dur-med) var(--ease),background var(--dur-med) var(--ease)}
.service-group__mark::after{transform:translate(-50%,-50%) rotate(90deg)}
.service-group[open] .service-group__mark::after{transform:translate(-50%,-50%) rotate(0)}
.service-group__body{padding:2px 4px 30px}
.service-group__items{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px 28px;padding:2px 0 26px}
.service-group__items span{font-size:14px;line-height:1.45;color:var(--c-gray-600);padding-bottom:9px;border-bottom:1px solid rgba(0,0,0,.055)}
.service-group__cta{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:22px 24px;border-radius:16px;background:var(--c-white);border:1px solid var(--c-gray-100)}
.service-group__cta p{max-width:570px;font-size:13.5px;line-height:1.6;color:var(--c-gray-600)}
.service-group__cta .btn{white-space:nowrap;min-width:190px}
@media(max-width:760px){.services-accordion{margin-top:62px;padding-top:58px}.services-accordion__head{margin-bottom:32px}.service-group summary{padding:21px 2px}.service-group__items{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px 18px}.service-group__cta{align-items:flex-start;flex-direction:column;gap:16px}.service-group__cta .btn{width:100%}}
@media(max-width:430px){.service-group__items{grid-template-columns:1fr}.service-group__body{padding-bottom:24px}}
