/* =========================
   RESET + BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-main: #f6f2eb;
  --bg-soft: #fbf8f4;
  --bg-card: rgba(255, 255, 255, 0.78);
  --bg-card-strong: rgba(255, 252, 247, 0.9);
  --text-main: #2f241b;
  --text-soft: #6d5a4b;
  --text-muted: #8f7b6c;
  --line-soft: rgba(82, 57, 36, 0.12);
  --line-strong: rgba(82, 57, 36, 0.2);
  --accent: #6c7a4d;
  --accent-dark: #4f5d35;
  --gold-soft: #caa86a;
  --shadow-sm: 0 10px 30px rgba(58, 40, 26, 0.06);
  --shadow-md: 0 18px 50px rgba(58, 40, 26, 0.1);
  --shadow-lg: 0 28px 80px rgba(58, 40, 26, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --transition: 0.35s ease;
  --container: 1220px;
  --header-height: 92px;
  --whatsapp: #25d366;
  --footer-bg: #34271f;
  --footer-text: #f5ede2;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 18%, rgba(248, 243, 236, 0.78) 36%, rgba(243, 238, 231, 0.62) 52%, rgba(240, 235, 227, 0.38) 66%, rgba(246, 242, 235, 1) 100%);
  background-color: #f8f5ef;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 16%, rgba(255, 255, 255, 0.18) 30%, transparent 44%),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.42) 0%, transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.34) 0%, transparent 24%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.22) 20%, transparent 38%);
  filter: blur(10px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

section {
  position: relative;
  isolation: isolate;
}

.hero-section,
.site-footer {
  isolation: isolate;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

::selection {
  background: rgba(108, 122, 77, 0.18);
  color: var(--text-main);
}

/* =========================
   TYPOGRAPHY
========================= */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(108, 122, 77, 0.1);
  border: 1px solid rgba(108, 122, 77, 0.14);
}

.section-title,
.hero-title,
.footer-title,
.section-subtitle {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: var(--text-main);
}

.section-subtitle {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--text-main);
}

.section-description {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3.4rem;
}

.section-heading .section-title {
  margin-top: 1rem;
}

.secondary-heading {
  margin-top: 4.5rem;
  margin-bottom: 2.4rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  font-weight: 700;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  padding: 1rem 1.6rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  width: 100%;
  padding: 0.95rem 1.2rem;
  color: var(--text-main);
  background: transparent;
  border: 1px solid rgba(47, 36, 27, 0.14);
  box-shadow: none;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(108, 122, 77, 0.08);
  border-color: rgba(108, 122, 77, 0.2);
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(252, 248, 242, 0.72);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    height var(--transition);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(47, 36, 27, 0.08),
    transparent
  );
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  position: relative;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-list a:hover {
  color: var(--accent-dark);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-background,
.hero-background img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(25, 18, 13, 0.22), rgba(25, 18, 13, 0.44)),
    linear-gradient(180deg, rgba(25, 18, 13, 0.08), rgba(25, 18, 13, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(900px, 100%);
}

.hero-stars {
  display: inline-flex;
  gap: 0.45rem;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0.7rem;
  opacity: 0.95;
}

.hero-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 0.9rem;
}

.hero-location {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
}

.hero-title {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 0.88;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}

.hero-cta {
  font-size: 1rem;
  min-width: 250px;
}

/* =========================
   SECTION ATMOSPHERE
========================= */
.about-section,
.reviews-section,
.location-section,
.cabanas-section,
.services-section,
.predio-section {
  background: transparent;
}



/* =========================
   ABOUT
========================= */
.about-section {
  padding: 6.5rem 0 2rem;
}

.about-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 250, 243, 0.82)
  );
  border: 1px solid rgba(82, 57, 36, 0.08);
  box-shadow: var(--shadow-md);
}

.about-card .section-title {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.about-text {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* =========================
   CABAÑAS
========================= */
.cabanas-section {
  padding: 5rem 0 2.5rem;
}

.cabins-grid,
.rooms-grid,
.features-grid {
  display: grid;
  gap: 1.6rem;
}

.cabins-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rooms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cabin-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 251, 245, 0.82)
  );
  border: 1px solid rgba(82, 57, 36, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.cabin-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 122, 77, 0.18);
}

.cabin-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
}

.cabin-image-wrapper::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
  pointer-events: none;
}

.cabin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cabin-card:hover .cabin-image {
  transform: scale(1.05);
}

.cabin-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.4rem 1.35rem;
}

.cabin-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.cabin-capacity {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.cabin-text {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

/* =========================
   PREDIO
========================= */
.predio-section {
  padding: 5rem 0;
}

.predio-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 70%;
  background: radial-gradient(
    circle at center,
    rgba(108, 122, 77, 0.07),
    transparent 62%
  );
  pointer-events: none;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.45rem;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 250, 244, 0.78)
  );
  border: 1px solid rgba(82, 57, 36, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 122, 77, 0.18);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(108, 122, 77, 0.1);
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 0.96;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.feature-text {
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* =========================
   LOCATION / CONTACT
========================= */
.location-section {
  padding: 5rem 0 6rem;
}

.location-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.7rem;
  align-items: stretch;
}

.map-wrapper {
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(82, 57, 36, 0.08);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 250, 244, 0.82)
  );
  border: 1px solid rgba(82, 57, 36, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0.2rem;
  border-bottom: 1px solid rgba(82, 57, 36, 0.08);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(108, 122, 77, 0.1);
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info p,
.contact-info a {
  font-size: 1rem;
  color: var(--text-main);
}

.contact-info a {
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info a:hover {
  color: var(--accent-dark);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 5rem 0 2rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(202, 168, 106, 0.08),
    transparent 62%
  );
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.footer-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #e8dac6;
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-title {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.92;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 2.4rem;
}

.footer-block {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #fff8ef;
}

.footer-block p,
.footer-block a,
.footer-socials a {
  color: rgba(245, 237, 226, 0.86);
  transition: color var(--transition), opacity var(--transition);
}

.footer-block a:hover,
.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(245, 237, 226, 0.7);
  font-size: 0.94rem;
}

/* =========================
   FLOATING WHATSAPP
========================= */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
  z-index: 1200;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.36);
}

/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 1;
  transform: none;
}

/* =========================
   DECORATIVE GLOWS
========================= */
.about-section::before,
.cabanas-section::before,
.location-section::before,
.services-section::before,
.predio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.38), transparent 26%),
    radial-gradient(circle at 0% 80%, rgba(255, 255, 255, 0.18), transparent 22%);
}

.hero-section::before,
.reviews-section::after,
.predio-section::after,
.services-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  width: 820px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.28) 28%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 64%
  );
  filter: blur(18px);
}

.about-section .container,
.cabanas-section .container,
.location-section .container,
.predio-section .container,
.services-section .container,
.reviews-section .container {
  position: relative;
  z-index: 2;
}

/* =========================
   RESEÑAS
========================= */
.reviews-section {
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(202, 168, 106, 0.08), transparent 26%),
    linear-gradient(
      180deg,
      rgba(255, 251, 245, 0.35),
      rgba(255, 248, 241, 0.12)
    );
  pointer-events: none;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1.4rem;
  width: max-content;
  animation: reviewsScroll 42s linear infinite;
}

.review-card {
  width: 360px;
  min-height: 240px;
  flex: 0 0 auto;
  padding: 1.6rem 1.4rem;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 252, 247, 0.84)
  );
  border: 1px solid rgba(82, 57, 36, 0.08);
  box-shadow: 0 14px 40px rgba(58, 40, 26, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(58, 40, 26, 0.12);
  border-color: rgba(108, 122, 77, 0.16);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-soft);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.review-author strong {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 700;
}

.review-author span {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.7rem));
  }
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* =========================
   TODO EN UN SOLO LUGAR
========================= */
.services-section {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 251, 245, 0.82)
  );
  border: 1px solid rgba(82, 57, 36, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 122, 77, 0.18);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-image-wrapper::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.12),
    transparent
  );
  pointer-events: none;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 0.95;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.service-text {
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* =========================
   GALERÍA RESTAURANTE
========================= */
.service-card-clickable {
  cursor: pointer;
}

.service-link-hint {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-content {
  position: relative;
  width: min(92vw, 1080px);
  max-height: 90vh;
  margin: 4vh auto;
  background: #fffaf3;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  padding: 1.2rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: min(66vh, 680px);
  border-radius: 22px;
  overflow: hidden;
  background: #efe6d8;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}

.gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.95);
  color: var(--text-main);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-close:hover {
  transform: scale(1.06);
  background: #ffffff;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.94);
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: #ffffff;
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(82, 57, 36, 0.18);
  border-radius: 999px;
}

.gallery-thumb {
  width: 110px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  flex: 0 0 auto;
  border: 2px solid transparent;
  opacity: 0.78;
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.gallery-thumb.active-thumb {
  border-color: var(--accent-dark);
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .cabins-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid,
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.3rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 84px;
  }

  .site-logo {
    height: 62px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-section {
    min-height: 86vh;
    padding: 4rem 0;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .about-section {
    padding-top: 5.5rem;
  }

  .cabins-grid,
  .rooms-grid,
  .features-grid,
  .footer-content,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 380px;
  }

  .footer-block {
    padding: 1.3rem;
  }

  .reviews-section {
    padding: 4.5rem 0;
  }

  .review-card {
    width: 320px;
    min-height: 225px;
    padding: 1.4rem 1.2rem;
    border-radius: 24px;
  }

  .reviews-track {
    gap: 1rem;
    animation-duration: 36s;
  }

  .services-section {
    padding: 4.5rem 0;
  }

  .service-card {
    border-radius: 24px;
  }

  .service-content {
    padding: 1.2rem 1rem 1.3rem;
  }

  .service-title {
    font-size: 1.7rem;
  }

  .gallery-content {
    width: min(95vw, 1080px);
    margin: 3vh auto;
    padding: 0.9rem;
    border-radius: 22px;
  }

  .gallery-image-wrapper {
    height: 52vh;
    border-radius: 18px;
  }

  .gallery-nav {
    width: 46px;
    height: 46px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-thumb {
    width: 92px;
    height: 68px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    background: rgba(252, 248, 242, 0.92);
  }

  .site-logo {
    height: 56px;
  }

  .hero-section {
    min-height: 82vh;
  }

  .hero-stars {
    font-size: 0.86rem;
    gap: 0.35rem;
  }

  .hero-kicker {
    font-size: 0.82rem;
  }

  .hero-location {
    font-size: 1.15rem;
  }

  .hero-title {
    margin-bottom: 1.4rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-card {
    padding: 2.2rem 1.2rem;
    border-radius: 24px;
  }

  .about-text {
    font-size: 1rem;
  }

  .section-heading {
    margin-bottom: 2.2rem;
  }

  .cabin-content,
  .feature-card,
  .contact-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cabin-title {
    font-size: 1.8rem;
  }

  .feature-title {
    font-size: 1.7rem;
  }

  .contact-item {
    gap: 0.8rem;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
    font-size: 1.65rem;
  }

  .footer-title {
    font-size: 2.6rem;
  }

  .reviews-marquee {
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );
  }

  .review-card {
    width: 280px;
    min-height: 215px;
    padding: 1.25rem 1rem;
  }

  .review-text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .reviews-track {
    animation-duration: 30s;
  }

  .service-image-wrapper {
    aspect-ratio: 16 / 11;
  }

  .service-text {
    font-size: 0.94rem;
  }

  .gallery-image-wrapper {
    height: 42vh;
  }

  .gallery-close {
    width: 42px;
    height: 42px;
    top: 10px;
    right: 10px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .gallery-thumb {
    width: 84px;
    height: 62px;
  }
}

@media (max-width: 420px) {
  .hero-section {
    min-height: 78vh;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cabin-title,
  .feature-title,
  .footer-heading {
    font-size: 1.6rem;
  }

  .btn-whatsapp,
  .btn-outline {
    font-size: 0.95rem;
  }
}