:root {
  --ink: #14201e;
  --muted: #5e6763;
  --paper: #fbf7ef;
  --surface: #ffffff;
  --line: #e6ded0;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --gold: #d9991a;
  --coral: #b94d35;
  --shadow: 0 24px 70px rgba(20, 32, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 112px;
}

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

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

svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(16, 22, 20, 0.58);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-solid {
  background: rgba(20, 32, 30, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #15110a;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
}

.nav-links a:hover {
  color: #fff;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 14, 0.88), rgba(9, 15, 14, 0.42) 48%, rgba(9, 15, 14, 0.2)),
    linear-gradient(0deg, rgba(20, 32, 30, 0.78), rgba(20, 32, 30, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 96vh;
  flex-direction: column;
  justify-content: end;
  margin: 0 auto;
  padding: 160px 0 64px;
  color: #fff;
}

.eyebrow,
.section-kicker,
.room-tag {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.primary-button {
  border: 0;
  padding: 0 24px;
  background: var(--gold);
  color: #171309;
  cursor: pointer;
}

.primary-button:hover {
  background: #efb33a;
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.secondary-button.dark {
  width: fit-content;
  margin-top: 20px;
  border-color: rgba(20, 32, 30, 0.2);
  color: var(--ink);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.quick-facts span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.section-pad,
.section-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.announcements {
  padding-top: 32px;
}

.announcement-grid {
  display: block;
  /* grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr); */
  gap: 18px;
}

.announcement-feature {
  display: grid;
  grid-row: span 2;
  grid-template-columns: minmax(260px, 0.84fr) minmax(260px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 32, 30, 0.1);
}

.announcement-image {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #081617;
  cursor: pointer;
}

.announcement-image img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
}

.announcement-copy {
  display: grid;
  align-content: center;
  padding: 34px;
}

.announcement-copy p:not(.room-tag),
.announcement-placeholder p {
  color: var(--muted);
  line-height: 1.7;
}

.announcement-placeholder {
  display: grid;
  min-height: 230px;
  align-content: end;
  padding: 22px;
  border: 1px dashed rgba(20, 32, 30, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(45deg, rgba(15, 118, 110, 0.08) 0 12px, rgba(217, 153, 26, 0.08) 12px 24px);
}

.announcement-placeholder span {
  width: fit-content;
  margin-bottom: 32px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(20, 32, 30, 0.08);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-body {
  padding: 24px;
}

.room-body p {
  color: var(--muted);
  line-height: 1.65;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0;
}

.price-row strong {
  font-size: 2rem;
}

.price-row span {
  color: var(--muted);
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.amenities {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 48px;
}

.amenities-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

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

.amenity-grid article {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 32, 30, 0.05);
}

.amenity-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.amenity-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
}

.amenity-icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.amenity-grid h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.booking-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: #11211f;
  color: #fff;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

select option {
  color: var(--ink);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #ddd;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.035);
}

.reviews {
  overflow: hidden;
}

.review-stage {
  position: relative;
  min-height: 330px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(17, 33, 31, 0.98)),
    url("assets/exterior-night.png") center / cover;
  box-shadow: var(--shadow);
}

.review-stage::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  max-width: 820px;
  padding: 56px;
  color: #fff;
  opacity: 0;
  transform: translateX(36px) scale(0.98);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.review-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.review-card p {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
}

.review-card footer {
  display: grid;
  gap: 4px;
}

.review-card footer strong {
  font-size: 1rem;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.66);
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.review-controls button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 32, 30, 0.18);
  cursor: pointer;
  transition:
    width 220ms ease,
    background 220ms ease;
}

.review-controls button.is-active {
  width: 58px;
  background: var(--teal);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.nearby-grid article {
  display: grid;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 32, 30, 0.05);
}

.nearby-card {
  overflow: hidden;
}

.nearby-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.nearby-body {
  display: grid;
  padding: 16px;
}

.nearby-body .distance {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(185, 77, 53, 0.1);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.nearby-grid h3 {
  min-height: 48px;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.nearby-grid p {
  min-height: 72px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.directions-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  align-self: end;
  padding: 0 13px;
  border-radius: 7px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.directions-link:hover {
  background: var(--teal);
  color: #fff;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 32, 30, 0.1);
}

.location-panel > div {
  padding: 32px;
}

.location-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.location-panel iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
}

.contact-lines a {
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(16px, calc((100vw - 1120px) / 2));
  background: #14201e;
  color: #fff;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: #19b65a;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(12, 94, 46, 0.32);
}

.floating-whatsapp:hover {
  background: #12984a;
}

.floating-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.lightbox {
  width: min(960px, calc(100% - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

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

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

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

  .nav-links {
    display: none;
  }

  .section-grid,
  .amenities,
  .booking,
  .announcement-grid,
  .announcement-feature,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .room-grid,
  .amenity-grid,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .announcement-feature {
    grid-row: auto;
  }

  .announcement-image img {
    max-height: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .review-card {
    padding: 42px 28px;
  }

  .nearby-grid h3,
  .nearby-grid p {
    min-height: 0;
  }

  .location-panel iframe {
    min-height: 340px;
  }
}

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

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .quick-facts span {
    width: 100%;
  }

  .section-pad,
  .section-grid {
    padding: 58px 0;
  }

  .form-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .amenity-grid article {
    min-height: 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 15px;
  }
}
