:root {
  --bg: #fbf8f3;
  --surface: #ffffff;
  --surface-soft: #f3ede3;
  --surface-mist: #edf3ed;
  --text: #2a1f1a;
  --muted: #64564c;
  --primary: #6b4f3f;
  --primary-dark: #442a1f;
  --secondary: #3f5d49;
  --accent: #d8a064;
  --border: #e4d7ca;
  --shadow: 0 18px 38px rgba(66, 43, 26, 0.11);
  --shadow-soft: 0 12px 24px rgba(66, 43, 26, 0.08);
  --shadow-strong: 0 28px 56px rgba(66, 43, 26, 0.16);
  --radius: 24px;
  --radius-sm: 18px;
  --radius-lg: 32px;
  --container: 1120px;
  --hero-gold: #d8a064;
  --hero-rose: #b06f57;
  --hero-leaf: #52725a;
  --hero-cream: #f8efe0;
  --hero-night: #36241f;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(216, 160, 100, 0.22), transparent 23rem),
    radial-gradient(circle at top right, rgba(82, 114, 90, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff8ef 0%, #f7efe0 24%, #f5eddf 48%, #edf3e9 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.58), transparent 21rem),
    radial-gradient(circle at 92% 8%, rgba(216, 160, 100, 0.18), transparent 17rem),
    radial-gradient(circle at 50% 20%, rgba(82, 114, 90, 0.1), transparent 22rem);
  animation: auroraShift 16s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(31, 24, 18, 0.34);
}

main {
  position: relative;
  overflow: clip;
}

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

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

p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.12;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 9vw, 4.75rem);
}

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

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 1.5rem));
  margin: 0 auto;
}

.narrow-container {
  max-width: 860px;
}

.section {
  padding: clamp(3.5rem, 10vw, 5.5rem) 0;
  scroll-margin-top: 6.5rem;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 243, 237, 0.78));
}

.section--alt {
  background: linear-gradient(180deg, rgba(243, 237, 227, 0.82), rgba(255, 255, 255, 0.92));
}

.section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

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

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(5rem, 18vw, 7rem);
  height: 0.22rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(216, 160, 100, 0.18), rgba(216, 160, 100, 0.95), rgba(82, 114, 90, 0.3));
}

.section-heading p:last-child {
  max-width: 42rem;
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.75rem 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(53, 35, 22, 0.1);
  border-color: rgba(107, 79, 63, 0.08);
  background: rgba(251, 248, 243, 0.96);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  max-width: calc(100% - 4rem);
}

.brand img {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-toggle {
  display: inline-flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.site-nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1px solid rgba(107, 79, 63, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
  max-height: min(70vh, 28rem);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 35;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.site-nav a {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  color: var(--muted);
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--primary-dark);
  transform: translateX(2px);
}

.nav-call {
  margin-top: 0.15rem;
  background: linear-gradient(135deg, var(--primary), #8b6148);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.nav-call:hover,
.nav-call:focus-visible {
  background: linear-gradient(135deg, var(--primary), #8b6148);
  color: #fff;
}

.hero {
  position: relative;
  padding-top: clamp(1.25rem, 4vw, 2.8rem);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 50%;
  width: min(88vw, 60rem);
  height: min(40rem, 90vw);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 160, 100, 0.26), transparent 33%),
    radial-gradient(circle at 68% 35%, rgba(82, 114, 90, 0.2), transparent 36%),
    radial-gradient(circle at 52% 72%, rgba(176, 111, 87, 0.16), transparent 30%);
  filter: blur(10px);
  animation: heroHalo 18s ease-in-out infinite alternate;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 88%);
  opacity: 0.18;
  z-index: -3;
}

.hero__shell,
.split-layout {
  display: grid;
  gap: 1.5rem;
}

.hero__shell {
  max-width: 58rem;
  position: relative;
  min-width: 0;
}

.hero__content {
  position: relative;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid rgba(107, 79, 63, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(243, 237, 227, 0.88));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero__content h1 {
  max-width: 12ch;
}

.hero__content--solo {
  overflow: hidden;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(59, 40, 31, 0.94), rgba(88, 59, 46, 0.88) 40%, rgba(81, 113, 89, 0.84) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 60px rgba(49, 31, 22, 0.22);
}

.hero__content--solo h1,
.hero__content--solo .hero__lead,
.hero__content--solo .hero__actions,
.hero__content--solo .hero__chips,
.hero__content--solo .hero__contact-card {
  margin-inline: auto;
}

.hero__content--solo h1 {
  max-width: 10ch;
}

.hero__content--solo::before,
.hero__content--solo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__content--solo::before {
  width: 18rem;
  height: 18rem;
  top: -8rem;
  right: -5rem;
  background: radial-gradient(circle, rgba(216, 160, 100, 0.35), transparent 68%);
  animation: floatDrift 14s ease-in-out infinite;
}

.hero__content--solo::after {
  width: 16rem;
  height: 16rem;
  bottom: -8rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  animation: floatDrift 18s ease-in-out infinite reverse;
}

.hero__ribbon,
.hero__eyebrow,
.hero__lead,
.hero__contact-card,
.hero__stats--solo .stat-card {
  position: relative;
  z-index: 1;
}

.hero__ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto 1rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 247, 236, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  backdrop-filter: blur(12px);
  animation: revealRise 0.85s ease-out both;
}

.hero__eyebrow {
  color: rgba(233, 243, 235, 0.86);
  max-width: 18rem;
  margin-inline: auto;
  line-height: 1.5;
  overflow-wrap: anywhere;
  animation: revealRise 0.85s 0.12s ease-out both;
}

.hero__title {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 8ch;
  margin-inline: auto;
  color: #fff7ef;
  line-height: 0.98;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  text-align: center;
  text-shadow: 0 10px 24px rgba(20, 10, 6, 0.18);
  position: relative;
}

.hero__title-line > span {
  display: inline-block;
  opacity: 0;
  animation: titleReveal 0.9s ease-out both;
}

.hero__title-line:nth-child(1) > span {
  animation-delay: 0.16s;
}

.hero__title-line:nth-child(2) > span {
  animation-delay: 0.3s;
}

.hero__title-line:nth-child(3) > span {
  animation-delay: 0.44s;
}

.hero__title-line--accent {
  color: #ffe1b6;
  padding-bottom: 0.14em;
}

.hero__title-line--accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 225, 182, 0.12), rgba(255, 225, 182, 0.9), rgba(255, 225, 182, 0.12));
  transform: scaleX(0);
  transform-origin: left center;
  animation: lineGrow 0.8s 0.9s ease-out forwards;
}

.hero__lead {
  max-width: 42rem;
  font-size: 1.05rem;
  color: rgba(255, 246, 235, 0.82);
  animation: revealRise 0.85s 0.5s ease-out both;
}

.hero__actions,
.booking-card__actions,
.hero__chips,
.hero__contact-lines,
.trust-grid,
.contact-stack,
.card-grid,
.gallery-grid,
.amenity-list,
.hero__stats,
.hero__quick-info {
  display: grid;
  gap: 1rem;
}

.hero__quick-info {
  margin: 1.4rem 0 0.25rem;
}

.hero__content--solo .hero__quick-info {
  margin-top: 1.6rem;
  text-align: left;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.info-pill {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 28px rgba(27, 18, 13, 0.14);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(22px);
  animation: revealRise 0.75s ease-out both;
}

.info-pill strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff1dc;
  font-size: 0.96rem;
}

.info-pill span {
  display: block;
  color: rgba(255, 244, 235, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero__quick-info .info-pill:nth-child(1) {
  animation-delay: 0.6s;
}

.hero__quick-info .info-pill:nth-child(2) {
  animation-delay: 0.72s;
}

.hero__quick-info .info-pill:nth-child(3) {
  animation-delay: 0.84s;
}

.hero__actions {
  grid-template-columns: 1fr;
  margin: 1.5rem 0;
  max-width: 28rem;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(53, 35, 22, 0.16);
  filter: saturate(1.05);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #936347);
  color: #fff;
}

.btn--secondary {
  background: linear-gradient(135deg, var(--secondary), #588166);
  color: #fff;
}

.hero__actions .btn {
  opacity: 0;
  transform: translateY(22px);
  animation: revealRise 0.75s ease-out both;
}

.hero__actions .btn:nth-child(1) {
  animation-delay: 0.9s;
}

.hero__actions .btn:nth-child(2) {
  animation-delay: 1.02s;
}

.hero__chips {
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.hero__chips li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 239, 0.9);
  font-size: 0.95rem;
  box-shadow: 0 16px 26px rgba(27, 18, 13, 0.12);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: revealRise 0.7s ease-out both;
}

.hero__chips li:nth-child(1) {
  animation-delay: 1.08s;
}

.hero__chips li:nth-child(2) {
  animation-delay: 1.18s;
}

.hero__chips li:nth-child(3) {
  animation-delay: 1.28s;
}

.hero__contact-card,
.feature-card,
.gallery-card,
.proof-card,
.amenity-item,
.trust-item,
.contact-card,
.booking-card,
.map-card,
.stat-card,
.media-card,
.hospitality-card {
  border: 1px solid rgba(107, 79, 63, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.feature-card,
.amenity-item,
.trust-item,
.contact-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.amenity-item::before,
.trust-item::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, rgba(216, 160, 100, 0.9), rgba(82, 114, 90, 0.5));
}

.hero__contact-card {
  margin-top: 1.4rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  max-width: 44rem;
  color: rgba(255, 248, 239, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 28px rgba(23, 15, 11, 0.14);
  animation: revealRise 0.8s 1.34s ease-out both;
}

.hero__contact-card p {
  margin-bottom: 0;
}

.hero__contact-lines {
  margin-top: 1rem;
}

.hero__contact-lines a,
.contact-card a,
.footer__details a,
.faq-answer a,
.text-link {
  color: var(--secondary);
  font-weight: 700;
}

.hero__contact-lines a {
  color: #ffe1b6;
}

.hero__contact-lines span {
  color: rgba(255, 245, 238, 0.76);
}

.stat-card {
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 237, 227, 0.82));
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}

.hero__stats--solo {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  min-width: 0;
  max-width: 58rem;
  margin-inline: auto;
  position: relative;
}

.hero__stats--solo .stat-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(244, 236, 222, 0.82));
  opacity: 0;
  transform: translateY(20px);
  animation: revealRise 0.75s ease-out both;
}

.hero__stats--solo .stat-card:nth-child(1) {
  animation-delay: 1.46s;
}

.hero__stats--solo .stat-card:nth-child(2) {
  animation-delay: 1.58s;
}

.hero__stats--solo .stat-card:nth-child(3) {
  animation-delay: 1.7s;
}

.proof-card {
  overflow: hidden;
}

.proof-card img,
.hospitality-card img,
.media-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card img {
  aspect-ratio: 4 / 3;
}

.proof-card__body {
  padding: 1.25rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.4rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 227, 0.88));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover,
.gallery-card:hover,
.amenity-item:hover,
.trust-item:hover,
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 79, 63, 0.14), rgba(63, 93, 73, 0.16));
  color: var(--primary-dark);
  font-weight: 800;
}

.gallery-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(84%, 1fr);
  overflow-x: auto;
  padding: 0 0.1rem 0.75rem;
  margin: 0 -0.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gallery-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(107, 79, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.gallery-note::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 0 0 0.22rem rgba(216, 160, 100, 0.16);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(19, 12, 8, 0), rgba(19, 12, 8, 0.52));
  pointer-events: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(82, 114, 90, 0.4);
  outline-offset: 4px;
}

.gallery-card__hint {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 1;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(24, 17, 12, 0.56);
  color: rgba(255, 247, 239, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.gallery-card img {
  aspect-ratio: 5 / 4;
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0.95rem 1rem 1.1rem;
  color: rgba(255, 247, 239, 0.96);
}

.stacked-media {
  display: grid;
  gap: 1rem;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  aspect-ratio: 4 / 3;
}

.media-card--offset {
  margin-left: 0;
}

.amenity-list,
.trust-grid,
.contact-stack {
  grid-template-columns: 1fr;
}

.amenity-item,
.trust-item,
.contact-card {
  padding: 1.2rem;
}

.hospitality-card {
  overflow: hidden;
}

.hospitality-card img {
  aspect-ratio: 5 / 6;
}

.map-card {
  overflow: hidden;
  min-height: clamp(18rem, 72vw, 26rem);
}

.map-card iframe {
  width: 100%;
  min-height: clamp(18rem, 72vw, 26rem);
  border: 0;
}

.booking-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(216, 160, 100, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 227, 0.98));
  box-shadow: var(--shadow);
}

.booking-card::before {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 93, 73, 0.16), transparent 70%);
  pointer-events: none;
}

.booking-card > * {
  position: relative;
  z-index: 1;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 3rem 1.15rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--secondary);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0 7.25rem;
  background:
    radial-gradient(circle at top right, rgba(216, 160, 100, 0.14), transparent 18rem),
    linear-gradient(180deg, #342720, #261d19);
  color: rgba(255, 255, 255, 0.88);
}

.footer__content,
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.site-credit {
  margin: 0;
}

.site-credit__pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.8rem;
  max-width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(215, 178, 94, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14, 12, 18, 0.98), rgba(22, 18, 21, 0.94));
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-credit__pill:hover,
.site-credit__pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(224, 190, 108, 0.28);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

.site-credit__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.4rem;
  padding: 0.08rem 0.4rem;
  border-radius: 0.42rem;
  font-size: 0.68rem;
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
}

.site-credit__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.site-credit__logo-frame {
  width: clamp(5.6rem, 14vw, 7rem);
  height: clamp(5.6rem, 14vw, 7rem);
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0.18rem;
  border: 1px solid rgba(215, 178, 94, 0.22);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 227, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 14px rgba(0, 0, 0, 0.2);
}

.site-credit__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 10, 0.82);
  backdrop-filter: blur(14px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 0.8rem;
  width: min(100%, 72rem);
}

.lightbox__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.3);
}

.lightbox__image {
  width: 100%;
  max-height: min(74vh, 42rem);
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.lightbox__caption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
  color: rgba(255, 247, 239, 0.92);
}

.lightbox__counter {
  color: rgba(255, 225, 182, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__text {
  color: rgba(255, 247, 239, 0.86);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox__close {
  top: -0.2rem;
  right: 0;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
}

.lightbox__nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: -0.35rem;
}

.lightbox__nav--next {
  right: -0.35rem;
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-open .mobile-cta,
.lightbox-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

[data-reveal] {
  --reveal-delay: 0ms;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--reveal-delay);
}

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

@media (max-width: 420px) {
  .site-credit__pill {
    flex-direction: column;
    justify-content: center;
  }

  .site-credit__brand {
    justify-content: center;
  }

  .site-credit__logo-frame {
    width: 6.4rem;
    height: 6.4rem;
  }

  .gallery-card__hint {
    top: 0.7rem;
    right: 0.7rem;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox__close {
    top: -0.4rem;
    right: 0.1rem;
  }

  .lightbox__nav {
    bottom: 1.05rem;
    top: auto;
    transform: none;
  }

  .lightbox__nav--prev {
    left: 1rem;
  }

  .lightbox__nav--next {
    right: 1rem;
  }
}

.mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 26;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(47, 36, 31, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-open .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.mobile-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.mobile-cta__link--call {
  background: linear-gradient(135deg, var(--primary), #8b6148);
}

.mobile-cta__link--whatsapp {
  background: linear-gradient(135deg, #1f9f53, #11803f);
}

.floating-whatsapp {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f9f53, #11803f);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(10, 85, 39, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(10, 85, 39, 0.35);
}

@media (max-width: 420px) {
  .brand {
    gap: 0.65rem;
  }

  .brand img {
    width: 2.95rem;
    height: 2.95rem;
  }

  .brand__text small {
    display: none;
  }

  .hero__content {
    padding: 1.1rem;
  }

  .hero__content--solo {
    padding: 1.25rem;
    border-radius: 28px;
  }

  .hero__ribbon {
    max-width: 16.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero__eyebrow {
    max-width: 14rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero__title {
    margin-bottom: 0.85rem;
    max-width: 7ch;
  }

  .hero__lead {
    font-size: 0.97rem;
  }

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

  .mobile-cta {
    left: 0.5rem;
    right: 0.5rem;
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    gap: 0.6rem;
    padding: 0.6rem;
  }
}

@media (min-width: 460px) {
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 560px) {
  .hero__quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow: visible;
    padding: 0;
    margin: 0;
    scroll-snap-type: none;
  }

  .gallery-note {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2::after {
    left: 0;
    transform: none;
  }

  .section-heading p:last-child {
    margin-inline: 0;
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 2rem;
  }

  .hero__content {
    padding: 1.8rem;
  }

  .hero__content--solo {
    padding: clamp(2rem, 4vw, 3rem);
  }

  .hero__title {
    margin-bottom: 1.15rem;
    max-width: 10ch;
  }

  .hero__eyebrow {
    max-width: none;
  }

  .split-layout--reverse > :first-child {
    order: 2;
  }

  .split-layout--reverse > :last-child {
    order: 1;
  }

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

  .booking-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
  }

  .booking-card__actions {
    grid-template-columns: 1fr;
    min-width: 16rem;
  }

  .media-card--offset {
    margin-top: 2rem;
    margin-left: 0.75rem;
  }
}

@media (min-width: 920px) {
  .hero__quick-info,
  .hero__stats--solo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  body.nav-open::after {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
  }

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

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

  .footer__content,
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer {
    padding-bottom: 1rem;
  }

  .mobile-cta {
    display: none;
  }

  .floating-whatsapp {
    display: inline-flex;
  }

  .lightbox__dialog {
    padding-inline: 2.8rem;
  }
}

@supports (content-visibility: auto) {
  .section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 920px;
  }
}

@keyframes auroraShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }

  100% {
    transform: translate3d(0, -1.5%, 0) scale(1.03);
    opacity: 1;
  }
}

@keyframes heroHalo {
  0% {
    transform: translateX(-50%) scale(1);
  }

  100% {
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 16px, 0);
  }
}

@keyframes revealRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

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

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