:root {
  --sand-50: #fbf5eb;
  --sand-100: #f4ebda;
  --sand-200: #e8dac2;
  --clay-300: #cf9b78;
  --clay-500: #ac6a45;
  --clay-700: #7f472d;
  --pool-200: #c9f0ef;
  --pool-300: #9be4e2;
  --pool-500: #67ccd0;
  --pool-700: #2f8f98;
  --bougainvillea-200: #f6d0e2;
  --bougainvillea-300: #ea9fc2;
  --bougainvillea-500: #cc5f97;
  --bougainvillea-700: #8c345f;
  --olive-200: #cfd6c5;
  --olive-500: #667058;
  --olive-700: #3e4937;
  --sea-300: #a4c3bf;
  --sea-500: #729692;
  --ink-700: #2f2a23;
  --ink-900: #17140f;
  --white: #ffffff;
  --line: rgba(47, 42, 35, 0.12);
  --paper: rgba(255, 250, 242, 0.84);
  --paper-strong: rgba(255, 248, 238, 0.96);
  --shadow-soft: 0 30px 70px rgba(23, 20, 15, 0.08);
  --shadow-card: 0 24px 48px rgba(23, 20, 15, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 20px;
  --container: min(1160px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-700);
  background:
    radial-gradient(circle at top left, rgba(103, 204, 208, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(204, 95, 151, 0.12), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(172, 106, 69, 0.1), transparent 22%),
    linear-gradient(180deg, #f9f3e8 0%, #fffdfa 24%, #f4ecdf 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 16px),
    linear-gradient(rgba(0, 0, 0, 0.02) 0, rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 18px);
  mix-blend-mode: multiply;
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
dl {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

body.is-scrolled .site-header {
  background: rgba(248, 244, 236, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(24, 33, 30, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 18px;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.brand-logo {
  display: block;
  width: clamp(220px, 24vw, 290px);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(23, 20, 15, 0.08));
}

.brand-mark,
.section-title,
.hero h1,
.hero-panel h2,
.stay-copy h3,
.destination-card h3,
.info-card h3,
.story-card h2,
.contact-copy h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.brand-mark {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.96rem;
}

.site-nav a {
  color: rgba(47, 42, 35, 0.72);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--bougainvillea-700);
}

body.is-scrolled .site-nav a {
  color: rgba(24, 33, 30, 0.78);
}

body.is-scrolled .site-nav a:hover,
body.is-scrolled .site-nav a:focus-visible {
  color: var(--bougainvillea-700);
}

.header-social,
.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(47, 42, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: rgba(47, 42, 35, 0.72);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-social:hover,
.header-social:focus-visible {
  color: var(--bougainvillea-700);
  border-color: rgba(204, 95, 151, 0.18);
  background: rgba(255, 250, 242, 0.9);
  transform: translateY(-1px);
}

.header-social svg {
  width: 18px;
  height: 18px;
}

.language-switcher {
  gap: 4px;
  padding: 4px;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(47, 42, 35, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--bougainvillea-700);
}

.language-switcher a.is-active,
.language-switcher a[aria-current="page"] {
  background: linear-gradient(180deg, rgba(103, 204, 208, 0.28), rgba(103, 204, 208, 0.18));
  color: var(--ink-700);
  box-shadow: inset 0 0 0 1px rgba(47, 143, 152, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  background:
    linear-gradient(180deg, rgba(16, 15, 12, 0.02) 0%, rgba(16, 15, 12, 0.14) 42%, rgba(16, 15, 12, 0.34) 100%),
    linear-gradient(90deg, rgba(23, 20, 15, 0.34) 0%, rgba(23, 20, 15, 0.16) 42%, rgba(23, 20, 15, 0.02) 100%),
    radial-gradient(circle at 82% 20%, rgba(155, 228, 226, 0.24), transparent 20%),
    radial-gradient(circle at 14% 16%, rgba(234, 159, 194, 0.16), transparent 16%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: 32px;
  padding-top: 150px;
  padding-bottom: 72px;
}

.hero-copy,
.hero-panel {
  color: var(--white);
}

.hero-copy {
  max-width: 700px;
  align-self: end;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--pool-300);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--bougainvillea-700);
}

.hero h1 {
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin-top: 24px;
  max-width: 56ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-text {
  margin-top: 16px;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--pool-700), var(--pool-500));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(47, 143, 152, 0.24);
}

.button-secondary {
  background: rgba(244, 235, 218, 0.08);
  border-color: rgba(244, 235, 218, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-secondary-light {
  background: rgba(47, 42, 35, 0.05);
  border-color: rgba(47, 42, 35, 0.12);
  color: var(--ink-700);
  backdrop-filter: none;
}

.button-social {
  gap: 10px;
  background: rgba(204, 95, 151, 0.12);
  border-color: rgba(246, 208, 226, 0.34);
}

.button-social:hover,
.button-social:focus-visible {
  background: rgba(204, 95, 151, 0.2);
  border-color: rgba(246, 208, 226, 0.44);
}

.button-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: none;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.button-block {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 2px;
  min-height: 90px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 235, 218, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.13), rgba(255, 248, 238, 0.04));
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-facts strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.72);
}

.hero-facts span {
  font-size: 1rem;
  line-height: 1.35;
}

.hero-panel {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(244, 235, 218, 0.14);
  border-radius: 34px 34px 20px 34px;
  background:
    linear-gradient(180deg, rgba(33, 28, 22, 0.78), rgba(33, 28, 22, 0.58)),
    linear-gradient(135deg, rgba(103, 204, 208, 0.12), rgba(204, 95, 151, 0.08));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.panel-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 10px;
  font-size: 1.72rem;
}

.hero-panel p {
  margin-top: 14px;
  color: rgba(255, 248, 238, 0.82);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.panel-metrics div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 248, 238, 0.08);
}

.panel-metrics dt {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-metrics dd {
  margin: 6px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.registry {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
}

.registry span {
  display: block;
  margin-top: 6px;
  word-break: break-word;
}

.section-shell {
  position: relative;
  padding: 96px 0;
}

.section-shell-soft {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.74), rgba(255, 252, 247, 0.74)),
    linear-gradient(135deg, rgba(103, 204, 208, 0.08), rgba(204, 95, 151, 0.06));
}

.section-shell-dark {
  background:
    linear-gradient(180deg, rgba(250, 245, 236, 0.88), rgba(247, 239, 227, 0.92)),
    url("./assets/exteriores/exterior-atardecer.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--ink-700);
}

.section-shell-dark .button-secondary {
  background: rgba(47, 42, 35, 0.05);
  border-color: rgba(47, 42, 35, 0.12);
  color: var(--ink-700);
  backdrop-filter: none;
}

.section-shell-legal {
  background:
    radial-gradient(circle at top left, rgba(103, 204, 208, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(204, 95, 151, 0.07), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f5eddf 100%);
}

.section-heading,
.intro-band,
.story-card,
.location-card,
.info-grid,
.destinations-grid,
.stays-grid,
.outdoor-layout,
.notice-card {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-title-light {
  color: var(--ink-700);
}

.section-intro {
  max-width: 62ch;
  color: rgba(35, 49, 44, 0.8);
  font-size: 1.05rem;
}

.section-intro-light {
  color: rgba(47, 42, 35, 0.82);
}

.intro-band,
.story-card,
.location-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 32px 32px 18px 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(255, 247, 237, 0.94));
  box-shadow: var(--shadow-soft);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.mood-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(47, 42, 35, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.88), rgba(248, 240, 228, 0.94));
  box-shadow: var(--shadow-soft);
}

.mood-card h3 {
  margin-top: 8px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.mood-card p:last-child {
  margin-top: 10px;
}

.stays-grid {
  display: grid;
  gap: 28px;
}

.stay-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 32px 32px 18px 32px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 247, 237, 0.96));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(35, 49, 44, 0.08);
}

.stay-card-reverse {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.stay-card-reverse .stay-gallery {
  order: 2;
}

.stay-card-reverse .gallery-slider {
  order: 2;
}

.stay-card-reverse .stay-copy {
  order: 1;
}

.stay-gallery {
  display: grid;
  gap: 12px;
}

.stay-gallery img {
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-slider {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.stay-slider .slider-slide {
  aspect-ratio: 5 / 4;
}

.outdoor-slider .slider-slide {
  aspect-ratio: 16 / 10;
}

.slider-viewport {
  overflow: hidden;
  border-radius: 26px;
}

.slider-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(244, 235, 218, 0.78), rgba(255, 249, 241, 0.96));
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.slider-slide-portrait img {
  object-fit: contain;
  padding: 14px;
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(47, 42, 35, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  color: var(--ink-700);
  box-shadow: 0 12px 24px rgba(23, 20, 15, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 250, 242, 1);
  border-color: rgba(103, 204, 208, 0.4);
  color: var(--pool-700);
}

.slider-dots {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 42, 35, 0.18);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.slider-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--pool-500), var(--bougainvillea-500));
}

.stay-copy {
  display: grid;
  gap: 18px;
}

.card-kicker {
  color: var(--bougainvillea-700);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.02;
}

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

.feature-list li::marker {
  color: var(--bougainvillea-500);
}

.feature-list-spacious {
  gap: 14px;
  font-size: 1.02rem;
}

.notice-card {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(103, 204, 208, 0.14), rgba(204, 95, 151, 0.12));
  border: 1px solid rgba(35, 49, 44, 0.08);
  box-shadow: var(--shadow-soft);
}

.outdoor-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.outdoor-copy {
  padding: 28px;
  border-radius: 30px 30px 18px 30px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(255, 247, 237, 0.94));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(35, 49, 44, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--pool-700);
  font-weight: 700;
}

.overview-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(47, 42, 35, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 247, 237, 0.98));
  box-shadow: var(--shadow-soft);
}

.overview-card-expanded {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 24px;
}

.overview-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 10;
  background: rgba(47, 42, 35, 0.05);
}

.overview-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-copy {
  display: grid;
  gap: 10px;
}

.overview-card-expanded .overview-figure {
  aspect-ratio: 16 / 8.5;
}

.overview-card-expanded .overview-copy {
  max-width: 34ch;
}

.overview-copy span {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.04;
  color: var(--ink-700);
}

.overview-copy p {
  color: rgba(47, 42, 35, 0.76);
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.placeholder-card,
.reviews-placeholder,
.reviews-intro {
  padding: 24px;
  border-radius: 26px;
  border: 1px dashed rgba(47, 42, 35, 0.14);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 247, 237, 0.96));
  box-shadow: var(--shadow-soft);
}

.placeholder-visual {
  display: grid;
  gap: 12px;
  min-height: 220px;
  place-items: center;
  text-align: center;
  color: rgba(47, 42, 35, 0.76);
}

.placeholder-visual span {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.04;
  color: var(--ink-700);
}

.placeholder-visual p,
.reviews-placeholder p {
  max-width: 46ch;
}

.reviews-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  border-style: solid;
}

.reviews-intro p {
  max-width: 62ch;
}

.reviews-intro small {
  color: rgba(47, 42, 35, 0.62);
  font-size: 0.92rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(47, 42, 35, 0.08);
  background:
    radial-gradient(circle at top right, rgba(103, 204, 208, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 247, 237, 0.98));
  box-shadow: var(--shadow-soft);
}

.review-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
}

.review-stars {
  color: var(--bougainvillea-500);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.review-date {
  color: rgba(47, 42, 35, 0.62);
  font-size: 0.95rem;
}

.review-quote {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--ink-700);
}

.review-signoff {
  color: rgba(47, 42, 35, 0.56);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card {
  margin-bottom: 28px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.destination-card,
.info-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(255, 247, 237, 0.94));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(35, 49, 44, 0.08);
}

.destination-card {
  display: grid;
  gap: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.destination-card:hover,
.destination-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(23, 20, 15, 0.14);
  border-color: rgba(103, 204, 208, 0.26);
}

.destination-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(103, 204, 208, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(244, 235, 218, 0.8), rgba(255, 247, 237, 0.94));
}

.destination-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-media-map img {
  object-fit: contain;
  padding: 16px;
}

.destination-body {
  display: grid;
  gap: 14px;
  padding: 22px 24px 24px;
}

.destination-card h3 {
  font-size: 1.34rem;
}

.destination-card a {
  align-self: end;
  color: var(--pool-700);
  font-weight: 700;
  word-break: break-word;
}

.location-card .button-secondary {
  background: rgba(35, 49, 44, 0.06);
  border-color: rgba(35, 49, 44, 0.12);
  color: var(--ink-700);
  backdrop-filter: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  display: grid;
  gap: 22px;
}

.info-card h3 {
  font-size: 1.68rem;
}

.info-block {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.info-block h4 {
  font-size: 1rem;
}

.tariff-subtitle {
  color: rgba(35, 49, 44, 0.76);
}

.tariff-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(243, 236, 223, 0.82), rgba(255, 252, 247, 0.98));
  border: 1px solid rgba(143, 83, 56, 0.08);
}

.tariff-card-accent {
  background: linear-gradient(180deg, rgba(103, 204, 208, 0.2), rgba(255, 252, 247, 0.98));
}

.tariff-season {
  color: var(--bougainvillea-700);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariff-months {
  margin-top: 8px;
  color: rgba(35, 49, 44, 0.72);
  font-size: 0.95rem;
}

.tariff-price {
  margin-top: 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1;
}

.tariff-note,
.tariff-extra {
  margin-top: 8px;
}

.story-content {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 58ch;
}

.story-content p {
  display: block;
  color: rgba(35, 49, 44, 0.84);
}

.story-card-immersive {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: clamp(460px, 58vw, 640px);
  overflow: hidden;
  background:
    linear-gradient(98deg, rgba(24, 21, 17, 0.78) 0%, rgba(24, 21, 17, 0.64) 36%, rgba(24, 21, 17, 0.28) 64%, rgba(24, 21, 17, 0.16) 100%),
    linear-gradient(180deg, rgba(24, 21, 17, 0.06), rgba(24, 21, 17, 0.24)),
    url("./assets/puerta-casa-2.jpg");
  background-size: cover;
  background-position: center;
  border-color: rgba(47, 42, 35, 0.06);
}

.story-content-overlay {
  position: relative;
  z-index: 1;
  max-width: min(58ch, 100%);
  gap: 20px;
}

.story-card-immersive .eyebrow {
  color: rgba(201, 240, 239, 0.92);
}

.story-card-immersive .section-title {
  color: var(--white);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.story-card-immersive .story-content p {
  max-width: 42ch;
  color: rgba(255, 248, 238, 0.92);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 28px;
  align-items: center;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 247, 237, 0.98));
  border-color: rgba(47, 42, 35, 0.08);
  box-shadow: 0 24px 60px rgba(23, 20, 15, 0.12);
  backdrop-filter: blur(6px);
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(47, 42, 35, 0.12);
}

.contact-line:last-of-type {
  border-bottom: 0;
}

.contact-label {
  color: rgba(47, 42, 35, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-line strong {
  color: var(--ink-700);
  font-size: 1.1rem;
}

.contact-actions {
  margin-top: 22px;
}

.contact-privacy-note {
  margin-top: 18px;
  max-width: 54ch;
  color: rgba(47, 42, 35, 0.74);
}

.contact-privacy-note a {
  color: var(--pool-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 24px;
  border: 1px solid rgba(47, 42, 35, 0.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 247, 237, 0.96));
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--bougainvillea-500);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 20px;
  color: rgba(47, 42, 35, 0.8);
}

.legal-warning {
  margin-bottom: 20px;
  padding: 18px 22px;
  border-left: 4px solid var(--bougainvillea-500);
  border-radius: 0 18px 18px 0;
  background: rgba(204, 95, 151, 0.1);
}

.legal-summary-card {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(47, 42, 35, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 247, 237, 0.98));
  box-shadow: var(--shadow-soft);
}

.legal-summary-list {
  display: grid;
  gap: 8px;
}

.legal-accordion {
  display: grid;
  gap: 14px;
}

.legal-panel {
  border: 1px solid rgba(47, 42, 35, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 247, 237, 0.98));
  box-shadow: var(--shadow-soft);
  overflow: clip;
}

.legal-panel summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.legal-panel summary::-webkit-details-marker {
  display: none;
}

.legal-panel-head {
  max-width: 62ch;
}

.legal-panel summary span {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.04;
}

.legal-panel summary small {
  display: block;
  margin-top: 6px;
  color: rgba(47, 42, 35, 0.66);
  font-size: 0.95rem;
}

.legal-panel summary::after {
  content: "+";
  flex: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--bougainvillea-500);
}

.legal-panel[open] summary::after {
  content: "−";
}

.legal-panel-body {
  padding: 0 24px 24px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(47, 42, 35, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 247, 237, 0.98));
  box-shadow: var(--shadow-soft);
}

.legal-card h3 {
  margin-bottom: 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.08;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 10px;
}

.site-footer {
  padding: 26px 0 34px;
  background:
    linear-gradient(180deg, #1d1812 0%, #13100c 100%);
  color: rgba(255, 247, 237, 0.74);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 18px;
  font-size: 0.92rem;
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a,
.footer-signature a {
  color: rgba(255, 247, 237, 0.92);
}

.footer-signature {
  text-align: right;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .slider-track,
  .button,
  .site-header,
  .site-nav a {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .stay-card,
  .stay-card-reverse,
  .outdoor-layout,
  .contact-layout,
  .intro-band,
  .story-card,
  .location-card,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .stay-card-reverse .stay-gallery,
  .stay-card-reverse .stay-copy {
    order: initial;
  }

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

  .mood-grid,
  .reviews-grid,
  .legal-grid,
  .legal-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .overview-card-expanded {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header-tools {
    margin-left: auto;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.9rem;
  }

  .hero-layout {
    padding-top: 128px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .section-shell {
    padding: 72px 0;
  }

  .intro-band,
  .story-card,
  .location-card,
  .stay-card,
  .mood-card,
  .review-card,
  .outdoor-copy,
  .info-card,
  .contact-card,
  .legal-card,
  .faq-item,
  .legal-summary-card,
  .reviews-intro {
    padding: 22px;
  }

  .destination-card {
    padding: 0;
  }

  .destination-body {
    padding: 20px;
  }

  .panel-metrics,
  .destinations-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slider-viewport {
    grid-column: 1 / -1;
  }

  .slider-button-prev {
    justify-self: start;
  }

  .slider-button-next {
    justify-self: end;
  }

  .outdoor-slider .slider-slide {
    aspect-ratio: 4 / 3;
  }

  .notice-card {
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(103, 204, 208, 0.18), transparent 28%),
      radial-gradient(circle at top right, rgba(204, 95, 151, 0.1), transparent 24%),
      linear-gradient(180deg, #faf7f1 0%, #fffdf9 22%, #f7f2ea 100%);
  }

  .container {
    width: min(100vw - 24px, 1160px);
  }

  .brand-logo {
    width: min(100%, 240px);
  }

  .header-actions {
    align-items: flex-start;
  }

  .header-tools {
    margin-left: 0;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .hero-facts {
    gap: 10px;
  }

  .hero-facts li {
    width: 100%;
  }

  .button,
  .button-block {
    width: 100%;
  }

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

  .footer-signature {
    text-align: left;
  }
}
