/* HOSTAL LA CIGÜEÑA — styles.css v2 (luxury redesign) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:        #B8924A;
  --gold-light:  #D4B483;
  --gold-dark:   #8C6D35;
  --dark:        #0A0A0A;
  --dark-alt:    #141414;
  --dark-mid:    #1E1E1E;
  --cream:       #FAF8F5;
  --cream-alt:   #F3EFE8;
  --cream-deep:  #EAE5DC;
  --text:        #1A1A1A;
  --text-muted:  #6B6460;
  --text-faint:  #A09890;
  --border:      #E0D9CF;
  --border-dark: rgba(255,255,255,.09);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow:    0 6px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 60px rgba(0,0,0,.15);
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);

  --header-h:     88px;
  --container:    1160px;
  --gap:          clamp(1.5rem, 4vw, 2.5rem);
  --section-pad:  clamp(4rem, 8vw, 7rem);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: .9rem; font-family: var(--font-sans); letter-spacing: .1em; text-transform: uppercase; }
p { color: var(--text-muted); font-weight: 300; }

/* ── Gold line decoration ───────────────────────────────── */
.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.gold-line--center { margin-inline: auto; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Section headings ───────────────────────────────────── */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--center { text-align: center; }
.section-header--center .gold-line { margin-inline: auto; }
.section-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.section-title { color: var(--text); margin-bottom: .85rem; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.75;
}
.section-header--center .section-subtitle { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .2s;
  white-space: nowrap;
  border-radius: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--dark); border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

.btn-lg { padding: 1rem 2.5rem; font-size: .88rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .75rem; }

/* ── Scroll Progress ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 400;
  transition: width .1s linear;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; }
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: background .35s, box-shadow .35s, border-color .35s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-brand { flex-shrink: 0; }
.brand-link { display: flex; align-items: center; }
.brand-logo { height: 62px; width: auto; }
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: .15rem; justify-content: center; }
.nav-list a {
  display: block;
  padding: .4rem .8rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: .8rem; right: .8rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.nav-list a.is-active { color: var(--text); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.header-phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger-line {
  display: block; width: 100%; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── PAGE HERO (interior pages) ─────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(280px, 40vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.page-hero-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* ── HERO (homepage) ────────────────────────────────────── */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
}
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('fotos/VISTAS A LA MONTAÑA.webp');
  background-size: cover;
  background-position: center 55%;
  opacity: .55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
  max-width: 820px;
}
.hero-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: heroFadeIn .9s var(--ease-out) both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  margin-bottom: 1.5rem;
  animation: heroFadeIn .9s .12s var(--ease-out) both;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: heroFadeIn .9s .22s var(--ease-out) both;
}
.hero-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  animation: heroFadeIn .9s .18s var(--ease-out) both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  animation: heroFadeIn .9s .3s var(--ease-out) both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  animation: heroFadeIn 1s .5s var(--ease-out) both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(.7); }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.trust-bar {
  background: var(--dark-alt);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-wrapper { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.trust-list { display: flex; align-items: center; flex-shrink: 0; }
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .4rem 2rem;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-icon { font-size: .9rem; }
.trust-text {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ── INTRO / ABOUT STRIP (homepage) ─────────────────────── */
.intro-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro-media {
  position: relative;
}
.intro-media-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.intro-media-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.intro-stats {
  display: flex; gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ── ROOMS PREVIEW (homepage) ───────────────────────────── */
.rooms-section {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.room-card {
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s, transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-card-media {
  width: 100%; aspect-ratio: 3/2; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.room-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.room-card:hover .room-card-media img { transform: scale(1.06); }
.room-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: #fff;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .75rem;
}
.room-card-body {
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.room-card-body h3 { font-size: 1.15rem; color: var(--text); }
.room-card-body > p { font-size: .88rem; line-height: 1.6; }
.room-features { display: flex; flex-direction: column; gap: .3rem; margin: .25rem 0; }
.room-features li {
  font-size: .8rem; color: var(--text-muted);
  padding-left: 1rem; position: relative;
}
.room-features li::before {
  content: '';
  position: absolute; left: 0; top: .6em;
  width: 5px; height: 1px; background: var(--gold);
}
.room-variants {
  font-size: .78rem !important;
  color: var(--text-faint) !important;
  font-style: italic;
  padding-top: .75rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.room-card-body .btn { margin-top: .75rem; align-self: flex-start; }

/* ── SERVICES STRIP ─────────────────────────────────────── */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.services-section .section-label { color: var(--gold-light); }
.services-section .section-title { color: #fff; }
.services-section .section-subtitle { color: rgba(255,255,255,.5); }
.services-section .gold-line { background: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--border-dark);
}
.service-item {
  display: flex; flex-direction: column;
  gap: .75rem;
  padding: 2rem 1.75rem;
  background: var(--dark-alt);
  border: 1px solid var(--border-dark);
  transition: background .25s;
  cursor: default;
}
.service-item:hover { background: var(--dark-mid); }
.service-icon { font-size: 1.5rem; }
.service-name {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

/* ── LOCATION TEASER ────────────────────────────────────── */
.location-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.location-map iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}
.location-info { padding-top: .5rem; }
.hostal-address {
  font-size: 1rem; line-height: 1.9;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.location-highlights { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.5rem; }
.location-highlights li {
  font-size: .9rem; color: var(--text-muted);
  display: flex; gap: .75rem; align-items: flex-start; line-height: 1.5;
}
.distances-title {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.location-distances ul {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .5rem 2rem; margin-bottom: 2.5rem;
}
.location-distances li { font-size: .88rem; color: var(--text-muted); }
.location-distances strong { color: var(--text); font-weight: 500; }

/* ── ACTIVITIES SECTION ─────────────────────────────────── */
.activities-section {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.activity-card {
  background: var(--cream);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s var(--ease);
  border-bottom: 2px solid transparent;
}
.activity-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.activity-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.activity-card:hover::after { transform: scaleX(1); }
.activity-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.activity-card h3 { margin-bottom: .6rem; font-size: 1.15rem; color: var(--text); }
.activity-card p { font-size: .88rem; line-height: 1.7; }

/* ── INFO / ACCORDION ───────────────────────────────────── */
.info-section {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
}
.accordion {
  max-width: 820px;
  border-top: 1px solid var(--border);
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  text-align: left; transition: color .18s;
  gap: 1rem;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-trigger[aria-expanded="true"] { color: var(--gold); }
.accordion-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform .3s;
}
.accordion-icon::before,
.accordion-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 2px;
  transition: opacity .25s, transform .3s;
}
.accordion-icon::before { width: 12px; height: 1.5px; }
.accordion-icon::after { width: 1.5px; height: 12px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { color: var(--gold); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { opacity: 0; transform: rotate(90deg); }
.accordion-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.accordion-panel.is-open { grid-template-rows: 1fr; }
.accordion-body { overflow: hidden; }
.accordion-body-inner {
  padding-bottom: 1.75rem;
}
.accordion-body ul { display: flex; flex-direction: column; gap: .6rem; }
.accordion-body li {
  font-size: .9rem; color: var(--text-muted);
  padding-left: 1.25rem; position: relative; line-height: 1.6;
}
.accordion-body li::before {
  content: ''; position: absolute; left: 0; top: .75em;
  width: 6px; height: 1px; background: var(--gold);
}
.accordion-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.accordion-body a { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.accordion-body strong { color: var(--text); font-weight: 600; }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('fotos/VISTAS A LA MONTAÑA.webp');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin-inline: auto; text-align: center;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff; margin-bottom: 1rem; font-weight: 700;
}
.cta-subtitle { color: rgba(255,255,255,.55); font-size: 1rem; margin-bottom: 2rem; font-weight: 300; }
.cta-benefits {
  display: flex; flex-direction: column;
  gap: .5rem; margin-bottom: 3rem;
}
.cta-benefits li {
  font-size: .85rem; color: rgba(255,255,255,.5);
  padding-left: 1.5rem; position: relative; text-align: left;
}
.cta-benefits li::before {
  content: '';
  position: absolute; left: 0; top: .7em;
  width: 8px; height: 1px; background: var(--gold);
}
.cta-contacts {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 3rem; margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.cta-contact-item { display: flex; align-items: center; gap: 1rem; }
.cta-contact-icon { font-size: 1.25rem; opacity: .5; }
.cta-contact-label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .15rem; font-weight: 600;
}
.cta-contact-value { display: block; font-size: 1.05rem; font-weight: 600; color: #fff; }
.cta-email-protected {
  font-size: .85rem !important; font-weight: 300 !important;
  color: rgba(255,255,255,.3) !important; font-style: italic;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,.5);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand-col { }
.footer-logo { height: 38px; width: auto; opacity: .6; margin-bottom: 1.5rem; filter: invert(1); }
.footer-col h4 {
  color: rgba(255,255,255,.25);
  font-family: var(--font-sans);
  font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col address { font-size: .85rem; line-height: 1.9; color: rgba(255,255,255,.4); }
.footer-col address a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col address a:hover { color: var(--gold); }
.footer-slogan { margin-top: 1rem; font-size: .78rem; color: rgba(255,255,255,.2); font-style: italic; }
.footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.18); }

/* ── FLOATING CTA ───────────────────────────────────────── */
.floating-cta {
  display: none;
  position: fixed; bottom: 1.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background: var(--gold); color: #fff;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .85rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  white-space: nowrap;
  transition: opacity .3s, transform .3s var(--ease), background .2s;
}
.floating-cta:hover { background: var(--gold-dark); }
.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

/* ── RESERVAS PAGE CONTACT CARDS ────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.contact-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.contact-card-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; opacity: .6; }
.contact-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.contact-card p { font-size: .85rem; margin-bottom: 1.25rem; }
.contact-card-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-serif);
}
.contact-card-value:hover { color: var(--gold); }

/* ── SERVICIOS PAGE ─────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--border);
  border: 1px solid var(--border);
}
.service-full-item {
  background: var(--cream);
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.75rem 1.5rem;
  transition: background .2s;
}
.service-full-item:hover { background: var(--cream-alt); }
.service-full-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.service-full-text h3 { font-size: .95rem; margin-bottom: .3rem; font-family: var(--font-sans); font-weight: 600; }
.service-full-text p { font-size: .82rem; line-height: 1.55; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media-accent { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 320px; }
  .location-distances ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s;
    overflow-y: auto; z-index: 99;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block; padding: 1rem 0;
    font-size: .9rem; border-bottom: 1px solid var(--border); border-radius: 0;
  }
  .nav-list a::after { left: 0; right: 0; bottom: 0; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
}

@media (max-width: 580px) {
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .rooms-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-cta { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .intro-stats { gap: 1.5rem; }
}

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

/* ── Two-column layout helper ───────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col--start { align-items: start; }
.two-col--wide-left { grid-template-columns: 1.15fr 1fr; }
.two-col--wide-right { grid-template-columns: 1fr 1.15fr; }

@media (max-width: 720px) {
  .two-col,
  .two-col--wide-left,
  .two-col--wide-right { grid-template-columns: 1fr; }
  /* On mobile, reverse order so text comes before image when image is second */
  .two-col--text-first > *:last-child { order: -1; }
}
