:root {
  --background: oklch(0.955 0.017 139);
  --foreground: oklch(0.235 0.043 145);
  --clay: oklch(0.62 0.15 43);
  --bamboo: oklch(0.535 0.072 137);
  --bamboo-soft: oklch(0.925 0.026 138);
  --mineral: oklch(0.77 0.035 112);
  --surface: oklch(0.98 0.01 139);
  --surface-glass: oklch(0.97 0.018 139 / 72%);
  --surface-glass-border: oklch(1 0 0 / 48%);
  --primary-foreground: oklch(0.97 0.015 139);
  --hero-overlay: linear-gradient(to top, oklch(0.18 0.035 145 / 42%), transparent 58%);
  --shadow-soft: 0 18px 55px color-mix(in oklab, var(--foreground) 11%, transparent);
  --shadow-dock: 0 -8px 32px color-mix(in oklab, var(--foreground) 14%, transparent);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --touch-min: 2.75rem;
  --dock-height: 4.25rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--dock-height) + var(--safe-bottom));
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; }
.btn-touch {
  min-height: var(--touch-min);
  touch-action: manipulation;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; text-wrap: balance; }
.icon { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.container { max-width: 80rem; margin: 0 auto; padding-inline: 1.25rem; }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--foreground) 5%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(20px);
}
.header-inner { display: flex; height: 4.25rem; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 2.25rem; width: auto; }
.brand-name { display: none; font-family: var(--font-display); font-size: 1.125rem; }
@media (min-width: 640px) { .brand-name { display: block; } }
.nav-desktop { display: none; align-items: center; gap: 2rem; font-size: 13px; font-weight: 500; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-desktop a { color: color-mix(in oklab, var(--foreground) 65%, transparent); transition: color .2s ease; }
.nav-desktop a:hover { color: var(--clay); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .header-actions { gap: 1rem; } }
.header-social { display: none; align-items: center; gap: 0.375rem; }
@media (min-width: 768px) { .header-social { display: flex; } }
.header-social-link {
  display: grid; place-items: center; width: 2.375rem; height: 2.375rem;
  border-radius: 999px; color: #fff; border: 0;
  box-shadow: 0 2px 10px oklch(0.18 0.035 145 / 14%);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.header-social-link .icon { width: 1.125rem; height: 1.125rem; }
.header-social-link--facebook { background: #1877f2; }
.header-social-link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
}
.header-social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px oklch(0.18 0.035 145 / 18%);
}
.header-social-link--facebook:hover { filter: brightness(1.06); }
.header-social-link--instagram:hover { filter: brightness(1.08); }
.icon-filled { fill: currentColor; stroke: none; }
.lang-select { position: relative; }
.lang-select-toggle {
  display: inline-flex; align-items: center; gap: 0.375rem;
  min-width: var(--touch-min); min-height: var(--touch-min);
  padding: 0.375rem 0.625rem;
  border: 1px solid color-mix(in oklab, var(--foreground) 12%, transparent);
  border-radius: 999px; background: var(--surface); cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.lang-select-toggle:hover,
.lang-select-toggle[aria-expanded="true"] {
  border-color: color-mix(in oklab, var(--clay) 45%, transparent);
  background: color-mix(in oklab, var(--bamboo-soft) 55%, var(--surface));
}
.lang-select-toggle .lang-flag {
  display: none; width: 1.375rem; height: auto; border-radius: 0.125rem;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--foreground) 10%, transparent);
}
.lang-select-toggle .lang-flag.is-active { display: block; }
.lang-chevron { width: 0.875rem; height: 0.875rem; color: color-mix(in oklab, var(--foreground) 55%, transparent); }
.lang-select-menu {
  position: absolute; top: calc(100% + 0.375rem); right: 0; z-index: 80;
  min-width: 9.5rem; margin: 0; padding: 0.375rem; list-style: none;
  border: 1px solid color-mix(in oklab, var(--foreground) 10%, transparent);
  border-radius: 0.75rem; background: var(--surface);
  box-shadow: 0 12px 32px oklch(0.18 0.035 145 / 12%);
}
.lang-option {
  display: flex; align-items: center; gap: 0.625rem; width: 100%;
  padding: 0.625rem 0.75rem; border: 0; border-radius: 0.5rem;
  background: transparent; cursor: pointer; text-align: left;
  font: inherit; font-size: 0.875rem; font-weight: 500;
  color: var(--foreground);
}
.lang-option:hover,
.lang-option.is-active {
  background: color-mix(in oklab, var(--bamboo-soft) 65%, var(--surface));
}
.lang-option.is-active { color: var(--clay); }
.btn-clay {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.25rem; padding-inline: 1rem; border-radius: 999px;
  background: var(--clay); color: var(--primary-foreground);
  font-size: 0.8125rem; font-weight: 600; transition: opacity .2s ease;
}
.btn-clay:hover { opacity: 0.88; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.75rem; padding-inline: 1.125rem; border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--foreground) 18%, transparent);
  background: var(--surface); color: var(--foreground);
  font-size: 0.875rem; font-weight: 600;
}
@media (max-width: 767px) {
  .btn-reserve-header { display: none; }
}
.burger {
  display: grid; place-items: center; width: var(--touch-min); height: var(--touch-min);
  background: none; border: 0; color: inherit; cursor: pointer;
}
.burger .icon { width: 1.25rem; height: 1.25rem; }
@media (min-width: 768px) { .burger { display: none; } }
.burger .ico-close, .burger.is-open .ico-menu { display: none; }
.burger.is-open .ico-close { display: block; }
.nav-mobile {
  display: none; padding: 1rem 1.25rem calc(1rem + var(--safe-bottom));
  background: var(--background);
  border-top: 1px solid color-mix(in oklab, var(--foreground) 5%, transparent);
}
.nav-mobile.is-open { display: block; }
@media (min-width: 768px) { .nav-mobile.is-open { display: none; } }
.nav-mobile a {
  display: flex; align-items: center; min-height: var(--touch-min);
  padding-block: 0.5rem; font-family: var(--font-display); font-size: 1.125rem;
  border-bottom: 1px solid color-mix(in oklab, var(--foreground) 5%, transparent);
}
.nav-mobile-social {
  display: flex; gap: 0.75rem; margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
}
@media (min-width: 768px) { .nav-mobile-social { display: none; } }
.nav-mobile-social-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; flex: 1;
  min-height: var(--touch-min); padding: 0.625rem 0.875rem;
  border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
  color: #fff; border: 0;
  box-shadow: 0 2px 10px oklch(0.18 0.035 145 / 12%);
}
.nav-mobile-social-link .icon { width: 1rem; height: 1rem; }
.nav-mobile-social-link--facebook { background: #1877f2; }
.nav-mobile-social-link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
}
.nav-mobile-social-link:hover { filter: brightness(1.06); }

/* Hero */
.hero { position: relative; min-height: calc(100svh - 4.25rem); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-inner { position: relative; display: flex; align-items: flex-end; min-height: calc(100svh - 4.25rem); padding-block: 2rem; }
@media (min-width: 1024px) { .hero-inner { padding-block: 2.5rem; } }
.hero-card {
  max-width: 36rem; padding: 1.75rem;
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(32px);
}
@media (min-width: 640px) { .hero-card { padding: 2.25rem; } }
.kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bamboo); margin-bottom: 0.75rem; }
.kicker.mineral { color: var(--mineral); margin-bottom: 0; }
.hero-card h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.02; }
.hero-intro { margin-top: 1rem; max-width: 28rem; font-size: 15px; line-height: 1.65; color: color-mix(in oklab, var(--foreground) 70%, transparent); }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.25rem;
}
.hero-actions .btn-clay,
.hero-actions .btn-outline { flex: 1 1 8.5rem; font-size: 0.875rem; }
.hero-actions .icon { width: 1rem; height: 1rem; }

/* Sections */
.section { padding-block: 3.5rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }
.section-label { color: var(--bamboo); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 0.75rem 1rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .section-head { margin-bottom: 2.5rem; } }
.section-head h2 { margin-top: 0.5rem; font-size: clamp(1.875rem, 3vw, 2.25rem); }
.section-meta { display: none; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in oklab, var(--foreground) 40%, transparent); }
@media (min-width: 640px) { .section-meta { display: block; } }

.cabin-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .cabin-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cabin-grid { gap: 1.5rem; } }
.cabin { overflow: hidden; border: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent); background: var(--surface); box-shadow: var(--shadow-soft); }
.cabin-media { position: relative; overflow: hidden; }
.cabin-carousel { position: relative; touch-action: pan-y pinch-zoom; }
.cabin-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; overscroll-behavior-x: contain;
}
.cabin-track::-webkit-scrollbar { display: none; }
.cabin-slide {
  flex: 0 0 100%; margin: 0; scroll-snap-align: start; scroll-snap-stop: always;
}
.cabin-slide img {
  aspect-ratio: 4 / 3; width: 100%; object-fit: cover; user-select: none;
  -webkit-user-drag: none;
}
.cabin-ui {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 2.5rem 0.75rem 0.75rem;
  background: linear-gradient(to top, oklch(0.18 0.035 145 / 55%), transparent);
  pointer-events: none;
}
.cabin-counter {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  color: oklch(0.97 0.015 139 / 92%);
}
.cabin-dots { display: flex; gap: 0.375rem; pointer-events: auto; }
.cabin-dot {
  width: 0.4375rem; height: 0.4375rem; padding: 0; border: 0; border-radius: 999px;
  background: oklch(1 0 0 / 42%); cursor: pointer; transition: transform .2s ease, background .2s ease;
}
.cabin-dot.is-active {
  width: 1.375rem; background: var(--clay);
}
.cabin-swipe-hint {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(0.97 0.015 139 / 72%);
}
@media (min-width: 768px) { .cabin-swipe-hint { display: none; } }
.cabin-nav {
  position: absolute; top: 50%; z-index: 3; translate: 0 -50%;
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border: 0; border-radius: 999px; cursor: pointer;
  background: oklch(0.97 0.015 139 / 88%); color: var(--foreground);
  box-shadow: 0 4px 16px oklch(0.18 0.035 145 / 18%);
  opacity: 0; transition: opacity .2s ease, transform .2s ease;
}
.cabin-nav .icon { width: 1rem; height: 1rem; }
.cabin-nav-prev { left: 0.625rem; }
.cabin-nav-next { right: 0.625rem; }
.cabin-carousel:hover .cabin-nav,
.cabin-carousel:focus-within .cabin-nav { opacity: 1; }
@media (max-width: 767px) {
  .cabin-nav { display: none; }
}
.cabin-body { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem; padding: 1.5rem; }
@media (min-width: 640px) { .cabin-body { padding: 1.75rem; } }
.cabin-body h3 { font-size: 1.5rem; }
.cabin-body p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in oklab, var(--foreground) 65%, transparent); }
.round-link {
  display: grid; place-items: center; flex: none; width: 3rem; height: 3rem;
  border-radius: 999px; border: 1px solid color-mix(in oklab, var(--foreground) 10%, transparent);
  color: var(--clay); transition: background .2s ease, color .2s ease;
}
.round-link:hover { background: var(--clay); color: var(--primary-foreground); }

/* Story */
.story {
  background: var(--bamboo-soft); scroll-margin-top: 4rem;
  border-block: 1px solid color-mix(in oklab, var(--foreground) 5%, transparent);
}
.story-inner { max-width: 72rem; margin: 0 auto; padding: 5rem 1.25rem; text-align: center; }
@media (min-width: 1024px) { .story-inner { padding: 7rem 2.5rem; } }
.story-inner > h2 { margin: 1.25rem auto 0; max-width: 42rem; font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.2; }
.about-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; text-align: left; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.about-card {
  padding: 1.75rem; background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
  box-shadow: var(--shadow-soft);
}
.about-card h3 { font-size: 1.5rem; }
.about-kicker { margin-top: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: var(--clay); }
.story-text { margin-top: 1.25rem; font-size: 0.9375rem; line-height: 1.85; text-wrap: pretty; color: color-mix(in oklab, var(--foreground) 68%, transparent); }
.story-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--clay); }

/* Amenities */
.amenity-grid {
  display: grid; gap: 1rem; list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.amenity {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 1.25rem 1.5rem; background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
  font-size: 0.9375rem; font-weight: 500;
}
.amenity-muted { color: color-mix(in oklab, var(--foreground) 55%, transparent); }
.amenity-icon { width: 1.25rem; height: 1.25rem; flex: none; color: var(--bamboo); }

/* Outdoor */
.outdoor { display: grid; gap: 2.5rem; align-items: center; scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .outdoor { grid-template-columns: 1.1fr 0.9fr; } }
.outdoor-media { display: grid; gap: 1rem; }
@media (min-width: 640px) { .outdoor-media { grid-template-columns: 1fr 1fr; } }
.outdoor-media img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.outdoor-text h2 { margin-top: 1rem; font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.15; }
.outdoor-text > p:last-child { margin-top: 1.25rem; max-width: 32rem; line-height: 1.85; color: color-mix(in oklab, var(--foreground) 68%, transparent); }

/* Reviews */
.reviews { max-width: 44rem; margin-inline: auto; }
.reviews-score {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem;
  font-family: var(--font-display); font-size: 1rem; color: var(--clay);
}
.review-stars { color: var(--clay); letter-spacing: 0.06em; font-size: 0.875rem; line-height: 1; }
.review-carousel {
  border: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
  background: var(--surface); box-shadow: var(--shadow-soft);
  border-radius: 0.25rem; overflow: hidden;
}
.review-stage {
  position: relative; width: 100%;
}
.review-viewport {
  width: 100%; overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.review-track {
  display: flex; width: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; overscroll-behavior-x: contain;
}
.review-track::-webkit-scrollbar { display: none; }
.review-slide {
  flex: 0 0 var(--review-slide-width, 100%);
  width: var(--review-slide-width, 100%);
  min-width: var(--review-slide-width, 100%);
  margin: 0; padding: 1.5rem 1.25rem;
  scroll-snap-align: start; scroll-snap-stop: always;
  box-sizing: border-box;
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
}
@media (min-width: 640px) { .review-slide { padding: 1.75rem 2rem; } }
.review-card-head {
  display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1rem;
  min-width: 0;
}
.review-card-head > div { min-width: 0; }
.review-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 999px; object-fit: cover; flex: none;
}
.review-avatar-fallback {
  display: grid; place-items: center; background: var(--bamboo-soft);
  font-family: var(--font-display); font-size: 1.125rem;
  font-weight: 600; color: var(--bamboo); text-transform: uppercase;
}
.review-author { font-size: 0.9375rem; font-weight: 600; line-height: 1.3; }
.review-slide .review-stars { margin-top: 0.2rem; font-size: 0.8125rem; }
.review-text {
  flex: 1; margin: 0;
  font-size: 0.9375rem; line-height: 1.75;
  color: color-mix(in oklab, var(--foreground) 78%, transparent);
  overflow-wrap: anywhere; word-break: break-word; text-wrap: pretty;
}
.review-ui {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1rem 1rem;
  background: color-mix(in oklab, var(--bamboo-soft) 45%, var(--surface));
  border-top: 1px solid color-mix(in oklab, var(--foreground) 6%, transparent);
}
.review-counter {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--foreground) 50%, transparent);
}
.review-dots { display: flex; align-items: center; gap: 0.375rem; }
.review-dot {
  width: 0.5rem; height: 0.5rem; padding: 0; border: 0; border-radius: 999px;
  background: color-mix(in oklab, var(--foreground) 16%, transparent);
  cursor: pointer; transition: width .25s ease, background .25s ease;
}
.review-dot.is-active {
  width: 1.25rem; background: var(--clay);
}
.review-swipe-hint {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: color-mix(in oklab, var(--foreground) 40%, transparent);
}
@media (min-width: 768px) { .review-swipe-hint { display: none; } }
.review-nav {
  position: absolute; top: 50%; z-index: 2; translate: 0 -50%;
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border: 1px solid color-mix(in oklab, var(--foreground) 10%, transparent);
  border-radius: 999px; cursor: pointer;
  background: var(--surface); color: var(--foreground);
  box-shadow: 0 2px 12px oklch(0.18 0.035 145 / 10%);
  opacity: 0; transition: opacity .2s ease, color .2s ease, background .2s ease;
}
.review-nav:hover { color: var(--clay); background: var(--bamboo-soft); }
.review-nav .icon { width: 1rem; height: 1rem; }
.review-nav-prev { left: 0.5rem; }
.review-nav-next { right: 0.5rem; }
.review-carousel:hover .review-nav,
.review-carousel:focus-within .review-nav { opacity: 1; }
@media (max-width: 767px) {
  .review-nav { display: none; }
  .review-slide { padding-inline: 1.25rem; }
}
.reviews-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem 1.5rem; margin-top: 1.5rem;
}
.reviews-google-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--clay);
}
.reviews-empty {
  padding: 2rem 1.5rem; text-align: center; background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
}
.reviews-empty p { max-width: 36rem; margin: 0 auto; line-height: 1.75; color: color-mix(in oklab, var(--foreground) 68%, transparent); }
.reviews-empty-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.reviews-setup { font-size: 0.75rem; color: color-mix(in oklab, var(--foreground) 50%, transparent); max-width: 28rem; }

/* Stay */
.stay { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .stay { grid-template-columns: 1fr 1fr; } .stay-text { padding-inline: 2.5rem; } }
.stay-media img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
.stay-text h2 { margin-top: 1rem; font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.15; }
.stay-text > p:last-of-type { margin-top: 1.5rem; max-width: 32rem; line-height: 2; color: color-mix(in oklab, var(--foreground) 68%, transparent); }
.stay-foot { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; font-size: 0.875rem; color: color-mix(in oklab, var(--foreground) 60%, transparent); border-top: 1px solid color-mix(in oklab, var(--foreground) 10%, transparent); }
.rule { display: block; width: 2.5rem; height: 1px; background: var(--clay); }

/* Contact */
.contact { background: var(--foreground); color: var(--background); scroll-margin-top: 5rem; }
.contact-inner { display: grid; gap: 2rem; padding-block: 3.5rem; }
@media (min-width: 768px) { .contact-inner { gap: 3rem; padding-block: 5rem; } }
@media (min-width: 1024px) { .contact-inner { grid-template-columns: 1.1fr 0.9fr; padding-block: 6rem; } }
.contact-inner h2 { margin-top: 1rem; max-width: 32rem; font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.15; }
.contact-text { margin-top: 1.25rem; max-width: 32rem; line-height: 1.8; color: color-mix(in oklab, var(--background) 65%, transparent); }
.contact-actions { display: grid; gap: 0.75rem; align-content: start; }
.contact-action {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.125rem;
  border-radius: 1rem; color: var(--background);
  border: 1px solid color-mix(in oklab, var(--background) 14%, transparent);
  background: color-mix(in oklab, var(--background) 6%, transparent);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.contact-action:hover {
  color: var(--clay);
  border-color: color-mix(in oklab, var(--clay) 40%, transparent);
  background: color-mix(in oklab, var(--clay) 10%, transparent);
}
.contact-action-primary {
  background: var(--clay); color: var(--primary-foreground); border-color: transparent;
}
.contact-action-primary:hover {
  background: color-mix(in oklab, var(--clay) 88%, white); color: var(--primary-foreground);
  border-color: transparent;
}
.contact-action-icon {
  display: grid; place-items: center; flex: none;
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  font-size: 1rem; font-weight: 700; font-family: var(--font-display);
  background: color-mix(in oklab, var(--background) 12%, transparent);
}
.contact-action-primary .contact-action-icon { background: color-mix(in oklab, var(--primary-foreground) 18%, transparent); }
.contact-action-icon .icon { width: 1.125rem; height: 1.125rem; }
.contact-action-body { display: grid; gap: 0.125rem; min-width: 0; flex: 1; }
.contact-action-title { font-size: 0.9375rem; font-weight: 600; }
.contact-action-desc {
  font-size: 0.8125rem; line-height: 1.4;
  color: color-mix(in oklab, var(--background) 62%, transparent);
}
.contact-action-primary .contact-action-desc { color: color-mix(in oklab, var(--primary-foreground) 78%, transparent); }
.contact-action-arrow { flex: none; width: 1rem; height: 1rem; opacity: 0.55; }
.contact-list { border-block: 1px solid color-mix(in oklab, var(--background) 12%, transparent); }
.location-card {
  margin-top: 1.5rem; padding: 1.25rem;
  border: 1px solid color-mix(in oklab, var(--background) 14%, transparent);
  background: color-mix(in oklab, var(--background) 6%, transparent);
  border-radius: 1rem;
}
.location-head { display: flex; align-items: flex-start; gap: 0.875rem; }
.location-icon { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.125rem; color: var(--mineral); }
.location-label {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: color-mix(in oklab, var(--background) 50%, transparent);
}
.location-address { margin-top: 0.25rem; font-size: 0.9375rem; line-height: 1.5; color: var(--background); }
.location-map {
  display: none; margin-top: 1rem; overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid color-mix(in oklab, var(--background) 12%, transparent);
  aspect-ratio: 16 / 10;
}
.location-map iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (min-width: 768px) {
  .location-map { display: block; }
  .location-actions { display: none; }
}
.location-actions {
  display: grid; gap: 0.625rem; margin-top: 1rem;
  grid-template-columns: 1fr 1fr;
}
.location-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1rem; border-radius: 999px;
  background: var(--clay); color: var(--primary-foreground);
  font-size: 0.8125rem; font-weight: 600;
}
.location-btn .icon { width: 1rem; height: 1rem; }
.location-btn-muted {
  grid-column: 1 / -1;
  background: transparent; color: var(--background);
  border: 1px solid color-mix(in oklab, var(--background) 18%, transparent);
}
@media (min-width: 480px) {
  .location-actions { grid-template-columns: repeat(3, 1fr); }
  .location-btn-muted { grid-column: auto; }
}

.contact-link {
  display: flex; min-height: 3.75rem; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 0.875rem; transition: color .18s ease;
  border-bottom: 1px solid color-mix(in oklab, var(--background) 12%, transparent);
}
.contact-list .contact-link:last-child { border-bottom: 0; }
.contact-link > span { display: flex; align-items: center; gap: 0.5rem; }
.contact-link:hover { color: var(--clay); }

/* Footer */
.footer { background: var(--foreground); color: color-mix(in oklab, var(--background) 55%, transparent); border-top: 1px solid color-mix(in oklab, var(--background) 10%, transparent); }
.footer-inner { display: flex; flex-direction: column; gap: 1.25rem; justify-content: space-between; padding-block: 2rem; font-size: 0.75rem; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; align-items: center; flex-wrap: wrap; } }
.footer-name { font-family: var(--font-display); font-size: 1rem; color: var(--background); margin-bottom: 0.25rem; }
.footer-note { margin-inline-start: auto; text-align: center; }
@media (min-width: 640px) { .footer-note { text-align: right; } }

/* Mobile dock */
.mobile-dock {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.375rem;
  padding: 0.5rem 0.75rem calc(0.5rem + var(--safe-bottom));
  background: color-mix(in oklab, var(--background) 92%, transparent);
  border-top: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
  box-shadow: var(--shadow-dock);
  backdrop-filter: blur(18px);
}
@media (min-width: 768px) { .mobile-dock { display: none; } }
.dock-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; min-height: 3.25rem; padding: 0.375rem 0.25rem;
  border-radius: 0.875rem; font-size: 0.6875rem; font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 72%, transparent);
}
.dock-btn .icon { width: 1.125rem; height: 1.125rem; }
.dock-btn-primary {
  background: var(--clay); color: var(--primary-foreground);
}
.dock-btn:active { transform: scale(0.97); }

/* Motion */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes wipe { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0); } }
.rise { animation: rise .8s cubic-bezier(.32,.72,0,1) both; }
.wipe { animation: wipe 1.1s cubic-bezier(.32,.72,0,1) both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* Subpages (Es Posible) */
.page-sub { padding-bottom: 0; }
.brand-ep { height: 2.5rem; width: auto; }
.ep-hero { position: relative; min-height: calc(100svh - 4.25rem); overflow: hidden; }
.ep-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ep-hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.ep-hero-inner {
  position: relative; display: flex; align-items: flex-end;
  min-height: calc(100svh - 4.25rem); padding-block: 2rem;
}
.ep-hero-card {
  max-width: 38rem; padding: 1.75rem;
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-glass); box-shadow: var(--shadow-soft);
  backdrop-filter: blur(32px);
}
@media (min-width: 640px) { .ep-hero-card { padding: 2.25rem; } }
.ep-hero-logo { height: 3.5rem; width: auto; margin-bottom: 1rem; }
.ep-hero-card h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.05; }
.ep-hero-intro {
  margin-top: 1rem; max-width: 30rem; font-size: 15px; line-height: 1.65;
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
}
.ep-about { scroll-margin-top: 6rem; }
.ep-about-layout {
  display: grid; gap: 2.5rem; align-items: start;
}
@media (min-width: 1024px) { .ep-about-layout { grid-template-columns: 0.9fr 1.1fr; } }
.ep-about-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 1rem; box-shadow: var(--shadow-soft);
}
.ep-about-copy h2 { margin-top: 0.75rem; font-size: clamp(1.875rem, 3vw, 2.5rem); }
.ep-about-block { margin-top: 1.5rem; }
.ep-about-block h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 500;
}
.ep-about-block p,
.ep-about-copy > p {
  margin-top: 0.75rem; font-size: 0.9375rem; line-height: 1.85;
  color: color-mix(in oklab, var(--foreground) 68%, transparent);
}
.ep-about-closing {
  margin-top: 1.25rem; font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.25rem); line-height: 1.55;
}
.ep-services {
  background: var(--bamboo-soft);
  border-block: 1px solid color-mix(in oklab, var(--foreground) 5%, transparent);
  padding-block: 3.5rem; scroll-margin-top: 6rem;
}
@media (min-width: 768px) { .ep-services { padding-block: 5rem; } }
.ep-service-list {
  display: grid; gap: 0.75rem 1.5rem; list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.ep-service-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.125rem; background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent);
  font-size: 0.9375rem; font-weight: 500; line-height: 1.45;
}
.ep-service-dot {
  flex: none; width: 0.5rem; height: 0.5rem; margin-top: 0.45rem;
  border-radius: 999px; background: var(--clay);
}
.ep-gallery { scroll-margin-top: 6rem; padding-top: 0; }
.ep-gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.ep-gallery-filter {
  padding: 0.5rem 0.875rem; border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--foreground) 12%, transparent);
  background: var(--surface); cursor: pointer;
  font: inherit; font-size: 0.8125rem; font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.ep-gallery-filter:hover,
.ep-gallery-filter.is-active {
  color: var(--clay);
  border-color: color-mix(in oklab, var(--clay) 40%, transparent);
  background: color-mix(in oklab, var(--clay) 8%, var(--surface));
}
.ep-gallery-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .ep-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ep-gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.ep-gallery-item {
  margin: 0; overflow: hidden; border-radius: 0.75rem;
  background: color-mix(in oklab, var(--foreground) 6%, transparent);
}
.ep-gallery-item[hidden] { display: none; }
.ep-gallery-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .35s ease;
}
.ep-gallery-item:hover img { transform: scale(1.04); }
.ep-location {
  margin-top: 1rem; font-size: 0.9375rem; font-weight: 500;
  color: color-mix(in oklab, var(--background) 75%, transparent);
}
.footer-brands { align-items: flex-start; }
.footer-brand-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.footer-brand-link { display: block; opacity: 0.92; transition: opacity .18s ease; }
.footer-brand-link:hover { opacity: 1; }
.footer-brand-logo { height: 2rem; width: auto; }
.footer-brand-logo-ep { height: 2.25rem; filter: brightness(0) invert(1); opacity: 0.88; }
