:root {
  --bg: #fafaf8;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: #ffffff;
  --surface-warm: #f5f8f6;
  --line: rgba(107, 142, 127, 0.12);
  --line-strong: rgba(107, 142, 127, 0.18);
  --text: #1f1f1f;
  --muted: #777777;
  --accent: #6b8e7f;
  --accent-dark: #5a7a6f;
  --accent-soft: #e8f0ed;
  --shadow: 0 24px 60px rgba(45, 65, 55, 0.08);
  --shadow-soft: 0 18px 40px rgba(45, 65, 55, 0.05);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #fafaf8 0%, #f5f8f6 50%, #ffffff 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: rgba(107, 142, 127, 0.18);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(235, 243, 239, 0.4), transparent 28%),
    radial-gradient(circle at right 15%, rgba(230, 240, 235, 0.35), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  transition: backdrop-filter var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(107, 142, 127, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(45, 65, 55, 0.04);
  transition: all var(--transition-smooth);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  transition: all var(--transition-smooth);
}

.header-brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  animation: logoMorph 2s ease-in-out infinite;
  transition: all var(--transition-smooth);
}

.header-brand:hover .brand-logo {
  animation: rotate360 0.8s var(--transition-smooth);
  filter: drop-shadow(0 0 8px rgba(107, 142, 127, 0.4));
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition-smooth);
}

.header-brand strong {
  font-size: 1rem;
  font-weight: 700;
  transition: color var(--transition-smooth);
}

.main-nav,
.header-actions,
.hero-pills,
.hero-actions-row,
.hero-highlights,
.field-grid,
.summary-box,
.contact-cards,
.footer-inner,
.footer-links,
.calendar-legend,
.weekend-chips {
  display: flex;
  flex-wrap: wrap;
}

.main-nav {
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a,
.footer-links a,
.header-link {
  transition: color var(--transition-smooth), transform var(--transition-smooth);
  position: relative;
}

.main-nav a:hover,
.footer-links a:hover,
.header-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

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

.header-link {
  font-weight: 700;
  position: relative;
  padding-bottom: 2px;
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
}

.header-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #6b8e7f 0%, #5a7a6f 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(107, 142, 127, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.8s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(107, 142, 127, 0.28);
  background: linear-gradient(135deg, #5a7a6f 0%, #4d6558 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: rgba(107, 142, 127, 0.18);
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(107, 142, 127, 0.35);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.12);
}

.btn-dark {
  background: #1f1f1f;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(31, 31, 31, 0.16);
}

.btn-dark:hover {
  background: #0a0a0a;
  box-shadow: 0 20px 40px rgba(31, 31, 31, 0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(107, 142, 127, 0.85);
  transition: background var(--transition-smooth);
}

.eyebrow-solid {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero-section {
  padding: 48px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-grid,
.intro-grid,
.location-grid,
.calendar-grid-layout,
.contact-grid,
.hero-media-grid,
.feature-grid {
  display: grid;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
  gap: 34px;
  align-items: start;
}

.hero-copy {
  padding-top: 34px;
}

.hero-copy h1,
.section-heading h2,
.intro-card h2,
.location-copy h2,
.contact-copy h2,
.booking-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
}

.hero-lead,
.intro-card p,
.feature-list p,
.section-heading p,
.location-copy p,
.contact-copy p,
.booking-panel p,
.stat-card p,
.soft-tone p,
.contact-card small,
.microcopy,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 61ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.hero-pills {
  gap: 10px;
  margin: 28px 0 24px;
}

.hero-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(107, 142, 127, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 12px rgba(107, 142, 127, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.hero-pills span:hover {
  border-color: rgba(107, 142, 127, 0.32);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(107, 142, 127, 0.12);
}

.hero-actions-row {
  gap: 12px;
}

.hero-highlights {
  gap: 16px;
  margin-top: 28px;
}

.hero-highlights article {
  flex: 1 1 230px;
  padding: 20px 22px;
  border: 1px solid rgba(107, 142, 127, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(107, 142, 127, 0.06);
  transition: all var(--transition-smooth);
}

.hero-highlights article:hover {
  border-color: rgba(107, 142, 127, 0.24);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(107, 142, 127, 0.12);
  transform: translateY(-2px);
}

.hero-highlights strong,
.feature-list strong,
.stat-card strong,
.contact-card a,
.contact-card span,
.location-cards strong,
.summary-box strong {
  display: block;
  font-size: 1.05rem;
}

.hero-highlights p,
.location-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.card {
  border: 1px solid rgba(107, 142, 127, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(107, 142, 127, 0.08);
  transition: all var(--transition-smooth);
}

.card:hover {
  border-color: rgba(107, 142, 127, 0.18);
  box-shadow: 0 16px 40px rgba(107, 142, 127, 0.12);
}

.card-soft {
  background: rgba(255, 255, 255, 0.86);
}

.large-card {
  padding: 34px;
}

.booking-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.booking-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 240, 237, 0.5) 0%, rgba(232, 240, 237, 0) 72%);
  pointer-events: none;
}

.panel-heading {
  position: relative;
  z-index: 1;
}

.panel-heading h2,
.section-heading h2,
.intro-card h2,
.location-copy h2,
.contact-copy h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.panel-heading p,
.section-heading p,
.intro-card p,
.location-copy p,
.contact-copy p {
  margin: 14px 0 0;
}

.field-grid {
  gap: 14px;
}

.field-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.single-gap {
  flex-direction: column;
}

.booking-form,
.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(107, 142, 127, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: all var(--transition-smooth);
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(107, 142, 127, 0.15), inset 0 0 0 1px rgba(107, 142, 127, 0.05);
  background: rgba(255, 255, 255, 1);
  animation: scalePulse 0.4s var(--transition-smooth);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.summary-box {
  gap: 12px;
}

.summary-box > div {
  flex: 1 1 100px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 240, 237, 0.6) 0%, rgba(245, 248, 246, 0.8) 100%);
  border: 1px solid rgba(107, 142, 127, 0.12);
  transition: all var(--transition-smooth);
}

.summary-box > div:hover {
  background: linear-gradient(135deg, rgba(232, 240, 237, 0.85) 0%, rgba(245, 248, 246, 0.95) 100%);
  border-color: rgba(107, 142, 127, 0.22);
}

.summary-box small,
.location-cards small,
.contact-card small,
.calendar-header small,
.weekend-chip small {
  display: block;
  color: var(--muted);
}

.status-available {
  color: #6b8e7f;
}

.hero-media-wrap {
  margin-top: 42px;
}

.hero-media-grid {
  grid-template-columns: 1.1fr 0.82fr;
  gap: 22px;
  align-items: end;
}

.hero-image,
.feature-photo,
.mosaic-item {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-image img,
.feature-photo img,
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image:hover img,
.feature-photo:hover img,
.mosaic-item:hover img {
  transform: scale(1.04);
}

.hero-image-main {
  aspect-ratio: 1.56;
}

.hero-image-side {
  aspect-ratio: 0.92;
  transform: translateY(38px);
}

.intro-section,
.gallery-section,
.calendar-section,
.contact-section {
  padding: 34px 0 0;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.stats-stack {
  display: grid;
  gap: 18px;
}

.stat-card {
  padding: 26px;
}

.highlight-card {
  background: linear-gradient(135deg, #6b8e7f 0%, #5a7a6f 100%);
  color: #ffffff;
  border-color: rgba(107, 142, 127, 0.3);
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-section,
.location-section {
  padding-top: 72px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.feature-grid {
  grid-template-columns: 1.05fr 0.9fr 0.78fr;
  gap: 22px;
  align-items: stretch;
}

.feature-copy {
  padding: 28px;
  display: flex;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-photo {
  min-height: 420px;
}

.tall-photo {
  grid-row: span 2;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  grid-auto-rows: 230px;
}

.mosaic-wide {
  grid-column: span 2;
}

.mosaic-tall {
  grid-row: span 2;
}

.location-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.78fr);
  gap: 22px;
  align-items: start;
}

.location-points {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 22px 0 0;
}

.location-points li {
  color: var(--muted);
  line-height: 1.65;
}

.location-cards {
  display: grid;
  gap: 18px;
}

.soft-tone {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 251, 250, 0.82) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 142, 127, 0.08);
}

.calendar-grid-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.calendar-card,
.weekends-card {
  padding: 28px;
}

.calendar-shell {
  padding: 20px;
  border-radius: 24px;
  background: rgba(250, 253, 251, 0.95);
  border: 1px solid rgba(107, 142, 127, 0.08);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 18px;
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  aspect-ratio: 0.95;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(107, 142, 127, 0.12);
  display: grid;
  align-content: space-between;
  transition: all var(--transition-smooth);
}

.calendar-day:hover {
  border-color: rgba(107, 142, 127, 0.24);
  box-shadow: 0 4px 12px rgba(107, 142, 127, 0.08);
}

.calendar-day strong {
  font-size: 1rem;
}

.calendar-day small {
  color: var(--muted);
}

.calendar-day.is-featured {
  background: rgba(232, 240, 237, 0.92);
}

.calendar-day.is-booked {
  background: #e5eee9;
  opacity: 0.62;
}

.calendar-legend {
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legend {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  background: #fff;
  border: 1px solid rgba(107, 142, 127, 0.14);
}

.legend-featured {
  background: rgba(232, 240, 237, 1);
}

.legend-booked {
  background: #d9e4df;
}

.weekend-chips {
  gap: 14px;
}

.weekend-chip {
  flex: 1 1 190px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(107, 142, 127, 0.12);
  transition: all var(--transition-smooth);
}

.weekend-chip:hover {
  border-color: rgba(107, 142, 127, 0.24);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.1);
  transform: translateY(-2px);
}

.weekend-chip strong,
.contact-card a,
.contact-card span {
  margin-top: 6px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-copy {
  padding-top: 12px;
}

.contact-cards {
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  flex: 1 1 180px;
  padding: 24px;
  border: 1px solid rgba(107, 142, 127, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  transition: all var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(107, 142, 127, 0.24);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.1);
  transform: translateY(-2px);
}

.contact-card a,
.contact-card span {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-form {
  padding: 28px;
  overflow: hidden;
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(107, 142, 127, 0.12);
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-links {
  gap: 18px;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: min(420px, calc(100% - 32px));
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(31, 31, 31, 0.92);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(31, 31, 31, 0.28);
  border: 1px solid rgba(107, 142, 127, 0.08);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animaciones scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animaciones dinámicas */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 142, 127, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(107, 142, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(107, 142, 127, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(107, 142, 127, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(107, 142, 127, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.animate-in {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.animate-in.delay-1 {
  animation-delay: 0.1s;
}

.animate-in.delay-2 {
  animation-delay: 0.2s;
}

.animate-in.delay-3 {
  animation-delay: 0.3s;
}

/* Animaciones específicas para elementos */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
}

.btn-primary:hover::after {
  animation: pulse 1.5s ease-out;
}

.hero-pills span {
}

/* Animación float en hero highlights */
.hero-highlights article {
}

/* Cards con stagger */
.stat-card {
}

/* Logo rotation animation */
@keyframes logoMorph {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(1deg) scale(1.02);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

.header-brand:hover strong {
  animation: logoMorph 0.6s var(--transition-smooth);
}

/* Contacto cards - manejadas por JavaScript */
.contact-card {
}

/* Elementos con animación al scroll */
.section-heading,
.intro-grid,
.feature-grid,
.gallery-mosaic,
.location-grid,
.calendar-grid-layout,
.contact-grid {
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .location-grid,
  .calendar-grid-layout,
  .contact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero-image-side {
    transform: none;
  }

  .hero-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-photo,
  .tall-photo {
    min-height: 320px;
    grid-row: auto;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-wide,
  .mosaic-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    padding: 18px 0 0;
  }

  .header-inner {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-actions-row {
    flex-direction: column;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-main,
  .hero-image-side {
    aspect-ratio: 1.12;
  }

  .field-grid,
  .field-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .hero-section,
  .feature-section,
  .location-section {
    padding-top: 38px;
  }

  .large-card,
  .booking-panel,
  .calendar-card,
  .weekends-card,
  .contact-form {
    padding: 22px;
  }

  .hero-pills,
  .hero-highlights,
  .contact-cards,
  .weekend-chips,
  .footer-inner,
  .footer-links {
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-pills {
    width: 100%;
    gap: 10px;
  }

  .hero-pills span,
  .hero-highlights article,
  .hero-actions-row a {
    width: 100%;
  }

  .hero-actions-row {
    gap: 10px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
  }

  .mosaic-item,
  .mosaic-wide,
  .mosaic-tall {
    min-height: 260px;
  }

  .calendar-day {
    aspect-ratio: auto;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 14px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
