@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --background: #f8f2e9;
  --foreground: #352b25;
  --primary: #b2623f;
  --primary-foreground: #ffffff;
  --secondary: #7e8f64;
  --secondary-foreground: #ffffff;
  --muted: #f2e9dd;
  --muted-foreground: #685850;
  --accent: #efe3d2;
  --accent-foreground: #47362b;
  --border: #e4d6c7;
  --ceramic: #4f6f7d;
  --ceramic-soft: #dce7eb;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted-foreground);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--foreground);
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 7.8vw, 4.6rem);
}

h2 {
  font-size: clamp(1.8rem, 5.1vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3.8vw, 1.85rem);
}

h4 {
  font-size: 1.15rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container-custom {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-padding {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

body[data-page='home'] main > section.section-padding + section.section-padding {
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, #fff 18%);
}

body[data-page='sobre'] main > section.section-padding + section.section-padding {
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, #fff 18%);
}

body[data-page='home'] .site-footer {
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, #fff 18%);
}

.section-muted {
  background: var(--muted);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-head p {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 180;
  width: 100%;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 90%, #fff 10%);
  background: rgb(249 243 234 / 94%);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgb(54 38 25 / 8%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body[data-page='home'] .site-header {
  position: fixed;
  background: linear-gradient(
    to bottom,
    rgb(18 13 9 / 66%) 0%,
    rgb(18 13 9 / 48%) 58%,
    rgb(18 13 9 / 0%) 100%
  );
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(2px);
}

body[data-page='home'] .site-header.scrolled {
  background: rgb(249 243 234 / 94%);
  border-bottom-color: color-mix(in srgb, var(--border) 88%, #fff 12%);
  box-shadow: 0 12px 30px rgb(54 38 25 / 10%);
  backdrop-filter: blur(14px);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
}

.brand-title {
  color: var(--primary);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-sub {
  margin-top: 2px;
  color: color-mix(in srgb, var(--muted-foreground) 88%, var(--primary) 12%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgb(53 43 37 / 80%);
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover {
  color: var(--foreground);
  background: rgb(255 255 255 / 48%);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 10px;
  background: var(--primary);
}

.nav-cta {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgb(255 255 255 / 84%);
  padding: 0.38rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.lang-switch:hover {
  color: var(--foreground);
  border-color: color-mix(in srgb, var(--primary) 26%, var(--border));
  background: #fff;
}

body[data-page='home'] .site-header:not(.scrolled) .brand-title,
body[data-page='home'] .site-header:not(.scrolled) .brand-sub,
body[data-page='home'] .site-header:not(.scrolled) .nav-link {
  color: #fff;
  text-shadow:
    0 2px 10px rgb(0 0 0 / 46%),
    0 1px 2px rgb(0 0 0 / 44%);
}

body[data-page='home'] .site-header:not(.scrolled) .nav-link:hover {
  background: rgb(255 255 255 / 18%);
}

body[data-page='home'] .site-header:not(.scrolled) .nav-link.active {
  color: #fff;
}

body[data-page='home'] .site-header:not(.scrolled) .nav-link.active::after {
  background: #fff;
}

body[data-page='home'] .site-header:not(.scrolled) .lang-switch {
  color: #fff;
  border-color: rgb(255 255 255 / 52%);
  background: rgb(255 255 255 / 12%);
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgb(255 255 255 / 88%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--foreground);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

body[data-page='home'] .site-header:not(.scrolled) .menu-btn {
  border-color: rgb(255 255 255 / 74%);
  background: rgb(23 16 12 / 42%);
  box-shadow: 0 10px 22px rgb(0 0 0 / 24%);
  backdrop-filter: blur(4px);
}

body[data-page='home'] .site-header:not(.scrolled) .menu-btn span {
  background: #fff;
}

.menu-btn.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(102%);
  width: min(90vw, 360px);
  height: 100dvh;
  background: #fbf6ef;
  border-left: 1px solid var(--border);
  z-index: 230;
  padding: max(1.1rem, env(safe-area-inset-top)) 1.25rem max(1.1rem, env(safe-area-inset-bottom));
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -20px 0 44px rgb(24 16 11 / 20%);
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.mobile-panel-head .brand {
  min-width: 0;
}

.mobile-close {
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  background: #fffdf9;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.mobile-link {
  border: 1px solid color-mix(in srgb, var(--border) 86%, #fff 14%);
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem 0.95rem;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.25;
}

.mobile-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 220;
}

.mobile-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 44px;
  padding: 0.84rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: #9b5032;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: #6d7f57;
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--foreground);
}

.btn-outline:hover {
  background: #fff;
}

.btn-ghost-light {
  border-color: rgb(255 255 255 / 55%);
  color: #fff;
  background: rgb(255 255 255 / 7%);
}

.btn-ghost-light:hover {
  background: rgb(255 255 255 / 18%);
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.action-icon {
  width: 1.08em;
  height: 1.08em;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mono-icon {
  width: 1.08rem;
  height: 1.08rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.mono-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mono-icon--lg {
  width: 1.32rem;
  height: 1.32rem;
}

.amenity-compact .mono-icon {
  color: var(--ceramic);
}

.btn-whatsapp {
  background: #1fa75b;
  border-color: #1fa75b;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1a924f;
  border-color: #1a924f;
}

.btn-whatsapp:active {
  background: #157f44;
  border-color: #157f44;
}

.btn-maps {
  border-color: #1a73e8;
  background: #1a73e8;
  color: #fff;
}

.btn-maps:hover {
  border-color: #1765cc;
  background: #1765cc;
}

.btn-maps:active {
  border-color: #1558b0;
  background: #1558b0;
}

.btn-call {
  border-color: #b2623f;
  background: #b2623f;
  color: #fff;
}

.btn-call:hover {
  border-color: #9b5032;
  background: #9b5032;
}

.btn-call:active {
  border-color: #88452b;
  background: #88452b;
}

.btn-ghost-light.btn-call:hover {
  border-color: #9b5032;
  background: #9b5032;
  color: #fff;
}

.btn-dates {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-dates:hover {
  background: #9b5032;
  border-color: #9b5032;
}

.btn-dates:active {
  background: #88452b;
  border-color: #88452b;
}

.btn-mail {
  border-color: #c43e31;
  background: color-mix(in srgb, #c43e31 10%, #fff 90%);
  color: #8f2b22;
}

.btn-mail:hover {
  background: color-mix(in srgb, #c43e31 18%, #fff 82%);
}

.footer-social .action-whatsapp,
.footer-social .action-maps,
.footer-social .action-call,
.footer-social .action-mail {
  font-weight: 600;
}

.hero-banner {
  position: relative;
  min-height: min(88svh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgb(100 52 30 / 16%), rgb(69 90 52 / 10%) 48%, rgb(35 26 19 / 18%)),
    linear-gradient(
      to bottom,
      rgb(20 14 10 / 8%) 0%,
      rgb(20 14 10 / 16%) 58%,
      rgb(20 14 10 / 30%) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: clamp(6.4rem, 16vw, 9rem) 0 clamp(3.5rem, 10vw, 5.5rem);
}

.hero-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(960px, calc(100% + 3rem));
  height: clamp(240px, 42vw, 420px);
  transform: translate(-50%, -46%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgb(16 12 9 / 36%), rgb(16 12 9 / 8%) 68%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-content h1,
.hero-content p {
  color: #fff;
  text-shadow:
    0 2px 10px rgb(0 0 0 / 42%),
    0 1px 2px rgb(0 0 0 / 40%);
}

.hero-content p {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: clamp(1.02rem, 2.3vw, 1.28rem);
  color: rgb(255 255 255 / 97%);
}

.hero-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  align-items: center;
}

.value-points {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.value-point {
  background: rgb(16 12 9 / 44%);
  border: 1px solid rgb(255 255 255 / 62%);
  color: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgb(0 0 0 / 52%);
  box-shadow: 0 8px 16px rgb(0 0 0 / 16%);
  backdrop-filter: blur(3px);
}

.page-hero {
  background:
    radial-gradient(circle at 15% 20%, rgb(178 98 63 / 9%), transparent 34%),
    radial-gradient(circle at 82% 15%, rgb(126 143 100 / 10%), transparent 38%),
    var(--muted);
  padding: clamp(4.2rem, 7vw, 6.2rem) 0;
}

.page-hero .container-custom {
  max-width: 850px;
}

.page-hero p {
  margin-top: 1.05rem;
  font-size: 1.1rem;
}

body[data-page='ubicacion'] .page-hero h1,
body[data-page='sobre'] .page-hero h1,
body[data-page='galeria'] .page-hero h1,
body[data-page='contacto'] .page-hero h1 {
  font-size: clamp(2.22rem, 5.2vw, 3.3rem);
  line-height: 1.14;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  background: #fffdf8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 14px 30px rgb(49 35 24 / 8%);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.card:hover {
  box-shadow: 0 22px 44px rgb(49 35 24 / 14%);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  background: color-mix(in srgb, var(--primary) 12%, #fff 88%);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  margin-top: 0.5rem;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgb(44 37 32 / 14%);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: #d9cec2;
  box-shadow: 0 20px 42px rgb(47 35 25 / 16%);
  touch-action: pan-y;
}

.carousel > img {
  width: 100%;
  height: min(66vw, 600px);
  min-height: 380px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(38 26 18 / 54%), transparent 48%);
  pointer-events: none;
}

.carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  pointer-events: none;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: rgb(255 255 255 / 90%);
  color: var(--foreground);
  font-size: 1.2rem;
  pointer-events: auto;
}

.carousel-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgb(255 255 255 / 55%);
}

.carousel-indicators button.active {
  width: 26px;
  background: #fff;
}

.carousel-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgb(0 0 0 / 45%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 0.3rem 0.58rem;
}

.swipe-hint {
  position: absolute;
  left: 50%;
  bottom: 3.1rem;
  transform: translate(-50%, 10px);
  opacity: 0;
  margin: 0;
  z-index: 7;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 999px;
  background: rgb(0 0 0 / 48%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.36rem 0.62rem;
  white-space: nowrap;
  transition: opacity 200ms ease, transform 200ms ease;
}

.swipe-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.swipe-hint__icon {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  animation: swipe-hint-drift 1.2s ease-in-out infinite;
}

@keyframes swipe-hint-drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

.amenities-compact,
.amenities-full {
  display: grid;
  gap: 0.85rem;
}

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

.amenity-compact {
  background: color-mix(in srgb, var(--muted) 70%, #fff 30%);
  border-radius: 10px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.amenities-full {
  grid-template-columns: 1fr;
}

.amenities-full--quad {
  grid-template-columns: 1fr;
}

.amenity-full {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
}

.amenity-full h4 {
  font-size: 1rem;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

.amenity-full p {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: #e6ddd1;
  box-shadow: 0 12px 28px rgb(42 31 22 / 12%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 260ms ease;
}

.zoomable-image {
  cursor: zoom-in;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(26 18 12 / 72%), transparent 56%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
}

.gallery-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.gallery-overlay-content p {
  margin-top: 0.45rem;
  color: #fff;
  font-size: 0.84rem;
}

.lightbox {
  border: 0;
  padding: 0;
  width: min(100% - 1rem, 1220px);
  background: rgb(0 0 0 / 92%);
  border-radius: 14px;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgb(0 0 0 / 86%);
}

.lightbox-body {
  position: relative;
  display: grid;
  place-items: center;
}

.lightbox img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  transition: transform 220ms ease;
  transform-origin: center center;
  cursor: zoom-in;
}

.lightbox img.zoomed {
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 12%);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 6;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 14%);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
}

.lightbox-nav--prev {
  left: 12px;
}

.lightbox-nav--next {
  right: 12px;
}

.lightbox-counter {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 30%);
  background: rgb(0 0 0 / 36%);
  z-index: 6;
}

.lightbox-body--carousel img {
  position: relative;
  z-index: 1;
}

.lightbox-body--carousel {
  touch-action: pan-y;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem;
  background: linear-gradient(to top, rgb(0 0 0 / 80%), transparent);
}

.lightbox-caption p {
  color: #fff;
  margin-top: 0.35rem;
}

.badge {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--foreground);
}

.form-group textarea {
  resize: vertical;
}

.form-group select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted-foreground) 50%),
    linear-gradient(135deg, var(--muted-foreground) 50%, transparent 50%),
    linear-gradient(to right, #fff, #fff);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

.error {
  margin-top: 0.35rem;
  color: #b72626;
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 120;
  background: var(--foreground);
  color: #fff;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transition: all 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: #1f7a4f;
}

.toast.error {
  background: #a93030;
}

.map-placeholder {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--muted);
  min-height: 380px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
}

.icon-big {
  font-size: 2.8rem;
  color: var(--primary);
}

.icon-round {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 12%, #fff 88%);
  color: var(--primary);
  display: grid;
  place-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.split-list {
  display: grid;
  gap: 0.7rem;
}

.info-box {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
}

.cta-section {
  background:
    radial-gradient(circle at 14% 20%, rgb(255 255 255 / 14%), transparent 36%),
    radial-gradient(circle at 82% 80%, rgb(126 143 100 / 30%), transparent 40%),
    linear-gradient(135deg, #b2623f 0%, #9f5638 58%, #7f8661 100%);
  color: var(--primary-foreground);
}

.cta-section h2,
.cta-section p {
  color: var(--primary-foreground);
}

.cta-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-buttons {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.btn-center-wrap {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
}

.btn-center-wrap--compact {
  gap: 0.55rem;
}

.btn-center-wrap--location {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.card-cta {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: stretch;
  justify-content: center;
}

.card-cta .card-actions {
  margin-top: auto;
}

.card-actions.btn-center-wrap:not(.card-actions--separated) {
  margin-top: 0;
}

.card-actions--separated {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, #fff 18%);
}

.card-actions--push {
  margin-top: auto;
}

.card-actions .btn {
  min-height: 52px;
  padding-inline: 1.15rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

.location-showcase-section {
  background:
    radial-gradient(circle at 12% 18%, rgb(79 111 125 / 9%), transparent 34%),
    radial-gradient(circle at 88% 82%, rgb(178 98 63 / 8%), transparent 36%),
    linear-gradient(180deg, #f7f9f8 0%, #f8f3ea 100%);
}

.location-showcase {
  padding: clamp(1rem, 2.8vw, 1.7rem);
  display: grid;
  gap: 1rem;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(160deg, #fffefb 0%, #f8f0e5 100%);
}

.location-showcase__copy h3 {
  margin-top: 0.45rem;
}

.location-showcase__copy > p {
  margin-top: 0.58rem;
  color: color-mix(in srgb, var(--muted-foreground) 90%, var(--foreground) 10%);
}

.location-chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 88%, #fff 12%);
  background: #fff;
  padding: 0.38rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.location-chip .mono-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--ceramic);
}

.location-actions {
  justify-content: flex-start;
}

.location-showcase__map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 78%, #fff 22%);
  min-height: 270px;
  box-shadow: 0 14px 28px rgb(42 31 22 / 11%);
}

.location-map-embed {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border: 0;
  display: block;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-pillars {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.trust-pillar {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffefb;
  padding: 0.62rem 0.8rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
}

.stay-assistant-section {
  background:
    radial-gradient(circle at 12% 20%, rgb(178 98 63 / 10%), transparent 34%),
    radial-gradient(circle at 86% 78%, rgb(79 111 125 / 11%), transparent 36%),
    linear-gradient(180deg, #fdf8ef 0%, #f6eee2 100%);
}

#asistente-estancia,
#stay-assistant {
  scroll-margin-top: 92px;
}

.stay-assistant-shell {
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.stay-assistant-head p {
  margin-top: 0.52rem;
}

.stay-assistant-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.stay-assistant-grid .form-group {
  min-width: 0;
}

.stay-assistant-grid .form-group label {
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.stay-assistant-grid .form-group input,
.stay-assistant-grid .form-group select {
  padding: 0.62rem 0.72rem;
  font-size: 0.9rem;
}

.contact-assistant-card .stay-assistant-form--contact {
  margin-top: 0.85rem;
}

.stay-assistant-note {
  margin-top: 0.72rem;
  font-size: 0.86rem;
}

.stay-assistant-actions {
  margin-top: 0.72rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.stay-assistant-actions.card-actions--separated {
  padding-top: 0.72rem;
}

.stay-assistant-actions .btn {
  width: min(100%, 420px);
}

.assistant-feedback {
  min-height: 0;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--accent-foreground);
}

.assistant-feedback:empty {
  display: none;
}

.assistant-feedback--error {
  display: block;
  border: 1px solid color-mix(in srgb, #b72626 38%, var(--border) 62%);
  background: color-mix(in srgb, #b72626 10%, #fff 90%);
  color: #8b1f1f;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.stay-summary {
  margin-top: 0.95rem;
  border: 1px solid color-mix(in srgb, var(--ceramic) 22%, var(--border) 78%);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 72%, var(--muted) 28%);
  padding: 1rem;
}

.stay-summary h3 {
  font-size: 1.15rem;
}

.stay-preview-text {
  margin-top: 0.65rem;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--ceramic) 16%, var(--border) 84%);
  background: #fffefc;
  white-space: pre-wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.stay-summary-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.stay-summary-list p {
  margin: 0;
  font-size: 0.93rem;
}

.review-quote {
  margin-top: 0.8rem;
  font-style: italic;
}

.reviews-showcase {
  padding: clamp(1rem, 2.4vw, 1.5rem);
  background:
    radial-gradient(circle at 86% 12%, rgb(79 111 125 / 10%), transparent 36%),
    radial-gradient(circle at 14% 88%, rgb(178 98 63 / 11%), transparent 34%),
    linear-gradient(158deg, #fffefb 0%, #f9f1e6 100%);
}

.reviews-showcase__head h2 {
  margin-top: 0.42rem;
}

.reviews-showcase__microcopy {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--muted-foreground) 82%, var(--ceramic) 18%);
}

.reviews-showcase__summary {
  margin-top: 0.78rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.68rem;
  padding: 0.46rem 0.74rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ceramic) 18%, var(--border) 82%);
  background: color-mix(in srgb, #fff 66%, var(--muted) 34%);
}

.reviews-score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.reviews-score span {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.reviews-stars {
  letter-spacing: 0.08em;
  color: #b96a29;
  font-size: 0.92rem;
}

.reviews-count {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.reviews-carousel {
  --reviews-visible: 1;
  --reviews-gap: 0.7rem;
  margin-top: 0.9rem;
}

.reviews-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.reviews-carousel__track {
  display: flex;
  gap: var(--reviews-gap);
  will-change: transform;
  transition: transform 320ms ease;
}

.review-card {
  flex: 0 0 calc((100% - (var(--reviews-visible) - 1) * var(--reviews-gap)) / var(--reviews-visible));
  background: #fffefb;
  border: 1px solid color-mix(in srgb, var(--border) 80%, #fff 20%);
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 14px 28px rgb(44 33 24 / 9%);
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.review-card__author-head {
  margin: 0;
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-card__stars-head {
  margin: 0;
  color: #b96a29;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.review-card__text {
  margin-top: 0.62rem;
  color: color-mix(in srgb, var(--foreground) 88%, #000 12%);
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-carousel__footer {
  margin-top: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.reviews-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.reviews-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, var(--ceramic) 26%, #fff 74%);
}

.reviews-carousel__dot[aria-current="true"] {
  width: 24px;
  background: var(--ceramic);
}

.reviews-carousel__arrows {
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.reviews-carousel__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ceramic) 26%, var(--border) 74%);
  background: #fffdf8;
  color: var(--foreground);
  font-size: 0.9rem;
  line-height: 1;
}

.reviews-showcase .card-actions {
  margin-top: 0.7rem;
}

.reviews-section-compact {
  padding: clamp(2.4rem, 5.2vw, 4.2rem) 0;
  background:
    radial-gradient(circle at 10% 18%, rgb(79 111 125 / 6%), transparent 34%),
    radial-gradient(circle at 88% 84%, rgb(178 98 63 / 7%), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #f9f2e8 100%);
}

.reviews-carousel__arrow:disabled {
  opacity: 0.38;
}

.trust-direct-wrap {
  margin-top: 1rem;
}

.pricing-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.pricing-list p {
  margin: 0;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.location-strategy-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.2rem 1.35rem;
}

.location-strategy-card > p {
  margin-top: 0.55rem;
}

.location-strategy-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.48rem;
}

.location-strategy-card .card-actions {
  margin-top: 0.76rem;
}

.location-spot-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.location-spot-card h3 {
  margin-top: 0.15rem;
}

.location-spot-card p {
  margin: 0;
}

.location-spot-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.88rem;
  color: var(--muted-foreground);
  margin-top: 0.15rem;
}

.location-spot-meta .mono-icon {
  color: var(--ceramic);
}

.location-spot-card .card-actions {
  margin-top: auto;
}

.location-sources-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-foreground);
  text-align: center;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  display: flex;
  gap: 0.55rem;
  z-index: 205;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-cta--hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.mobile-sticky-cta__btn {
  flex: 1;
  min-height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 26px rgb(41 31 22 / 20%);
}

.sticky-action-dates {
  background: #4f6f7d;
  border-color: #4f6f7d;
  color: #fff;
}

.sticky-action-dates:hover {
  background: #435f6b;
  border-color: #435f6b;
}

.sticky-action-dates:active {
  background: #384f59;
  border-color: #384f59;
}

.sticky-action-whatsapp {
  background: #1fa75b;
  color: #fff;
}

.sticky-action-call {
  background: #9b5032;
  color: #fff;
}

body.menu-open .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  background: color-mix(in srgb, var(--muted) 84%, #fff 16%);
  color: var(--muted-foreground);
}


.footer-top {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  display: grid;
  gap: 1.4rem;
}

.footer-col h4,
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.7rem;
  color: var(--accent-foreground);
}

.footer-links,
.footer-contact,
.footer-social {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-social a {
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: var(--primary);
}

.footer-contact span {
  white-space: pre-line;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.contact-shell > .card {
  height: 100%;
}

.contact-panel {
  background: linear-gradient(160deg, #fffdf9 0%, #f8efe3 100%);
}

.contact-panel h2 {
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.contact-details-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.65rem;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.62rem;
  align-items: start;
  padding: 0.55rem 0.1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 76%, #fff 24%);
}

.contact-detail-item .mono-icon {
  color: var(--ceramic);
  margin-top: 0.15rem;
}

.contact-detail-text p {
  margin: 0;
  line-height: 1.45;
}

.contact-detail-text a {
  color: var(--primary);
}

.contact-detail-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-foreground);
  margin-bottom: 0.14rem;
}

.contact-detail-note {
  margin-top: 0.75rem;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.83rem;
  color: var(--muted-foreground);
}

.contact-detail-note .mono-icon {
  color: var(--ceramic);
}

.section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.9rem;
}

.section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 94px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--ceramic) 0 2px, transparent 2.2px) center / 16px 7px repeat-x;
  opacity: 0.5;
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ceramic) 65%, var(--foreground) 35%);
  font-weight: 700;
}

.editorial-kicker::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--ceramic) 0 2px, transparent 2.2px) center / 7px 7px repeat;
  opacity: 0.45;
}

.editorial-band {
  background:
    radial-gradient(circle at 14% 18%, rgb(79 111 125 / 10%), transparent 34%),
    radial-gradient(circle at 88% 84%, rgb(178 98 63 / 13%), transparent 35%);
}

.apartments-band {
  background:
    radial-gradient(circle at 12% 16%, rgb(178 98 63 / 8%), transparent 34%),
    radial-gradient(circle at 86% 86%, rgb(79 111 125 / 8%), transparent 34%),
    color-mix(in srgb, var(--muted) 52%, #fff 48%);
}

.apartments-section {
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf3 100%);
}

.editorial-grid {
  align-items: center;
}

.editorial-image {
  border: 1px solid color-mix(in srgb, var(--border) 75%, #fff 25%);
}

.editorial-copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.editorial-copy p {
  margin-top: 0.8rem;
}

.editorial-copy h2 {
  margin-top: 0.6rem;
}

.editorial-actions {
  margin-top: 1.4rem;
  justify-content: flex-start;
}

.trust-grid-featured .trust-card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
}

.trust-grid-featured .trust-card::after {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--ceramic));
  opacity: 0.45;
}

.trust-card-reviews {
  background: linear-gradient(160deg, #fffefa 0%, #f8efe4 100%);
}

.trust-card-direct {
  background: linear-gradient(160deg, #fffdfa 0%, #f4ece0 100%);
}

.apartments-showcase .apartment-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.apartment-collapsible__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.apartment-collapsible__head h2 {
  margin: 0;
}

.apartment-collapsible__toggle {
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--border) 86%, #fff 14%);
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.44rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  cursor: pointer;
  flex-shrink: 0;
}

.apartment-collapsible__toggle:hover {
  background: color-mix(in srgb, var(--muted) 64%, #fff 36%);
}

.apartment-collapsible__icon {
  width: 1rem;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
}

[data-apartment-content][hidden] {
  display: none !important;
}

.apartments-section .section-head {
  margin-bottom: 2rem;
}

.apartments-mini-intro {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.apartments-mini-amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.36rem 0.68rem;
  border: 1px solid color-mix(in srgb, var(--border) 90%, #fff 10%);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--muted-foreground);
}

.amenity-chip .mono-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--ceramic);
}

.apartment-media {
  height: 220px;
  overflow: hidden;
}

.apartment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.apartment-card:hover .apartment-media img {
  transform: scale(1.05);
}

.apartment-body {
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.apartment-price {
  color: var(--primary);
  font-weight: 700;
}

.price-with-note {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
}

.price-note-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.82em;
  line-height: 1;
  font-weight: 800;
  cursor: help;
  padding: 0;
}

.price-note-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 65%, #fff 35%);
  outline-offset: 2px;
  border-radius: 4px;
}

.price-note-tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 0.45rem);
  z-index: 30;
  min-width: 220px;
  max-width: min(320px, 80vw);
  background: #fff;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  font-size: 0.78rem;
  line-height: 1.3;
  box-shadow: 0 10px 22px rgb(48 34 24 / 14%);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.price-with-note:hover .price-note-tooltip,
.price-with-note:focus-within .price-note-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.price-note-trigger:active + .price-note-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.apartment-note {
  margin-top: 0;
  font-size: 0.86rem;
}

.apartment-body .card-actions {
  margin-top: auto;
}

.apartments-showcase .apartment-body .card-actions {
  margin-top: 0;
}

.apartments-showcase .apartment-body > p:not(.apartment-price):not(.apartment-note) {
  margin-bottom: auto;
}

.plan-selector-shell {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  min-width: 0;
}

.plan-selector {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 0.2rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.plan-selector-rail {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-width: 0;
}

.plan-selector-rail::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  background: linear-gradient(90deg, rgb(248 242 233 / 0%), rgb(248 242 233 / 95%));
  pointer-events: none;
}

.plan-selector-hint {
  margin-top: -0.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--ceramic) 65%, var(--muted-foreground) 35%);
}

.plan-option {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffefb;
  color: var(--foreground);
  min-height: 44px;
  padding: 0.58rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.plan-option.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.plan-panels {
  display: grid;
}

.plan-panel {
  padding: 1.25rem;
}

.plan-panel p {
  margin-top: 0.65rem;
}

.btn,
.card,
.gallery-item,
.image-card {
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.btn:focus-visible,
.nav-link:focus-visible,
.mobile-link:focus-visible,
.plan-option:focus-visible,
.reviews-carousel__arrow:focus-visible,
.reviews-carousel__dot:focus-visible,
.reviews-carousel__viewport:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ceramic) 70%, var(--primary) 30%);
  outline-offset: 2px;
}

.contact-shell .btn.btn-primary {
  box-shadow: 0 12px 24px rgb(178 98 63 / 18%);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (min-width: 640px) {
  .hero-actions,
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .card-actions .btn {
    min-height: 50px;
    width: auto;
  }

  .card-actions.btn-center-wrap--compact .btn {
    flex: 1 1 220px;
  }

  .editorial-actions {
    justify-content: center;
  }

  .stay-assistant-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stay-assistant-actions .btn {
    width: auto;
  }

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

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

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

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

@media (min-width: 768px) {
  .container-custom {
    width: min(1120px, calc(100% - 3rem));
  }

  .menu-btn,
  .mobile-panel,
  .mobile-backdrop {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-links {
    gap: 0.32rem;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .trust-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .location-showcase {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.2rem;
  }

  .stay-assistant-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .location-strategy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem 1rem;
  }

  .contact-details-list {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .contact-detail-item {
    border: 1px solid color-mix(in srgb, var(--border) 72%, #fff 28%);
    border-radius: 12px;
    background: color-mix(in srgb, #fff 88%, var(--muted) 12%);
    padding: 0.65rem 0.7rem;
  }

  .contact-detail-text p {
    font-size: 0.97rem;
  }

  .reviews-carousel {
    --reviews-visible: 2;
  }

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

  .plan-selector-hint {
    display: none;
  }

  .plan-selector-rail::after {
    display: none;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
  }

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

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 92px;
  }

  .card-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .card-actions.btn-center-wrap--compact .btn {
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-content p {
    font-size: clamp(1rem, 4.3vw, 1.14rem);
  }

  .editorial-image {
    height: 300px !important;
  }

  .apartment-media {
    height: 208px;
  }

  .trust-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .reviews-showcase__summary {
    border-radius: 14px;
  }

  .plan-selector {
    padding-right: 0.9rem;
  }

}

@media (min-width: 390px) and (max-width: 767px) {
  .card-actions.btn-center-wrap--compact .btn {
    flex: 1 1 calc(50% - 0.35rem);
  }
}

@media (max-width: 430px) {
  .nav-main {
    min-height: 70px;
  }

  .brand-sub {
    display: none;
  }

  .mobile-panel {
    width: 100vw;
    border-left: 0;
    padding-inline: 1rem;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
  }

  .mobile-sticky-cta {
    left: 0.5rem;
    right: 0.5rem;
    gap: 0.42rem;
  }

  .mobile-sticky-cta__btn {
    min-height: 46px;
    font-size: 0.79rem;
    letter-spacing: 0;
    padding-inline: 0.28rem;
  }

  .trust-pillar {
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

@media (min-width: 1024px) {
  .reviews-carousel {
    --reviews-visible: 3;
  }

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

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

  .amenities-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
