:root {
  --coral: #ef706a;
  --coral-deep: #d95956;
  --coral-soft: #f8d8d2;
  --peach: #f2b792;
  --sand: #f7f1eb;
  --sand-deep: #eadfd5;
  --ivory: #fffdf9;
  --white: #ffffff;
  --ink: #2d2522;
  --ink-soft: #655b56;
  --brown: #49352e;
  --olive: #6b7541;
  --gold: #c7a15a;
  --line: rgba(45, 37, 34, 0.14);
  --shadow-sm: 0 12px 34px rgba(55, 40, 34, 0.09);
  --shadow-lg: 0 30px 80px rgba(35, 24, 20, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1240px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 600;
}

::selection {
  color: var(--white);
  background: var(--coral);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 0;
}

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

.section--coral {
  color: var(--white);
  background: var(--coral);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--coral-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #ffe6df;
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.gallery__item:focus-visible,
summary:focus-visible,
.menu-toggle:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(239, 112, 106, 0.55);
  outline-offset: 4px;
}

.button--primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(217, 89, 86, 0.25);
}

.button--primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 18px 38px rgba(217, 89, 86, 0.33);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--brown);
}

.button--light {
  color: var(--coral-deep);
  background: var(--white);
}

.button--light:hover {
  color: var(--ink);
  background: #fff6f2;
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(9px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button--outline {
  color: var(--ink);
  border-color: rgba(45, 37, 34, 0.35);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.button--small {
  min-height: 44px;
  padding: 10px 20px;
  color: var(--white) !important;
  background: var(--coral);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--coral-deep);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--ink);
}

.topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  height: 36px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(29, 21, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.topbar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar a {
  color: #ffd4cc;
}

.site-header {
  position: fixed;
  top: 36px;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  transition: top 220ms ease, background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  top: 0;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 10px 35px rgba(45, 37, 34, 0.09);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 190px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 24px rgba(22, 15, 13, 0.12);
  transition: width 220ms ease, height 220ms ease, border-radius 220ms ease;
}

.brand img {
  width: 100%;
}

.site-header.is-scrolled .brand {
  width: 165px;
  height: 58px;
  background: transparent;
  box-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.015);
  animation: heroZoom 16s ease-out both;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22, 14, 12, 0.82) 0%, rgba(24, 15, 13, 0.57) 45%, rgba(23, 15, 14, 0.17) 75%),
    linear-gradient(0deg, rgba(26, 16, 13, 0.46) 0%, transparent 42%),
    linear-gradient(180deg, rgba(10, 7, 6, 0.4) 0%, transparent 32%);
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.015); }
}

.hero__content {
  padding-top: 150px;
  padding-bottom: 95px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 8.8vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__scroll {
  position: absolute;
  right: max(26px, calc((100vw - var(--container)) / 2));
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  display: block;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.hero__scroll i::after {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite ease-in-out;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.quick-facts {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.quick-facts__grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.quick-facts article {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--coral-deep);
  background: #fff2ef;
  border-radius: 50%;
}

.quick-facts svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quick-facts strong,
.quick-facts small {
  display: block;
}

.quick-facts strong {
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.quick-facts small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.intro {
  padding-top: clamp(120px, 13vw, 190px);
}

.intro__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.72fr);
  gap: clamp(70px, 10vw, 150px);
}

.intro__copy {
  max-width: 680px;
}

.intro__copy h2 {
  max-width: 760px;
}

.intro__copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.intro__copy .lead {
  color: var(--ink);
}

.intro__visual {
  position: relative;
  min-height: 720px;
}

.image-frame {
  overflow: hidden;
  background: var(--sand);
  border-radius: 220px 220px 20px 20px;
  box-shadow: var(--shadow-lg);
}

.image-frame--tall {
  width: min(100%, 470px);
  margin-left: auto;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  object-position: center;
}

.intro__note {
  position: absolute;
  bottom: 22px;
  left: -18px;
  display: flex;
  width: 265px;
  align-items: center;
  gap: 17px;
  padding: 22px;
  color: var(--white);
  background: var(--coral);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.intro__note-number {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
}

.intro__note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
}

.intro__note strong {
  font-size: 0.94rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(45px, 6vw, 75px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.spaces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(260px, 360px));
  gap: 18px;
}

.space-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.space-card--large {
  grid-row: span 2;
}

.space-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.space-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(22, 14, 12, 0.82) 100%);
}

.space-card:hover img {
  transform: scale(1.045);
}

.space-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px;
}

.space-card__overlay span {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffd0c8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.space-card__overlay h3 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.space-card__overlay p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.stay {
  overflow: hidden;
}

.stay::before {
  position: absolute;
  top: 12%;
  right: -150px;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(239, 112, 106, 0.12), transparent 68%);
  border-radius: 50%;
}

.stay__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 0.95fr);
  gap: clamp(65px, 9vw, 135px);
}

.stay__media {
  position: relative;
}

.stay__media > img {
  width: 100%;
  border-radius: 240px 240px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.stay__badge {
  position: absolute;
  right: -28px;
  bottom: 32px;
  display: grid;
  width: 168px;
  height: 168px;
  place-content: center;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: var(--olive);
  border: 7px solid var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.stay__badge strong,
.stay__badge span {
  display: block;
}

.stay__badge strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.stay__badge span {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay__copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.stay__copy .lead {
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 700;
}

.stay__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.structure {
  overflow: hidden;
}

.structure::before,
.structure::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.structure::before {
  top: -260px;
  right: -160px;
  width: 640px;
  height: 640px;
}

.structure::after {
  bottom: -340px;
  left: -220px;
  width: 720px;
  height: 720px;
}

.structure__heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 60px;
  margin-bottom: 65px;
}

.structure__heading h2 {
  margin-bottom: 0;
}

.structure__heading > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.structure__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.feature-card {
  min-height: 285px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.85rem;
}

.structure__notice {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: 42px;
  padding: 30px 34px;
  background: rgba(109, 44, 41, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: var(--radius-md);
}

.structure__notice h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.structure__notice p {
  max-width: 840px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.structure__notice .button {
  flex: 0 0 auto;
}

.capacity__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.2fr);
  gap: clamp(60px, 8vw, 120px);
}

.capacity__copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.capacity__copy strong {
  color: var(--coral-deep);
}

.capacity__copy .button {
  margin-top: 15px;
}

.capacity__images {
  position: relative;
  min-height: 650px;
}

.capacity__image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
}

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

.capacity__image--main {
  top: 0;
  right: 0;
  width: 86%;
  height: 500px;
  border-radius: 220px 220px 18px 18px;
}

.capacity__image--secondary {
  bottom: 0;
  left: 0;
  width: 39%;
  height: 390px;
  border: 9px solid var(--ivory);
  border-radius: 18px;
}

.destination {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.destination__media,
.destination__media img,
.destination__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.destination__media img {
  object-fit: cover;
  object-position: center 47%;
}

.destination__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 16, 13, 0.92) 0%, rgba(24, 16, 13, 0.74) 46%, rgba(24, 16, 13, 0.2) 82%);
}

.destination__content {
  padding-top: 110px;
  padding-bottom: 110px;
}

.destination__content h2 {
  max-width: 880px;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
}

.destination__content p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.83);
}

.destination__content .button {
  margin-top: 18px;
}

.gallery-section {
  background: var(--ivory);
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 255px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--sand);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

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

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

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery__item--portrait {
  background: #ead8d3;
}

.gallery__item--portrait img {
  object-fit: contain;
  object-position: center;
}

.gallery__item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(22, 14, 12, 0.65));
}

.gallery__item span {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery__item:hover img {
  filter: saturate(1.04);
  transform: scale(1.04);
}

.gallery-section__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 30px 34px;
  background: var(--sand);
  border-radius: var(--radius-md);
}

.gallery-section__cta p {
  margin: 0;
  color: var(--ink-soft);
}

.calendar-section {
  overflow: hidden;
}

.calendar-shell {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.calendar-shell::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  content: "Carregando calendário…";
  font-size: 0.82rem;
}

.calendar-shell iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 760px;
  background: var(--white);
  border: 0;
}

.calendar-section__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: 28px;
  padding: 30px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.calendar-section__cta h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.calendar-section__cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.calendar-section__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.process__grid li {
  min-height: 280px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process__grid li > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 55px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.process__grid h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.process__grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(60px, 10vw, 145px);
}

.faq__heading {
  position: sticky;
  top: 130px;
}

.faq__heading > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq__heading .text-link {
  margin-top: 15px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 25px 52px 25px 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 1px;
  content: "";
  background: var(--coral-deep);
  transition: transform 180ms ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 720px;
  margin: -2px 52px 26px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 10vw, 150px) 0;
  color: var(--white);
  isolation: isolate;
}

.contact__media,
.contact__media img,
.contact__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.contact__media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8);
}

.contact__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 16, 13, 0.95) 0%, rgba(24, 16, 13, 0.84) 48%, rgba(24, 16, 13, 0.63) 100%);
}

.contact__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(60px, 9vw, 130px);
}

.contact__copy h2 {
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.contact__details {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact__details a {
  display: grid;
  gap: 2px;
}

.contact__details span {
  color: #ffcfc7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__details strong {
  font-size: 0.94rem;
}

.contact-card {
  padding: clamp(30px, 4vw, 48px);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.contact-card__label {
  margin-bottom: 14px;
  color: var(--coral-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.contact-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.contact-card li {
  position: relative;
  padding: 0 0 14px 30px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.contact-card li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-card__note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.site-footer {
  padding: 80px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  background: #251c19;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 0.85fr;
  gap: 55px;
  padding-bottom: 62px;
}

.footer__brand img {
  width: 230px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
}

.footer__brand p {
  max-width: 330px;
}

.footer__grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer__grid a,
.footer__grid p {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  line-height: 1.75;
}

.footer__grid a:hover {
  color: #ffd0c9;
}

.footer__grid .text-link {
  display: inline-flex;
  color: #ffd0c9;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 19px 0 14px;
  color: var(--white);
  background: #208c5a;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(24, 91, 59, 0.3);
  font-size: 0.76rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
  background: #19784c;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  fill: currentColor;
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(17, 11, 9, 0.93);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  display: grid;
  max-height: 88vh;
  place-items: center;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox figcaption {
  margin-top: 13px;
  font-size: 0.8rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.66rem;
  }

  .brand {
    width: 170px;
  }

  .quick-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .capacity__grid {
    grid-template-columns: 0.85fr 1fr;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 72px;
  }

  .topbar {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 0;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: rgba(45, 37, 34, 0.2);
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 30px 38px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 24px;
  }

  .intro__grid,
  .stay__grid,
  .capacity__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid,
  .stay__grid,
  .capacity__grid,
  .faq__grid,
  .contact__grid {
    gap: 60px;
  }

  .intro__visual {
    width: min(100%, 570px);
    min-height: auto;
    margin-inline: auto;
  }

  .image-frame--tall {
    margin-inline: auto;
  }

  .intro__note {
    left: 0;
  }

  .stay__media {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .structure__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capacity__images {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .faq__heading {
    position: static;
  }

  .contact__copy {
    max-width: 700px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 145px;
    height: 56px;
    padding: 7px 9px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__media img {
    object-position: 42% 52%;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(21, 13, 11, 0.88) 0%, rgba(22, 14, 12, 0.48) 58%, rgba(18, 12, 10, 0.34) 100%),
      linear-gradient(90deg, rgba(22, 14, 12, 0.35), transparent);
  }

  .hero__content {
    align-self: end;
    padding-top: 150px;
    padding-bottom: 115px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(4rem, 19vw, 5.7rem);
    line-height: 0.84;
  }

  .hero__lead {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .quick-facts {
    margin-top: 0;
  }

  .quick-facts .container {
    width: 100%;
  }

  .quick-facts__grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(55, 40, 34, 0.08);
  }

  .quick-facts article {
    min-height: 128px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 21px 16px;
  }

  .quick-facts article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .quick-facts article:nth-child(even) {
    border-right: 0;
  }

  .quick-facts strong {
    font-size: 0.78rem;
  }

  .quick-facts small {
    font-size: 0.65rem;
  }

  .intro {
    padding-top: 95px;
  }

  .intro__grid {
    gap: 48px;
  }

  .intro__visual {
    padding-bottom: 50px;
  }

  .image-frame {
    border-radius: 160px 160px 16px 16px;
  }

  .intro__note {
    bottom: 0;
    width: 240px;
  }

  .spaces__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .space-card,
  .space-card--large {
    min-height: 430px;
    grid-row: auto;
  }

  .space-card:not(.space-card--large) {
    min-height: 340px;
  }

  .space-card__overlay {
    padding: 26px;
  }

  .stay__media > img {
    border-radius: 160px 160px 18px 18px;
  }

  .stay__badge {
    right: -4px;
    bottom: -32px;
    width: 140px;
    height: 140px;
    border-width: 5px;
  }

  .stay__copy {
    padding-top: 20px;
  }

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

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

  .feature-card {
    min-height: auto;
    padding: 30px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .feature-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card span {
    margin-bottom: 16px;
  }

  .structure__notice {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
  }

  .structure__notice .button {
    width: 100%;
  }

  .capacity__images {
    min-height: 520px;
  }

  .capacity__image--main {
    width: 94%;
    height: 380px;
    border-radius: 150px 150px 15px 15px;
  }

  .capacity__image--secondary {
    width: 43%;
    height: 300px;
    border-width: 6px;
  }

  .destination {
    min-height: 740px;
  }

  .destination__media img {
    object-position: 62% center;
  }

  .destination__shade {
    background: linear-gradient(90deg, rgba(24, 16, 13, 0.94), rgba(24, 16, 13, 0.68));
  }

  .destination__content h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .gallery {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery__item--portrait {
    grid-column: span 2;
  }

  .gallery-section__cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .gallery-section__cta .button {
    width: 100%;
  }

  .calendar-shell,
  .calendar-shell iframe {
    min-height: 680px;
  }

  .calendar-section__cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .calendar-section__actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-section__actions .button {
    width: 100%;
  }

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

  .process__grid li {
    min-height: 0;
  }

  .process__grid li > span {
    margin-bottom: 28px;
  }

  .faq summary {
    padding-right: 42px;
  }

  .faq details p {
    margin-right: 22px;
  }

  .contact__grid {
    gap: 42px;
  }

  .contact-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 13px;
    bottom: 13px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 430px) {
  .quick-facts__icon {
    width: 38px;
    height: 38px;
  }

  .gallery {
    grid-auto-rows: 205px;
  }

  .gallery__item:not(.gallery__item--wide) span {
    font-size: 0.6rem;
  }

  .capacity__images {
    min-height: 460px;
  }

  .capacity__image--main {
    height: 330px;
  }

  .capacity__image--secondary {
    height: 250px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== V8: navegação, hospedagem ampliada e locação organizada ===== */
body {
  overflow-x: clip;
}

.site-nav__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.site-nav__actions .button {
  white-space: nowrap;
}

.button--calendar {
  color: currentColor !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: currentColor;
  box-shadow: none;
}

.button--calendar:hover {
  color: var(--ink) !important;
  background: var(--white);
  border-color: var(--white);
}

.site-header.is-scrolled .button--calendar {
  color: var(--ink) !important;
  background: transparent;
  border-color: rgba(45, 37, 34, 0.34);
}

.site-header.is-scrolled .button--calendar:hover {
  color: var(--white) !important;
  background: var(--ink);
  border-color: var(--ink);
}

/* Hospedagem */
.stay__grid--expanded {
  align-items: start;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(52px, 7vw, 96px);
}

.stay__copy h2 {
  max-width: 720px;
  font-size: clamp(3.2rem, 5.25vw, 5.6rem);
}

.stay-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 250px 205px 205px;
  gap: 12px;
}

.stay-gallery__item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  background: var(--sand);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.stay-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.stay-gallery__item:hover img {
  transform: scale(1.025);
}

.stay-gallery__aerial {
  grid-column: 1 / -1;
  grid-row: 1;
  border-radius: 210px 210px 20px 20px;
}

.stay-gallery__aerial img {
  object-position: center 55%;
}

.stay-gallery__aerial::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(20, 13, 11, 0.68));
}

.stay-gallery__aerial figcaption {
  position: absolute;
  right: 22px;
  bottom: 17px;
  left: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.stay-gallery__pool {
  grid-column: 1;
  grid-row: 2 / 4;
}

.stay-gallery__pool img {
  object-position: center;
}

.stay-gallery__room {
  grid-column: 2;
  grid-row: 2;
}

.stay-gallery__room img {
  object-position: center 57%;
}

.stay-gallery__bedroom {
  grid-column: 2;
  grid-row: 3;
}

.stay-gallery__bedroom img {
  object-position: center 63%;
}

.stay__media .stay__badge {
  right: -25px;
  bottom: 48px;
  z-index: 2;
}

.stay__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.stay__stats > div {
  min-width: 0;
  padding: 17px 14px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stay__stats strong,
.stay__stats span {
  display: block;
}

.stay__stats strong {
  margin-bottom: 4px;
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.stay__stats span {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.stay__types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}

.stay__types article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(55, 40, 34, 0.05);
}

.stay__type-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--coral-deep);
  background: var(--coral-soft);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay__types h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 2.2rem;
}

.stay__types p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.65;
}

.stay__types p strong {
  color: var(--ink);
}

.stay__amenities {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.stay__amenities li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
}

.stay__amenities li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "✓";
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.stay__amenities strong {
  color: var(--ink);
  font-size: 0.83rem;
}

.stay__amenities span {
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.55;
}

.stay__availability {
  margin-bottom: 25px !important;
  padding: 13px 15px;
  color: var(--ink) !important;
  background: #fff6ef;
  border-left: 3px solid var(--coral);
  border-radius: 0 10px 10px 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

/* O que a locação oferece */
.structure__heading {
  align-items: start;
}

.structure__heading h2 {
  max-width: 800px;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}

.structure-overview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 20px;
}

.structure-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
}

.structure-panel--included {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.structure-panel--custom {
  color: var(--white);
  background: rgba(101, 39, 37, 0.22);
  backdrop-filter: blur(8px);
}

.structure-panel__kicker {
  margin-bottom: 12px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.structure-panel--included .structure-panel__kicker {
  color: var(--coral-deep);
}

.structure-panel--custom .structure-panel__kicker {
  color: #ffe5df;
}

.structure-panel h3 {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
  line-height: 1;
}

.structure-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.structure-list li {
  position: relative;
}

.structure-list--included li {
  min-height: 76px;
  padding: 16px 0 16px 38px;
  border-top: 1px solid var(--line);
}

.structure-list--included li::before {
  position: absolute;
  top: 19px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.structure-list--included strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.88rem;
}

.structure-list--included p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.structure-list--custom {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.structure-list--custom li {
  padding: 15px 0 15px 28px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.structure-list--custom li::before {
  position: absolute;
  top: 18px;
  left: 0;
  content: "+";
  color: #ffe2dc;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.structure-panel__freedom {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  line-height: 1.65;
}

.structure__notice {
  background: rgba(91, 31, 29, 0.26);
}

/* Mobile and multi-screen refinements */
@media (max-width: 1220px) {
  .site-nav {
    gap: 13px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.65rem;
  }

  .site-nav__actions {
    gap: 8px;
  }

  .site-nav__actions .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.75rem;
  }

  .brand {
    width: 166px;
  }

  .stay__grid--expanded {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 52px;
  }
}

@media (max-width: 940px) {
  .site-nav__actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .site-nav__actions .button,
  .site-nav .site-nav__actions .button {
    width: 100%;
    margin-top: 0;
  }

  .site-nav__actions .button--calendar {
    color: var(--ink) !important;
    background: transparent;
    border-color: rgba(45, 37, 34, 0.35);
  }

  .stay__grid--expanded {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stay__copy {
    order: 1;
    max-width: 760px;
    margin-inline: auto;
  }

  .stay__media {
    order: 2;
    width: min(100%, 760px);
  }

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

@media (max-width: 720px) {
  .stay__copy h2 {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

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

  .stay__stats > div:last-child {
    grid-column: 1 / -1;
  }

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

  .stay-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 230px 245px 180px;
    gap: 9px;
  }

  .stay-gallery__aerial {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 135px 135px 16px 16px;
  }

  .stay-gallery__pool {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .stay-gallery__room {
    grid-column: 1;
    grid-row: 3;
  }

  .stay-gallery__bedroom {
    grid-column: 2;
    grid-row: 3;
  }

  .stay-gallery__item {
    border-radius: 14px;
  }

  .stay__media .stay__badge {
    right: 8px;
    bottom: 147px;
    width: 126px;
    height: 126px;
  }

  .structure__heading h2 {
    font-size: clamp(2.8rem, 12.5vw, 4rem);
  }

  .structure-panel {
    padding: 27px 22px;
    border-radius: 18px;
  }

  .structure-panel h3 {
    margin-bottom: 22px;
  }
}

@media (max-width: 430px) {
  .site-nav__actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 4.7rem);
  }

  .stay-gallery {
    grid-template-rows: 205px 215px 155px;
  }

  .stay-gallery__aerial figcaption {
    right: 15px;
    bottom: 13px;
    left: 15px;
    font-size: 0.62rem;
  }

  .stay__media .stay__badge {
    bottom: 126px;
    width: 112px;
    height: 112px;
    padding: 12px;
  }

  .stay__badge strong {
    font-size: 1.12rem;
  }

  .stay__badge span {
    font-size: 0.52rem;
  }

  .stay__stats > div {
    padding: 14px 12px;
  }

  .stay__types article {
    padding: 20px 18px;
  }

  .structure-list--included li {
    padding-left: 34px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero__content {
    padding-bottom: 104px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .stay-gallery {
    grid-template-rows: 185px 200px 145px;
  }

  .stay__media .stay__badge {
    display: none;
  }

  .structure-panel {
    padding: 24px 18px;
  }
}

/* Ajuste final da galeria de hospedagem em telas amplas */
@media (min-width: 941px) {
  .stay-gallery {
    grid-template-rows: 300px 230px 230px;
  }

  .stay-gallery__aerial {
    border-radius: 24px;
  }

  .stay-gallery__aerial img {
    object-position: center 49%;
  }
}

/* Correção do menu móvel após os ajustes de navegação */
@media (max-width: 940px) {
  .site-nav {
    gap: 0;
    overflow-y: auto;
    background: rgba(255, 253, 249, 0.995);
  }

  .site-nav > a:not(.button) {
    padding: 14px 0;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.05;
    text-transform: none;
  }
}

@media (max-width: 430px) {
  .site-nav > a:not(.button) {
    font-size: 1.7rem;
  }
}

/* ===== V9: fotos de hospedagem mais amplas e processo do "sim" ===== */
@media (min-width: 941px) {
  .stay__grid--expanded {
    grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.86fr);
    gap: clamp(48px, 5.5vw, 78px);
  }

  .stay-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    align-items: start;
  }

  .stay-gallery__aerial,
  .stay-gallery__pool,
  .stay-gallery__room,
  .stay-gallery__bedroom {
    grid-row: auto;
  }

  .stay-gallery__aerial {
    grid-column: 1 / -1;
    aspect-ratio: 1208 / 1017;
  }

  .stay-gallery__pool {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .stay-gallery__room {
    grid-column: 1;
    aspect-ratio: 5 / 6;
  }

  .stay-gallery__bedroom {
    grid-column: 2;
    aspect-ratio: 6 / 7;
  }

  .stay-gallery__item img {
    object-fit: cover;
    object-position: center;
  }

  .stay-gallery__aerial img,
  .stay-gallery__pool img,
  .stay-gallery__room img,
  .stay-gallery__bedroom img {
    object-position: center;
  }
}

.stay__media .stay__badge {
  position: static;
  display: flex;
  width: max-content;
  max-width: 100%;
  height: auto;
  margin: 18px 0 0 auto;
  align-items: baseline;
  gap: 9px;
  padding: 13px 19px;
  border-width: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.stay__media .stay__badge strong {
  font-size: 1.28rem;
  white-space: nowrap;
}

.stay__media .stay__badge span {
  margin-top: 0;
  white-space: nowrap;
}

.process__grid li {
  display: flex;
  min-height: 345px;
  flex-direction: column;
}

.process__grid li > span {
  margin-bottom: 38px;
}

.process__grid h3 {
  font-size: clamp(1.9rem, 2.35vw, 2.55rem);
  line-height: 1.04;
}

.process__grid p {
  margin-top: auto;
  padding-top: 14px;
}

@media (max-width: 940px) {
  .stay-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    align-items: start;
  }

  .stay-gallery__aerial,
  .stay-gallery__pool,
  .stay-gallery__room,
  .stay-gallery__bedroom {
    grid-row: auto;
  }

  .stay-gallery__aerial {
    grid-column: 1 / -1;
    aspect-ratio: 1208 / 1017;
  }

  .stay-gallery__pool {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .stay-gallery__room {
    grid-column: 1;
    aspect-ratio: 5 / 6;
  }

  .stay-gallery__bedroom {
    grid-column: 2;
    aspect-ratio: 6 / 7;
  }

  .stay-gallery__item img,
  .stay-gallery__aerial img,
  .stay-gallery__pool img,
  .stay-gallery__room img,
  .stay-gallery__bedroom img {
    object-fit: cover;
    object-position: center;
  }

  .stay__media .stay__badge {
    position: static;
    width: max-content;
    height: auto;
    margin: 14px 0 0 auto;
  }

  .process__grid li {
    min-height: 0;
  }

  .process__grid p {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .stay-gallery {
    grid-template-columns: 1fr;
  }

  .stay-gallery__aerial,
  .stay-gallery__pool,
  .stay-gallery__room,
  .stay-gallery__bedroom {
    grid-column: 1;
  }

  .stay-gallery__room {
    aspect-ratio: 5 / 6;
  }

  .stay-gallery__bedroom {
    aspect-ratio: 6 / 7;
  }

  .stay__media .stay__badge {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 14px;
  }

  .stay__media .stay__badge strong {
    font-size: 1.08rem;
  }

  .stay__media .stay__badge span {
    font-size: 0.5rem;
  }

  .process__grid h3 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
}


/* ===== V12: nova galeria do Village Mutá ===== */
.stay-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  grid-template-rows: auto;
  gap: 12px;
  align-items: stretch;
}

.stay-gallery__aerial,
.stay-gallery__garden,
.stay-gallery__entrance,
.stay-gallery__houses,
.stay-gallery__pool,
.stay-gallery__accommodation {
  min-width: 0;
  border-radius: 20px;
}

.stay-gallery__aerial {
  grid-column: 1 / -1;
  grid-row: 1;
  aspect-ratio: 1208 / 1017;
  border-radius: 24px;
}

.stay-gallery__garden {
  grid-column: 1 / -1;
  grid-row: 2;
  aspect-ratio: 16 / 9;
}

.stay-gallery__entrance {
  grid-column: 1;
  grid-row: 3 / 5;
  aspect-ratio: 9 / 16;
}

.stay-gallery__houses {
  grid-column: 2;
  grid-row: 3;
  aspect-ratio: 16 / 9;
}

.stay-gallery__pool {
  grid-column: 2;
  grid-row: 4;
  aspect-ratio: 4 / 3;
}

.stay-gallery__accommodation {
  grid-column: 1 / -1;
  grid-row: 5;
  aspect-ratio: 1600 / 1143;
}

.stay-gallery__item img,
.stay-gallery__aerial img,
.stay-gallery__garden img,
.stay-gallery__entrance img,
.stay-gallery__houses img,
.stay-gallery__pool img,
.stay-gallery__accommodation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 560px) {
  .stay-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stay-gallery__aerial,
  .stay-gallery__garden,
  .stay-gallery__entrance,
  .stay-gallery__houses,
  .stay-gallery__pool,
  .stay-gallery__accommodation {
    grid-column: 1;
    grid-row: auto;
    border-radius: 14px;
  }

  .stay-gallery__aerial {
    aspect-ratio: 1208 / 1017;
  }

  .stay-gallery__garden,
  .stay-gallery__houses {
    aspect-ratio: 16 / 9;
  }

  .stay-gallery__entrance {
    aspect-ratio: 9 / 16;
  }

  .stay-gallery__pool {
    aspect-ratio: 4 / 3;
  }

  .stay-gallery__accommodation {
    aspect-ratio: 1600 / 1143;
  }
}
