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

:root {
  --turquoise: #11b9c7;
  --turquoise-dark: #087986;
  --pink: #f4c7c9;
  --pink-soft: #fdecef;
  --ink: #14323a;
  --muted: #64777c;
  --paper: #f6fbfb;
  --white: #ffffff;
  --line: rgba(20, 50, 58, .12);
  --shadow: 0 24px 80px rgba(8, 56, 68, .18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a { color: inherit; }

.container-xxl {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-inline: 12px;
}

.g-3 { row-gap: 1rem; }
.g-4 { row-gap: 1.5rem; }
.g-5 { row-gap: 3rem; }
.gap-3 { gap: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.pt-0 { padding-top: 0 !important; }
.w-100 { width: 100%; }
.position-relative { position: relative; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.justify-content-between { justify-content: space-between; }

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 16px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(246, 251, 251, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(20, 50, 58, .08);
}

.hotel-navbar {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0;
}

.hotel-navbar .container-xxl {
  gap: 18px;
  padding-inline: 0;
}

.hotel-navbar .navbar-collapse {
  align-items: center;
}

.hotel-navbar .navbar-nav {
  align-items: center;
  gap: 28px;
}

.hotel-navbar .nav-link {
  position: relative;
  padding: 8px 0;
  color: rgba(20, 50, 58, .72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hotel-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.hotel-navbar .nav-link:hover,
.hotel-navbar .nav-link.active {
  color: var(--turquoise-dark);
}

.hotel-navbar .nav-link:hover::after,
.hotel-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.hotel-navbar .navbar-toggler {
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .84);
  box-shadow: none;
}

.hotel-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(17, 185, 199, .14);
}

.hotel-navbar .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

/* ── BRAND ────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}

.brand:hover { color: var(--ink); }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(17, 185, 199, .24);
}

/* ── NAV CTA / BOTONES ────────────────────────────────────── */
.nav-cta,
.btn-hotel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
}

.btn-hotel-primary {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(17, 185, 199, .25);
}

.btn-hotel-ghost {
  border-color: rgba(20, 50, 58, .22);
  background: rgba(255, 255, 255, .62);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.btn-hotel-ghost-dark,
.btn-hotel-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.nav-cta:hover,
.btn-hotel:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(8, 56, 68, .18);
}

/* ── GRID BREAKPOINTS ─────────────────────────────────────── */
@media (min-width: 576px) {
  .flex-sm-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .text-lg-end { text-align: right; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0 44px;
}

.page-hero {
  min-height: 72svh;
  align-items: center;
}

.page-hero.compact { min-height: 62svh; }

.hero-media,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 251, 251, .92) 0%, rgba(246, 251, 251, .64) 32%, rgba(246, 251, 251, .08) 68%),
    linear-gradient(0deg, rgba(20, 50, 58, .34) 0%, rgba(20, 50, 58, 0) 44%);
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(246, 251, 251, .94) 0%, rgba(246, 251, 251, .68) 40%, rgba(246, 251, 251, .14) 100%),
    linear-gradient(0deg, rgba(20, 50, 58, .2), rgba(20, 50, 58, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .95;
  overflow-wrap: break-word;
}

h1 {
  max-width: 8ch;
  font-size: clamp(64px, 11vw, 150px);
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(50px, 8vw, 104px);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(20, 50, 58, .82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .36);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px 20px;
  background: rgba(255, 255, 255, .68);
}

.hero-panel span {
  display: block;
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── SECCIONES ────────────────────────────────────────────── */
.section-shell {
  padding: clamp(76px, 10vw, 136px) 0;
}

.section-title {
  font-size: clamp(38px, 6vw, 76px);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.image-feature {
  position: relative;
  min-height: min(720px, 82vw);
  display: grid;
  align-items: end;
  margin: 0 clamp(16px, 4vw, 56px);
  overflow: hidden;
  border-radius: 8px;
}

.image-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 50, 58, .66), rgba(20, 50, 58, 0) 58%);
}

.image-feature-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  margin: 0 0 clamp(24px, 5vw, 56px) clamp(16px, 5vw, 56px);
  color: var(--white);
}

.image-feature-content p {
  margin: 0 0 12px;
  color: var(--pink);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.image-feature-content h2,
.cta-band h2,
.team-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.image-feature-content .btn-hotel { margin-top: 28px; }

/* ── CARDS ────────────────────────────────────────────────── */
.route-card,
.info-card,
.value-card,
.experience-card {
  display: block;
  height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.route-card:hover,
.info-card:hover,
.value-card:hover,
.experience-card:hover {
  color: var(--ink);
  transform: translateY(-6px);
  border-color: rgba(17, 185, 199, .45);
  box-shadow: 0 24px 58px rgba(8, 56, 68, .12);
}

.route-card span,
.info-card span,
.value-card span,
.experience-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.route-card h3,
.info-card h3,
.value-card h3,
.experience-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.route-card p,
.info-card p,
.value-card p,
.experience-card p,
.team-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── FORMULARIOS ──────────────────────────────────────────── */
.booking-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.55;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(244, 199, 201, .28);
}

.booking-form,
.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(253, 236, 239, .82)),
    var(--white);
  box-shadow: var(--shadow);
}

.form-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-control {
  min-height: 52px;
  border: 1px solid rgba(20, 50, 58, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font: inherit;
}

textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(17, 185, 199, .12);
}

.form-note {
  min-height: 20px;
  margin-bottom: 0;
  color: var(--turquoise-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

/* ── TEAM / SPLIT ─────────────────────────────────────────── */
.team-section img,
.split-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-section h2 {
  margin-bottom: 18px;
  color: var(--ink);
}

/* ── CONTACTO ─────────────────────────────────────────────── */
.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  color: var(--turquoise-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(8, 121, 134, .28);
}

.contact-links a:hover { color: var(--ink); }

.map-frame {
  height: clamp(300px, 42vw, 480px);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(17, 185, 199, .12), rgba(244, 199, 201, .42)),
    var(--pink-soft);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  padding: 30px 0;
  background: #102c34;
  color: rgba(255, 255, 255, .72);
}

.footer .brand,
.footer .brand:hover {
  color: var(--white);
}

.footer p,
.footer span {
  margin: 0;
  font-size: 14px;
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ── TABLETS: 768px – 991.98px ────────────────────────────── */
@media (min-width: 768px) and (max-width: 991.98px) {
.hero {
    align-items: center;
  }

  .hero-panel,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── MÓVIL: hasta 767.98px ────────────────────────────────── */
@media (max-width: 767.98px) {
.hero {
    align-items: center;
  }

  .hero-panel,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── MÓVIL PEQUEÑO: hasta 680px ───────────────────────────── */
@media (max-width: 680px) {
  .container-xxl {
    padding-inline: 24px;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero,
  .page-hero,
  .page-hero.compact {
    min-height: 94svh;
    padding: 132px 0 28px;
  }

  .hero-overlay,
  .page-hero-overlay {
    background:
      linear-gradient(0deg, rgba(246, 251, 251, .95) 0%, rgba(246, 251, 251, .7) 54%, rgba(246, 251, 251, .22) 100%),
      linear-gradient(90deg, rgba(246, 251, 251, .72), rgba(246, 251, 251, .16));
  }

  h1 {
    max-width: 7ch;
    font-size: clamp(56px, 19vw, 88px);
  }

  .hero-content {
    width: min(100%, 318px);
    max-width: 318px;
  }

  .page-hero h1 {
    max-width: 8ch;
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 318px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .page-hero .hero-copy {
    max-width: 320px;
  }

  .btn-hotel {
    width: min(100%, 318px);
    min-height: 50px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-panel {
    width: min(100%, 318px);
  }

  .hero-panel div {
    padding: 16px;
  }

  .section-title,
  .image-feature-content h2,
  .cta-band h2,
  .team-section h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .image-feature {
    min-height: 560px;
    margin-inline: 18px;
  }

  .image-feature img {
    object-position: 54% 50%;
  }

  .image-feature-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-bottom: 24px;
  }

  .booking-form,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 991.98px) {
  .hotel-navbar {
    width: calc(100% - 32px);
  }

  .hotel-navbar .navbar-toggler {
    display: inline-flex;
  }

  .hotel-navbar .navbar-collapse {
    flex-basis: 100%;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(246, 251, 251, .96);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 54px rgba(8, 56, 68, .14);
  }

  .hotel-navbar .navbar-nav {
    align-items: stretch;
    gap: 0;
  }

  .hotel-navbar .nav-link {
    display: block;
    padding: 12px;
    border-radius: 6px;
  }

  .hotel-navbar .nav-link::after {
    display: none;
  }

  .hotel-navbar .nav-link:hover,
  .hotel-navbar .nav-link.active {
    background: rgba(17, 185, 199, .1);
  }

  .hotel-navbar .nav-cta {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
  }
}
