/* ── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #101013;
  --bg2: #17171b;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.3);
  --gold-glow: rgba(201,168,76,0.08);
  --white: #f0f0f0;
  --muted: #6a6a6a;
  --muted-light: #8a8a8a;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-luxury: 'Cormorant Garamond', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Utility ────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 40px;
  display: inline-block;
}
.gold-line { width: 40px; height: 1px; background: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.6s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}
.site-header.scrolled {
  background: rgba(16,16,19,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
}
.header-logo img { height: 32px; opacity: 0.9; transition: opacity 0.3s; }
.header-logo img:hover { opacity: 1; }
.logo-text { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 1px; }
.logo-detail { font-family: var(--font-head); font-size: 18px; font-weight: 400; letter-spacing: 8px; color: var(--white); opacity: 0.95; }
.logo-barcelona { font-family: var(--font-head); font-size: 10px; font-weight: 300; letter-spacing: 5px; color: var(--gold); opacity: 0.7; }
.header-nav { display: flex; align-items: center; gap: 48px; }
.header-nav a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.4s;
  font-weight: 400;
}
.header-nav a:hover { color: var(--white); }
.header-nav a.active { color: var(--white); }
.header-right { display: flex; align-items: center; justify-self: end; gap: 24px; }
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--muted-light);
  transition: color 0.3s;
  position: relative;
}
.nav-icon:hover { color: var(--white); }
.nav-icon svg { width: 20px; height: 20px; }
.btn-reservar {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  color: var(--gold);
  transition: all 0.4s var(--ease-smooth);
  font-weight: 500;
}
.btn-reservar:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* User dropdown */
.user-menu { position: relative; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}
.user-menu:hover .user-dropdown,
.user-menu:focus-within .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.8rem;
  color: var(--muted-light);
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.5px;
}
.user-dropdown a:hover {
  color: var(--white);
  background: rgba(201,168,76,0.05);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}

/* Fullscreen mobile menu */
.fm {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}
.fm.open { pointer-events: auto; visibility: visible; }
.fm-bg {
  position: absolute;
  inset: 0;
  background: rgba(16,16,19,0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.fm.open .fm-bg { opacity: 1; }
.fm-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
}
.fm-link {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3.8rem);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.25;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s, color 0.25s;
  transition-timing-function: var(--ease-out);
}
.fm.open .fm-link { opacity: 1; transform: translateY(0); }
.fm.open .fm-link:nth-child(1) { transition-delay: .08s; }
.fm.open .fm-link:nth-child(2) { transition-delay: .13s; }
.fm.open .fm-link:nth-child(3) { transition-delay: .18s; }
.fm.open .fm-link:nth-child(4) { transition-delay: .23s; }
.fm.open .fm-link:nth-child(5) { transition-delay: .28s; }
.fm-link:hover { color: var(--gold); }
.fm-link::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0;
  vertical-align: middle;
  transition: all 0.3s var(--ease-out);
}
.fm-link:hover::before { width: 8px; height: 8px; margin-right: 16px; }
.fm-bottom {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0; right: 0;
  padding: 24px 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.35s, transform 0.5s 0.35s;
  transition-timing-function: var(--ease-out);
}
.fm.open .fm-bottom { opacity: 1; transform: translateY(0); }
.fm-bottom-cta {
  padding: 12px 28px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.25s;
  text-decoration: none;
}
.fm-bottom-cta:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.fm-bottom-phone {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.fm-bottom-phone:hover { color: var(--white); }

/* ── Hero (Subpage) ────────────────────────────────────── */
.hero-sub {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-sub-bg {
  position: absolute;
  inset: 0;
}
.hero-sub-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.9);
}
.hero-sub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,19,0.35) 0%, rgba(16,16,19,0.45) 50%, var(--bg) 100%);
  z-index: 1;
}
.hero-sub-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1.2s var(--ease-out) 0.2s forwards;
}
.breadcrumb a { color: var(--muted-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 12px; color: var(--gold); opacity: 0.4; }
.breadcrumb .current { color: var(--white); }
.hero-sub-title {
  font-family: var(--font-luxury);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1.4s var(--ease-out) 0.4s forwards;
}
.hero-sub-desc {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--muted-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.4s var(--ease-out) 0.7s forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  background: #d4b35a;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.2);
}
.btn-outline {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  border: 1px solid rgba(240,240,240,0.2);
  color: var(--white);
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold-outline {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ── Services Grid ──────────────────────────────────────── */
.services-section {
  padding: 160px 0 200px;
}
.services-header {
  text-align: center;
  margin-bottom: 100px;
}
.services-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240,240,240,0.06);
  background: rgba(240,240,240,0.02);
  padding: 56px 48px;
  transition: all 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.service-card:hover .service-card-bg { opacity: 1; }
.service-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}
.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,16,19,0.6) 0%, rgba(16,16,19,0.4) 100%);
}
.service-card > * { position: relative; z-index: 1; }
.service-card-number {
  font-family: var(--font-luxury);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.6s var(--ease-out);
}
.service-card:hover .service-card-number { color: rgba(201,168,76,0.3); }
.service-card-name {
  font-family: var(--font-luxury);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(240,240,240,0.06);
  margin-bottom: 24px;
}
.service-card-duration {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card-duration svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.service-card-price {
  font-family: var(--font-luxury);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.service-card-price .from {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 6px;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-card-footer .btn-gold-outline {
  padding: 12px 28px;
  font-size: 0.65rem;
}

/* ── Extras Section ────────────────────────────────────── */
.extras-section {
  padding: 160px 0;
  background: var(--bg2);
}
.extras-header {
  text-align: center;
  margin-bottom: 80px;
}
.extras-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
.extras-header p {
  font-size: 0.95rem;
  color: var(--muted-light);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.extra-card {
  background: rgba(240,240,240,0.02);
  border: 1px solid rgba(240,240,240,0.06);
  padding: 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.extra-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
  transform: translateY(-3px);
}
.extra-card-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.extra-card-price {
  font-family: var(--font-luxury);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}
.extra-card-price .plus {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Comparison Table ─────────────────────────────────── */
.comparison-section {
  padding: 160px 0;
}
.comparison-header {
  text-align: center;
  margin-bottom: 80px;
}
.comparison-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
.table-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--bg2);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.comp-table thead th {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(240,240,240,0.08);
  font-weight: 600;
}
.comp-table thead th:first-child { text-align: left; }
.comp-table thead th .price-head {
  display: block;
  font-family: var(--font-luxury);
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.badge-popular {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 3px 10px;
  margin-bottom: 6px;
  font-weight: 600;
  border-radius: 50px;
}
.comp-table tbody td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(240,240,240,0.04);
  font-size: 0.88rem;
  color: var(--muted-light);
  font-weight: 300;
}
.comp-table tbody td:first-child { text-align: left; color: var(--white); font-weight: 400; }
.comp-table tbody tr:hover { background: rgba(201,168,76,0.02); }
.comp-table .check { color: var(--gold); font-size: 1.1rem; }
.comp-table .cross { color: #444; font-size: 1rem; }
.col-highlight { background: rgba(201,168,76,0.04); }
.comp-table tfoot td {
  padding: 20px 24px;
  border-top: 1px solid rgba(240,240,240,0.08);
}
.comp-table tfoot .btn-gold-outline { padding: 8px 18px; font-size: 0.65rem; }
.comp-table tfoot .btn-gold { padding: 8px 18px; font-size: 0.65rem; display: inline-block; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section {
  padding: 160px 0;
  background: var(--bg2);
}
.faq-header {
  text-align: center;
  margin-bottom: 80px;
}
.faq-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(240,240,240,0.06);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
  transition: color 0.3s;
  letter-spacing: -0.2px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out);
}
.faq-icon::before { width: 20px; height: 1px; top: 50%; left: 0; }
.faq-icon::after { width: 1px; height: 20px; left: 50%; top: 0; transform-origin: center; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-answer p {
  padding: 0 0 28px;
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.9;
  font-weight: 300;
}

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
  padding: 200px 0;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold-dim));
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(240,240,240,0.04);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { height: 24px; opacity: 0.5; }
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.footer-links { display: flex; align-items: center; gap: 32px; }
.footer-links a {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* ── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(240,240,240,0.04);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text {
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.5;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept, .cookie-reject {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  border-radius: 50px;
}
.cookie-accept {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.cookie-accept:hover { background: #d4b35a; }
.cookie-reject {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid rgba(240,240,240,0.1);
}
.cookie-reject:hover { border-color: rgba(240,240,240,0.3); color: var(--white); }

/* ── PILL-SHAPED BUTTONS ── */
.btn, .btn-gold, .btn-outline, .btn-gold-outline, .cookie-accept, .cookie-reject, button[class*="btn-"] { border-radius: 50px !important; }
/* ── ROUNDED INPUTS ── */
input, select, textarea { border-radius: 12px !important; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .btn-reservar { display: none; }
  .site-header { padding: 16px 24px; grid-template-columns: 1fr auto; }
  .site-header.scrolled { padding: 12px 24px; }
  .header-right { gap: 14px; }
  .container, .container-narrow { padding: 0 24px; }
  .services-section { padding: 80px 0 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; min-height: auto; text-align: center; }
  .service-card-number { text-align: center; }
  .service-card-meta { justify-content: center; flex-wrap: wrap; }
  .service-card-footer { justify-content: center; flex-wrap: wrap; }
  .service-card-bg { opacity: 0.08; }
  .service-card:hover .service-card-bg { opacity: 0.15; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .comparison-section { padding: 80px 0; }
  .faq-section { padding: 80px 0; }
  .extras-section { padding: 80px 0; }
  .cta-section { padding: 100px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-social { justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 24px; gap: 16px; }
  .section-label { text-align: center; display: block; }
  .gold-line { margin-left: auto; margin-right: auto; }
  .services-header { margin-bottom: 60px; }
}
@media (max-width: 768px) {
  .hero-sub { height: 45vh; min-height: 340px; }
  .hero-sub-content { padding: 0 24px; }
  .extras-grid { grid-template-columns: 1fr; }
  .comp-table { min-width: 560px; }
  .fm-link { padding: 14px 0; font-size: clamp(1.8rem, 6vw, 3rem); }
  .fm-bottom-cta { padding: 14px 32px; font-size: 0.85rem; min-height: 48px; display: inline-flex; align-items: center; }
  .fm-bottom-phone { font-size: 0.88rem; min-height: 44px; display: inline-flex; align-items: center; }
}
@media (max-width: 600px) {
  .header-logo img { height: 28px; }
  .site-header { padding: 12px 16px; }
  .fm-content { padding: 0 7vw; }
  .fm-bottom { padding: 20px 7vw; }
  .service-card { padding: 32px 20px; }
}
