/* ═══════════════════════════════════════════════════════════════
   CASONA DEL VALLE — Hotel Boutique Mendoza
   CSS Principal — Elegante Natural / Orgánico Lujoso
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:          #f7f3ee;
  --primary:     #2d5016;
  --primary-d:   #1e3610;
  --secondary:   #8b5e3c;
  --accent:      #c9a96e;
  --accent-d:    #b08a4a;
  --text:        #2a1f14;
  --text-mid:    #5a4a3a;
  --text-light:  #8a7060;
  --white:       #ffffff;
  --card-bg:     #ffffff;
  --border:      rgba(139,94,60,.15);
  --shadow-sm:   0 2px 12px rgba(45,80,22,.08);
  --shadow-md:   0 8px 32px rgba(45,80,22,.12);
  --shadow-lg:   0 20px 60px rgba(45,80,22,.16);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-serif:  'Gilda Display', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
textarea { resize: vertical; min-height: 90px; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section__header--light .section__title,
.section__header--light .section__desc { color: var(--bg); }

.section__subheader { text-align: center; margin: 56px 0 32px; }
.section__subheader h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.section__subheader h3::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 8px auto 0;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-d);
  border-color: var(--primary-d);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav--scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav--scrolled .nav__logo-main { color: var(--primary); }
.nav__logo-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.nav--scrolled .nav__logo-sub { color: var(--text-light); }

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__links a:hover::after { width: 100%; }
.nav--scrolled .nav__links a { color: var(--text); }
.nav__links a:hover { color: var(--accent); }
.nav--scrolled .nav__links a:hover { color: var(--primary); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
}
.nav--scrolled .nav__lang { color: var(--text-light); }
.nav__lang-btn {
  font-weight: 500;
  transition: color var(--transition);
}
.nav__lang-btn.active { color: var(--accent); font-weight: 600; }
.nav__lang-btn:hover { color: var(--accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav--scrolled .nav__hamburger span { background: var(--text); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(45,80,22,.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(30,50,10,.5) 0%, transparent 50%),
    linear-gradient(160deg, #0e1f08 0%, #1e3610 30%, #2d5016 60%, #1a2e0a 85%, #050d02 100%);
  z-index: 0;
}

/* SVG leaf texture overlay */
.hero__leaves {
  position: absolute;
  inset: 0;
  opacity: .06;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M60 10 Q80 40 60 70 Q40 40 60 10Z' fill='%23ffffff'/%3E%3Cpath d='M20 50 Q50 30 80 50 Q50 70 20 50Z' fill='%23ffffff'/%3E%3Cpath d='M30 90 Q45 65 60 80 Q45 100 30 90Z' fill='%23ffffff'/%3E%3Cpath d='M80 80 Q95 60 110 80 Q95 100 80 80Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 32px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: .8rem;
  font-weight: 500;
}
.hero__badge i { color: var(--accent); }

/* Booking widget */
.hero__booking {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  padding: 0 24px 0;
  margin-top: 32px;
  padding-bottom: 48px;
}

.booking-widget {
  background: rgba(247,243,238,.97);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
}

.booking-widget__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: .05em;
}

.booking-widget__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-field label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.booking-field label i { color: var(--accent); }
.booking-field input,
.booking-field select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.booking-field input:focus,
.booking-field select:focus { border-color: var(--primary); }

.booking-widget__submit { align-self: flex-end; }

.booking-widget__note {
  margin-top: 12px;
  text-align: center;
  font-size: .8rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ─── HABITACIONES ───────────────────────────────────────────── */
.habitaciones { background: var(--bg); }

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card--featured {
  border: 2px solid var(--accent);
}

.room-card__image {
  height: 260px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.room-card__image--vinedo {
  background: linear-gradient(135deg, #1e4a0a 0%, #3a7020 40%, #2d5016 70%, #8b5e3c 100%);
}
.room-card__image--premium {
  background: linear-gradient(135deg, #2d4a1e 0%, #4a6b2d 50%, #6b8b4a 100%);
}
.room-card__image--presidencial {
  background: linear-gradient(135deg, #0e1f08 0%, #1e3610 35%, #c9a96e 80%, #b08a4a 100%);
}
.room-card__image--cabana {
  background: linear-gradient(135deg, #3d2b1a 0%, #5e3c20 40%, #8b5e3c 70%, #4a3520 100%);
}

/* Simulated photo texture overlay */
.room-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3Cline x1='0' y1='40' x2='80' y2='40' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}

.room-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}
.room-card__badge--gold { background: var(--accent); color: var(--text); }

.room-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}
.room-card__header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1.2;
}

.room-card__price {
  text-align: right;
  flex-shrink: 0;
}
.price__from {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}
.price__amount {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 400;
}
.price__night {
  font-size: .75rem;
  color: var(--text-light);
}

.room-card__desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-mid);
}
.room-card__amenities li i { color: var(--accent); font-size: .75rem; }

.room-card__btn { margin-top: auto; width: 100%; justify-content: center; }

/* ─── EXPERIENCIAS ───────────────────────────────────────────── */
.experiencias {
  position: relative;
  background: transparent;
  overflow: hidden;
}
.experiencias__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--primary) 0%, #1e3610 60%, #0e1f08 100%);
  z-index: 0;
}
.experiencias .container { position: relative; z-index: 1; }

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

.exp-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.exp-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.exp-card__icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.exp-card__icon i { font-size: 1.3rem; color: var(--text); }

.exp-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.exp-card__tag--included { background: rgba(45,80,22,.7); color: #a8e084; }
.exp-card__tag--premium { background: rgba(201,169,110,.2); color: var(--accent); }

.exp-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.exp-card__body p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.exp-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-card__details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.exp-card__details li i { color: var(--accent); font-size: .75rem; width: 14px; }

/* ─── GASTRONOMÍA ────────────────────────────────────────────── */
.gastronomia { background: var(--bg); }

.gastro__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.gastro__image {
  position: relative;
}
.gastro__image-inner {
  height: 560px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg,
    #3a1a0a 0%,
    #5e3c20 25%,
    #2d5016 55%,
    #8b5e3c 80%,
    #c9a96e 100%
  );
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.gastro__image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,169,110,.2) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: auto, 200px 200px;
}

.gastro__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.gastro__image-badge i { font-size: 1.2rem; margin-bottom: 6px; }
.gastro__image-badge span { font-size: .65rem; font-weight: 600; line-height: 1.3; }

.gastro__lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.gastro__body {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.gastro__hours {
  background: var(--card-bg);
  border-left: 3px solid var(--accent);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.gastro__hours h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gastro__hours h4 i { color: var(--accent); }

.gastro__hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gastro__hour {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gastro__hour > i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}
.gastro__hour strong {
  display: block;
  font-size: .875rem;
  color: var(--text);
}
.gastro__hour span { font-size: .82rem; color: var(--text-light); }

.gastro__note {
  font-size: .82rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.gastro__note i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

/* ─── EL HOTEL ───────────────────────────────────────────────── */
.el-hotel { background: var(--white); }

.hotel__historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 16px;
}
.hotel__historia-text p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.hotel__historia-text strong { color: var(--primary); }

.hotel__historia-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hotel__stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .05em;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.amenity:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.amenity i {
  font-size: 1.4rem;
  color: var(--accent);
  transition: color var(--transition);
}
.amenity:hover i { color: var(--accent); }
.amenity span {
  font-size: .82rem;
  color: var(--text-mid);
  font-weight: 500;
  transition: color var(--transition);
}
.amenity:hover span { color: var(--white); }

/* ─── GALERÍA ────────────────────────────────────────────────── */
.galeria { background: var(--bg); }

.gallery__masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery__item--tall .gallery__img { height: 420px; }
.gallery__item--wide .gallery__img { height: 200px; }
.gallery__img {
  height: 260px;
  transition: transform .5s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.04); }

/* Gallery image gradients */
.gallery__img--1 { background: linear-gradient(145deg, #2d5016 0%, #4a7028 50%, #c9a96e 100%); }
.gallery__img--2 { background: linear-gradient(145deg, #1e3610 0%, #2d5016 40%, #8b5e3c 100%); }
.gallery__img--3 { background: linear-gradient(145deg, #4a3520 0%, #8b5e3c 50%, #c9a96e 100%); }
.gallery__img--4 { background: linear-gradient(145deg, #0e1f08 0%, #1e4a10 50%, #4a8a2a 100%); }
.gallery__img--5 { background: linear-gradient(145deg, #5e3c20 0%, #8b5e3c 45%, #d4956a 100%); }
.gallery__img--6 { background: linear-gradient(145deg, #0a0a0a 0%, #2d5016 40%, #c9a96e 100%); }
.gallery__img--7 { background: linear-gradient(145deg, #1a2e0a 0%, #3a6020 50%, #6b9a3a 100%); }
.gallery__img--8 { background: linear-gradient(145deg, #2a1f14 0%, #5e3c20 45%, #c9a96e 90%); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery__item-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__item-overlay { background: rgba(0,0,0,.35); }
.gallery__item:hover .gallery__item-overlay i { opacity: 1; }

/* ─── ACTIVIDADES ────────────────────────────────────────────── */
.actividades { background: var(--white); }

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

.act-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.act-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.act-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.act-card__icon i { font-size: 1.1rem; color: var(--accent); }

.act-card__content h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.act-card__content p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}

.act-card__dist {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  background: var(--secondary);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews { background: var(--bg); }

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.rating__score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rating__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
}
.rating__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.rating__platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating__platforms span {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating__platforms i { color: var(--accent); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}
.review-card--featured::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent);
}

blockquote.review-card__text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__author > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__author strong {
  font-size: .9rem;
  color: var(--text);
}
.review-card__author span {
  font-size: .78rem;
  color: var(--text-light);
  display: block;
}
.review-card__platform { color: var(--primary) !important; }
.review-card__platform i { margin-right: 3px; }

/* ─── RESERVA CTA ────────────────────────────────────────────── */
.reserva-cta {
  position: relative;
  overflow: hidden;
}
.reserva-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e3610 0%, #2d5016 50%, #0e1f08 100%);
  z-index: 0;
}
.reserva-cta .container { position: relative; z-index: 1; }

.reserva-cta__header { text-align: center; margin-bottom: 48px; }
.reserva-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.reserva-cta__subtitle {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.75;
}

.reserva-cta__perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.reserva-cta__perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.15);
}
.reserva-cta__perks i { color: var(--accent); }

.reserva-form__container {
  max-width: 800px;
  margin: 0 auto;
}
.reserva-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.reserva-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.reserva-form__grid .form-group:last-child { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-group label i { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,80,22,.08);
}

/* Price summary */
.reserva-form__summary {
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.summary__row:last-of-type { border-bottom: none; }
.summary__row--total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: 12px;
}
.summary__discount { color: #2d8016; font-weight: 600; }
.summary__note {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

.reserva-form__actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.reserva-form__actions .btn { flex: 1; justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--primary-d); }

.footer__top { padding: 72px 0 48px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer__logo-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: 4px;
}
.footer__logo-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: .88rem;
  color: rgba(247,243,238,.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247,243,238,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,243,238,.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul a {
  font-size: .875rem;
  color: rgba(247,243,238,.65);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--bg); }

.footer__col address p {
  font-size: .875rem;
  color: rgba(247,243,238,.65);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}
.footer__col address p i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__col address a {
  color: rgba(247,243,238,.65);
  transition: color var(--transition);
}
.footer__col address a:hover { color: var(--bg); }

.footer__bottom {
  border-top: 1px solid rgba(247,243,238,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: .78rem;
  color: rgba(247,243,238,.4);
}
.footer__bottom a {
  color: rgba(247,243,238,.5);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--bg); }

/* ─── MODAL ───────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(14,31,8,.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal__container {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.4);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal__close:hover { background: rgba(0,0,0,.6); }

.modal__image {
  height: 280px;
}

.modal__body { padding: 32px; }

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.modal__header h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
}
.modal__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--secondary);
  text-align: right;
}

.modal__body > p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.modal__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.modal__features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-mid);
}
.modal__features i { color: var(--accent); width: 16px; text-align: center; }

.modal__actions {
  display: flex;
  gap: 12px;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition);
}
.lightbox__close:hover { color: var(--accent); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); border-color: var(--accent); color: var(--text); }

.lightbox__content { text-align: center; max-width: 700px; width: 100%; padding: 0 88px; }

.lightbox__img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.lightbox__caption {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.lightbox__counter {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  margin-top: 8px;
}

/* ─── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  z-index: 4000;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: #7adb5a; }

/* ─── SCROLL TO TOP ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-d); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { gap: 20px; }
  .rooms__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .exp__grid { grid-template-columns: 1fr; }
  .gastro__split { grid-template-columns: 1fr; gap: 40px; }
  .gastro__image-inner { height: 380px; }
  .hotel__historia { grid-template-columns: 1fr; gap: 32px; }
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .act__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
  .nav__links.open { display: flex; }
  .nav__links.open a { font-size: 1.2rem; color: var(--text); }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }

  .hero__title { font-size: 2.2rem; }
  .booking-widget__form { grid-template-columns: 1fr 1fr; }
  .booking-widget__form > *:last-child { grid-column: 1 / -1; }

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

  .gallery__masonry { columns: 2; }

  .reviews__grid { grid-template-columns: 1fr; }
  .act__grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }

  .reserva-form__grid { grid-template-columns: 1fr; }
  .reserva-form__grid .form-group:last-child { grid-column: auto; }
  .reserva-form__actions { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .modal__actions { flex-direction: column; }
  .lightbox__content { padding: 0 56px; }
}

@media (max-width: 480px) {
  .booking-widget__form { grid-template-columns: 1fr; }
  .gallery__masonry { columns: 1; }
  .lightbox__content { padding: 0 24px; }
  .hero__badges { flex-direction: column; align-items: center; }
}
