/* ============================================================
   Campo del Tulipán · Hoja de estilos
   Paleta:
   --pearl   #F9F6F1  Fondo principal (Pearly White)
   --blush   #E1C1B6  Acento (Blush Pink)
   --gold    #D6BD9F  Acento (Champagne Gold)
   --silver  #B8B2AA  Texto secundario / bordes (Antique Silver)
   --taupe   #8E7E73  Texto principal (Warm Taupe)
   ============================================================ */

:root {
  --pearl:  #F9F6F1;
  --blush:  #E1C1B6;
  --gold:   #D6BD9F;
  --silver: #B8B2AA;
  --taupe:  #8E7E73;

  --taupe-dark: #6f6259;
  --blush-deep: #d3a99c;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--taupe);
  background: var(--pearl);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--blush); color: #fff; }

/* ---------- Tipografía compartida ---------- */
.section__eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.1rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  color: var(--taupe-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -.01em;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), background .4s var(--ease),
              color .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn--blush {
  background: var(--blush);
  color: #fff;
  box-shadow: 0 14px 34px -16px rgba(209, 169, 156, .9);
}
.btn--blush:hover {
  background: var(--blush-deep);
  box-shadow: 0 20px 40px -16px rgba(209, 169, 156, 1);
}

.btn--ghost {
  color: var(--taupe);
  border-color: var(--silver);
}
.btn--ghost:hover {
  border-color: var(--taupe);
  background: rgba(142, 126, 115, .05);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(249, 246, 241, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 178, 170, .35);
}

/* ---- Brand script font (todas las variantes) ---- */
.brand-script {
  font-family: 'Great Vibes', cursive;
  display: block;
  line-height: 1;
  color: var(--taupe-dark);
  letter-spacing: .01em;
}

/* ---- Nav brand ---- */
.nav__brand { display: flex; align-items: center; }
.brand-nav {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.brand-nav__tulip {
  width: 22px;
  height: auto;
  color: var(--taupe-dark);
  opacity: .75;
  flex-shrink: 0;
  transition: opacity .3s var(--ease);
}
.nav__brand:hover .brand-nav__tulip { opacity: 1; color: var(--blush-deep); }
.brand-nav__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-nav .brand-script { font-size: .95rem; color: var(--taupe); }
.brand-nav .brand-script--main { font-size: 1.45rem; color: var(--taupe-dark); margin-top: -.15rem; }
.nav__mark { color: var(--blush); font-size: 1.1rem; }
.nav__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--taupe-dark);
  letter-spacing: .01em;
}

.nav__menu { display: flex; align-items: center; gap: 2.2rem; }
.nav__menu > a:not(.nav__cta) {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe);
  position: relative;
  padding-bottom: 3px;
}
.nav__menu > a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--blush);
  transition: width .4s var(--ease);
}
.nav__menu > a:not(.nav__cta):hover { color: var(--taupe-dark); }
.nav__menu > a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  border: 1px solid var(--gold);
  padding: .62rem 1.3rem;
  border-radius: 100px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: #fff; }

/* Hamburguesa (oculta en escritorio) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--taupe-dark);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(111, 98, 89, .28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.nav__scrim.is-open { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem clamp(1.2rem, 6vw, 5rem) 6rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    image-set(
      url("https://images.unsplash.com/photo-1523694576729-96d537ecbf7c?auto=format&fit=crop&w=2000&q=80") 1x
    ),
    url("https://images.unsplash.com/photo-1523694576729-96d537ecbf7c?auto=format&fit=crop&w=2000&q=80"),
    linear-gradient(120deg, var(--blush), var(--gold));
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(249, 246, 241, .94) 0%,
      rgba(249, 246, 241, .78) 38%,
      rgba(249, 246, 241, .30) 70%,
      rgba(249, 246, 241, .12) 100%),
    linear-gradient(to top,
      rgba(249, 246, 241, .85) 0%,
      rgba(249, 246, 241, 0) 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* Brand mark en hero — horizontal, igual al logo */
.hero__brand {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: clamp(.3rem, 1vw, .6rem);
}

.hero-illo-svg {
  width: clamp(100px, 17vw, 165px);
  height: auto;
  color: var(--taupe-dark);
  flex-shrink: 0;
  display: block;
  overflow: visible;
}

/* Texto caligráfico */
.hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: .2rem;
}
.hero__brand-del {
  font-size: clamp(.9rem, 2.6vw, 1.6rem);
  color: var(--taupe);
  margin-bottom: -.05em;
  display: block;
  line-height: 1;
}
.hero__brand-name {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  color: var(--taupe-dark);
  line-height: .88;
  display: block;
}
.hero__brand-tagline {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.65rem, 1.4vw, .8rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: .75rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(184,178,170,.5);
}

.hero__eyebrow {
  font-size: .74rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.4rem;
}
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.95rem, 2.2vw, 1.3rem);
  color: var(--blush-deep);
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
  margin-top: -.6rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--taupe-dark);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush-deep);
}

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 30em;
  color: var(--taupe);
  margin-bottom: 2.6rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid var(--silver);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--taupe);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(-4px); }
  40%  { opacity: 1; }
  80%  { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---------- Reveal de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: reveal 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--taupe-dark);
  color: var(--pearl);
  overflow: hidden;
  padding: .9rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scrollX 30s linear infinite;
}
.marquee__track span {
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 0 1.4rem;
  white-space: nowrap;
  opacity: .85;
}
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   HISTORIA
   ============================================================ */
.historia {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.2rem, 5vw, 2rem);
}
.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.historia__figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.historia__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.historia__figure:hover img { transform: scale(1.05); }
.historia__figure figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(249, 246, 241, .9);
  color: var(--taupe);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: 100px;
}

.historia__text p:not(.section__eyebrow) {
  margin-bottom: 1.2rem;
  color: var(--taupe);
  max-width: 38em;
}
.historia__text .section__title { margin-bottom: 1.6rem; }

.historia__stats {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 178, 170, .5);
}
.historia__stats li { display: flex; flex-direction: column; }
.historia__stats strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
  color: var(--blush-deep);
  line-height: 1;
}
.historia__stats span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: .5rem;
}

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 12vw, 9rem);
}
.galeria__head {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 clamp(1.2rem, 5vw, 2rem);
}
.galeria__sub { color: var(--taupe); margin-top: .8rem; }

/* ── Carrusel ── */
.galeria__carousel { position: relative; padding: 0 clamp(1.2rem, 5vw, 2rem); }

.galeria__viewport {
  overflow: hidden;
  border-radius: 16px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.galeria__viewport.is-grabbing { cursor: grabbing; }

.galeria__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
  transition: transform .75s var(--ease);
  will-change: transform;
}

.galeria__slide {
  position: relative;
  flex: 0 0 min(76%, 780px);
  height: clamp(260px, 38vw, 480px);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.galeria__img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease), filter .8s var(--ease);
  transform: translateY(-5%);
  filter: saturate(.88);
}
.galeria__slide.is-active .galeria__img {
  transform: translateY(0) scale(1.03);
  filter: saturate(1);
}

.galeria__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(56, 42, 32, .75) 0%,
    rgba(56, 42, 32, .08) 52%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem 2.8rem;
  pointer-events: none;
}

.galeria__slide-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.22);
}

.galeria__slide-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
  padding: .6rem 1.4rem;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background .25s, border-color .25s;
  pointer-events: auto;
}
.galeria__slide-cta:hover {
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.55);
}

.galeria__controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.galeria__progress-wrap {
  flex: 1;
  height: 2px;
  background: var(--silver);
  border-radius: 99px;
  overflow: hidden;
}
.galeria__progress-fill {
  height: 100%;
  background: var(--blush-deep);
  border-radius: 99px;
  transition: width .65s var(--ease);
  width: 20%;
}

.galeria__arrows { display: flex; gap: .5rem; }

.galeria__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1.5px solid var(--silver);
  background: var(--pearl);
  color: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, opacity .25s;
  flex-shrink: 0;
}
.galeria__btn:hover:not(:disabled) {
  background: var(--blush);
  border-color: var(--blush-deep);
  color: var(--taupe-dark);
}
.galeria__btn:disabled { opacity: .3; cursor: not-allowed; }

/* ============================================================
   VISITA / CTA
   ============================================================ */
.visita {
  padding: 0 clamp(1.2rem, 5vw, 2rem) clamp(5rem, 12vw, 8rem);
}
.visita__note {
  margin-top: 1.4rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
}

/* ---------- Motor de reservas ---------- */
.booking {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(225, 193, 182, .28), transparent 55%),
    linear-gradient(180deg, #fff, var(--pearl));
  border: 1px solid rgba(184, 178, 170, .45);
  border-radius: 12px;
  overflow: hidden;
}

.booking__aside {
  padding: clamp(2.2rem, 5vw, 3.4rem);
  border-right: 1px solid rgba(184, 178, 170, .4);
}
.booking__intro {
  color: var(--taupe);
  margin: 1.2rem 0 1.8rem;
  max-width: 32em;
}
.booking__perks { list-style: none; display: grid; gap: .85rem; }
.booking__perks li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  color: var(--taupe);
}
.booking__perks span { color: var(--blush-deep); line-height: 1.6; }

.booking__avail { margin-top: 2.2rem; }
.booking__bar {
  height: 7px;
  border-radius: 100px;
  background: rgba(184, 178, 170, .35);
  overflow: hidden;
}
.booking__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--blush-deep));
  transition: width .8s var(--ease);
}
.booking__availText {
  margin-top: .7rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--silver);
}
.booking__availText strong { color: var(--taupe-dark); }

/* ---------- Formulario ---------- */
.booking__formwrap { padding: clamp(2.2rem, 5vw, 3.4rem); }
.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1rem;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.field input,
.field select {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--taupe-dark);
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: 7px;
  padding: .8rem .9rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder { color: #c5beb5; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 3px rgba(225, 193, 182, .3);
}

.booking__summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem 1rem;
  margin-top: .4rem;
  padding: 1.1rem 1.2rem;
  background: rgba(214, 189, 159, .12);
  border: 1px solid rgba(214, 189, 159, .5);
  border-radius: 8px;
}
.booking__summary > div { display: flex; flex-direction: column; gap: .15rem; }
.booking__summary span {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
}
.booking__summary strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--taupe-dark);
}
.booking__incl {
  grid-column: 1 / -1;
  font-size: .78rem;
  color: var(--taupe);
  margin-top: .3rem;
}

.booking__msg {
  grid-column: 1 / -1;
  font-size: .88rem;
  min-height: 0;
}
.booking__msg.is-ok   { color: #5b7b56; }
.booking__msg.is-warn { color: #b5645a; }
.booking__msg.is-info { color: var(--taupe); }

.booking__submit { grid-column: 1 / -1; width: 100%; cursor: pointer; }
.booking__submit:disabled {
  background: var(--silver);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.booking__form .visita__note { grid-column: 1 / -1; margin-top: .2rem; }

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  padding: .85rem 1.1rem;
  border-radius: 100px;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(37, 211, 102, .85);
}
.wa-float svg { flex-shrink: 0; }
.wa-float__txt {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ============================================================
   INSTAGRAM CTA
   ============================================================ */
.insta {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.2rem, 5vw, 2rem);
  background: var(--taupe-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* patrón decorativo de fondo */
.insta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 110%,
    rgba(225, 193, 182, .18) 0%, transparent 70%);
  pointer-events: none;
}
.insta__inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.insta__deco {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
  color: var(--blush);
  font-size: 1.3rem;
  opacity: .7;
}
.insta__deco span:nth-child(2) { opacity: .45; font-size: .85em; margin-top: .3rem; }
.insta__deco span:nth-child(3) { opacity: .7; }

.insta .section__eyebrow { color: rgba(214, 189, 159, .75); }

.insta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--pearl);
  margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}
.insta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
}
.insta__text {
  color: rgba(249, 246, 241, .72);
  font-size: .98rem;
  max-width: 36em;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}

.insta__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.insta__cta {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  background: rgba(249, 246, 241, .1);
  border: 1px solid rgba(225, 193, 182, .5);
  color: var(--pearl);
  padding: 1rem 1.8rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .02em;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              transform .4s var(--ease);
}
.insta__cta:hover {
  background: var(--blush);
  border-color: var(--blush);
  transform: translateY(-3px);
}
.insta__icon { flex-shrink: 0; opacity: .9; }
.insta__handle { font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.insta__arrow { font-size: .95rem; opacity: .7; margin-left: .2rem; }

.insta__sub {
  margin-top: 1.4rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(249, 246, 241, .4);
}

/* ============================================================
   FOOTER
   ============================================================ */

/* Brand mark en footer */
.footer__logo-section {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  padding-bottom: 2.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(184, 178, 170, .2);
}
.footer__logo-link { display: inline-block; }
.footer__logo-link:hover .brand-footer { opacity: 1; }

.brand-footer {
  display: inline-flex;
  align-items: flex-end;
  gap: 1rem;
  opacity: .82;
  transition: opacity .4s var(--ease);
}
.brand-footer__tulip {
  width: clamp(36px, 7vw, 52px);
  height: auto;
  color: var(--pearl);
  flex-shrink: 0;
}
.brand-footer__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: .2rem;
  text-align: left;
}
.brand-footer .brand-script { color: var(--pearl); }
.brand-footer__script-sm { font-size: clamp(.9rem, 2.5vw, 1.2rem); opacity: .75; }
.brand-footer__script-lg { font-size: clamp(2rem, 5vw, 3rem); line-height: .9; }

.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(249, 246, 241, .45);
  margin-top: 1rem;
  letter-spacing: .04em;
}

/* Links de redes en footer */
.footer__socials { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--blush);
  opacity: .85;
  transition: opacity .3s;
}
.footer__insta:hover { opacity: 1; }
.footer {
  background: var(--taupe-dark);
  color: var(--pearl);
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.2rem, 5vw, 3.5rem) 2rem;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(184, 178, 170, .2);
  margin-bottom: 1.4rem;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem 1.8rem; }
.footer__links a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .82;
  transition: opacity .3s var(--ease);
}
.footer__links a:hover { opacity: 1; color: var(--blush); }

.footer__bottom {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: .7;
}

/* ============================================================
   UBICACIÓN / MAPA
   ============================================================ */
.ubicacion {
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.2rem, 5vw, 3.5rem);
  background: var(--pearl);
}
.ubicacion__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.ubicacion__copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ubicacion__text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  color: var(--taupe);
}
.ubicacion__cta {
  align-self: flex-start;
  margin-top: .4rem;
}
.ubicacion__map {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 48px -8px rgba(142, 126, 115, .22);
}
.ubicacion__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.btn--outline {
  display: inline-block;
  border: 1.5px solid var(--taupe);
  color: var(--taupe);
  background: transparent;
  padding: .85rem 1.8rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--outline:hover {
  background: var(--taupe);
  border-color: var(--taupe);
  color: #fff;
}

/* ============================================================
   RESPONSIVE — mobile-first
   ============================================================ */

/* ──────────────── Tablet ≤ 860px ──────────────── */
@media (max-width: 860px) {
  .nav { gap: 1rem; }
  .nav__toggle { display: flex; }

  /* Drawer de menú */
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; height: 100dvh;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 2rem 2.5rem;
    background: var(--pearl);
    border-left: 1px solid rgba(184, 178, 170, .35);
    box-shadow: -32px 0 64px -32px rgba(111, 98, 89, .55);
    transform: translateX(105%);
    transition: transform .42s var(--ease);
    z-index: 55;
  }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__menu > a:not(.nav__cta) {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--taupe-dark);
    letter-spacing: .01em;
    text-transform: none;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(184, 178, 170, .28);
  }
  .nav__menu > a:not(.nav__cta)::after { display: none; }
  .nav__menu .nav__cta {
    margin-top: 1.4rem;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: .82rem;
    background: var(--blush);
    color: #fff;
    border-color: var(--blush);
  }

  .historia__grid { grid-template-columns: 1fr; }
  .historia__figure { order: -1; }
  .historia__figure img { aspect-ratio: 16 / 10; }

  .galeria__slide { flex: 0 0 min(80%, 720px); }

  .booking { grid-template-columns: 1fr; }
  .booking__aside {
    border-right: none;
    border-bottom: 1px solid rgba(184, 178, 170, .35);
  }

  .ubicacion__inner { grid-template-columns: 1fr; }
  .ubicacion__map { aspect-ratio: 16 / 10; }
}

/* ──────────────── Móvil ≤ 540px ──────────────── */
@media (max-width: 540px) {
  :root { --px: 1.25rem; }   /* padding horizontal universal */

  /* ── Nav ── */
  .nav { padding: .9rem var(--px); }
  .brand-nav__logo-wrap { width: 108px; }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    padding: max(6.5rem, 18svh) var(--px) 4.5rem;
    justify-content: flex-start;
    align-items: center;           /* centra el contenido horizontalmente */
  }
  .hero__veil {
    background:
      linear-gradient(to bottom,
        rgba(249,246,241,.12) 0%,
        rgba(249,246,241,.52) 28%,
        rgba(249,246,241,.93) 60%,
        rgba(249,246,241,.99) 100%);
  }
  .hero__content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__brand { margin-bottom: 1.8rem; }
  .hero__logo-wrap { width: min(68vw, 240px); }

  .hero__title {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
    margin-bottom: 1.2rem;
    letter-spacing: -.025em;
    max-width: 100%;
  }
  .hero__lead {
    font-size: .93rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 28em;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    width: 100%;
  }
  .hero__actions .btn { text-align: center; padding: 1.1rem 1.4rem; }
  .hero__scroll { display: none; }

  /* ── Marquee ── */
  .marquee__track span { font-size: .7rem; letter-spacing: .2em; }

  /* ── Secciones: títulos y padding ── */
  .section__title  { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .section__eyebrow { font-size: .68rem; letter-spacing: .34em; }

  /* ── Historia ── */
  .historia { padding: 3.5rem var(--px); }
  .historia__figure figcaption {
    font-size: .67rem;
    left: .75rem; bottom: .75rem;
    padding: .4rem .8rem;
  }
  .historia__text .section__title { margin-bottom: 1rem; }
  .historia__text p:not(.section__eyebrow) {
    margin-bottom: .9rem;
    font-size: .96rem;
  }

  /* Stats: 3 columnas en fila */
  .historia__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    list-style: none;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(184,178,170,.4);
  }
  .historia__stats li {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 0 .5rem;
  }
  .historia__stats li + li {
    border-left: 1px solid rgba(184,178,170,.3);
  }
  .historia__stats strong { font-size: 1.55rem; }
  .historia__stats span  { font-size: .6rem; letter-spacing: .1em; margin-top: .3rem; }

  /* ── Galería: carrusel JS ── */
  .galeria { padding: 2.5rem 0 3.5rem; }
  .galeria__head { padding: 0 var(--px); margin-bottom: 2rem; }
  .galeria__sub   { font-size: .93rem; }

  .galeria__carousel  { padding: 0 var(--px); }
  .galeria__viewport  { border-radius: 10px; }
  .galeria__slide     { flex: 0 0 84%; height: 265px; border-radius: 8px; }
  .galeria__slide-title { font-size: 1.65rem; margin-bottom: .85rem; }
  .galeria__overlay   { padding: 1.5rem 1.6rem; }
  .galeria__slide-cta { font-size: .68rem; padding: .55rem 1.1rem; }
  .galeria__btn       { width: 2.2rem; height: 2.2rem; }
  .galeria__controls  { margin-top: 1rem; }

  /* ── Instagram CTA ── */
  .insta { padding: 3.5rem var(--px); }
  .insta__title { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .insta__text  { font-size: .93rem; margin-bottom: 2rem; }
  .insta__cta   { width: 100%; justify-content: center; padding: 1rem 1.4rem; }

  /* ── Booking / Reservas ── */
  .visita { padding: 0 var(--px) 3.5rem; overflow-x: clip; }
  .booking {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(142, 126, 115, .13);
  }

  /* Aside: título compacto + intro breve + sin lista de beneficios */
  .booking__aside { padding: 1.5rem var(--px) 1.25rem; }
  .booking__aside .section__eyebrow { margin-bottom: .35rem; }
  .booking__aside .section__title { font-size: 1.55rem; margin-bottom: .45rem; line-height: 1.2; }
  .booking__intro {
    display: block;
    font-size: .8rem;
    line-height: 1.5;
    margin: 0;
    color: var(--silver);
  }
  .booking__perks { display: none; }

  /* Barra de disponibilidad */
  .booking__avail     { margin-top: .95rem; }
  .booking__bar       { height: 5px; }
  .booking__availText { margin-top: .5rem; font-size: .74rem; }

  /* Formulario: 2 columnas — teléfono y visitantes lado a lado */
  .booking__formwrap { padding: 1.3rem var(--px) 1.7rem; }
  .booking__form { grid-template-columns: 1fr 1fr; gap: .95rem .6rem; }
  .field { min-width: 0; }
  .field input,
  .field select { font-size: 16px; padding: .85rem .75rem; border-radius: 8px; width: 100%; min-width: 0; box-sizing: border-box; }
  .field label  { font-size: .65rem; letter-spacing: .12em; }
  .booking__summary { grid-template-columns: 1fr 1fr; padding: .9rem 1rem; margin-top: .2rem; }
  .booking__summary strong { font-size: 1.05rem; }
  .booking__submit  { padding: 1.05rem; font-size: .76rem; letter-spacing: .09em; margin-top: .15rem; }
  .booking__msg     { font-size: .83rem; }
  .visita__note     { font-size: .64rem; letter-spacing: .08em; }

  /* ── Ubicación ── */
  .ubicacion { padding: 3.5rem var(--px); }
  .ubicacion__text { font-size: .93rem; }
  .ubicacion__map { aspect-ratio: 4 / 3; }
  .btn--outline { font-size: .72rem; padding: .8rem 1.5rem; }

  /* ── Footer ── */
  .footer { padding: 3rem var(--px) 2rem; }
  .footer__logo-section { padding-bottom: 2rem; margin-bottom: 1.6rem; }
  .footer__logo-wrap    { width: min(58vw, 190px); }
  .footer__tagline      { font-size: .93rem; margin-top: .8rem; }

  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    padding-bottom: 1.4rem;
  }
  .footer__links {
    justify-content: center;
    gap: .9rem 1.4rem;
  }
  .footer__links a { font-size: .78rem; }
  .footer__insta  { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: .35rem;
    font-size: .72rem;
  }

  /* ── WhatsApp ── */
  .wa-float { padding: .95rem; }
  .wa-float__txt { display: none; }
}

/* ===== LOGO REAL — imagen extraída con fondo transparente vía SVG filter ===== */

/* Contenedor recortador: muestra solo los tulipanes + caligrafía,
   oculta el Instagram y teléfono de la parte inferior del logo */
.brand-nav__logo-wrap,
.hero__logo-wrap,
.footer__logo-wrap {
  overflow: hidden;
  aspect-ratio: 1 / 0.63; /* muestra el 63 % superior de la imagen cuadrada */
}

/* Nav: pequeño, a la izquierda */
.brand-nav__logo-wrap {
  width: clamp(90px, 13vw, 135px);
}
.brand-nav__logo-img {
  width: 100%;
  display: block;
  filter: url(#logo-transparent); /* blanco→transparente, negro→opaco */
}

/* Hero: protagonista centrado */
.hero__logo-wrap {
  width: clamp(220px, 42vw, 360px);
  margin: 0 auto 1.8rem;
}
.hero__logo-img {
  width: 100%;
  display: block;
  filter: url(#logo-transparent);
}

/* Footer: líneas blancas sobre fondo oscuro, sin recuadro */
.footer__logo-wrap {
  width: clamp(130px, 20vw, 210px);
}
.footer__logo-img {
  width: 100%;
  display: block;
  filter: url(#logo-invert-transparent); /* negro→blanco, blanco→transparente */
}

/* Ajuste del hero__brand: centrado, sin flex lateral */
.hero__brand {
  display: block;
  text-align: center;
}

/* Respeta preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
