:root {
  --ink: #282522;
  --muted-ink: #6f6a64;
  --paper: #fffaf4;
  --mist: #dfe6ef;
  --sand: #f6efe6;
  --clay: #d88b62;
  --orange: #ff7842;
  --orange-dark: #d85b2f;
  --teal: #13887f;
  --moss: #65745d;
  --line: rgba(40, 37, 34, 0.12);
  --shadow: 0 22px 60px rgba(44, 36, 30, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 12;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.88);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}

.main-nav a,
.nav-cta,
.button,
.phone-link {
  text-decoration: none;
}

.main-nav a {
  color: var(--muted-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #20c768 0%, #128c4b 100%);
  color: #fff;
  padding: 0 20px;
  box-shadow: 0 14px 28px rgba(18, 140, 75, 0.3);
  white-space: nowrap;
}

.nav-cta::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.hero::before {
  width: 420px;
  height: 420px;
  right: 9vw;
  top: -90px;
  background: rgba(255, 120, 66, 0.62);
}

.hero::after {
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -210px;
  background: rgba(19, 136, 127, 0.24);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/photos/photo-02.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.76) 0%, rgba(23, 20, 18, 0.54) 42%, rgba(23, 20, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(223, 230, 239, 0.98) 0%, rgba(223, 230, 239, 0.02) 34%);
}

.hero-content {
  align-self: center;
  max-width: 680px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee6dc;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 11vw, 9.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  border: 1px solid transparent;
  padding: 0 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(216, 91, 47, 0.28);
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-pay {
  background: linear-gradient(135deg, #635bff 0%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.32);
}

.button-pay:hover,
.button-pay:focus-visible {
  background: linear-gradient(135deg, #4f46e5 0%, #3d35cf 100%);
  transform: translateY(-1px);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  align-self: flex-start;
}

.button-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #1ebe57;
}

.contact-button.button-pay {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.contact-button.button-pay:hover,
.contact-button.button-pay:focus-visible {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.contact-button svg {
  flex-shrink: 0;
}

.rule-cta {
  margin-top: 12px;
  margin-bottom: 0;
}

.rule-cta a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(216, 91, 47, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.rule-cta a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.muted .button-secondary,
.location-layout .button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(34, 31, 28, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: end;
  gap: 14px;
  margin-top: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.86), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 70px rgba(24, 20, 17, 0.24);
  backdrop-filter: blur(20px);
}

.hero-facts > div {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 126px;
  overflow: hidden;
  border: 1px solid rgba(40, 37, 34, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(19, 136, 127, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #f5eee6 100%);
  padding: 20px;
  box-shadow: 0 14px 32px rgba(44, 36, 30, 0.1);
  text-align: center;
}

.hero-facts > div::after {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 34px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.hero-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.hero-facts span {
  color: var(--muted-ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.hero-facts .fact-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(19, 136, 127, 0.12);
  color: var(--teal);
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: center;
}

.hero-facts .booking-review {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 113, 194, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #f5eee6 100%);
}

.hero-facts .booking-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  background: rgba(0, 59, 149, 0.08);
  color: #003b95;
}

.hero-facts .booking-wordmark {
  color: #003b95;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-facts .booking-stars {
  color: #febb02;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section-band {
  background: var(--paper);
  padding: clamp(72px, 9vw, 124px) 24px;
}

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

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

.intro-grid,
.location-layout,
.reviews-layout,
.contact-layout,
.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.reviews-layout p,
.rules-layout p,
.contact-layout p,
.room-card-body p {
  color: var(--muted-ink);
  font-size: 1.04rem;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.compact-list span {
  border-left: 4px solid var(--orange);
  background: rgba(216, 139, 98, 0.1);
  padding: 10px 14px;
  font-weight: 750;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.photo-stack img {
  width: 100%;
  min-height: 180px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.photo-stack img:first-child {
  grid-row: span 2;
  min-height: 540px;
}

.photo-stack img:nth-child(2) {
  aspect-ratio: 1;
}

.photo-stack img:nth-child(3) {
  aspect-ratio: 1.25;
}

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

.info-panel,
.amenity-grid article,
.rule-list article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(44, 36, 30, 0.08);
}

.room-block {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.room-block-reversed {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.25fr);
}

.room-block-reversed .room-block-gallery {
  order: 2;
}

.room-block-gallery {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 16px;
}

.room-block-gallery-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.room-meta-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(40, 37, 34, 0.06);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.meta-pill-accent {
  background: linear-gradient(135deg, var(--ink) 0%, #3b342d 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(40, 37, 34, 0.18);
}

.room-block-track {
  position: relative;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.room-block-track::-webkit-scrollbar {
  display: none;
}

.room-block-track figure {
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
  scroll-snap-align: center;
  box-shadow: 0 20px 44px rgba(44, 36, 30, 0.12);
  transition: box-shadow 0.22s ease;
}

.room-block-track figure img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-block-track figure:hover img {
  transform: scale(1.03);
}

.room-block-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(40, 37, 34, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ee 100%);
  box-shadow: 0 20px 44px rgba(44, 36, 30, 0.08);
  padding: clamp(22px, 3vw, 32px);
}

.room-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.room-block-info h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.18;
}

.room-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(19, 136, 127, 0.12) 0%, rgba(216, 139, 98, 0.12) 100%);
  border: 1px solid rgba(19, 136, 127, 0.22);
  padding: 8px 14px;
  white-space: nowrap;
}

.room-price strong {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.room-price-label,
.room-price-unit {
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.room-price-label {
  margin-right: 2px;
}

.room-tax-note {
  margin: -4px 0 0;
  color: var(--muted-ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.room-block-info p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 1.02rem;
}

.room-block-info .feature-list {
  margin-top: 4px;
}

.room-block-info .button {
  margin-top: auto;
}

.info-panel-shared {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(24px, 3.5vw, 40px);
  align-items: start;
  margin-top: clamp(16px, 3vw, 36px);
}

.info-panel-shared > div:first-child h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.info-panel-shared > div:first-child p {
  margin: 0;
  color: var(--muted-ink);
}

.info-panel-shared .info-rows {
  margin-bottom: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 16px;
}

.info-panel-shared .info-rows div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.room-card-body,
.info-panel {
  padding: clamp(24px, 4vw, 42px);
}

.room-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.room-title-row span {
  border-radius: 999px;
  background: rgba(19, 136, 127, 0.12);
  color: var(--teal);
  padding: 7px 12px;
  font-weight: 850;
  white-space: nowrap;
}

.feature-list,
.amenity-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.amenity-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-ink);
}

.feature-list li::before,
.amenity-grid li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.info-panel {
  display: flex;
  flex-direction: column;
}

.info-rows {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.info-rows div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.info-rows span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.info-rows strong {
  display: block;
  line-height: 1.25;
}

.full-width {
  width: 100%;
  margin-top: auto;
}

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

.amenity-grid article {
  padding: 26px;
}

.reviews-band {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 120, 66, 0.2), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #e8eff6 100%);
}

.score-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.score-board div,
.distance-grid div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(44, 36, 30, 0.08);
  text-align: center;
}

.score-board span,
.distance-grid span {
  display: block;
  color: var(--muted-ink);
  font-weight: 750;
  text-align: center;
}

.score-board strong,
.distance-grid strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.guest-reviews {
  margin-top: 56px;
}

.guest-reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.guest-reviews-top h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.guest-reviews-top p:last-child {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-nav {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  box-shadow: 0 10px 24px rgba(44, 36, 30, 0.08);
}

.review-nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(44, 36, 30, 0.18);
}

.review-nav:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(44, 36, 30, 0.16);
}

.review-nav:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.guest-reviews-track,
.rooms-track {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}

.guest-reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.guest-reviews-track::-webkit-scrollbar {
  display: none;
}

.guest-review-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(260px, 24vw, 320px);
  flex-direction: column;
  min-height: 300px;
  border: 1px solid rgba(40, 37, 34, 0.08);
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 20px 44px rgba(44, 36, 30, 0.08);
  padding: 26px 26px 24px;
  scroll-snap-align: start;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.guest-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(44, 36, 30, 0.14);
  border-color: rgba(19, 136, 127, 0.28);
}

.guest-review-card::before {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(19, 136, 127, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  content: "\201C";
}

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

.review-card-head > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--clay) 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.review-card-head .review-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.review-card-head strong,
.review-card-head .review-meta span {
  display: block;
}

.review-card-head strong {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.2;
}

.review-card-head .review-meta span {
  color: var(--muted-ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.review-card-head .review-score {
  display: grid;
  min-width: 52px;
  height: 36px;
  align-self: flex-start;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #13887f 0%, #0f6f67 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(19, 136, 127, 0.32);
  padding: 0 12px;
}

.review-stay,
.review-date {
  margin-bottom: 6px;
  color: var(--muted-ink);
  font-size: 0.86rem;
  font-weight: 650;
}

.review-stay {
  display: inline-block;
  border-radius: 999px;
  background: rgba(216, 139, 98, 0.12);
  color: var(--clay);
  padding: 4px 12px;
  font-weight: 750;
}

.review-date {
  margin-top: 6px;
  margin-bottom: 12px;
}

.guest-review-card blockquote {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
}

.owner-response {
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  background: rgba(19, 136, 127, 0.06);
  border-radius: 0 0 14px 14px;
  color: var(--muted-ink);
  padding: 14px 4px 0;
  font-size: 0.92rem;
}

.owner-response strong {
  color: var(--teal);
  font-weight: 800;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(40, 37, 34, 0.18);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.18s ease, transform 0.18s ease, width 0.18s ease;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--teal);
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.distance-grid div {
  min-height: 126px;
}

.distance-grid strong {
  margin-bottom: 8px;
  color: var(--orange-dark);
}

.rules-layout {
  align-items: start;
}

.rule-list {
  display: grid;
  gap: 14px;
}

.rule-list article,
.faq-list article {
  padding: 24px;
}

.rule-list p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-band {
  background: #f8fbfd;
}

.gallery-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
  gap: 36px;
  align-items: end;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #d9d4ce;
  cursor: pointer;
}

.gallery-item:nth-child(10n + 1),
.gallery-item:nth-child(10n + 6) {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(24, 22, 20, 0.72);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-band {
  background:
    linear-gradient(90deg, rgba(40, 37, 34, 0.8), rgba(40, 37, 34, 0.56)),
    url("assets/photos/photo-01.jpeg") center / cover;
  color: #fff;
}

.contact-layout p,
.contact-layout .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.contact-layout .eyebrow {
  color: #8ee6dc;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(24px, 5vw, 42px);
  backdrop-filter: blur(12px);
  width: 100%;
}

.contact-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.phone-link {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 18px 36px rgba(37, 211, 102, 0.42),
    0 4px 10px rgba(37, 211, 102, 0.28);
  text-decoration: none;
  transition:
    opacity 200ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.floating-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 24px 44px rgba(37, 211, 102, 0.5),
    0 6px 14px rgba(37, 211, 102, 0.32);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 4px;
}

.floating-whatsapp svg {
  display: block;
}

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

.is-gallery-active .floating-whatsapp,
.is-lightbox-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.lightbox {
  width: min(1100px, calc(100vw - 28px));
  max-width: none;
  border: 0;
  border-radius: 8px;
  background: #151311;
  color: #fff;
  padding: 0;
}

.lightbox::backdrop {
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(5px);
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
}

.lightbox-bar h2 {
  margin: 0;
  font-size: 1rem;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-frame {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.lightbox-frame img {
  width: 100%;
  max-height: 76vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox #lightboxCaption {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .guest-reviews-top {
    align-items: start;
    flex-direction: column;
  }

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

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

  .intro-grid,
  .location-layout,
  .reviews-layout,
  .contact-layout,
  .rules-layout,
  .room-block,
  .room-block-reversed,
  .info-panel-shared,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .room-block-reversed .room-block-gallery {
    order: 0;
  }

  .room-block-gallery-top {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-stack img:first-child {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 18px 24px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.2rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 20, 18, 0.84), rgba(23, 20, 18, 0.42)),
      linear-gradient(0deg, rgba(223, 230, 239, 0.98) 0%, rgba(223, 230, 239, 0.02) 30%);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

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

  .hero-facts,
  .amenity-grid,
  .score-board,
  .distance-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 44px;
    gap: 10px;
    padding: 10px;
  }

  .hero-facts div {
    min-height: 132px;
    padding: 18px 16px 30px;
  }

  .hero-facts strong {
    font-size: 2rem;
  }

  .hero-facts .fact-label {
    margin-bottom: 8px;
  }

  .section-band {
    padding: 64px 18px;
  }

  .guest-reviews {
    margin-top: 34px;
  }

  .guest-review-card {
    flex-basis: min(86vw, 360px);
    min-height: 390px;
    padding: 20px;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img,
  .photo-stack img:first-child {
    min-height: 240px;
    aspect-ratio: 1.2;
  }

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

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(7n + 1) {
    grid-column: span 2;
    aspect-ratio: 1.6;
  }

  .lightbox {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .lightbox-frame {
    position: relative;
    display: block;
    padding: 10px;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: rgba(21, 19, 17, 0.72);
    backdrop-filter: blur(10px);
  }

  #prevPhoto {
    left: 18px;
  }

  #nextPhoto {
    right: 18px;
  }

  .lightbox-frame img {
    max-height: calc(100svh - 160px);
  }

  .floating-whatsapp {
    display: none;
  }
}
