:root {
  color-scheme: light;
  --pine: #10251b;
  --pine-soft: #183428;
  --fern: #2f5e45;
  --sage: #74856a;
  --wood: #86502d;
  --clay: #ad694b;
  --gold: #d9b66f;
  --cream: #f7f0e5;
  --paper: #fffaf2;
  --ink: #17231d;
  --muted: #5f695f;
  --line: #dfd1bd;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(16, 37, 27, 0.18);
  --radius: 8px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
}

body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  font-size: 4.35rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

p {
  color: var(--muted);
}

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

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  background: var(--gold);
  color: var(--pine);
  border-radius: 6px;
}

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

.site-header.is-scrolled,
.site-header:focus-within,
.nav-open .site-header {
  background: rgba(16, 37, 27, 0.95);
  border-bottom: 1px solid rgba(217, 182, 111, 0.22);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(217, 182, 111, 0.45);
  object-fit: cover;
  transition: box-shadow 180ms ease;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  box-shadow: 0 0 0 1px var(--gold);
}

.brand-text {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
  line-height: 1;
}

.brand-text small {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-text strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 1.1rem;
}

.site-nav a:not(.mobile-nav-cta) {
  position: relative;
  padding: 0.6rem 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.94rem;
}

.site-nav a:not(.mobile-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:not(.mobile-nav-cta):hover::after,
.site-nav a:not(.mobile-nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav-cta {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  isolation: isolate;
  line-height: 1.2;
  overflow: hidden;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  z-index: -1;
  inset: -40% auto -40% -35%;
  width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: translateX(-140%) rotate(10deg);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(520%) rotate(10deg);
}

.button-small {
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  font-size: 0.9rem;
}

.button-gold {
  background: var(--gold);
  color: var(--pine);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #e2c17c;
}

.button-ghost {
  border-color: rgba(255, 250, 242, 0.72);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 250, 242, 0.12);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--fern);
}

.site-nav .mobile-nav-cta {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--fern);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
}

.menu-toggle span[aria-hidden="true"],
.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span[aria-hidden="true"] {
  position: relative;
}

.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
  position: absolute;
  left: 0;
}

.menu-toggle span[aria-hidden="true"]::before {
  top: -7px;
}

.menu-toggle span[aria-hidden="true"]::after {
  top: 7px;
}

.nav-open .menu-toggle span[aria-hidden="true"] {
  background: transparent;
}

.nav-open .menu-toggle span[aria-hidden="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span[aria-hidden="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 86svh);
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 6.5rem) 1rem 5rem;
  background: var(--pine);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 37%;
  transform: translate3d(var(--hero-pan-x, 0), var(--hero-pan-y, 0), 0) scale(1.045);
  transition: transform 240ms ease-out;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 13, 0.88) 0%, rgba(5, 18, 13, 0.58) 43%, rgba(5, 18, 13, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 18, 13, 0.84) 0%, rgba(5, 18, 13, 0.18) 42%, rgba(5, 18, 13, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content p {
  max-width: 580px;
  margin-bottom: 1.7rem;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.16rem;
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 1.35rem;
  display: grid;
  width: 34px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.46);
  border-radius: 999px;
  transform: translateX(50%);
}

.hero-scroll span {
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollCue 1.6s ease-in-out infinite;
}

.page-section {
  padding: 6.5rem 1rem;
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading p,
.section-copy p {
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 2.5rem;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

.intro-section {
  background: var(--paper);
}

.intro-grid,
.location-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: 4rem;
}

.section-copy {
  max-width: 560px;
}

.intro-photos {
  position: relative;
  min-height: 620px;
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

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

.photo-frame-large {
  width: min(78%, 470px);
  height: 620px;
  margin-left: auto;
  animation: floatFrame 6s ease-in-out infinite;
}

.photo-frame-small {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: min(52%, 310px);
  height: 255px;
  border: 8px solid var(--paper);
  animation: floatFrame 7s ease-in-out 600ms infinite;
}

.accommodation-section {
  background: var(--cream);
}

.accommodation-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.accommodation-layout article,
.offer-card,
.stay-card,
.faq-list details {
  border: 1px solid rgba(16, 37, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.88);
}

.accommodation-layout article,
.offer-card {
  padding: 1.35rem;
}

.accommodation-layout article p,
.offer-card p,
.stay-card p,
.stay-card li,
.stay-card small,
.faq-list p {
  color: var(--muted);
}

.amenities {
  margin-top: 2.5rem;
}

.amenities-title {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pine);
}

.amenity-grid {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  list-style: none;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(16, 37, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.88);
}

.amenity-item .icon-wrap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  margin-bottom: 0;
}

.amenity-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1.35;
}

.amenity-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

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

.icon-wrap {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: rgba(217, 182, 111, 0.22);
  color: var(--pine);
}

.icon-wrap svg,
.floating-whatsapp svg,
.lightbox button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.offers-section {
  background: var(--paper);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  min-height: 210px;
}

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

.stays-section .section-heading p {
  color: rgba(255, 250, 242, 0.72);
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stay-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
}

.stay-card-header {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.provisional-label {
  padding: 0.38rem 0.6rem;
  border: 1px solid rgba(173, 105, 75, 0.3);
  border-radius: 999px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stay-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.stay-price strong {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.stay-price span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stay-card ul {
  display: grid;
  margin: 0 0 1.1rem;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.stay-card li {
  position: relative;
  padding-left: 1.1rem;
}

.stay-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.stay-card small {
  display: block;
  margin-top: auto;
  margin-bottom: 1.2rem;
}

/* Side by side, each card's rows (icon, title, text, price, list, note, button) share the
   same track heights so the prices line up regardless of how the descriptions wrap. */
@supports (grid-template-rows: subgrid) {
  @media (min-width: 921px) {
    .stay-card {
      display: grid;
      grid-row: span 7;
      grid-template-rows: subgrid;
      row-gap: 0;
      justify-items: start;
    }

    .stay-card small {
      margin-top: 0;
      align-self: end;
    }
  }
}

.extras-section {
  background: var(--cream);
}

.extras-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: start;
  gap: 4rem;
}

.extras-list {
  display: grid;
  gap: 1rem;
}

.extra-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(16, 37, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.88);
}

.extra-item .icon-wrap {
  margin-bottom: 0;
}

.extra-body h3 {
  margin-bottom: 0.35rem;
}

.extra-body p {
  margin: 0;
  color: var(--muted);
}

.extra-aside {
  display: grid;
  justify-items: end;
  gap: 0.6rem;
  text-align: right;
}

.extra-price {
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--cream);
  box-shadow: none;
}

.gallery-item::before {
  position: absolute;
  z-index: 2;
  inset: 0.55rem;
  border: 1px solid rgba(255, 250, 242, 0.62);
  border-radius: calc(var(--radius) - 2px);
  content: "";
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1.18;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 37, 27, 0);
  content: "";
  transition: background 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(16, 37, 27, 0.18);
}

.location-section {
  background: var(--cream);
}

.map-panel {
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(16, 37, 27, 0.16);
  border-radius: var(--radius);
  background: #d7ded4;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--clay);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-list p {
  margin: 0.9rem 0 0;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 580px;
  align-items: center;
  overflow: hidden;
  padding: 5rem 1rem;
  background: var(--pine);
  color: var(--white);
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 13, 0.86), rgba(5, 18, 13, 0.42)),
    rgba(5, 18, 13, 0.22);
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.final-cta h2 {
  max-width: 720px;
  font-size: 3.2rem;
}

.final-cta p {
  max-width: 560px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.1rem;
}

.site-footer {
  padding: 2.4rem 1rem 6.2rem;
  background: #0b1912;
  color: var(--white);
}

.footer-inner {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand .brand-mark {
  width: 56px;
  height: 56px;
}

.footer-brand .brand-text strong {
  font-size: 1.22rem;
  white-space: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1rem;
}

.footer-links a,
.maker-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links [data-icon],
.maker-credit [data-icon] {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 auto;
}

.footer-links svg,
.maker-credit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer a {
  color: rgba(255, 250, 242, 0.84);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
  text-align: right;
}

.maker-credit {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(217, 182, 111, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.82rem;
}

.maker-credit strong {
  color: rgba(255, 250, 242, 0.82);
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.72rem 0.95rem;
  gap: 0.55rem;
  border-radius: 999px;
  background: #1f7a4d;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(16, 37, 27, 0.28);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #23885a;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 13, 0.9);
}

.lightbox-dialog {
  position: relative;
  display: grid;
  width: min(100% - 2rem, 1180px);
  height: min(100% - 2rem, 820px);
  margin: 1rem auto;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 0.75rem;
}

.lightbox figure {
  display: grid;
  max-height: 100%;
  margin: 0;
  gap: 0.75rem;
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 7rem);
  border-radius: var(--radius);
  object-fit: contain;
  background: #050f0b;
}

.lightbox figcaption {
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.94rem;
  text-align: center;
}

.lightbox button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: var(--white);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

.section-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  transition:
    filter 520ms ease,
    opacity 520ms ease,
    transform 520ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

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

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(-6px);
    opacity: 0.55;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes floatFrame {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.45rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .header-inner {
    width: min(100% - 1.4rem, 1180px);
  }

  .site-nav {
    gap: 0.78rem;
  }

  .site-nav a:not(.mobile-nav-cta) {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .site-header .button-small {
    white-space: nowrap;
  }

  .intro-grid,
  .location-grid,
  .faq-grid {
    gap: 2.5rem;
  }

  /* Uma coluna cedo: ao lado do texto, o card do adicional ficava com ~200px para a descrição. */
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* O menu hambúrguer entra antes do restante do layout de tablet: com sete links, a
   barra de navegação não cabe ao lado da marca e do botão entre 921px e ~1035px. */
@media (max-width: 1040px) {
  .site-header .button-small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 51;
    top: var(--header-height);
    right: 0.7rem;
    left: 0.7rem;
    display: grid;
    justify-content: stretch;
    padding: 1rem;
    border: 1px solid rgba(217, 182, 111, 0.22);
    border-radius: var(--radius);
    background: rgba(16, 37, 27, 0.98);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a:not(.mobile-nav-cta) {
    min-height: 46px;
    padding: 0.6rem 0.2rem;
    font-size: 1rem;
  }

  .site-nav .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.3rem;
  }
}

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

  .hero {
    min-height: 82svh;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 4.5rem;
  }

  .hero-media img {
    object-position: 57% 38%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 18, 13, 0.9) 0%, rgba(5, 18, 13, 0.35) 58%, rgba(5, 18, 13, 0.25) 100%),
      linear-gradient(90deg, rgba(5, 18, 13, 0.72), rgba(5, 18, 13, 0.2));
  }

  .page-section {
    padding: 4.8rem 1rem;
  }

  .intro-grid,
  .location-grid,
  .faq-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .intro-photos {
    min-height: 540px;
  }

  .photo-frame-large {
    width: 78%;
    height: 540px;
  }

  .photo-frame-small {
    width: 50%;
    height: 220px;
  }

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

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

  .stay-card {
    min-height: auto;
  }

  .extras-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.98rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .brand-text strong {
    font-size: 1.02rem;
  }

  .hero-content p,
  .final-cta p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .intro-actions {
    width: 100%;
  }

  .intro-photos {
    min-height: auto;
  }

  .photo-frame-large,
  .photo-frame-small {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
    animation: none;
  }

  .photo-frame-large {
    aspect-ratio: 4 / 5;
  }

  .photo-frame-small {
    margin-top: 0.8rem;
    aspect-ratio: 16 / 11;
  }

  .accommodation-layout,
  .offer-grid,
  .stay-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .extra-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .extra-aside {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

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

  .amenity-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.85rem;
  }

  .gallery-item,
  .gallery-item-featured {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
    height: 360px;
  }

  .final-cta {
    min-height: 560px;
  }

  .final-cta > img {
    object-position: 53% 50%;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    min-height: 46px;
    padding: 0.68rem 0.82rem;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }

  .maker-credit {
    max-width: 100%;
    border-radius: 8px;
  }

  .lightbox-dialog {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    margin: 0.5rem;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.25rem;
  }

  .lightbox button {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 0.25rem;
    right: 0.25rem;
  }

  .lightbox img {
    max-height: calc(100svh - 7.5rem);
  }
}

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