:root {
  --teal: #0a3a3a;
  --teal-deep: #062828;
  --teal-soft: #0f4f4f;
  --gold: #c4a777;
  --gold-deep: #a88a58;
  --gold-soft: #e8d9c0;
  --white: #ffffff;
  --ink: #0a3a3a;
  --muted: #4a6464;
  --line: rgba(10, 58, 58, 0.12);
  --max: 1120px;
  --nav: 4.25rem;
  --radius: 1rem;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(6, 40, 40, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(196, 167, 119, 0.18), transparent 55%),
    linear-gradient(180deg, #f7f5f1 0%, #ffffff 40%, #f3f6f6 100%);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--gold); }
h3 { font-size: 1.2rem; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-soft); text-underline-offset: 0.15em; }
a:hover { color: var(--gold-deep); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--white); padding: 0.5rem 0.75rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.center { text-align: center; }
.mt-lg { margin-top: 2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-family: var(--display);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--teal-deep); }
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--teal); border: 2px solid rgba(10,58,58,0.2); }
.btn-ghost-dark { background: transparent; color: var(--teal); border: 2px solid var(--line); }
.text-link { font-weight: 700; text-decoration: none; color: var(--gold-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.25rem; min-height: var(--nav); }
.nav-links > a,
.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-cta,
.nav-links > a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold) !important;
  color: var(--teal-deep) !important;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.85rem 1.35rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(168, 138, 88, 0.28);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links > a.nav-cta:hover {
  background: var(--gold-deep) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(168, 138, 88, 0.35);
}
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 60;
  padding: 0;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer-head,
.nav-backdrop { display: none; }

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  padding-block: 0.25rem;
}
.nav-item__caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
}
.nav-item.is-open .nav-item__caret,
.nav-item:hover .nav-item__caret {
  transform: rotate(225deg) translateY(-1px);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.35rem);
  min-width: 15rem;
  max-width: min(20rem, calc(100vw - 2rem));
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  padding: 0.55rem;
  margin-top: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 70;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a,
.nav-dropdown__empty {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.55rem;
  text-decoration: none;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(10, 58, 58, 0.06);
  color: var(--gold-deep);
}
.nav-dropdown__all {
  color: var(--gold-deep) !important;
  border-bottom: 1px solid var(--line);
  border-radius: 0.55rem 0.55rem 0 0 !important;
  margin-bottom: 0.25rem;
}
.nav-dropdown__empty {
  color: var(--muted);
  font-weight: 500;
  white-space: normal;
}
body.nav-open { overflow: hidden; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - var(--nav));
  max-height: 860px;
  background: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #0a3a3a, #c4a777);
  overflow: hidden;
}
.hero--has-image .hero-bg {
  background: #0a3a3a;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
  animation: ken 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.96) 18%,
    rgba(255, 255, 255, 0.82) 32%,
    rgba(255, 255, 255, 0.45) 46%,
    rgba(255, 255, 255, 0.12) 56%,
    rgba(255, 255, 255, 0) 68%
  );
}
.hero:not(.hero--has-image) .hero-veil {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 70%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(40rem, 54%);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  animation: fadeUp 0.8s var(--ease) both;
}
.eyebrow,
.hero-seo-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font);
  line-height: 1.4;
  color: var(--muted);
  margin: 0 0 1rem;
}
.hero-seo-title__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.hero-seo-title__link:hover,
.hero-seo-title__link:focus-visible {
  color: var(--teal);
  text-decoration: none;
  opacity: 0.9;
}
.hero-tagline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.75rem, 6.2vw, 4.35rem);
  line-height: 1.08;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero-tagline span { color: var(--teal); }
.lead,
.hero-lead {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}
.hero-lead {
  max-width: 22.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-teal { background: var(--teal); color: var(--white); position: relative; overflow: hidden; }
.section-teal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.04) 40.5%, transparent 41%),
    linear-gradient(45deg, transparent 55%, rgba(255,255,255,0.03) 55.5%, transparent 56%);
  background-size: 180px 180px;
  pointer-events: none;
}
.section-teal > .wrap { position: relative; z-index: 1; }
.section-teal h2 { color: var(--white); text-align: center; }
.section-lead { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.82); }
.section:not(.section-teal) .section-lead { color: var(--muted); }
.lead-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.lead-link:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold-soft);
}
.section:not(.section-teal) .lead-link {
  text-decoration-color: rgba(10, 58, 58, 0.28);
}
.section:not(.section-teal) .lead-link:hover {
  color: var(--gold-deep);
  text-decoration-color: var(--gold-deep);
}

.rooms-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.room-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.4rem;
  animation: fadeUp 0.7s var(--ease) both;
}
.room-card:nth-child(2) { animation-delay: 0.1s; }
.room-card:nth-child(3) { animation-delay: 0.2s; }
.room-card-media {
  aspect-ratio: 16/11;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, #163f3f, #0a2a2a 50%, #c4a77755);
}
.room-card h3 { color: var(--white); }
.room-card h3 a { color: inherit; text-decoration: none; }
.room-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.about-split {
  background: var(--white);
  overflow: hidden;
}
.about-copy h2 { text-align: left; color: var(--gold); max-width: 18ch; }
.about-copy p { color: var(--teal); line-height: 1.7; }
.about-copy strong { color: var(--teal-deep); }
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(360px, 50vw, 560px);
  padding: 0.5rem 0;
}
.about-composition {
  position: relative;
  width: min(100%, 460px);
  height: clamp(400px, 56vw, 540px);
}
.about-glow {
  position: absolute;
  left: 18%;
  top: 12%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 167, 119, 0.28) 0%, rgba(10, 58, 58, 0.06) 42%, transparent 72%);
  z-index: 0;
  filter: blur(10px);
  animation: aboutGlow 7s ease-in-out infinite;
  pointer-events: none;
}
.about-bar {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}
.about-bar--gold {
  left: 0;
  bottom: 6%;
  width: 22%;
  height: 68%;
  background: linear-gradient(165deg, #e0c9a0 0%, var(--gold) 40%, var(--gold-deep) 100%);
  border-radius: 999px;
  z-index: 1;
  box-shadow:
    0 18px 36px rgba(168, 138, 88, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: aboutBarGold 6.5s ease-in-out infinite;
}
.about-bar--teal {
  left: 8%;
  bottom: 2%;
  width: 30%;
  height: 86%;
  background: linear-gradient(165deg, #146060 0%, var(--teal) 48%, var(--teal-deep) 100%);
  border-radius: 999px;
  z-index: 2;
  box-shadow:
    0 22px 40px rgba(6, 40, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: aboutBarTeal 7.5s ease-in-out infinite;
}
.about-photo {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 78%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: #e8ecec;
  z-index: 3;
  box-shadow:
    0 24px 48px rgba(6, 40, 40, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.5) inset;
  animation: aboutPhotoFloat 8s ease-in-out infinite;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.about-composition:hover .about-photo img {
  transform: scale(1.045);
}
.about-composition:hover .about-bar--gold {
  transform: translateY(-6px);
}
.about-composition:hover .about-bar--teal {
  transform: translateY(-4px);
}
.steps-photo {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #c4a777, #0a3a3a);
  min-height: 280px;
}

.contact-band {
  overflow: hidden;
}
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.contact-copy {
  max-width: 34rem;
}
.contact-copy h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 1rem;
  max-width: 18ch;
  line-height: 1.12;
}
.contact-copy > p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36ch;
}
.contact-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.contact-copy__wa {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.contact-copy__wa:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.nap-inline {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
}
.nap-inline a { color: var(--gold-soft); }

.contact-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(240px, 38vw, 380px);
}
.contact-brand__stage {
  position: relative;
  width: min(100%, 460px);
  min-height: clamp(220px, 34vw, 340px);
  display: grid;
  place-items: center;
  padding: 1.5rem 0.75rem;
}
.contact-brand__glow {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 167, 119, 0.38) 0%, rgba(196, 167, 119, 0.08) 48%, transparent 72%);
  filter: blur(10px);
  animation: aboutGlow 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.contact-brand__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}
.contact-brand__orb--a {
  width: 4.5rem;
  height: 4.5rem;
  top: 6%;
  right: 8%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: contactOrbA 8s ease-in-out infinite;
}
.contact-brand__orb--b {
  width: 2.75rem;
  height: 2.75rem;
  bottom: 10%;
  left: 4%;
  background: rgba(196, 167, 119, 0.28);
  animation: contactOrbB 6.5s ease-in-out infinite;
}
.contact-brand__bar {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}
.contact-brand__bar--gold {
  left: 2%;
  bottom: 6%;
  width: 18%;
  height: 78%;
  background: linear-gradient(165deg, #e0c9a0 0%, var(--gold) 42%, var(--gold-deep) 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  animation: aboutBarGold 6.5s ease-in-out infinite;
}
.contact-brand__bar--soft {
  left: 10%;
  bottom: 2%;
  width: 16%;
  height: 88%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: aboutBarTeal 7.5s ease-in-out infinite;
}
.contact-brand__logo {
  position: relative;
  z-index: 3;
  width: min(100%, 400px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  animation: aboutPhotoFloat 8s ease-in-out infinite;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.35))
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

@keyframes contactOrbA {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.45; }
  50% { transform: translateY(-12px) scale(1.08); opacity: 0.75; }
}
@keyframes contactOrbB {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(8px); }
}

.steps-section {
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(196, 167, 119, 0.16), transparent 60%),
    var(--white);
}
.steps-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.steps-head h2 {
  color: var(--gold);
  text-align: center;
}
.steps-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.steps-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 167, 119, 0.25), var(--gold), rgba(196, 167, 119, 0.25));
  z-index: 0;
}
.steps-timeline__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.steps-timeline__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--display);
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--white), 0 8px 20px rgba(168, 138, 88, 0.28);
}
.steps-timeline__content {
  max-width: 16rem;
}
.steps-timeline__content h3 {
  margin: 0 0 0.4rem;
  color: var(--teal);
  font-size: 1.35rem;
}
.steps-timeline__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.steps { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 1.25rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--display);
}
.steps h3 { margin: 0 0 0.25rem; color: var(--teal); }
.steps p { margin: 0; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--gold);
  color: var(--teal);
  border-radius: 1.15rem;
  padding: 1.75rem 1.45rem 1.65rem;
  box-shadow: var(--shadow);
  text-align: left;
}
.feature-card--light {
  background: var(--white);
}
.feature-card h3 {
  color: var(--teal);
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}
.feature-card p {
  margin: 0;
  color: var(--teal);
  font-size: 0.98rem;
  line-height: 1.55;
}
.feature-icon {
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 0 1rem;
  color: var(--teal);
  display: grid;
  place-items: center;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.steps { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 1.25rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--display);
}
.steps h3 { margin: 0 0 0.25rem; color: var(--teal); }
.steps p { margin: 0; color: var(--muted); }

.blog-teaser h2 { color: var(--teal); text-align: center; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.post-card {
  padding: 1.4rem;
  border-top: 3px solid var(--gold);
  background: rgba(255,255,255,0.7);
}
.post-card h3 a { color: var(--teal); text-decoration: none; }
.post-card p { color: var(--muted); }

.page-hero {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, #eef5f5, transparent);
}
.page-hero h1 { color: var(--teal); }
.page-hero p { color: var(--muted); max-width: 40rem; }

.sobre-hero.page-hero {
  padding: clamp(3rem, 6vw, 4.25rem) 0 clamp(2.75rem, 5vw, 3.75rem);
  background: linear-gradient(180deg, #e8f2f2 0%, #eef5f5 55%, #f3f7f7 100%);
  border-bottom: 1px solid rgba(10, 58, 58, 0.06);
}
.sobre-hero .eyebrow { color: var(--gold-deep); }
.sobre-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.sobre-hero__copy .eyebrow { color: var(--gold-deep); }
.sobre-hero h1,
.sobre-hero__copy h1 { max-width: 16ch; }
.sobre-hero__lead {
  font-size: 1.12rem;
  max-width: 38rem;
  margin: 0 0 1.5rem;
}
.sobre-hero__media {
  min-width: 0;
}
.video-spot {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  background: #0a2a2a;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}
.video-spot__poster,
.video-spot__fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-spot__fallback {
  background:
    radial-gradient(circle at 30% 40%, rgba(196, 167, 119, 0.35), transparent 55%),
    linear-gradient(145deg, #0f4f4f, #062828);
}
.video-spot__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  border: 0;
  background: rgba(6, 40, 40, 0.28);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.video-spot__play:hover {
  background: rgba(6, 40, 40, 0.4);
}
.video-spot__play-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  position: relative;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.video-spot__play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent var(--teal-deep);
}
.video-spot__play:hover .video-spot__play-icon {
  transform: scale(1.06);
  background: var(--gold-deep);
}
.video-spot__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
}
.video-spot__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-spot.is-playing .video-spot__poster {
  visibility: hidden;
}
.video-spot--contact {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  aspect-ratio: 16 / 11;
}
.video-spot--sobre {
  width: 100%;
}
.sobre-intro {
  background: #ffffff;
  padding: clamp(3.75rem, 8vw, 5.75rem) 0;
}
.sobre-intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.sobre-intro__copy h2 {
  text-align: left;
  color: var(--gold);
  max-width: 18ch;
}
.sobre-intro__copy p { color: var(--teal); line-height: 1.7; }
.sobre-intro__card {
  background: #f7f9f9;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.6rem 1.4rem;
  box-shadow: none;
}
.sobre-intro__card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.sobre-intro__card p {
  margin: 0 0 0.55rem;
  color: var(--teal);
}
.sobre-section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}
.sobre-section-head h2 {
  color: var(--gold);
  text-align: center;
}
.sobre-section-head p {
  margin: 0;
  color: var(--muted);
}
.sobre-section-head--light h2 { color: var(--white); }
.sobre-section-head--light p { color: rgba(255, 255, 255, 0.82); }

.rooms-track--light .room-card--light {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(6, 40, 40, 0.08);
}
.room-card--light h3,
.room-card--light h3 a { color: var(--teal); }
.room-card--light p { color: var(--muted); }
.room-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.85rem;
}
.room-card-media--photo {
  overflow: hidden;
  background: #e8ecec;
}
.room-card-media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambiente-list {
  display: grid;
  gap: 2.5rem;
}
#ambientes {
  scroll-margin-top: calc(var(--nav) + 1rem);
}
.ambiente-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.ambiente-block__head h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.ambiente-block__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.ambiente-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.ambiente-gallery__item {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.08);
}
.ambiente-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.ambiente-gallery__item:hover img {
  transform: scale(1.04);
}

.sobre-cta__box {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(196, 167, 119, 0.18), transparent 60%),
    var(--white);
  border: 1px solid var(--line);
}
.sobre-cta__box h2 {
  color: var(--gold);
  text-align: center;
}
.sobre-cta__box h2 .lead-link {
  color: inherit;
  font-weight: inherit;
  text-decoration-color: rgba(168, 138, 88, 0.45);
}
.sobre-cta__box h2 .lead-link:hover {
  color: var(--gold-deep);
  text-decoration-color: var(--gold-deep);
}
.sobre-cta__box p {
  color: var(--muted);
  margin: 0 auto 1.5rem;
}
.sobre-cta__box .hero-actions {
  justify-content: center;
}
.prose { max-width: 44rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--gold-deep); font-weight: 600; }

.form-card {
  background: var(--gold);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  max-width: 32rem;
}
.form-card label { display: block; font-weight: 700; color: var(--teal-deep); margin: 0.85rem 0 0.35rem; }
.form-card input, .form-card textarea {
  width: 100%;
  border: 0;
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--teal-deep);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card .btn { margin-top: 1.2rem; background: var(--white); color: var(--teal); width: 100%; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.flash-ok {
  background: #e7f7ee;
  color: #146c43;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.flash-err {
  background: #fde8e8;
  color: #9b1c1c;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.contact-page__info { max-width: none; }
.contact-map__title {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.contact-map {
  position: relative;
  display: block;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  background: #e8ecec;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(6, 40, 40, 0.2);
  color: inherit;
}
.contact-map__frame {
  display: block;
  width: 100%;
  height: min(420px, 58vw);
  border: 0;
  pointer-events: none;
}

.site-footer {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(196, 167, 119, 0.16), transparent 55%),
    radial-gradient(700px 380px at 100% 40%, rgba(196, 167, 119, 0.08), transparent 50%),
    linear-gradient(165deg, #073333 0%, var(--teal-deep) 48%, #041f1f 100%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(196, 167, 119, 0.22);
}
.footer-glow {
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 167, 119, 0.18), transparent 68%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.75rem, 5vw, 4rem) 0 2.5rem;
}
.footer-brand {
  max-width: 26rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1.15rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-inline: auto;
}
.footer-tagline {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 22rem;
  text-align: center;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.footer-social a {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(196, 167, 119, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover {
  background: rgba(196, 167, 119, 0.18);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-content: start;
}
.footer-heading {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.footer-list a:hover {
  color: var(--gold-soft);
}
.footer-address {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}
.footer-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 1rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}
.footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
.footer-bar p { margin: 0; }
.footer-bar__links {
  display: flex;
  gap: 1.1rem;
}
.footer-bar__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
}
.footer-bar__links a:hover {
  color: var(--gold-soft);
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 40;
  text-decoration: none;
  animation: bob 2.8s ease-in-out infinite;
}

.breadcrumbs { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--teal-soft); text-decoration: none; }

.card-list { display: grid; gap: 1rem; }
.list-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.8);
}
.list-card--room {
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1.25rem;
}
.list-card__media {
  display: block;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.list-card h2, .list-card h3 { color: var(--teal); margin: 0; font-size: 1.25rem; }
.list-card h2 a, .list-card h3 a { text-decoration: none; color: inherit; }

.sala-hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(165deg, #0a3a3a 0%, #0f4a4a 55%, #0a3030 100%);
  color: var(--white);
  overflow: hidden;
}
.sala-hero--has-image { padding: 5rem 0 3.5rem; }
.sala-hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}
.sala-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sala-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,24,0.55), rgba(7,24,24,0.92));
}
.sala-hero__copy {
  position: relative;
  z-index: 1;
}
.sala-hero__copy > * {
  max-width: 40rem;
}
.sala-hero .breadcrumbs { color: rgba(255,255,255,0.72); }
.sala-hero .breadcrumbs a { color: var(--gold); }
.sala-hero .eyebrow { color: var(--gold); }
.sala-hero h1 { color: var(--white); margin: 0.35rem 0 0.75rem; font-size: clamp(2rem, 4vw, 2.8rem); }
.sala-hero__lead { color: rgba(255,255,255,0.86); font-size: 1.08rem; margin: 0 0 1.25rem; }
.sala-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 28rem;
  width: 100%;
}
.sala-hero .hero-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  min-height: 3rem;
  white-space: normal;
  line-height: 1.2;
}
.sala-hero .hero-actions .btn:first-child {
  grid-column: 1 / -1;
}
.sala-hero .btn-ghost,
.sala-hero .btn-ghost-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}
.sala-hero .btn-ghost:hover,
.sala-hero .btn-ghost-dark:hover {
  color: var(--teal-deep);
  background: #fff;
  border-color: #fff;
}

.sala-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}
.sala-main,
.sala-main.prose {
  max-width: none;
  width: 100%;
}
.sala-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sala-figure img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.sala-tags { margin-top: 1.5rem; font-size: 0.92rem; color: var(--muted); }
.sala-tags a { color: var(--teal-soft); text-decoration: none; font-weight: 600; }
.sala-local-note { margin-top: 1.5rem; color: var(--muted); }

.sala-gallery {
  margin: 2.75rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.sala-gallery h2 {
  color: var(--teal);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.55rem;
}
.sala-gallery__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 40rem;
}
.sala-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  line-height: 0;
}
.sala-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #0a3a3a;
}
.sala-gallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.sala-gallery__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease), filter 0.3s ease;
}
.sala-gallery__trigger:hover img,
.sala-gallery__trigger:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 24, 0.82);
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: 90vh;
}
.lightbox__dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.75rem;
  background: #051010;
  display: block;
}
.lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.lightbox__nav:hover { background: var(--gold); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__counter {
  margin: 0.65rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .sala-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}
@media (max-width: 600px) {
  .sala-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

.sala-aside { display: grid; gap: 1rem; position: sticky; top: 1.25rem; }
.sala-aside-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--gold);
  box-shadow: var(--shadow);
}
.sala-aside-card h2 { color: var(--teal-deep); font-size: 1.15rem; margin: 0 0 0.65rem; }
.sala-aside-card p { color: var(--teal-deep); margin: 0 0 1.1rem; font-size: 0.95rem; }
.sala-aside-actions {
  display: grid;
  gap: 0.65rem;
}
.sala-aside-actions .btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.btn-aside-primary {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}
.btn-aside-primary:hover {
  background: var(--teal-deep);
  color: #fff;
  border-color: var(--teal-deep);
}
.btn-aside-secondary {
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid rgba(6, 40, 40, 0.35);
}
.btn-aside-secondary:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.sala-aside-card--muted { background: rgba(255,255,255,0.9); border: 1px solid var(--line); box-shadow: none; }
.sala-aside-card--muted strong { color: var(--teal); display: block; margin-bottom: 0.5rem; }
.sala-aside-card--muted p { color: var(--muted); margin: 0.25rem 0; font-size: 0.92rem; }
.sala-aside-card--muted a { color: var(--gold-deep); }

.room-card-media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.room-card-actions,
.sala-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.35rem;
}
.room-card .btn-sm,
.sala-card-actions .btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}
@media (max-width: 900px) {
  .list-card--room { grid-template-columns: 1fr; }
  .sala-layout { grid-template-columns: 1fr; }
  .sala-aside { position: static; }
  .sala-hero--has-image { padding: 4rem 0 2.5rem; }
  .sala-hero__copy {
    text-align: center;
  }
  .sala-hero__copy > * {
    max-width: none;
    margin-inline: auto;
  }
  .sala-hero .breadcrumbs {
    text-align: center;
  }
  .sala-hero .hero-actions {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
  .sala-hero .hero-actions .btn:first-child {
    grid-column: auto;
  }
  .sala-aside-actions {
    display: grid;
    gap: 0.65rem;
  }
  .sala-aside-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .sala-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sala-card-actions .btn-sm,
  .sala-card-actions .text-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@keyframes floaty {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes aboutBarGold {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-14px) scaleY(1.02); }
}
@keyframes aboutBarTeal {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes aboutPhotoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes aboutGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .about-glow,
  .about-bar--gold,
  .about-bar--teal,
  .about-photo,
  .contact-brand__glow,
  .contact-brand__orb,
  .contact-brand__bar,
  .contact-brand__mark,
  .contact-brand__logo {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .hero, .split, .rooms-track, .feature-grid, .post-grid, .contact-page {
    grid-template-columns: 1fr;
  }
  .contact-map__frame {
    height: min(340px, 70vw);
  }
  .footer-inner,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    max-width: none;
    margin-inline: auto;
  }
  .footer-cols {
    text-align: center;
    justify-items: center;
  }
  .footer-col {
    width: 100%;
  }
  .footer-list {
    justify-items: center;
  }
  .footer-bar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bar__links {
    justify-content: center;
  }
  .about-visual {
    order: -1;
    min-height: 0;
    display: flex;
    justify-content: center;
  }
  .about-composition {
    width: min(100%, 360px);
    height: 440px;
  }
  .about-copy {
    text-align: center;
  }
  .about-copy h2 {
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }
  .about-copy p {
    margin-inline: auto;
  }
  .about-copy .btn {
    margin-inline: auto;
  }
  .feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .feature-icon {
    margin-inline: auto;
  }
  .feature-card p {
    max-width: 22rem;
  }
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 28rem;
    margin-inline: auto;
  }
  .steps-timeline::before {
    top: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(196, 167, 119, 0.25), var(--gold), rgba(196, 167, 119, 0.25));
  }
  .steps-timeline__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.15rem;
    padding: 0.85rem 0 1.35rem;
  }
  .steps-timeline__content {
    max-width: none;
    padding-top: 0.35rem;
  }
  .hero {
    max-height: none;
    min-height: min(82vh, 680px);
    align-items: end;
  }
  .hero-bg img {
    object-position: center 22%;
  }
  .hero-copy {
    max-width: 100%;
    width: 100%;
    padding: 5.5rem 1.35rem 2.35rem;
    justify-content: flex-end;
  }
  .hero-veil {
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 22%,
      rgba(255, 255, 255, 0.42) 48%,
      rgba(255, 255, 255, 0.86) 72%,
      rgba(255, 255, 255, 0.97) 100%
    );
  }
  .hero-seo-title {
    color: var(--teal-deep);
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 2px 18px rgba(255, 255, 255, 0.9);
  }
  .hero-tagline {
    color: var(--gold-deep);
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 3px 20px rgba(255, 255, 255, 0.85);
  }
  .hero-tagline span {
    color: var(--teal-deep);
  }
  .hero-lead {
    max-width: 22rem;
    color: var(--teal-deep);
    font-weight: 600;
    font-size: 1.06rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 2px 14px rgba(255, 255, 255, 0.8);
  }
  .hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(10, 58, 58, 0.35);
    color: var(--teal-deep);
    font-weight: 700;
  }
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-copy {
    max-width: none;
    text-align: center;
  }
  .contact-copy h2,
  .contact-copy > p {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }
  .contact-copy__actions {
    justify-content: center;
  }
  .nap-inline {
    justify-content: center;
  }
  .contact-brand {
    min-height: 0;
    order: -1;
  }
  .contact-brand__stage {
    width: min(100%, 320px);
    height: 300px;
  }
  .sobre-intro__grid {
    grid-template-columns: 1fr;
  }
  .sobre-hero .wrap,
  .sobre-hero__copy,
  .sobre-intro .wrap {
    text-align: center;
  }
  .sobre-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .sobre-hero__media {
    order: -1;
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }
  .sobre-hero .breadcrumbs,
  .sobre-hero .eyebrow,
  .sobre-hero h1,
  .sobre-hero__copy h1,
  .sobre-hero__lead {
    margin-inline: auto;
    text-align: center;
  }
  .sobre-hero h1,
  .sobre-hero__copy h1 {
    max-width: none;
  }
  .sobre-hero .hero-actions {
    justify-content: center;
  }
  .sobre-intro__copy h2 {
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }
  .sobre-intro__copy p {
    margin-inline: auto;
  }
  .sobre-intro__card {
    text-align: center;
  }
  .contato-hero .wrap {
    text-align: center;
  }
  .contato-hero .breadcrumbs,
  .contato-hero h1,
  .contato-hero p {
    margin-inline: auto;
    text-align: center;
  }
  .contact-page__info {
    text-align: center;
  }
  .contact-map__title {
    text-align: center;
  }
  .ambiente-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-toggle { display: flex; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(6, 40, 40, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100vw, 100%);
    height: 100dvh;
    margin: 0;
    padding: 0 1.25rem 2rem;
    background:
      linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    z-index: 58;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -12px 0 40px rgba(6, 40, 40, 0.18);
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--nav);
    margin: 0 -0.25rem 0.75rem;
    padding: 0 0.25rem;
    border-bottom: 1px solid var(--line);
    color: var(--teal);
    font-family: var(--display);
    font-size: 1.15rem;
  }
  .nav-drawer-close {
    width: auto;
    min-height: 2.5rem;
    border: 0;
    background: transparent;
    color: var(--teal);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font);
    line-height: 1;
    cursor: pointer;
    padding: 0.4rem 0.2rem;
  }
  .nav-links > a,
  .nav-item__trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 0.35rem;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(10, 58, 58, 0.08);
  }
  .nav-item { width: 100%; }
  .nav-item:hover .nav-item__caret {
    transform: rotate(45deg) translateY(-1px);
  }
  .nav-item.is-open .nav-item__caret {
    transform: rotate(225deg) translateY(-1px);
  }
  .nav-dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-width: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    display: none;
    transform: none;
  }
  .nav-item.is-open .nav-dropdown {
    display: block;
    transform: none;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown a,
  .nav-dropdown__empty {
    white-space: normal;
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid rgba(10, 58, 58, 0.06);
    border-radius: 0;
  }
  .nav-dropdown__all {
    border-radius: 0 !important;
    margin-bottom: 0;
  }
  .nav-cta,
  .nav-links > a.nav-cta {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
    border-bottom: 0 !important;
    padding: 1rem 1.35rem !important;
  }
}
