:root {
  --ink: #17231f;
  --muted: #5f6a63;
  --paper: #fbf7ef;
  --white: #fffdf8;
  --palm: #0f3a33;
  --palm-soft: #dfece4;
  --water: #0d6f72;
  --clay: #b2573d;
  --sun: #dca84d;
  --line: rgba(23, 35, 31, 0.16);
  --shadow: 0 22px 80px rgba(23, 35, 31, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

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

h2 {
  font-size: 3.35rem;
  max-width: 760px;
}

h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  padding: 20px 28px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding-block: 14px;
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.34rem;
  font-weight: 600;
}

.brand-logo {
  align-items: center;
}

.brand-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a {
  position: relative;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration-color: currentColor;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 3px;
  overflow: hidden;
}

.language-switcher::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: 36px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(var(--language-shift, 0));
  transition: transform 430ms var(--ease), border-radius 430ms var(--ease), background 220ms ease;
}

.language-switcher.is-switching::before {
  border-radius: 42% 58% 55% 45% / 55% 44% 56% 45%;
}

.language-option {
  position: relative;
  z-index: 1;
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.language-option:hover {
  transform: translateY(-1px);
}

.language-option.is-active {
  color: var(--ink);
}

.site-header.scrolled .language-switcher::before {
  background: var(--ink);
}

.site-header.scrolled .language-option.is-active {
  color: var(--white);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 19px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23, 35, 31, 0.18);
}

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

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

.button-instagram {
  gap: 9px;
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.7);
}

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

.button-instagram svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--palm);
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1300ms ease, transform 7000ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 22, 18, 0.7) 0%, rgba(10, 22, 18, 0.36) 48%, rgba(10, 22, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 22, 18, 0.58), rgba(10, 22, 18, 0.05) 42%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.eyebrow,
.section-kicker {
  color: inherit;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;
  font-family: "Fry's Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 6.25rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.18rem;
}

.guest-favorite-badge {
  width: 172px;
  height: 74px;
  display: block;
  margin-bottom: 22px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.guest-favorite-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.quick-facts {
  background: var(--palm);
  color: var(--white);
  padding: 28px 24px;
}

.facts-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 253, 248, 0.24);
}

.fact {
  min-height: 95px;
  display: grid;
  align-content: center;
  gap: 2px;
  background: var(--palm);
  padding: 22px;
}

.fact span,
.location-notes span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  font-weight: 500;
}

.section {
  padding: 104px 24px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.7fr);
  gap: 76px;
  align-items: start;
}

.intro-section .section-kicker,
.stay-section .section-kicker,
.gallery-section .section-kicker {
  color: var(--clay);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.image-band {
  padding: 0 24px 28px;
}

.image-band-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, 274px);
  gap: 12px;
}

.image-band-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.image-band-grid img:first-child {
  grid-row: 1 / span 2;
}

.section-heading {
  display: block;
  max-width: 780px;
  margin-bottom: 48px;
  text-align: left;
}

.section-heading h2,
.gallery-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 760px;
  margin-top: 26px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.gallery-heading p {
  margin-bottom: 0;
}

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

.service-section .section-heading {
  max-width: 760px;
}

.service-section p {
  color: rgba(255, 253, 248, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 18px;
  padding: 26px;
  min-height: 290px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 320ms var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card span {
  color: var(--sun);
  font-weight: 800;
  transition: color 240ms ease, transform 260ms var(--ease);
}

.service-card h3 {
  margin: 52px 0 12px;
  color: var(--white);
  transition: color 240ms ease, transform 260ms var(--ease);
}

.service-card p {
  margin-bottom: 0;
  transition: color 240ms ease, transform 260ms var(--ease);
}

.service-card:hover span {
  color: var(--clay);
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--ink);
  transform: translateY(-4px);
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: stretch;
  background: var(--white);
}

.feature-strip img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.feature-content {
  display: grid;
  align-content: center;
  padding: 78px;
}

.feature-content .section-kicker {
  color: var(--water);
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  columns: 2;
  column-gap: 28px;
}

.amenity-list li {
  break-inside: avoid;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.photo-tile {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 210px;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: var(--palm-soft);
  cursor: pointer;
}

.photo-tile:nth-child(1),
.photo-tile:nth-child(10),
.photo-tile:nth-child(23),
.photo-tile:nth-child(36) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease), filter 260ms ease;
}

.photo-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

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

.neighborhood-section .section-kicker {
  color: var(--clay);
}

.neighborhood-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 76px;
  align-items: end;
  margin-bottom: 44px;
}

.neighborhood-copy {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.neighborhood-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--palm-soft);
}

.neighborhood-map iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
}

.reviews-section {
  overflow: hidden;
  padding: 104px 0;
  background: var(--white);
}

.reviews-heading {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.reviews-heading .section-kicker {
  color: var(--clay);
}

.reviews-controls {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.review-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, box-shadow 220ms var(--ease);
}

.review-arrow:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(23, 35, 31, 0.14);
}

.reviews-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-marquee::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
}

.review-card {
  width: min(420px, 82vw);
  min-height: 270px;
  flex: 0 0 auto;
  display: grid;
  align-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: transparent;
  padding: 28px;
  box-shadow: none;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-rating {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-source {
  border-radius: 999px;
  background: var(--palm-soft);
  color: var(--palm);
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.review-card footer {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

.review-card footer strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.section,
.image-band-grid img,
.feature-strip img,
.booking-panel img,
.service-card {
  opacity: 0;
  transform: translateY(24px);
}

.section.is-visible,
.image-band-grid img.is-visible,
.feature-strip img.is-visible,
.booking-panel img.is-visible,
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.section.is-visible {
  transition-delay: 60ms;
}

.service-card.is-visible:hover {
  transform: translateY(-10px);
}

.service-card.is-visible {
  transition: opacity 620ms var(--ease), transform 620ms var(--ease), border-color 260ms ease, box-shadow 260ms var(--ease);
}

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

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

  .section,
  .image-band-grid img,
  .feature-strip img,
  .booking-panel img,
  .service-card {
    opacity: 1;
    transform: none;
  }

}

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

.location-layout p {
  max-width: 640px;
  font-size: 1.06rem;
}

.location-notes {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.location-notes div {
  display: grid;
  gap: 6px;
  background: var(--paper);
  padding: 24px;
}

.location-notes span {
  color: var(--clay);
}

.location-notes strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.booking-panel {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

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

.booking-panel div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 78px;
}

.booking-panel p {
  color: rgba(255, 253, 248, 0.72);
}

.booking-panel .button {
  margin-top: 20px;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
  margin-bottom: 12px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 72px 28px 34px;
  background: rgba(10, 18, 15, 0.94);
}

.lightbox figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.lightbox img {
  max-height: calc(100svh - 150px);
  width: auto;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.86rem;
}

.lightbox button {
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.lightbox-arrow {
  width: 52px;
  height: 52px;
  justify-self: center;
  font-size: 1.3rem;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(23, 35, 31, 0.26);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: #1ebe5d;
  box-shadow: 0 24px 56px rgba(23, 35, 31, 0.34);
}

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

.language-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 620ms var(--ease), opacity 620ms ease;
}

body.is-language-transitioning .language-transition {
  opacity: 1;
  transform: translateY(0);
}

.transition-logo {
  width: min(240px, 56vw);
  height: auto;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 520ms var(--ease) 160ms, opacity 520ms ease 160ms;
}

body.is-language-transitioning .transition-logo {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1040px) {
  h2 {
    font-size: 2.72rem;
  }

  .nav-links {
    gap: 16px;
  }

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

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

  .split-layout,
  .location-layout,
  .neighborhood-layout,
  .feature-strip,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .feature-content,
  .booking-panel div {
    padding: 64px 42px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 36px, var(--max));
    padding-bottom: 54px;
  }

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

  .hero-copy {
    font-size: 1.03rem;
  }

  .quick-facts {
    padding: 22px 18px;
  }

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

  .fact {
    min-height: 88px;
    padding: 18px;
  }

  .section {
    padding: 76px 18px;
  }

  h2 {
    font-size: 2.28rem;
  }

  .section-heading,
  .gallery-heading,
  .split-layout,
  .location-layout,
  .neighborhood-layout {
    gap: 28px;
  }

  .neighborhood-map iframe {
    height: 360px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-heading h2,
  .gallery-heading p {
    max-width: 100%;
  }

  .image-band {
    padding-inline: 18px;
  }

  .image-band-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-band-grid img,
  .image-band-grid img:first-child {
    height: 360px;
    grid-row: auto;
  }

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

  .service-card {
    min-height: 240px;
    padding: 22px;
  }

  .feature-strip img,
  .booking-panel img {
    min-height: 360px;
  }

  .amenity-list {
    columns: 1;
  }

  .photo-tile:nth-child(1),
  .photo-tile:nth-child(10),
  .photo-tile:nth-child(23),
  .photo-tile:nth-child(36) {
    grid-column: span 2;
  }

  .photo-tile {
    min-height: 240px;
  }

  .reviews-section {
    padding: 76px 0;
  }

  .reviews-heading {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reviews-controls {
    justify-self: start;
  }

  .site-footer {
    width: calc(100% - 36px);
    display: grid;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 4px;
    padding-inline: 10px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .whatsapp-float {
    left: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1rem;
  }

  .brand-logo-image {
    width: 67.5px;
    height: 67.5px;
  }

  .brand strong {
    font-size: 1.16rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 15px;
  }

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

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

  .facts-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-tile:nth-child(1),
  .photo-tile:nth-child(10),
  .photo-tile:nth-child(23),
  .photo-tile:nth-child(36) {
    grid-column: span 1;
  }

  .photo-tile {
    min-height: 260px;
  }

  .guest-favorite-badge {
    width: 156px;
    height: 68px;
  }

  .feature-content,
  .booking-panel div {
    padding: 52px 22px;
  }

  .booking-panel {
    min-height: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
