:root {
  --background: oklch(1 0 0);
  --surface: oklch(0.965 0.008 294);
  --ink: oklch(0.18 0.035 294);
  --muted: oklch(0.46 0.028 294);
  --primary: oklch(0.34 0.15 294);
  --primary-bright: oklch(0.58 0.19 294);
  --accent: oklch(0.72 0.19 48);
  --lime: oklch(0.87 0.18 117);
  --white: oklch(1 0 0);
  --line: oklch(0.87 0.015 294);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --content: min(100% - 40px, 1440px);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-menu: 20;
  --z-sticky: 30;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--primary);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: var(--z-sticky);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--content);
  min-height: 108px;
  color: var(--white);
  transform: translateX(-50%);
}

.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 56px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-4deg);
}

.brand-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: .87;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.site-nav { display: flex; justify-content: center; gap: clamp(20px, 2.4vw, 44px); }

.site-nav a { position: relative; font-size: .82rem; font-weight: 700; }

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}

.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid oklch(1 0 0 / .4);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 800;
  transition: background .25s, color .25s, transform .25s var(--ease-out);
}

.header-cta:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

.menu-toggle {
  position: fixed;
  top: 18px;
  right: 14px;
  z-index: calc(var(--z-sticky) + 1);
  display: grid;
  place-items: center;
  min-width: 66px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid oklch(1 0 0 / .45);
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(460px, 7fr);
  min-height: 850px;
  padding: 170px max(20px, calc((100vw - 1440px) / 2)) 210px;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: -14vw;
  left: 16vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid oklch(1 0 0 / .15);
  border-radius: 50%;
  content: "";
}

.hero-copy { position: relative; z-index: 2; align-self: center; min-width: 0; padding: 20px 5vw 20px 0; }

.hero-kicker, .section-note {
  margin: 0 0 20px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.7vw, 6rem);
  font-variation-settings: "wdth" 85;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .83;
  text-wrap: balance;
}

.hero h1 span { color: var(--lime); }

.hero-intro { max-width: 42ch; margin: 30px 0; overflow-wrap: anywhere; font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.55; text-wrap: pretty; }

.hero-link { display: inline-flex; gap: 18px; align-items: center; padding-bottom: 8px; border-bottom: 2px solid var(--accent); font-weight: 800; }

.hero-visual { position: relative; z-index: 1; min-width: 0; min-height: 555px; }

.hero-photo { position: absolute; overflow: hidden; }

.hero-photo img { height: 100%; object-fit: cover; }

.hero-photo-main { inset: 0 0 0 7%; clip-path: polygon(7% 0, 100% 0, 100% 93%, 0 100%, 0 8%); }

.hero-photo-small {
  right: -3%;
  bottom: -7%;
  width: 34%;
  aspect-ratio: 1;
  border: 8px solid var(--accent);
  border-radius: 50%;
}

.hero-sticker {
  position: absolute;
  top: -2%;
  right: -2%;
  display: grid;
  place-items: center;
  width: 135px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  color: var(--primary);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.booking-bar {
  position: absolute;
  right: max(20px, calc((100vw - 1440px) / 2));
  bottom: 48px;
  left: max(20px, calc((100vw - 1440px) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: stretch;
  min-height: 124px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px oklch(0.08 0.02 294 / .26);
}

.booking-heading { display: flex; flex-direction: column; justify-content: center; padding: 10px 28px; border-right: 1px solid var(--line); }

.booking-heading span, .booking-field > span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.booking-heading strong { font-family: var(--display); font-size: 1.25rem; line-height: 1.2; }

.booking-field { display: flex; flex-direction: column; justify-content: center; padding: 10px 28px; }

.booking-field select {
  width: 100%;
  margin-top: 4px;
  padding: 4px 30px 4px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.booking-submit, .button-accent {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 30px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
  transition: filter .2s, transform .25s var(--ease-out);
}

.booking-submit:hover, .button-accent:hover { filter: saturate(1.15); transform: translateY(-2px); }

.section-shell { width: var(--content); margin-inline: auto; padding-block: clamp(90px, 10vw, 160px); }

.section-intro { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 48px; }

.section-intro h2, .why-content h2, .new-stay h2, .final-cta h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-variation-settings: "wdth" 85;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .94;
  text-wrap: balance;
}

.section-intro > p { max-width: 48ch; margin: 0 0 6px; color: var(--muted); text-wrap: pretty; }

.section-note { color: var(--primary-bright); }

.stay-filters { display: flex; gap: 4px; margin: 56px 0 28px; padding-bottom: 12px; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }

.filter-button {
  flex: 0 0 auto;
  padding: 11px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active { background: var(--primary); color: var(--white); }

.stay-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(12, 1fr); gap: 18px; }

.stay-card { grid-column: span 4; height: 380px; }

.stay-card-feature { grid-column: span 8; grid-row: span 2; height: 778px; }

.stay-card-wide { grid-column: span 8; }

.stay-card[hidden] { display: none; }

.stay-card a { position: relative; display: block; height: 100%; overflow: hidden; border-radius: var(--radius-md); background: var(--surface); }

.stay-card img { height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .7s var(--ease-out); }

.stay-card a::after { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.08 0.02 294 / .86), transparent 58%); content: ""; }

.stay-card a:hover img { transform: scale(1.035); filter: saturate(1.08); }

.stay-overlay { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; color: var(--white); }

.stay-type { display: inline-block; margin-bottom: 12px; padding: 5px 9px; border-radius: 5px; background: var(--lime); color: var(--primary); font-size: .68rem; font-weight: 800; text-transform: uppercase; }

.stay-title-row { display: flex; align-items: end; justify-content: space-between; gap: 16px; }

.stay-title-row h3 { max-width: 22ch; margin: 0; font-family: var(--display); font-size: clamp(1.35rem, 2.2vw, 2.2rem); line-height: 1; text-wrap: balance; }

.stay-title-row > span { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border: 1px solid oklch(1 0 0 / .5); border-radius: 50%; }

.stay-overlay p { margin: 8px 0 0; font-size: .82rem; }

.text-link { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding: 20px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 800; }

.occasion-band { display: flex; gap: 30px; align-items: center; padding: 24px 0; overflow: hidden; background: var(--lime); color: var(--primary); white-space: nowrap; }

.occasion-band p { margin: 0; font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 800; text-transform: uppercase; }

.occasion-band p:first-child { margin-left: -30px; }

.why-us { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--primary); color: var(--white); }

.why-photo { position: relative; min-height: 620px; overflow: hidden; }

.why-photo::after { position: absolute; inset: 0; background: oklch(0.3 0.12 294 / .12); content: ""; }

.why-photo img { height: 100%; object-fit: cover; }

.why-photo > span { position: absolute; right: 30px; bottom: 30px; z-index: 1; padding: 20px; border-radius: 50%; background: var(--accent); color: var(--primary); font-family: var(--display); font-size: 1.1rem; font-weight: 800; line-height: .95; text-align: center; text-transform: uppercase; transform: rotate(-8deg); }

.why-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 130px); }

.why-content .section-note { color: var(--lime); }

.why-content h2 { font-size: clamp(3rem, 5vw, 5rem); }

.why-lead { max-width: 50ch; margin: 30px 0 40px; color: oklch(1 0 0 / .78); font-size: 1.08rem; }

.feature-list { margin: 0; padding: 0; list-style: none; }

.feature-list li { display: grid; grid-template-columns: 24px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid oklch(1 0 0 / .2); }

.feature-list li > span { color: var(--lime); font-size: .72rem; font-weight: 800; }

.feature-list strong { font-family: var(--display); font-size: 1.15rem; }

.feature-list p { margin: 4px 0 0; color: oklch(1 0 0 / .72); font-size: .88rem; }

.new-stay { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); align-items: center; }

.new-stay-copy > p:not(.section-note) { max-width: 53ch; margin: 28px 0; color: var(--muted); }

.button-secondary { display: inline-flex; align-items: center; gap: 24px; padding: 15px 20px; border-radius: var(--radius-sm); background: var(--primary); color: var(--white); font-weight: 800; }

.new-stay-video { position: relative; display: block; overflow: hidden; border-radius: 45% 45% 16px 16px; }

.new-stay-video::after { position: absolute; inset: 0; background: oklch(0.2 0.06 294 / .15); content: ""; transition: background .25s; }

.new-stay-video:hover::after { background: transparent; }

.new-stay-video img { aspect-ratio: 1.2; object-fit: cover; }

.play-button { position: absolute; top: 50%; left: 50%; z-index: 1; display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--lime); color: var(--primary); transform: translate(-50%, -50%); }

.final-cta { display: flex; justify-content: space-between; align-items: end; gap: 50px; padding: clamp(70px, 9vw, 130px) max(20px, calc((100vw - 1440px) / 2)); background: var(--accent); color: var(--primary); }

.final-cta p { margin: 0 0 12px; font-weight: 800; }

.final-cta h2 { max-width: 760px; }

.final-actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; min-width: 270px; }

.final-actions .button-accent { min-height: 62px; background: var(--primary); color: var(--white); }

.whatsapp-link { text-align: center; font-size: .83rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.site-footer { position: relative; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 60px; padding: 80px max(20px, calc((100vw - 1440px) / 2)) 120px; background: var(--ink); color: var(--white); }

.footer-brand p { max-width: 30ch; margin: 25px 0 0; color: oklch(1 0 0 / .64); }

.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

.footer-column h2 { margin: 0 0 8px; color: var(--lime); font-family: var(--display); font-size: .8rem; text-transform: uppercase; }

.footer-column a { color: oklch(1 0 0 / .76); font-size: .85rem; }

.footer-column a:hover { color: var(--white); text-decoration: underline; }

.copyright { position: absolute; right: max(20px, calc((100vw - 1440px) / 2)); bottom: 28px; left: max(20px, calc((100vw - 1440px) / 2)); margin: 0; padding-top: 22px; border-top: 1px solid oklch(1 0 0 / .16); color: oklch(1 0 0 / .5); font-size: .75rem; }

.mobile-book { display: none; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes header-enter {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes photo-enter {
  from { opacity: .2; clip-path: inset(8% 0 0 8%); transform: scale(1.04); }
  to { opacity: 1; clip-path: inset(0); transform: scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header { animation: header-enter .7s .05s both var(--ease-out); }
  .hero-copy > * { animation: hero-enter .8s both var(--ease-out); }
  .hero-copy > :nth-child(1) { animation-delay: .15s; }
  .hero-copy > :nth-child(2) { animation-delay: .23s; }
  .hero-copy > :nth-child(3) { animation-delay: .31s; }
  .hero-copy > :nth-child(4) { animation-delay: .39s; }
  .hero-visual { animation: photo-enter 1s .18s both var(--ease-out); }
  .booking-bar { animation: hero-enter .8s .48s both var(--ease-out); }
}

@media (min-width: 821px) {
  .menu-toggle { display: none; }
}

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .site-nav a:nth-last-child(1) { display: none; }
  .hero { grid-template-columns: minmax(0, 5fr) minmax(400px, 7fr); }
  .stay-card { grid-column: span 6; }
  .stay-card-feature, .stay-card-wide { grid-column: span 12; height: 560px; }
  .stay-card-feature { grid-row: auto; }
  .why-content { padding: 70px 50px; }
  .site-footer { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .site-footer .footer-column:last-of-type { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --content: min(100% - 28px, 1440px); }
  body { padding-bottom: 68px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 84px; animation: none; transform: translateX(-50%); }
  .menu-toggle { display: grid; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; padding: 100px 28px; background: var(--primary); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: opacity .25s, transform .25s var(--ease-out), visibility .25s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a, .site-nav a:nth-last-child(1) { display: block; font-family: var(--display); font-size: clamp(2rem, 8vw, 3.6rem); font-weight: 800; line-height: 1.05; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 135px 14px 250px; }
  .hero::before { display: none; }
  .hero-copy { padding: 0 6px 45px; }
  .hero-intro { width: 100%; max-width: 34ch; }
  .hero h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-intro { margin: 24px 0; }
  .hero-visual { min-height: 500px; }
  .hero-photo-main { inset: 0; }
  .hero-photo-small { right: -2%; bottom: -5%; width: 38%; border-width: 5px; }
  .hero-sticker { top: -5%; right: 4%; width: 105px; font-size: .9rem; }
  .booking-bar { right: 14px; bottom: 28px; left: 14px; grid-template-columns: 1fr auto; min-height: 168px; }
  .booking-heading { grid-column: 1 / -1; padding: 8px 14px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-field { padding: 12px 14px; }
  .booking-submit { padding: 0 20px; font-size: 0; }
  .booking-submit span { font-size: 1.4rem; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .section-intro h2, .why-content h2, .new-stay h2, .final-cta h2 { font-size: clamp(3rem, 12vw, 5rem); }
  .stay-grid { grid-template-columns: 1fr; }
  .stay-card, .stay-card-feature, .stay-card-wide { grid-column: auto; height: 460px; }
  .stay-card-feature { height: 570px; }
  .why-us { grid-template-columns: 1fr; }
  .why-photo { min-height: 550px; }
  .why-content { padding: 80px 20px; }
  .new-stay { grid-template-columns: 1fr; }
  .new-stay-video { grid-row: 1; }
  .final-cta { flex-direction: column; align-items: stretch; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-bottom: 110px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer .footer-column:last-of-type { grid-column: auto; }
  .mobile-book { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: var(--z-sticky); display: flex; justify-content: space-between; align-items: center; min-height: 54px; padding: 0 20px; border-radius: var(--radius-sm); background: var(--accent); color: var(--primary); font-weight: 800; box-shadow: 0 10px 35px oklch(0.08 0.02 294 / .35); }
}

@media (max-width: 520px) {
  .brand-mark { width: 39px; height: 48px; font-size: 2rem; }
  .hero { padding-bottom: 260px; }
  .hero-visual { min-height: 420px; }
  .booking-field select { max-width: 190px; }
  .section-shell { padding-block: 86px; }
  .stay-filters { margin-top: 40px; }
  .stay-card, .stay-card-feature, .stay-card-wide { height: 410px; }
  .stay-card-feature { height: 500px; }
  .stay-overlay { right: 18px; bottom: 18px; left: 18px; }
  .why-photo { min-height: 440px; }
  .feature-list li { grid-template-columns: 24px 1fr; }
  .new-stay-video { border-radius: 45% 45% 10px 10px; }
  .play-button { width: 66px; height: 66px; }
  .final-actions { min-width: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand, .site-footer .footer-column:last-of-type { grid-column: auto; }
  .copyright { bottom: 20px; }
}

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