@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap");

:root {
  --bg-main: #f7f5ef;
  --bg-soft: #fffdf8;
  --bg-alt: #f2efe6;
  --text: #19251f;
  --text-soft: #5a6b62;
  --forest-900: #10251f;
  --forest-800: #173329;
  --forest-700: #1f4538;
  --forest-500: #2d6554;
  --teal-500: #2f7b73;
  --gold-500: #bf9b53;
  --gold-300: #dec48c;
  --border: rgba(25, 37, 31, 0.14);
  --border-soft: rgba(25, 37, 31, 0.08);
  --white: #ffffff;
  --shadow-soft: 0 16px 34px rgba(20, 31, 27, 0.08);
  --shadow-card: 0 22px 48px rgba(20, 31, 27, 0.12);
  --shadow-hero: 0 26px 64px rgba(8, 15, 13, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 6% 8%, rgba(191, 155, 83, 0.12), transparent 34%),
    radial-gradient(circle at 95% 14%, rgba(47, 123, 115, 0.1), transparent 38%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-main) 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
  color: var(--forest-900);
  line-height: 1.18;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 0 30px;
  color: var(--text-soft);
}

.muted {
  color: var(--text-soft);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.spacer-24 {
  height: 24px;
}

.page-content {
  padding-top: 108px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 16px;
  --header-brand: #f7f5ef;
  --header-kicker: rgba(247, 245, 239, 0.82);
  --header-link: rgba(247, 245, 239, 0.9);
  --header-link-hover: #ffffff;
  --header-shell-bg: rgba(10, 25, 21, 0.22);
  --header-shell-border: rgba(255, 255, 255, 0.24);
  --header-shell-shadow: 0 24px 48px rgba(8, 15, 13, 0.28);
  --header-toggle-bg: rgba(255, 255, 255, 0.14);
  --header-toggle-line: #ffffff;
  --header-social-bg: rgba(255, 255, 255, 0.14);
  --header-social-color: #ffffff;
  transition: transform 0.3s ease;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  --header-brand: var(--forest-900);
  --header-kicker: rgba(25, 37, 31, 0.64);
  --header-link: rgba(25, 37, 31, 0.84);
  --header-link-hover: var(--forest-700);
  --header-shell-bg: rgba(255, 253, 248, 0.95);
  --header-shell-border: rgba(25, 37, 31, 0.08);
  --header-shell-shadow: 0 16px 36px rgba(15, 24, 21, 0.12);
  --header-toggle-bg: #ffffff;
  --header-toggle-line: var(--forest-900);
  --header-social-bg: #ffffff;
  --header-social-color: var(--forest-700);
}

.nav-wrap {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 22px;
  background: var(--header-shell-bg);
  border: 1px solid var(--header-shell-border);
  box-shadow: var(--header-shell-shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 14px 28px rgba(9, 17, 14, 0.22);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--header-kicker);
  font-weight: 700;
}

.brand-text strong {
  color: var(--header-brand);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--header-link);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--header-link-hover);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.nav-book-btn {
  border-radius: 999px;
  padding: 10px 16px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--forest-500), var(--teal-500));
  box-shadow: 0 12px 24px rgba(23, 51, 41, 0.26);
}

.nav-book-btn.active::after {
  display: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--header-shell-border);
  color: var(--header-social-color);
  background: var(--header-social-bg);
  box-shadow: 0 12px 24px rgba(12, 20, 17, 0.12);
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--header-shell-border);
  background: var(--header-toggle-bg);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--header-toggle-line);
  margin: 5px 0;
  border-radius: 999px;
}

.hero-full {
  position: relative;
  height: min(100svh, 980px);
  min-height: 680px;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(104deg, rgba(7, 18, 15, 0.84) 10%, rgba(7, 18, 15, 0.44) 52%, rgba(7, 18, 15, 0.78) 100%),
    radial-gradient(circle at 82% 18%, rgba(222, 196, 140, 0.24), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  align-items: center;
  padding: 150px 0 100px;
}

.hero-box {
  width: min(100%, 790px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 14px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 244, 235, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-box h1 {
  color: #f8f4eb;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.hero-box p {
  max-width: 60ch;
  color: rgba(248, 244, 235, 0.88);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.nav-cta {
  color: #15211c;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 16px 30px rgba(191, 155, 83, 0.34);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(191, 155, 83, 0.4);
}

.btn-secondary {
  color: #f8f4eb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.btn-ghost {
  color: var(--forest-700);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 37, 31, 0.14);
}

.btn-ghost:hover {
  background: #ffffff;
}

.band {
  margin-top: -56px;
  position: relative;
  z-index: 10;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-item {
  padding: 18px 14px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(25, 37, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-item strong {
  display: block;
  margin: 8px 0 2px;
  font-weight: 700;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 800;
  color: var(--forest-700);
  background: linear-gradient(160deg, rgba(47, 123, 115, 0.22), rgba(191, 155, 83, 0.3));
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.card-body {
  padding: 22px;
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.card p {
  color: var(--text-soft);
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.card li + li {
  margin-top: 4px;
}

.room-card,
.clickable,
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover,
.clickable:hover,
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #d8d4ca;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.room-card:hover .image-frame img,
.gallery-item:hover img {
  transform: scale(1.05);
}

.cover-image {
  aspect-ratio: 16 / 10;
}

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

.info-strip .card {
  padding: 6px;
}

.mini {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--forest-700);
  font-weight: 800;
  background: linear-gradient(160deg, rgba(47, 123, 115, 0.18), rgba(191, 155, 83, 0.24));
}

.why-grid .card {
  padding: 8px;
}

.badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--forest-700);
  background: linear-gradient(145deg, rgba(47, 123, 115, 0.22), rgba(191, 155, 83, 0.32));
  font-weight: 800;
}

.highlight-box {
  position: relative;
  overflow: hidden;
  color: #f7f5ef;
  border-radius: var(--radius-lg);
  padding: 32px;
  background:
    linear-gradient(132deg, rgba(16, 37, 31, 0.98), rgba(32, 75, 60, 0.96));
  box-shadow: var(--shadow-card);
}

.highlight-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 196, 140, 0.24), transparent 70%);
}

.highlight-box .section-title,
.highlight-box h2,
.highlight-box h3,
.highlight-box p,
.highlight-box strong {
  position: relative;
  z-index: 1;
  color: #f7f5ef;
}

.highlight-box .muted {
  color: rgba(247, 245, 239, 0.76);
}

.highlight-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card {
  height: 100%;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(17, 27, 23, 0.12);
}

.stars {
  color: #d1a24a;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  min-height: clamp(390px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 154px 0 78px;
  color: #f7f5ef;
  background: #122620;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(112deg, rgba(7, 18, 15, 0.84) 8%, rgba(8, 19, 16, 0.48) 54%, rgba(7, 18, 15, 0.84) 100%),
    var(--page-hero-image, none);
  background-size: cover;
  background-position: var(--page-hero-position, center);
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 86% 21%, rgba(222, 196, 140, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(20, 38, 32, 0), rgba(20, 38, 32, 0.22));
}

.page-banner {
  width: min(100%, 760px);
}

.page-banner h1 {
  color: #f8f4eb;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  margin: 0 0 14px;
  line-height: 1.02;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.page-banner h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.page-banner p {
  color: rgba(248, 244, 235, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  max-width: 62ch;
  margin: 0 0 28px;
}

.page-banner .btn-primary {
  background: linear-gradient(135deg, #dfc88f, #be9952);
}

.page-rooms .page-hero {
  --page-hero-image: url("../images/rooms/2.jpg");
  --page-hero-position: center 45%;
}

.page-activities .page-hero {
  --page-hero-image: url("../images/activity-indoor.jpg");
  --page-hero-position: center 40%;
}

.page-reviews .page-hero {
  --page-hero-image: url("../images/gallery/11.jpg");
  --page-hero-position: center 52%;
}

.page-gallery .page-hero {
  --page-hero-image: url("../images/gallery/1.jpg");
  --page-hero-position: center 44%;
}

.page-contact .page-hero {
  --page-hero-image: url("../images/hero-bg.jpeg");
  --page-hero-position: center 34%;
}

.location-card {
  padding: 24px;
}

.map-placeholder {
  margin-top: 14px;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(25, 37, 31, 0.08);
  background: #dcd8cd;
}

.map-placeholder iframe {
  width: 100%;
  min-height: 280px;
  display: block;
}

.site-footer {
  margin-top: 40px;
  padding-top: 56px;
  color: #ecf0ed;
  background:
    linear-gradient(150deg, #10251f 0%, #173329 65%, #1f4538 100%);
}

.site-footer a {
  color: #f3ead3;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: #f8f4eb;
  font-family: "Playfair Display", Georgia, serif;
}

.site-footer p,
.site-footer li {
  color: rgba(236, 240, 237, 0.84);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.footer-bottom {
  margin-top: 34px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.modal#roomModal {
  z-index: 1120;
}

.modal#bookingModal {
  z-index: 1140;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 10, 0.62);
  backdrop-filter: blur(2px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 790px);
  margin: 4.8vh auto;
  border-radius: 22px;
  background: #fffdf9;
  border: 1px solid rgba(25, 37, 31, 0.1);
  box-shadow: 0 26px 56px rgba(9, 17, 14, 0.24);
  padding: 28px;
  max-height: 90vh;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(25, 37, 31, 0.14);
  background: #ffffff;
  color: var(--forest-900);
  font-size: 1.4rem;
  cursor: pointer;
}

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

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest-800);
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(25, 37, 31, 0.16);
  background: #ffffff;
  padding: 12px 13px;
  color: var(--text);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(47, 123, 115, 0.62);
  box-shadow: 0 0 0 3px rgba(47, 123, 115, 0.12);
}

.modal-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-help {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(25, 37, 31, 0.2);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.room-modal-content {
  display: grid;
  gap: 18px;
}

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

.room-modal-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(25, 37, 31, 0.08);
  background: #d7d2c6;
}

.room-modal-details h3 {
  font-size: 1.7rem;
}

.room-modal-details p {
  margin: 0 0 12px;
  color: var(--text-soft);
}

.room-modal-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.room-modal-list li + li {
  margin-top: 5px;
}

.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 1110;
  display: none;
  background: rgba(7, 13, 11, 0.7);
  backdrop-filter: blur(2px);
}

.modal-content {
  width: min(92vw, 820px);
  margin: 5vh auto;
  background: #fffdf9;
  border-radius: 22px;
  border: 1px solid rgba(25, 37, 31, 0.1);
  box-shadow: 0 24px 52px rgba(8, 15, 13, 0.24);
  padding: 20px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 14px;
  top: 8px;
  font-size: 30px;
  line-height: 1;
  color: var(--forest-900);
  cursor: pointer;
}

.slider {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 16px;
}

.slides {
  display: flex;
  transition: transform 0.35s ease;
}

.slide {
  min-width: 100%;
  height: clamp(260px, 48vh, 420px);
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(16, 37, 31, 0.54);
  cursor: pointer;
  z-index: 2;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.gallery-section {
  padding: 72px 0 42px;
}

.gallery-header {
  margin-bottom: 16px;
}

.gallery-header h2 {
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.gallery-header p {
  color: var(--text-soft);
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(25, 37, 31, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  text-align: center;
  color: #f8f4eb;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(7, 18, 15, 0), rgba(7, 18, 15, 0.82));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.coming-soon img {
  filter: brightness(0.7);
}

.overlay-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(7, 18, 15, 0.68);
  border: 1px solid rgba(248, 244, 235, 0.3);
  color: #f8f4eb;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  background: rgba(6, 12, 10, 0.9);
  padding: 56px 18px 18px;
}

.lightbox-img {
  width: min(96vw, 1160px);
  max-height: calc(100vh - 92px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 14px;
  color: #f8f4eb;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-float,
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fa34f, #29d367);
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  z-index: 1050;
  box-shadow: 0 14px 28px rgba(31, 163, 79, 0.36);
  animation: pulse 2.2s infinite;
}

.whatsapp-float:hover,
.floating-wa:hover {
  transform: translateY(-2px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(41, 211, 103, 0.48);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(41, 211, 103, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(41, 211, 103, 0);
  }
}

@media (max-width: 1200px) {
  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .info-strip,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-full {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero-box {
    text-align: center;
    margin-inline: auto;
  }

  .hero-box p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .page-hero {
    min-height: 52vh;
    padding: 136px 0 62px;
  }

  .page-banner {
    text-align: center;
    margin-inline: auto;
  }

  .page-banner h1::after {
    margin-inline: auto;
  }

  .page-banner p {
    margin-inline: auto;
  }

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

  .room-modal-gallery {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(25, 37, 31, 0.1);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    color: var(--forest-900);
    padding: 12px 10px;
  }

  .site-nav a.active::after {
    display: none;
  }

  .social-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .band {
    margin-top: -32px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-wrap {
    min-height: 78px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .brand-kicker {
    font-size: 0.57rem;
  }

  .brand-text strong {
    font-size: 0.8rem;
    white-space: normal;
    letter-spacing: 0.09em;
  }

  .hero-full {
    min-height: 560px;
  }

  .hero-content {
    padding: 120px 0 72px;
  }

  .hero-box h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .hero-box p {
    font-size: 0.99rem;
    margin-bottom: 26px;
  }

  .btn {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .page-content {
    padding-top: 94px;
  }

  .page-hero {
    padding: 118px 0 48px;
  }

  .page-banner h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

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

  .gallery-item img {
    height: 230px;
  }

  .modal-card {
    padding: 20px;
    border-radius: 18px;
  }

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