/* ============================================
   Hotel Rural Grado Del Pico
   Vibrant Modern · Burgundy + Blush
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2C;
  --burgundy-light: #9B3D4F;
  --blush: #F4C2C2;
  --blush-light: #FDE8E8;
  --blush-lighter: #FFF5F5;
  --cream: #FDF8F4;
  --cream-dark: #F5EDE6;
  --charcoal: #1A1A1A;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
  --shadow-md: 0 8px 32px rgba(123, 45, 59, 0.1);
  --shadow-lg: 0 16px 64px rgba(123, 45, 59, 0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

/* --- Curtain / Preloader --- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  background: var(--burgundy-dark);
  transition: opacity 0.6s ease;
}

.curtain.hide {
  opacity: 0;
  pointer-events: none;
}

.curtain-blocks {
  display: flex;
  width: 100%;
  height: 100%;
}

.curtain-block {
  flex: 1;
  background: var(--burgundy);
  transform: scaleY(1);
  animation: curtainOpen 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: var(--delay);
}

@keyframes curtainOpen {
  to { transform: scaleY(0); }
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: var(--transition-fast);
}

.header.scrolled .logo {
  color: var(--burgundy);
}

.logo--light { color: var(--white) !important; }

.logo-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  font-weight: 500;
}

.nav ul {
  display: flex;
  gap: 8px;
}

.nav a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav a {
  color: var(--text);
}

.header.scrolled .nav a:hover {
  color: var(--burgundy);
  background: var(--blush-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--burgundy);
}

.btn--header {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

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

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}

/* --- Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.header.scrolled .menu-toggle span {
  background: var(--burgundy);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--blush);
  transform: translateY(-50%);
}

.section-label--light {
  color: var(--blush);
}

.section-label--light::before {
  background: var(--blush-light);
}

/* --- Section Titles --- */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--burgundy);
  font-style: italic;
}

.text-accent-light {
  color: var(--blush);
  font-style: italic;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--burgundy-dark);
  overflow: hidden;
  position: relative;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  opacity: 0.08;
}

.geo--triangle {
  top: -5%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: var(--blush);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.geo--circle {
  bottom: -10%;
  right: 25%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--blush-light);
}

.geo--diamond {
  top: 30%;
  left: 40%;
  width: 200px;
  height: 200px;
  background: var(--white);
  transform: rotate(45deg);
  opacity: 0.05;
}

.geo--arc {
  bottom: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: var(--blush);
  border-radius: 100% 0 0 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  color: var(--blush);
}

.tag-line {
  width: 40px;
  height: 2px;
  background: var(--blush);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  font-weight: 400;
}

.hero-title-accent {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--blush);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  position: relative;
}

.hero-img {
  position: relative;
  overflow: hidden;
}

.hero-img--1 {
  grid-row: 1 / 3;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover img {
  transform: scale(1.05);
}

.hero-img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(123, 45, 59, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-img--2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 48%;
  border: 4px solid var(--burgundy-dark);
  border-radius: var(--radius-lg) 0 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.about-shape {
  position: absolute;
  pointer-events: none;
}

.about-shape--left {
  top: 10%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: var(--blush-light);
  border-radius: 50%;
  opacity: 0.5;
}

.about-shape--right {
  bottom: 5%;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.3;
}

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

.about-image-col {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7.5;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-img-float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.badge-year {
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text-col {
  position: relative;
  z-index: 2;
}

.about-lead {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 400;
}

.about-text-col > p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: var(--transition);
}

.about-feature:hover .feature-icon {
  background: var(--burgundy);
  color: var(--white);
}

.about-feature strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================
   HABITACIONES
   ============================================ */
.rooms {
  padding: 120px 0;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.rooms-bg-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--blush-lighter);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.rooms-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}

.rooms-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card--featured {
  border: 2px solid var(--burgundy);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6/4;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-img img {
  transform: scale(1.08);
}

.room-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.room-card-tag--featured {
  background: var(--blush);
  color: var(--burgundy-dark);
}

.room-card-body {
  padding: 28px;
}

.room-card-title {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.room-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 20px;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.room-card-amenities li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text);
  font-weight: 500;
}

.room-card-amenities svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

.btn--room {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.875rem;
}

/* ============================================
   ENTORNO
   ============================================ */
.environment {
  padding: 120px 0 80px;
  background: var(--burgundy-dark);
  position: relative;
  overflow: hidden;
}

.environment::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.3;
}

.environment .container {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 56px;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.env-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.env-item-img {
  position: absolute;
  inset: 0;
}

.env-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.env-item:hover .env-item-img img {
  transform: scale(1.1);
}

.env-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.env-item:hover .env-item-overlay {
  background: linear-gradient(to top, rgba(123, 45, 59, 0.9) 0%, rgba(123, 45, 59, 0.3) 60%, transparent 100%);
}

.env-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blush);
  margin-bottom: 8px;
  width: fit-content;
}

.env-item-overlay h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.env-item-overlay p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   EXPERIENCIA
   ============================================ */
.experience {
  padding: 120px 0;
  background: var(--blush-lighter);
  position: relative;
  overflow: hidden;
}

.experience-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.exp-shape {
  position: absolute;
}

.exp-shape--circle {
  top: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.3;
}

.exp-shape--triangle {
  bottom: 10%;
  left: 5%;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--burgundy);
  opacity: 0.06;
  transform: rotate(-15deg);
}

.exp-shape--rect {
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  opacity: 0.04;
  transform: translate(-50%, -50%) rotate(30deg);
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 16px;
}

.experience-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.exp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.exp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1;
}

.exp-stat-unit {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy-light);
  line-height: 1;
}

.exp-stat-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.exp-stat-divider {
  width: 1px;
  height: 80px;
  background: var(--blush);
  align-self: center;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 31, 44, 0.92) 0%, rgba(123, 45, 59, 0.85) 100%);
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
}

.cta-shape--1 {
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.15;
}

.cta-shape--2 {
  bottom: -40px;
  right: 10%;
  width: 180px;
  height: 180px;
  background: var(--white);
  opacity: 0.06;
  border-radius: 50%;
}

.cta-shape--3 {
  top: 20%;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--blush);
  transform: rotate(45deg);
  opacity: 0.12;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-title {
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-shape {
  position: absolute;
  pointer-events: none;
}

.contact-shape--1 {
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--blush-light);
  border-radius: 50%;
  opacity: 0.4;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.contact-shape--2 {
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info {
  position: relative;
}

.contact-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: var(--transition);
}

.contact-detail:hover .contact-icon {
  background: var(--burgundy);
  color: var(--white);
}

.contact-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--burgundy);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-col {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.contact-form-col::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
  border-radius: 0 0 4px 4px;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--charcoal);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--blush-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--burgundy);
}

.form-success p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav strong,
.footer-contact strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blush);
  margin-bottom: 4px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 500px;
  }

  .hero-content {
    padding: 120px 40px 60px;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    margin: 0 40px 40px;
  }

  .hero-img--1 {
    grid-row: auto;
  }

  .hero-img--2 {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
  }

  .hero-scroll {
    left: 40px;
  }

  .about-grid {
    gap: 48px;
  }

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

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

  .experience-content {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--burgundy-dark);
    padding: 100px 40px 40px;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .menu-toggle {
    display: flex;
  }

  .btn--header {
    display: none;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-divider {
    width: 40px;
    height: 1px;
  }

  .hero-gallery {
    margin: 0 24px 24px;
    grid-template-columns: 1fr;
    grid-template-rows: 250px 200px;
  }

  .hero-scroll {
    left: 24px;
    bottom: 16px;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-img-float {
    right: -16px;
    bottom: -24px;
  }

  .rooms {
    padding: 80px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .environment {
    padding: 80px 0 60px;
  }

  .environment-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .env-item {
    aspect-ratio: 16/9;
  }

  .experience {
    padding: 80px 0;
  }

  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-stats {
    padding: 32px 24px;
  }

  .exp-stat-num {
    font-size: 2.25rem;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-col {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 96px 16px 48px;
  }

  .hero-gallery {
    margin: 0 16px 16px;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .about-img-float {
    display: none;
  }

  .form-title {
    font-size: 1.25rem;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
