@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #17211d;
  --muted: #64736c;
  --paper: #f7f3ea;
  --soft: #ebe4d5;
  --white: #ffffff;
  --accent: #b45f3c;
  --accent-dark: #8f4229;
  --forest: #1f3b33;
  --line: rgba(23, 33, 29, 0.16);
  --shadow: 0 18px 54px rgba(31, 59, 51, 0.14);
  --shadow-strong: 0 28px 90px rgba(17, 25, 22, 0.22);
  --display-font: "Hotel Resort - Luxury Business Font", "Hotel Resort", "Cormorant Garamond",
    "Playfair Display", Georgia, "Times New Roman", serif;
  --body-font: "Montserrat", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-left: rgba(10, 23, 20, 0.88);
  --hero-right: rgba(10, 23, 20, 0.45);
  --hero-glow: rgba(255, 255, 255, 0.16);
  --hero-warmth: rgba(255, 206, 121, 0.18);
}

@font-face {
  font-family: "Hotel Resort - Luxury Business Font";
  src:
    local("Hotel Resort - Luxury Business Font"),
    local("Hotel Resort");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: #f8f5ee;
  background-image: radial-gradient(rgba(180, 95, 60, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-attachment: fixed;
  font-family: var(--body-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition:
    background 700ms ease,
    color 700ms ease;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(rgba(17, 25, 22, 0.74), rgba(17, 25, 22, 0.08));
  backdrop-filter: blur(10px);
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--forest);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-family: var(--display-font);
  font-size: 1.38rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-family: var(--display-font);
  font-size: 1.24rem;
  line-height: 1;
}

.brand-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  border-radius: 8px;
  object-fit: contain;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  background: #ffffff;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.04);
  border-color: var(--accent, #f5a623);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  border-radius: 10px;
  object-fit: contain;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  background: #ffffff;
}

.loader-logo-img {
  height: 90px;
  width: auto;
  max-width: 200px;
  border-radius: 12px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
  background: #ffffff;
  animation: loaderPulse 2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 209, 179, 0.6);
  }
}

.nav a {
  font-size: 0.94rem;
  font-weight: 650;
  opacity: 0.92;
}

.nav a:hover {
  opacity: 1;
}

[hidden] {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 84px) 110px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, var(--hero-warmth), transparent 28%),
    linear-gradient(90deg, var(--hero-left), var(--hero-right)),
    url("./hero-yellow-house.jpg") center / cover;
  transition:
    background 900ms ease,
    filter 900ms ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.weather-layer,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ─── Hero Moving Cloud Animation Effects ─────────────────── */
.weather-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.cloud,
.mist {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}

/* Base Cloud Volumetric Puff Shape */
.cloud {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 75%);
  filter: blur(12px);
  border-radius: 500px;
  will-change: transform;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 60%, transparent 80%);
}

/* Cloud 1 - Upper floating cloud */
.cloud-one {
  width: 480px;
  height: 140px;
  top: 10%;
  left: -500px;
  animation: heroCloudFloat1 30s linear infinite;
}

.cloud-one::before {
  width: 220px;
  height: 220px;
  top: -90px;
  left: 80px;
}

.cloud-one::after {
  width: 180px;
  height: 180px;
  top: -60px;
  left: 230px;
}

/* Cloud 2 - Mid floating cloud (slower, larger) */
.cloud-two {
  width: 620px;
  height: 180px;
  top: 26%;
  left: -650px;
  animation: heroCloudFloat2 40s linear infinite;
  animation-delay: -14s;
  opacity: 0.75;
}

.cloud-two::before {
  width: 280px;
  height: 280px;
  top: -110px;
  left: 120px;
}

.cloud-two::after {
  width: 220px;
  height: 220px;
  top: -80px;
  left: 320px;
}

/* Cloud 3 - Lower floating cloud */
.cloud-three {
  width: 540px;
  height: 160px;
  top: 42%;
  left: -600px;
  animation: heroCloudFloat1 35s linear infinite;
  animation-delay: -7s;
  opacity: 0.65;
}

.cloud-three::before {
  width: 240px;
  height: 240px;
  top: -100px;
  left: 100px;
}

.cloud-three::after {
  width: 190px;
  height: 190px;
  top: -70px;
  left: 280px;
}

/* Rolling Hill Mist Layer */
.mist {
  left: -20%;
  width: 140%;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.12) 55%, transparent 80%);
  filter: blur(25px);
  will-change: transform;
}

.mist-one {
  top: 28%;
  animation: heroMistWave1 22s ease-in-out infinite alternate;
}

.mist-two {
  top: 50%;
  height: 220px;
  animation: heroMistWave2 28s ease-in-out infinite alternate;
  animation-delay: -7s;
  opacity: 0.7;
}

.mist-three {
  bottom: 2%;
  height: 160px;
  animation: heroMistWave1 34s ease-in-out infinite alternate;
  animation-delay: -14s;
  opacity: 0.55;
}

/* ── Dynamic Weather State Cloud Adaptations ───────────── */
/* Clear / Sunny Weather */
body.weather-clear .sun-orb {
  opacity: 1;
}

body.weather-clear .cloud {
  opacity: 0.35;
  filter: blur(14px);
  animation-duration: 52s;
}

body.weather-clear .mist {
  opacity: 0.25;
}

/* Cloudy / Overcast Weather */
body.weather-cloudy .sun-orb {
  opacity: 0;
}

body.weather-cloudy .cloud {
  opacity: 0.85;
  filter: blur(10px);
}

body.weather-cloudy .mist {
  opacity: 0.65;
}

/* Misty / Foggy Weather */
body.weather-misty .sun-orb {
  opacity: 0;
}

body.weather-misty .cloud {
  opacity: 0.75;
  filter: blur(20px);
}

body.weather-misty .mist {
  opacity: 0.92;
  filter: blur(32px);
  height: 240px;
}

/* Rainy / Stormy Weather */
body.weather-rainy .sun-orb {
  opacity: 0;
}

body.weather-rainy .cloud {
  opacity: 0.95;
  background: radial-gradient(ellipse at center, rgba(140, 160, 175, 0.75) 0%, rgba(70, 90, 105, 0.45) 55%, transparent 78%);
  filter: blur(8px);
}

body.weather-rainy .mist {
  opacity: 0.82;
  filter: blur(22px);
}

/* Rain Drop Effect */
.rain-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

body.weather-rainy .rain-container {
  opacity: 1;
}

.drop {
  position: absolute;
  top: -60px;
  width: 1.5px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.75), rgba(200, 230, 255, 0.9));
  animation: rainDrop 1.2s linear infinite;
}

.drop-1 {
  left: 8%;
  animation-delay: 0s;
  animation-duration: 1.1s;
}

.drop-2 {
  left: 18%;
  animation-delay: 0.3s;
  animation-duration: 1.3s;
}

.drop-3 {
  left: 29%;
  animation-delay: 0.7s;
  animation-duration: 1.0s;
}

.drop-4 {
  left: 41%;
  animation-delay: 0.2s;
  animation-duration: 1.2s;
}

.drop-5 {
  left: 53%;
  animation-delay: 0.5s;
  animation-duration: 1.1s;
}

.drop-6 {
  left: 64%;
  animation-delay: 0.1s;
  animation-duration: 1.4s;
}

.drop-7 {
  left: 76%;
  animation-delay: 0.8s;
  animation-duration: 1.0s;
}

.drop-8 {
  left: 85%;
  animation-delay: 0.4s;
  animation-duration: 1.2s;
}

.drop-9 {
  left: 93%;
  animation-delay: 0.6s;
  animation-duration: 1.1s;
}

.drop-10 {
  left: 35%;
  animation-delay: 0.9s;
  animation-duration: 1.3s;
}

@keyframes rainDrop {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(105vh) translateX(-40px);
    opacity: 0;
  }
}

body.weather-cloudy .hero,
body.weather-misty .hero,
body.weather-rainy .hero {
  background:
    radial-gradient(circle at 78% 18%, var(--hero-warmth), transparent 28%),
    linear-gradient(90deg, var(--hero-left), var(--hero-right)),
    url("./hero-yellow-house.jpg") center / cover;
}

body.temp-cool {
  --hero-left: rgba(7, 22, 29, 0.84);
  --hero-right: rgba(42, 64, 73, 0.44);
  --hero-glow: rgba(193, 226, 232, 0.22);
  --hero-warmth: rgba(182, 216, 226, 0.14);
}

body.temp-mild {
  --hero-left: rgba(13, 35, 30, 0.76);
  --hero-right: rgba(58, 78, 60, 0.3);
  --hero-glow: rgba(234, 245, 218, 0.18);
  --hero-warmth: rgba(233, 209, 143, 0.16);
}

body.temp-warm {
  --hero-left: rgba(43, 30, 20, 0.72);
  --hero-right: rgba(142, 88, 47, 0.28);
  --hero-glow: rgba(255, 231, 174, 0.26);
  --hero-warmth: rgba(255, 181, 83, 0.24);
}

body.temp-hot {
  --hero-left: rgba(53, 27, 18, 0.74);
  --hero-right: rgba(184, 98, 45, 0.32);
  --hero-glow: rgba(255, 210, 144, 0.34);
  --hero-warmth: rgba(255, 150, 72, 0.32);
}

body.temp-cool .sun-orb {
  background: rgba(205, 230, 237, 0.32);
  box-shadow:
    0 0 44px rgba(205, 230, 237, 0.28),
    0 0 130px rgba(205, 230, 237, 0.16);
}

body.temp-mild .sun-orb {
  background: rgba(255, 224, 157, 0.44);
}

body.temp-warm .sun-orb,
body.temp-hot .sun-orb {
  background: rgba(255, 196, 103, 0.7);
}

body.temp-cool .weather-card {
  background: rgba(15, 31, 38, 0.64);
}

body.temp-warm .weather-card,
body.temp-hot .weather-card {
  background: rgba(42, 27, 19, 0.62);
}

.weather-card {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 104px;
  z-index: 2;
  width: min(300px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 20px;
  color: var(--white);
  background: rgba(17, 25, 22, 0.58);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.weather-card span,
.weather-card small {
  display: block;
}

.weather-location {
  margin-bottom: 12px;
  color: #ffd3bf;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-card strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

#weatherCondition {
  margin-top: 8px;
  font-weight: 750;
}

#weatherMeta {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd3bf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.7rem, 11vw, 8.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
}

h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.dark {
  color: var(--white);
  background: var(--forest);
}

.button.glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.button.light {
  color: var(--forest);
  background: var(--white);
}

.button.muted {
  color: var(--forest);
  border: 1px solid var(--line);
  background: #fffaf1;
}

.button.full {
  width: 100%;
}

.quick-booking {
  width: min(1120px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
}

.quick-booking-form,
.booking-form,
.admin-form {
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
}

.trust-strip {
  width: min(1120px, calc(100% - 36px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.trust-strip div {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 1.25rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 95, 60, 0.16);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: end;
}

.intro>p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 4px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(31, 59, 51, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-card.is-selected {
  outline: 3px solid rgba(180, 95, 60, 0.28);
}

.room-card img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
}

.room-body {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
}

.room-body p,
.amenity p {
  margin: 0;
  color: var(--muted);
}

.room-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
  max-height: calc(1.55em * 3);
  font-size: 0.92rem;
}

.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.room-meta span {
  font-weight: 850;
}

.text-button {
  border: 0;
  color: var(--accent);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.danger-button {
  border: 0;
  color: #a32722;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.amenities {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background: var(--forest);
  color: var(--white);
}

.amenities .section-heading {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.amenity-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.amenity {
  min-height: 220px;
  padding: 26px;
  background: var(--forest);
}

.amenity span {
  display: inline-block;
  margin-bottom: 38px;
  color: #f0c7b5;
  font-weight: 850;
}

.amenity p {
  color: rgba(255, 255, 255, 0.76);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 100px;
}

.booking-form {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
}

@keyframes sunPulse {

  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes heroCloudFloat1 {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(calc(50vw + 300px)) translateY(-15px);
  }

  100% {
    transform: translateX(calc(100vw + 600px)) translateY(0);
  }
}

@keyframes heroCloudFloat2 {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(calc(50vw + 350px)) translateY(18px);
  }

  100% {
    transform: translateX(calc(100vw + 700px)) translateY(0);
  }
}

@keyframes heroMistWave1 {
  0% {
    transform: translateX(-4%) translateY(0) scaleY(1);
  }

  50% {
    transform: translateX(5%) translateY(-12px) scaleY(1.1);
  }

  100% {
    transform: translateX(-2%) translateY(6px) scaleY(0.95);
  }
}

@keyframes heroMistWave2 {
  0% {
    transform: translateX(6%) translateY(0) scaleY(1.05);
  }

  50% {
    transform: translateX(-5%) translateY(14px) scaleY(0.9);
  }

  100% {
    transform: translateX(4%) translateY(-8px) scaleY(1.15);
  }
}

.admin-section {
  border-top: 1px solid var(--line);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.admin-form {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
}

.admin-form-actions {
  display: grid;
  gap: 10px;
}

.image-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(31, 59, 51, 0.36);
  border-radius: 8px;
  background: #fffaf1;
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}

.image-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-list-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-list-head h3 {
  margin: 0;
}

.property-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.property-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 16px;
  background: var(--white);
}

.property-item:hover {
  background: #fffdf8;
}

.property-item img {
  width: 112px;
  height: 92px;
  border-radius: 6px;
  object-fit: cover;
}

.property-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.property-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.property-price {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 850;
}

.property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.empty-list {
  padding: 24px;
  color: var(--muted);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-summary div {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: #fffaf1;
}

.booking-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-summary strong {
  font-size: 1.35rem;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 750;
}

.form-message.error {
  color: #a32722;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: #111916;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px 22px;
}

.site-footer p {
  margin: 4px 0 0;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(110deg, rgba(31, 59, 51, 0.94), rgba(17, 25, 22, 0.72)),
    url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=82") center / cover fixed;
}

.admin-shell {
  min-height: 100vh;
}

.login-panel {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.login-card {
  width: min(460px, 100%);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 25, 22, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.admin-brand,
.dashboard-brand {
  margin-bottom: 28px;
}

.login-card h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.4rem);
}

.login-copy {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.78);
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-form input {
  background: rgba(255, 255, 255, 0.95);
}

.dashboard-panel {
  min-height: 100vh;
  background: var(--paper);
}

.booking-page {
  /* Inherit global dot grid background from body */
}

.booking-hero {
  min-height: 44vh;
  display: flex;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 84px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 25, 22, 0.78), rgba(31, 59, 51, 0.42)),
    url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.booking-hero>div {
  width: min(760px, 100%);
}

.booking-hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.booking-page-section {
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.booking-flow {
  display: grid;
  gap: 22px;
}

.booking-property-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.booking-property-card {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 16px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fffdf8;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.booking-property-card:hover,
.booking-property-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(180, 95, 60, 0.54);
  box-shadow: 0 14px 34px rgba(31, 59, 51, 0.1);
}

.booking-property-card.is-selected {
  background: #fff8ed;
}

.booking-property-card img {
  width: 156px;
  height: 132px;
  border-radius: 6px;
  object-fit: cover;
}

.booking-property-card span {
  display: block;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-property-card h3 {
  margin: 4px 0 6px;
}

.booking-property-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-property-card strong {
  display: block;
  margin: 10px 0 4px;
}

.booking-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 14px;
}

.booking-card-price strong {
  margin: 0 0 6px 0;
}

.booking-card-thumbs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-card-thumbs img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-card-thumbs .more-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(180, 95, 60, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}


.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--forest);
}

.dashboard-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.dashboard-header .brand {
  margin-bottom: 4px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-overview {
  width: min(1180px, calc(100% - 36px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-overview div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-overview div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.admin-overview span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-overview strong {
  font-size: 1.8rem;
}

.admin-workspace {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
  }

  .site-header .nav {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 96px;
  }

  .weather-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin-top: 28px;
  }

  .quick-booking-form,
  .intro,
  .booking-section,
  .admin-layout,
  .admin-workspace,
  .booking-property-card {
    grid-template-columns: 1fr;
  }

  .booking-property-card img {
    width: 100%;
    height: 190px;
  }

  .room-grid,
  .amenity-grid,
  .trust-strip,
  .admin-overview {
    grid-template-columns: 1fr 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .quick-booking {
    margin-top: -36px;
  }

  .section {
    padding: 68px 0;
  }

  .room-grid,
  .amenity-grid,
  .trust-strip,
  .admin-overview,
  .form-row,
  .booking-summary,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
  }

  .footer-links,
  .dashboard-header {
    justify-content: start;
  }

  .dashboard-header {
    display: grid;
  }

  .booking-header {
    display: grid;
  }

  .amenity {
    min-height: 180px;
  }
}

/* ==========================================
   Property Detail Page Specific Styles
   ========================================== */

.property-hero {
  min-height: 48vh;
  display: flex;
  align-items: end;
  padding: 110px clamp(20px, 6vw, 84px) 64px;
  color: var(--white);
  position: relative;
  background:
    linear-gradient(180deg, rgba(17, 25, 22, 0.45) 0%, rgba(17, 25, 22, 0.84) 100%),
    url("./hero-yellow-house.jpg") center / cover;
}

.property-hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
}

.property-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.84;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.property-back-link:hover {
  opacity: 1;
  transform: translateX(-3px);
}

.property-hero-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.property-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.property-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.property-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

/* Gallery Section */
.gallery-section {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 16px 42px rgba(31, 59, 51, 0.06);
  margin-bottom: 36px;
}

.gallery-main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6;
  border-radius: 6px;
  overflow: hidden;
  background: #f0ebe2;
}

.gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.thumbnail-carousel {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--soft);
}

.thumbnail-carousel::-webkit-scrollbar {
  height: 5px;
}

.thumbnail-carousel::-webkit-scrollbar-track {
  background: var(--soft);
  border-radius: 10px;
}

.thumbnail-carousel::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.thumbnail-item {
  width: 88px;
  height: 60px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  opacity: 0.65;
  flex-shrink: 0;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.thumbnail-item:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.thumbnail-item.active {
  opacity: 1;
  border-color: var(--accent);
}

/* Details Panel */
.details-panel {
  display: flex;
  flex-direction: column;
}

.property-description-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: 0 16px 42px rgba(31, 59, 51, 0.04);
}

.property-description-card h2 {
  font-size: 1.95rem;
  margin-bottom: 16px;
}

.property-description-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.64;
  margin-bottom: 28px;
  white-space: pre-line;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fdfcf7;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spec-val {
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--ink);
}

.property-amenities {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.property-amenities h3 {
  font-size: 1.25rem;
  font-family: var(--body-font);
  font-weight: 750;
  margin-bottom: 18px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.amenity-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Sticky Booking Widget */
.booking-widget-card {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.widget-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.widget-price-val {
  font-size: 1.8rem;
  font-weight: 850;
  color: var(--ink);
}

.widget-price-label {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 650;
}

.widget-form {
  display: grid;
  gap: 16px;
}

.widget-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fffaf1;
  margin-top: 4px;
}

.widget-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.widget-summary-line.total {
  font-weight: 850;
  color: var(--ink);
  font-size: 1.05rem;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
  margin-top: 6px;
}

.widget-summary-line strong {
  color: var(--ink);
}

.room-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.room-card-actions a.text-button {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 880px) {
  .property-detail-layout {
    grid-template-columns: 1fr;
  }

  .booking-widget-card {
    position: static;
  }

  .property-hero {
    min-height: 38vh;
  }
}

@media (max-width: 580px) {
  .amenities-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Page Loader
   ========================================== */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(22, 42, 36, 0.9) 0%, rgba(12, 26, 22, 0.96) 100%);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.page-loader.loader-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: loaderFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-animation-container {
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.loader-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Mountain drawing animation */
.mountain-back {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mountain-front {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Cabin fade-in and fireplace glow */
.cabin-outline {
  opacity: 0;
  animation: fadeInCabin 1.2s ease forwards 1s;
}

@keyframes fadeInCabin {
  to {
    opacity: 1;
  }
}

.cabin-glow {
  opacity: 0;
  animation: cabinFlicker 2s infinite ease-in-out 1.8s;
  transform-origin: 64px 58px;
}

@keyframes cabinFlicker {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px #ffd1b3);
  }

  25%,
  75% {
    opacity: 0.7;
  }
}

/* Cloud drift */
.loader-cloud {
  animation: cloudDrift 5s ease-in-out infinite;
  transform-origin: 42px 37px;
}

@keyframes cloudDrift {

  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }

  50% {
    transform: translateX(8px) translateY(-1.5px) scale(1.03);
  }
}

/* Stars twinkle */
.star {
  transform-origin: center;
}

.star-1 {
  animation: starTwinkle 2.5s infinite ease-in-out;
}

.star-2 {
  animation: starTwinkle 1.8s infinite ease-in-out 0.5s;
}

.star-3 {
  animation: starTwinkle 3.2s infinite ease-in-out 1s;
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.7);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Loader name with modern typography and gradient */
.loader-name {
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 550;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: linear-gradient(135deg, #ffffff 40%, #ffd1b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: letterSpacingExpand 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
  margin-top: 8px;
}

@keyframes letterSpacingExpand {
  from {
    letter-spacing: 0.08em;
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    letter-spacing: 0.22em;
    opacity: 1;
    transform: scale(1);
  }
}

/* Minimalist shimmer progress bar */
.loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeInBar 0.8s ease forwards 0.8s;
}

@keyframes fadeInBar {
  to {
    opacity: 1;
  }
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), #ffd1b3, transparent);
  background-size: 200% 100%;
  border-radius: 99px;
  animation: shimmerProgress 1.8s infinite linear;
}

@keyframes shimmerProgress {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ==========================================
   Nav — Admin Login Card Button
   ========================================== */

.nav-link {
  font-size: 0.94rem;
  font-weight: 650;
  opacity: 0.9;
  transition: opacity 0.16s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-admin-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.54);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--white);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.nav-admin-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

/* ==========================================
   Hero — Rating Badge
   ========================================== */

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 16px 0 20px;
}

.hero-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-score {
  font-size: 1.14rem;
  font-weight: 850;
  color: var(--white);
}

.hero-reviews {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.hero-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* ==========================================
   Contact Us Section
   ========================================== */

.contact-section {
  background: var(--paper);
  padding-block: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 80px);
  align-items: start;
}

.contact-tagline {
  margin: 16px 0 36px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-items {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 59, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(31, 59, 51, 0.12);
}

.contact-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(180, 95, 60, 0.1);
  border-radius: 8px;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.contact-item a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map-card {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}

.map-embed {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ==========================================
   Responsive — Contact & Nav
   ========================================== */

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card {
    position: static;
  }

  .map-embed {
    height: 260px;
  }

  .nav-admin-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .circular-gallery-wrapper {
    height: 420px;
  }
}

@media (max-width: 620px) {
  .hero-rating {
    gap: 6px 10px;
  }

  .contact-item {
    padding: 14px;
  }
}

/* ==========================================
   SCROLL REVEAL — Base System
   ========================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="right"] {
  opacity: 0;
  transform: translateX(44px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible,
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   HERO — Entrance Animations (on load)
   ========================================== */

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-anim-1 {
  opacity: 0;
  animation: heroUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-anim-2 {
  opacity: 0;
  animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-anim-3 {
  opacity: 0;
  animation: heroUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

.hero-anim-4 {
  opacity: 0;
  animation: heroUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.hero-anim-5 {
  opacity: 0;
  animation: heroUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
}

.hero-anim-6 {
  opacity: 0;
  animation: heroRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

/* ==========================================
   ROOM CARDS — stagger applied by JS
   ========================================== */

.room-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* JS adds .reveal-card class; CSS handles initial hidden state */
.room-card.reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.room-card.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   HEADER — Scroll shrink effect
   ========================================== */

.site-header {
  transition:
    padding 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(17, 25, 22, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

/* ==========================================
   MICRO-ANIMATIONS — hover lifts & pulses
   ========================================== */

.trust-strip div {
  transition: background 0.2s ease, transform 0.2s ease;
}

.trust-strip div:hover {
  background: #fffaf0;
  transform: translateY(-3px);
}

.amenity {
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.amenity:hover {
  background: #1a3228;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.button {
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================================
   ✨ MODERN UI OVERRIDES
   ============================================================ */

/* ── Updated design tokens ──────────────────────────────── */
:root {
  --body-font: "Plus Jakarta Sans", "Montserrat", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --grad-accent: linear-gradient(135deg, #c4693e 0%, #e08050 100%);
  --grad-forest: linear-gradient(135deg, #1f3b33 0%, #2d5446 100%);
  --grad-dark: linear-gradient(135deg, #111916 0%, #1f3b33 100%);
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(31, 59, 51, 0.10);
  --shadow-lift: 0 8px 16px rgba(0, 0, 0, 0.06), 0 24px 56px rgba(31, 59, 51, 0.16);
  --shadow-glow: 0 0 0 4px rgba(180, 95, 60, 0.18);
  --border-card: 1px solid rgba(23, 33, 29, 0.09);
}

/* ── Body base ──────────────────────────────────────────── */
body {
  background: #f8f5ee;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation — modern glass pill ─────────────────────── */
.site-header {
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(15, 22, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(15, 22, 18, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--grad-accent);
  border: none;
  box-shadow: 0 4px 14px rgba(180, 95, 60, 0.4);
  font-size: 1.1rem;
  color: #fff;
}

.nav {
  gap: 4px;
}

.nav-link {
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 1;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-link::after {
  display: none;
}

/* remove underline, using bg instead */

.nav-admin-btn {
  padding: 9px 22px;
  border-radius: 99px;
  background: var(--grad-accent);
  border: none;
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 4px 18px rgba(180, 95, 60, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180, 95, 60, 0.52);
  background: var(--grad-accent);
  border-color: transparent;
}

/* ── Hero — dramatic modern overlay ─────────────────────── */
.hero {
  min-height: 92vh;
  padding: 160px clamp(24px, 7vw, 96px) 120px;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(180, 95, 60, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 206, 121, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, rgba(8, 18, 15, 0.92) 0%, rgba(8, 18, 15, 0.72) 55%, rgba(8, 18, 15, 0.38) 100%),
    url("./hero-yellow-house.jpg") center/cover;
  align-items: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
}

h1 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  letter-spacing: -0.02em;
  line-height: 0.88;
}

/* ── Buttons — pill shape, gradient primary ──────────────── */
.button {
  border-radius: 99px;
  padding: 0 28px;
  min-height: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.button.primary {
  background: var(--grad-accent);
  box-shadow: 0 4px 18px rgba(180, 95, 60, 0.36);
}

.button.primary:hover {
  background: linear-gradient(135deg, #d4754a 0%, #e89060 100%);
  box-shadow: 0 8px 28px rgba(180, 95, 60, 0.52);
  transform: translateY(-2px);
}

.button.glass {
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.button.dark {
  border-radius: 99px;
  background: var(--grad-forest);
  box-shadow: 0 4px 18px rgba(31, 59, 51, 0.28);
}

/* ── Weather card — frosted glass ───────────────────────── */
.weather-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 18, 15, 0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 24px;
}

/* ── Quick booking form ──────────────────────────────────── */
.quick-booking-form {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 20px 24px;
  border: var(--border-card);
  gap: 16px;
}

/* ── Trust strip — modern stat cards ────────────────────── */
.trust-strip {
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.trust-strip div {
  padding: 22px 28px;
  border-right: 1px solid rgba(23, 33, 29, 0.08);
}

.trust-strip strong {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section eyebrow pill ───────────────────────────────── */
.eyebrow {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(180, 95, 60, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

/* Remove eyebrow pill from hero (handled separately above) */
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

/* ── Section headings ───────────────────────────────────── */
h2 {
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── Room cards — modern with image hover overlay ─────── */
.room-card {
  border-radius: var(--radius-lg);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.room-card img {
  aspect-ratio: 4/3;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.room-card:hover img {
  transform: scale(1.06);
}

.room-body {
  padding: 24px;
  gap: 14px;
}

.room-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.room-meta span {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.text-button {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(180, 95, 60, 0.1);
  color: var(--accent);
  transition: background 0.18s ease;
}

.text-button:hover {
  background: rgba(180, 95, 60, 0.18);
}

/* ── Amenities — modern dark cards ─────────────────────── */
.amenities {
  background: var(--grad-dark);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(180, 95, 60, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(45, 84, 70, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.amenity-grid {
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.amenity {
  padding: 36px 30px;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  display: flex;
  flex-direction: column;
}

.amenity span {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--display-font);
  color: transparent;
  background: linear-gradient(135deg, rgba(180, 95, 60, 0.7), rgba(240, 160, 128, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  line-height: 1;
}

.amenity h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.amenity p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

.amenity:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: none;
  box-shadow: none;
}

/* ── Intro section ──────────────────────────────────────── */
.intro h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}

/* ── Contact items ──────────────────────────────────────── */
.contact-item {
  border-radius: var(--radius-md);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  background: #fff;
  gap: 18px;
  padding: 22px;
}

.contact-item:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(180, 95, 60, 0.12), rgba(180, 95, 60, 0.06));
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(180, 95, 60, 0.12);
}

.map-embed {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

/* ── Footer — rich gradient ─────────────────────────────── */
.site-footer {
  background: #0d1714;
  padding: 44px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  gap: 32px;
  align-items: center;
}

.site-footer strong {
  font-family: var(--display-font);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.84rem;
  margin-top: 6px;
}

.footer-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 14px;
  border-radius: 99px;
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

/* ── Form inputs — modern ───────────────────────────────── */
input,
select,
textarea {
  border-radius: 10px;
  border: 1.5px solid rgba(23, 33, 29, 0.14);
  padding: 12px 16px;
  background: #fafaf7;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 95, 60, 0.12);
  background: #fff;
}

/* ── Admin card — modern ────────────────────────────────── */
.admin-form,
.booking-form {
  border-radius: var(--radius-lg);
}

.login-card {
  border-radius: var(--radius-xl);
  background: rgba(12, 22, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
}

/* ── Section separator ──────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f0ede6;
}

::-webkit-scrollbar-thumb {
  background: rgba(180, 95, 60, 0.4);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ── Selection ──────────────────────────────────────────── */
::selection {
  background: rgba(180, 95, 60, 0.22);
  color: var(--ink);
}

/* ── Admin Animations ────────────────────────────────────── */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-overview div {
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.admin-overview div:nth-child(1) {
  animation-delay: 0.1s;
}

.admin-overview div:nth-child(2) {
  animation-delay: 0.2s;
}

.admin-overview div:nth-child(3) {
  animation-delay: 0.3s;
}

.admin-form {
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.property-list {
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.property-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.thumbnail-item,
.image-preview img {
  animation: fadeSlideUp 0.4s ease forwards;
}

/* ── Global Image Lightbox ──────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 13, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  position: relative;
  width: 90%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
  object-fit: contain;
}

.lightbox-image-container img.fading {
  opacity: 0;
  transform: scale(0.98);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav.prev {
  left: 4%;
}

.lightbox-nav.next {
  right: 4%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 4%;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10001;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 10001;
}

/* ── Services Section ───────────────────────────────────────── */
.services-section {
  position: relative;
  padding: 80px 0;
}

.services-section .section-heading h2 {
  color: var(--heading, #122620);
}

.services-section .section-heading .eyebrow {
  color: var(--accent, #b45f3c);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: #142821 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.4s ease;
  box-shadow: 0 14px 36px rgba(18, 38, 32, 0.22);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  background: #183028 !important;
  border-color: rgba(255, 209, 179, 0.4) !important;
  box-shadow: 0 22px 50px rgba(18, 38, 32, 0.35), 0 0 25px rgba(255, 179, 138, 0.2);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d1a15;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(10, 20, 16, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 209, 179, 0.3);
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffd1b3 !important;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.service-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content .eyebrow {
  font-size: 0.72rem;
  margin-bottom: 12px;
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.service-content h3 {
  font-size: 1.48rem;
  font-family: var(--display-font);
  font-weight: 700;
  margin: 0 0 12px;
  color: #ffffff !important;
  line-height: 1.25;
}

.service-content p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0 0 24px;
  flex-grow: 1;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b45f3c 0%, #d97749 100%);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(180, 95, 60, 0.3);
  margin-top: auto;
}

.service-action-btn span {
  transition: transform 0.3s ease;
}

.service-action-btn:hover {
  background: linear-gradient(135deg, #c46843 0%, #e88352 100%);
  box-shadow: 0 8px 22px rgba(180, 95, 60, 0.5);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.service-action-btn:hover span {
  transform: translateX(4px);
}

/* =========================================================
   1. REDESIGNED TOURIST PLACES — Asymmetric Bento Explorer
   ========================================================= */
.tourist-places-section {
  position: relative;
  padding: 90px 0;
  background: var(--bg-light, #faf7f2);
}

.bento-attractions-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 44px;
}

/* Featured 2-column wide Bento Card */
.bento-card-featured {
  grid-column: span 6;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 14px 35px rgba(18, 38, 32, 0.12);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.bento-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(18, 38, 32, 0.22);
}

.bento-card-featured .bento-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

.bento-card-featured:hover .bento-bg-img {
  transform: scale(1.07);
  filter: brightness(1.05);
}

.bento-card-featured .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 28, 23, 0.1) 0%, rgba(14, 28, 23, 0.88) 75%, rgba(10, 20, 16, 0.96) 100%);
  pointer-events: none;
}

.bento-featured-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #ffffff;
}

.bento-featured-content .attraction-tag {
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 209, 179, 0.3);
}

.bento-featured-content h3 {
  font-size: 1.65rem;
  font-family: var(--display-font);
  color: #ffffff !important;
  margin: 0 0 8px;
  line-height: 1.25;
}

.bento-featured-content p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

/* Compact Horizontal List Tiles for Bento */
.bento-card-tile {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid rgba(18, 38, 32, 0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 6px 20px rgba(18, 38, 32, 0.04);
}

.bento-card-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 95, 60, 0.35);
  box-shadow: 0 16px 36px rgba(18, 38, 32, 0.1), 0 0 15px rgba(180, 95, 60, 0.08);
}

.bento-tile-thumb {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ebe4;
}

.bento-tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento-card-tile:hover .bento-tile-thumb img {
  transform: scale(1.1);
}

.bento-tile-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.bento-tile-info {
  display: flex;
  flex-direction: column;
}

.bento-tile-info .attraction-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #b45f3c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.bento-tile-info h3 {
  font-size: 1.1rem;
  font-family: var(--display-font);
  font-weight: 700;
  color: #122620;
  margin: 0 0 4px;
  line-height: 1.25;
}

.bento-tile-info p {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #52635d;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .bento-card-featured {
    grid-column: span 12;
    min-height: 280px;
  }

  .bento-card-tile {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .bento-card-tile {
    grid-column: span 12;
  }
}

/* =========================================================
   2. REDESIGNED SERVICES — Split Showcase Alternating Blocks
   ========================================================= */
.services-section {
  position: relative;
  padding: 95px 0;
}

.services-showcase-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.service-showcase-card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background: #142821 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(12, 24, 20, 0.28);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.service-showcase-card:hover {
  transform: translateY(-6px);
  background: #183028 !important;
  border-color: rgba(255, 209, 179, 0.4) !important;
  box-shadow: 0 28px 60px rgba(12, 24, 20, 0.4), 0 0 30px rgba(255, 179, 138, 0.18);
}

.service-showcase-img {
  grid-column: span 6;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #0c1814;
}

.service-showcase-card.reverse .service-showcase-img {
  grid-column: 7 / span 6;
}

.service-showcase-card.reverse .service-showcase-body {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.service-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

.service-showcase-card:hover .service-showcase-img img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.service-showcase-body {
  grid-column: span 6;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-showcase-body .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 14px;
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
  border: 1px solid rgba(255, 209, 179, 0.2);
}

.service-showcase-body h3 {
  font-size: 1.85rem;
  font-family: var(--display-font);
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff !important;
  line-height: 1.25;
}

.service-showcase-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0 0 28px;
}

@media (max-width: 900px) {
  .service-showcase-card {
    grid-template-columns: 1fr;
  }

  .service-showcase-img {
    grid-column: span 12 !important;
    min-height: 250px;
  }

  .service-showcase-body {
    grid-column: span 12 !important;
    padding: 28px;
  }
}

/* =========================================================
   ULTRA-PREMIUM 7-STAR RESORT ENHANCEMENTS
   ========================================================= */

/* ── 1. ROOMS SECTION — Luxury Hill Resort Suites ───────── */
.section.rooms {
  background: linear-gradient(180deg, #10221c 0%, #0d1a15 100%);
  padding: 100px 0;
  position: relative;
}

.rooms .section-heading h2 {
  color: #ffffff !important;
  font-family: var(--display-font);
  font-size: 2.5rem;
}

.rooms .section-heading .eyebrow {
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.12);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 209, 179, 0.2);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.room-card {
  background: linear-gradient(160deg, #142821 0%, #0c1814 100%) !important;
  border: 1px solid rgba(255, 209, 179, 0.18) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease, border-color 0.4s ease !important;
  display: flex;
  flex-direction: column;
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(255, 209, 179, 0.45) !important;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48), 0 0 30px rgba(255, 179, 138, 0.2) !important;
}

.room-card>a.lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #09130f;
}

.room-card>a.lightbox-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

.room-card:hover>a.lightbox-trigger img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.room-body {
  padding: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
  background: transparent !important;
}

.room-body h3 {
  font-size: 1.45rem !important;
  font-family: var(--display-font) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
  transition: color 0.3s ease;
}

.room-body a:hover h3 {
  color: #ffd1b3 !important;
}

.room-card-desc {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.94rem !important;
  line-height: 1.6 !important;
}

.booking-card-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-card-thumbs a img {
  width: 52px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.booking-card-thumbs a:hover img {
  transform: scale(1.1);
  border-color: #ffd1b3;
}

.more-thumbs {
  font-size: 0.75rem;
  color: #ffd1b3;
  background: rgba(255, 209, 179, 0.15);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.room-meta {
  margin-top: 24px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.room-meta span {
  font-size: 1.32rem !important;
  font-weight: 800 !important;
  font-family: var(--display-font) !important;
  color: #ffd1b3 !important;
  letter-spacing: -0.01em;
}

.room-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-button {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

a.text-button {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

a.text-button:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

button.text-button {
  background: linear-gradient(135deg, #b45f3c 0%, #d97749 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(180, 95, 60, 0.35) !important;
}

button.text-button:hover {
  background: linear-gradient(135deg, #c46843 0%, #e88352 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(180, 95, 60, 0.5) !important;
}

/* ── 2. AMENITIES SECTION — 7-Star Floating Glass Tiles ───── */
.section.amenities {
  background: #09130f !important;
  padding: 105px 0 !important;
  position: relative;
}

.amenities .section-heading h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
}

.amenities .section-heading .eyebrow {
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.12);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 209, 179, 0.2);
}

.amenity-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 28px !important;
  background: transparent !important;
  margin-top: 48px !important;
}

.amenity {
  background: linear-gradient(150deg, rgba(20, 40, 33, 0.85) 0%, rgba(12, 24, 20, 0.95) 100%) !important;
  border: 1px solid rgba(255, 209, 179, 0.18) !important;
  border-radius: 24px !important;
  padding: 38px 30px !important;
  min-height: 230px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease, border-color 0.4s ease !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.amenity:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: rgba(255, 209, 179, 0.45) !important;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.48), 0 0 28px rgba(255, 179, 138, 0.18) !important;
  background: linear-gradient(150deg, rgba(26, 52, 43, 0.95) 0%, rgba(16, 32, 26, 0.98) 100%) !important;
}

.amenity span {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  font-family: var(--display-font) !important;
  background: linear-gradient(135deg, #ffd1b3 0%, #b45f3c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 22px !important;
  line-height: 1 !important;
}

.amenity h3 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  font-family: var(--display-font) !important;
  color: #ffffff !important;
  margin-bottom: 10px !important;
}

.amenity p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ── 3. CONTACT & LOCATION SECTION — Glass Card & Map ────── */
.contact-section {
  position: relative;
  padding: 100px 0;
  background: #f7f4ef;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.contact-info {
  grid-column: span 5;
  background: #122620;
  color: #ffffff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 45px rgba(18, 38, 32, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info .eyebrow {
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.12);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 209, 179, 0.2);
  width: fit-content;
  margin-bottom: 12px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-family: var(--display-font);
  color: #ffffff;
  margin: 0 0 14px;
}

.contact-tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 209, 179, 0.15);
  border: 1px solid rgba(255, 209, 179, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd1b3;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
  margin: 0;
}

.contact-item a:hover {
  color: #ffd1b3;
  text-decoration: underline;
}

.contact-map-card {
  grid-column: span 7;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(18, 38, 32, 0.12);
  border: 1px solid rgba(18, 38, 32, 0.1);
  background: #ffffff;
  padding: 12px;
}

.map-embed {
  width: 100%;
  flex-grow: 1;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

@media (max-width: 960px) {
  .contact-info {
    grid-column: span 12;
  }

  .contact-map-card {
    grid-column: span 12;
  }
}

/* ── 4. FOOTER — Luxury Branding ─────────────────────────── */
.site-footer {
  background: #070f0c !important;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 60px 0 40px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-brand-wrap strong {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-family: var(--display-font) !important;
}

.footer-links a {
  color: #ffd1b3 !important;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff !important;
}

/* =========================================================
   ✨ FINAL PERFECTING LAYER — 7-STAR PREMIUM POLISH ✨
   Applies after all other rules to finalize every section
   ========================================================= */

/* ── Section wrapper resets ─────────────────────────────── */
.section.rooms,
.section.tourist-places-section,
.section.services-section,
.section.amenities,
.section.contact-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-inline: 0 !important;
}

.section.rooms>*:not(.room-grid),
.section.tourist-places-section>*:not(.bento-attractions-grid),
.section.services-section>*:not(.services-showcase-stack),
.section.contact-section>*:not(.contact-grid) {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.room-grid,
.bento-attractions-grid,
.services-showcase-stack,
.amenity-grid,
.contact-grid {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

/* ── ROOMS — perfect dark luxury card layout ─────────────── */
.section.rooms {
  background: linear-gradient(175deg, #0d1c17 0%, #091410 50%, #060e0b 100%) !important;
  padding-block: 110px !important;
  position: relative;
  overflow: hidden;
}

.section.rooms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(180, 95, 60, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 100%, rgba(26, 68, 52, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.rooms .section-heading {
  position: relative;
  z-index: 1;
}

.rooms .section-heading .eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255, 209, 179, 0.1) !important;
  color: #ffd1b3 !important;
  border: 1px solid rgba(255, 209, 179, 0.25) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

.rooms .section-heading h2 {
  color: #ffffff !important;
  font-family: var(--display-font) !important;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
  font-weight: 650 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.01em !important;
}

.room-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 28px !important;
  margin-top: 52px !important;
  position: relative;
  z-index: 1;
}

.room-card {
  background: linear-gradient(160deg, #192e25 0%, #0f1e18 100%) !important;
  border: 1px solid rgba(255, 209, 179, 0.14) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 209, 179, 0) !important;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
}

.room-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(255, 209, 179, 0.4) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 209, 179, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.room-card>a.lightbox-trigger {
  display: block !important;
  position: relative !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
}

.room-card>a.lightbox-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 20, 16, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.room-card>a.lightbox-trigger img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.room-card:hover>a.lightbox-trigger img {
  transform: scale(1.09) !important;
}

.room-body {
  padding: 24px 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  gap: 0 !important;
  min-height: unset !important;
}

.room-body>div:first-child a {
  text-decoration: none;
}

.room-body h3 {
  font-size: 1.3rem !important;
  font-family: var(--display-font) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.005em;
}

.room-body a:hover h3,
.room-body h3:hover {
  color: #ffd1b3 !important;
}

.room-card-desc {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  -webkit-line-clamp: 2 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.booking-card-thumbs {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 14px !important;
}

.booking-card-thumbs a img {
  width: 48px !important;
  height: 38px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.booking-card-thumbs a:hover img {
  transform: scale(1.12) !important;
  border-color: rgba(255, 209, 179, 0.7) !important;
  box-shadow: 0 4px 12px rgba(255, 209, 179, 0.3) !important;
}

.more-thumbs {
  font-size: 0.7rem !important;
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.12) !important;
  border: 1px solid rgba(255, 209, 179, 0.2) !important;
  padding: 3px 9px !important;
  border-radius: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em;
}

.room-meta {
  margin-top: 20px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.room-meta>span {
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  font-family: var(--body-font), "Plus Jakarta Sans", "Montserrat", sans-serif !important;
  color: #ffd1b3 !important;
  letter-spacing: 0.02em !important;
}

.room-card-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

a.text-button,
button.text-button {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.04em;
}

a.text-button {
  background: rgba(255, 255, 255, 0.07) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  text-decoration: none !important;
}

a.text-button:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

button.text-button {
  background: linear-gradient(135deg, #b45f3c 0%, #d97749 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(180, 95, 60, 0.4) !important;
}

button.text-button:hover {
  background: linear-gradient(135deg, #c26942 0%, #e8834f 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 22px rgba(180, 95, 60, 0.55) !important;
}


/* ── TOURIST PLACES — bright premium bento grid ──────────── */
.section.tourist-places-section {
  background: #f8f5ef !important;
  padding-block: 110px !important;
  position: relative;
}

.section.tourist-places-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(180, 95, 60, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.tourist-places-section .section-heading {
  text-align: center;
  position: relative;
  z-index: 1;
}

.tourist-places-section .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b45f3c !important;
  background: rgba(180, 95, 60, 0.08) !important;
  border: 1px solid rgba(180, 95, 60, 0.2) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  margin-bottom: 14px !important;
}

.tourist-places-section .section-heading h2 {
  color: #122620 !important;
  font-family: var(--display-font) !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 650 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.01em !important;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 24px !important;
}

.attractions-filter-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 20px !important;
}

.filter-btn {
  padding: 9px 20px !important;
  border-radius: 100px !important;
  background: #ffffff !important;
  border: 1px solid rgba(18, 38, 32, 0.12) !important;
  color: #122620 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: 0 2px 8px rgba(18, 38, 32, 0.06) !important;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  background: #122620 !important;
  color: #ffffff !important;
  border-color: #122620 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(18, 38, 32, 0.2) !important;
}

.filter-btn.active {
  background: #122620 !important;
  color: #ffd1b3 !important;
  border-color: #122620 !important;
  box-shadow: 0 6px 18px rgba(18, 38, 32, 0.25) !important;
}

.bento-attractions-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 20px !important;
  margin-top: 44px !important;
  position: relative;
  z-index: 1;
}

/* Featured big cards */
.bento-card-featured {
  grid-column: span 6 !important;
  position: relative !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  min-height: 340px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  box-shadow: 0 12px 32px rgba(18, 38, 32, 0.12) !important;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease !important;
}

.bento-card-featured:hover {
  transform: translateY(-7px) scale(1.008) !important;
  box-shadow: 0 24px 56px rgba(18, 38, 32, 0.22) !important;
}

.bento-card-featured .bento-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.bento-card-featured:hover .bento-bg-img {
  transform: scale(1.09) !important;
}

.bento-card-featured .bento-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
      rgba(12, 22, 18, 0.05) 0%,
      rgba(12, 22, 18, 0.35) 45%,
      rgba(8, 16, 13, 0.92) 100%) !important;
}

.bento-featured-content {
  position: relative !important;
  z-index: 2 !important;
  padding: 26px 28px !important;
}

.bento-featured-content .attraction-tag {
  display: inline-block !important;
  background: rgba(255, 209, 179, 0.18) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 209, 179, 0.32) !important;
  color: #ffd1b3 !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  margin-bottom: 10px !important;
}

.bento-featured-content h3 {
  font-size: 1.75rem !important;
  font-family: var(--display-font) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.bento-featured-content p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Compact tiles */
.bento-card-tile {
  grid-column: span 4 !important;
  background: #ffffff !important;
  border: 1px solid rgba(18, 38, 32, 0.08) !important;
  border-radius: 18px !important;
  padding: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease !important;
  box-shadow: 0 4px 14px rgba(18, 38, 32, 0.05) !important;
}

.bento-card-tile:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(180, 95, 60, 0.28) !important;
  box-shadow:
    0 16px 36px rgba(18, 38, 32, 0.12),
    0 0 0 1px rgba(180, 95, 60, 0.1) !important;
}

.bento-tile-thumb {
  position: relative !important;
  width: 72px !important;
  height: 72px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  background: #f0ebe4 !important;
}

.bento-tile-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.bento-card-tile:hover .bento-tile-thumb img {
  transform: scale(1.12) !important;
}

.bento-tile-badge {
  position: absolute !important;
  bottom: 4px !important;
  right: 4px !important;
  font-size: 0.8rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
  line-height: 1 !important;
}

.bento-tile-info {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
}

.bento-tile-info .attraction-tag {
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  color: #b45f3c !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 2px !important;
}

.bento-tile-info h3 {
  font-size: 1.02rem !important;
  font-family: var(--display-font) !important;
  font-weight: 700 !important;
  color: #122620 !important;
  margin: 0 0 3px !important;
  line-height: 1.25 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bento-tile-info p {
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  color: #52635d !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .bento-card-featured {
    grid-column: span 12 !important;
    min-height: 280px !important;
  }

  .bento-card-tile {
    grid-column: span 6 !important;
  }
}

@media (max-width: 640px) {
  .bento-card-tile {
    grid-column: span 12 !important;
  }

  .bento-attractions-grid {
    gap: 12px !important;
  }
}


/* ── SERVICES — split showcase, rich dark stone ──────────── */
.section.services-section {
  background: linear-gradient(180deg, #060e0b 0%, #0d1c17 40%, #0a1610 80%, #060e0b 100%) !important;
  padding-block: 110px !important;
  position: relative;
  overflow: hidden;
}

.section.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 0% 50%, rgba(180, 95, 60, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 100% 50%, rgba(26, 68, 52, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.services-section .section-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-section .section-heading .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 209, 179, 0.1) !important;
  color: #ffd1b3 !important;
  border: 1px solid rgba(255, 209, 179, 0.22) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

.services-section .section-heading h2 {
  color: #ffffff !important;
  font-family: var(--display-font) !important;
  font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
  max-width: 620px;
  margin-inline: auto;
}

.services-showcase-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  margin-top: 56px !important;
  position: relative;
  z-index: 1;
}

.service-showcase-card {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  background: rgba(20, 40, 32, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease !important;
}

.service-showcase-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 209, 179, 0.32) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 209, 179, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  background: rgba(26, 52, 42, 0.75) !important;
}

.service-showcase-img {
  grid-column: span 4 !important;
  position: relative !important;
  min-height: 250px !important;
  max-height: 280px !important;
  overflow: hidden !important;
}

.service-showcase-card.reverse .service-showcase-img {
  grid-column: 9 / span 4 !important;
  grid-row: 1 !important;
}

.service-showcase-card.reverse .service-showcase-body {
  grid-column: 1 / span 8 !important;
  grid-row: 1 !important;
}

.service-showcase-img .service-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(10, 18, 14, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffd1b3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.service-showcase-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.service-showcase-card:hover .service-showcase-img img {
  transform: scale(1.07) !important;
}

.service-showcase-body {
  grid-column: span 8 !important;
  padding: 32px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.service-showcase-body .eyebrow {
  font-size: 0.7rem !important;
  margin-bottom: 16px !important;
  color: #ffd1b3 !important;
  background: rgba(255, 209, 179, 0.1) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  display: inline-block !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  width: fit-content !important;
  border: 1px solid rgba(255, 209, 179, 0.2) !important;
}

.service-showcase-body h3 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
  font-family: var(--display-font) !important;
  font-weight: 700 !important;
  margin: 0 0 16px !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em;
}

.service-showcase-body p {
  font-size: 0.97rem !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin: 0 0 28px !important;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b45f3c 0%, #d97749 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(180, 95, 60, 0.4);
  width: fit-content;
}

.service-action-btn:hover {
  background: linear-gradient(135deg, #c26942 0%, #e8834f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180, 95, 60, 0.55);
  color: #ffffff;
}

@media (max-width: 900px) {
  .service-showcase-card {
    grid-template-columns: 1fr !important;
  }

  .service-showcase-img {
    grid-column: span 12 !important;
    grid-row: 1 !important;
    min-height: 260px !important;
  }

  .service-showcase-body {
    grid-column: span 12 !important;
    grid-row: 2 !important;
    padding: 28px 24px !important;
  }

  .service-showcase-card.reverse .service-showcase-img {
    grid-column: span 12 !important;
  }

  .service-showcase-card.reverse .service-showcase-body {
    grid-column: span 12 !important;
  }
}


/* ── AMENITIES — ultra dark glass panel ──────────────────── */
.section.amenities {
  background: linear-gradient(175deg, #060e0b 0%, #040a07 100%) !important;
  padding-block: 110px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-inline: clamp(20px, 4vw, 56px) !important;
  position: relative;
  overflow: hidden;
}

.section.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(20, 40, 32, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.amenities .section-heading {
  width: min(1200px, 100%);
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.amenities .section-heading .eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255, 209, 179, 0.1) !important;
  color: #ffd1b3 !important;
  border: 1px solid rgba(255, 209, 179, 0.22) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

.amenities .section-heading h2 {
  color: #ffffff !important;
  font-family: var(--display-font) !important;
  font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
}

.amenity-grid {
  width: min(1320px, calc(100% - 0px)) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 22px !important;
  background: transparent !important;
  margin-top: 52px !important;
  position: relative;
  z-index: 1;
}

.amenity {
  background: linear-gradient(145deg,
      rgba(22, 44, 35, 0.7) 0%,
      rgba(14, 28, 22, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  padding: 36px 28px !important;
  min-height: 220px !important;
  display: flex !important;
  flex-direction: column !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3) !important;
  position: relative;
  overflow: hidden;
}

.amenity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 209, 179, 0.03) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.amenity:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(255, 209, 179, 0.3) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 209, 179, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.amenity:hover::before {
  opacity: 1;
}

.amenity span {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  font-family: var(--display-font) !important;
  background: linear-gradient(135deg, #ffd1b3 0%, #b45f3c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 20px !important;
  line-height: 1 !important;
  display: block !important;
}

.amenity h3 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  font-family: var(--display-font) !important;
  color: #ffffff !important;
  margin-bottom: 10px !important;
  line-height: 1.25;
}

.amenity p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  flex-grow: 1;
}


/* ── CONTACT — deep split layout ─────────────────────────── */
.section.contact-section {
  background: linear-gradient(175deg, #f7f4ef 0%, #ede8df 100%) !important;
  padding-block: 110px !important;
  position: relative;
  overflow: hidden;
}

.section.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(18, 38, 32, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 0%, rgba(180, 95, 60, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-section .contact-grid {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
}

.contact-info {
  grid-column: span 5 !important;
  background: linear-gradient(160deg, #1a3328 0%, #0f2019 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 44px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  box-shadow: 0 16px 48px rgba(15, 32, 25, 0.25) !important;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 209, 179, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info .eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 209, 179, 0.1) !important;
  color: #ffd1b3 !important;
  border: 1px solid rgba(255, 209, 179, 0.22) !important;
  padding: 4px 14px !important;
  border-radius: 100px !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  width: fit-content !important;
  margin-bottom: 14px !important;
}

.contact-info h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-family: var(--display-font) !important;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.contact-tagline {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  margin-bottom: 28px !important;
}

.contact-items {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 209, 179, 0.2) !important;
}

.contact-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 209, 179, 0.12) !important;
  border: 1px solid rgba(255, 209, 179, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.05rem !important;
  flex-shrink: 0 !important;
}

.contact-item strong {
  display: block !important;
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  color: #ffd1b3 !important;
  margin-bottom: 3px !important;
  font-weight: 800;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  margin: 0 !important;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #ffd1b3 !important;
}

.contact-map-card {
  grid-column: span 7 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 16px 48px rgba(18, 38, 32, 0.14) !important;
  border: 1px solid rgba(18, 38, 32, 0.1) !important;
  background: #ffffff !important;
  padding: 10px !important;
}

.map-embed {
  width: 100% !important;
  flex-grow: 1 !important;
  min-height: 400px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.map-embed iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px !important;
  border: none !important;
  display: block;
}

.contact-map-card .button.primary.full {
  margin-top: 12px !important;
  border-radius: 100px !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  background: linear-gradient(135deg, #122620 0%, #1d3d33 100%) !important;
  color: #ffffff !important;
  padding: 14px 24px !important;
  transition: all 0.3s ease !important;
}

.contact-map-card .button.primary.full:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, #1d3d33 0%, #2a5245 100%) !important;
  box-shadow: 0 8px 24px rgba(18, 38, 32, 0.3) !important;
}

@media (max-width: 960px) {
  .contact-info {
    grid-column: span 12 !important;
  }

  .contact-map-card {
    grid-column: span 12 !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ── FOOTER — refined dark luxury ────────────────────────── */
.site-footer {
  background: #04080600 !important;
  background: #040a07 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 56px clamp(20px, 5vw, 70px) 36px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
}

.site-footer .footer-brand-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.site-footer .footer-brand-wrap strong {
  color: #ffffff !important;
  font-size: 1.18rem !important;
  font-family: var(--display-font) !important;
  font-weight: 700;
  display: block;
}

.site-footer .footer-brand-wrap p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.82rem !important;
  margin: 4px 0 0 !important;
  line-height: 1.5;
}

.site-footer .footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  align-items: center !important;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.site-footer .footer-links a:hover {
  color: #ffd1b3 !important;
  border-bottom-color: rgba(255, 209, 179, 0.4);
}

/* ── Service badge in services section ───────────────────── */
.service-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(10, 18, 14, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffd1b3;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── Empty state ─────────────────────────────────────────── */
.empty-list {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.92rem;
  text-align: center;
  padding: 40px;
  grid-column: 1 / -1;
}

/* ── Responsive paddings ─────────────────────────────────── */
@media (max-width: 768px) {

  .section.rooms,
  .section.tourist-places-section,
  .section.services-section,
  .section.amenities,
  .section.contact-section {
    padding-block: 80px !important;
  }

  .service-showcase-body {
    padding: 28px 22px !important;
  }

  .contact-info {
    padding: 28px 22px !important;
  }

  .amenity {
    padding: 28px 22px !important;
  }
}

@media (max-width: 480px) {
  .room-grid {
    grid-template-columns: 1fr !important;
  }

  .amenity-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Standard font style override for room prices */
.room-meta,
.room-meta span,
.room-price,
.price-tag {
  font-family: var(--body-font), "Plus Jakarta Sans", "Montserrat", system-ui, sans-serif !important;
  font-variant-numeric: tabular-nums lining-nums !important;
}

/* Compact image sizing for Hill Experiences & Activities */
.service-showcase-img {
  min-height: 240px !important;
  max-height: 270px !important;
}

.service-showcase-img img {
  object-fit: cover !important;
  max-height: 270px !important;
}

@media (max-width: 900px) {
  .service-showcase-img {
    grid-column: span 12 !important;
    min-height: 200px !important;
    max-height: 220px !important;
  }
}

/* ── CircularGallery WebGL Component Styles ────────────── */
.circular-gallery-wrapper {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, rgba(18, 38, 32, 0.06) 0%, transparent 75%);
  margin-top: 20px;
}

.circular-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.circular-gallery:active {
  cursor: grabbing;
}

.circular-gallery:focus-visible {
  outline: 2px solid #b45f3c;
  outline-offset: 4px;
}

.circular-gallery canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .circular-gallery-wrapper {
    height: 420px;
  }
}

/* ── Premium Vector SVG Icon Utilities ──────────────────── */
.icon-svg {
  display: inline-block !important;
  vertical-align: middle !important;
  width: 1.15em !important;
  height: 1.15em !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  flex-shrink: 0 !important;
}

.filter-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.attraction-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.service-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.bento-tile-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #122620 !important;
  padding: 2px !important;
}

.bento-tile-badge .icon-svg {
  width: 12px !important;
  height: 12px !important;
  stroke: #122620 !important;
}

.contact-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.contact-icon .icon-svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #ffd1b3 !important;
}

/* =========================================================
   🌐 MULTI-DEVICE RESPONSIVE OPTIMIZATION SYSTEM
   Covers: Foldable Mobile, Mobile, Tablet, Laptop, Desktop
   ========================================================= */

/* =========================================================
   👑 7-STAR ULTRA-PREMIUM LUXURY FOOTER SYSTEM
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, #081410 0%, #040907 100%) !important;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 80px clamp(20px, 5vw, 80px) 40px !important;
  border-top: 1px solid rgba(255, 209, 179, 0.18) !important;
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  gap: 56px !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(180, 95, 60, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 90% 100%, rgba(26, 68, 52, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer Top CTA Banner ─────────────────────────────── */
.footer-cta-banner {
  width: min(1320px, 100%);
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(25, 48, 38, 0.85) 0%, rgba(14, 28, 22, 0.95) 100%) !important;
  border: 1px solid rgba(255, 209, 179, 0.22) !important;
  border-radius: 24px !important;
  padding: 40px 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  position: relative;
  z-index: 1;
}

.footer-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 209, 179, 0.12);
  border: 1px solid rgba(255, 209, 179, 0.25);
  color: #ffd1b3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.footer-cta-content h2 {
  color: #ffffff !important;
  font-family: var(--display-font) !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 650 !important;
  margin: 0 !important;
  letter-spacing: -0.01em;
  max-width: 600px;
}

.footer-cta-actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

/* ── Main 4-Column Footer Grid ─────────────────────────── */
.footer-grid {
  width: min(1320px, 100%);
  margin-inline: auto;
  display: grid !important;
  grid-template-columns: 2.2fr 1.3fr 1.3fr 1.7fr !important;
  gap: 40px !important;
  position: relative;
  z-index: 1;
}

.footer-col {
  display: flex !important;
  flex-direction: column !important;
}

.footer-brand-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 16px !important;
}

.footer-brand-header strong {
  color: #ffffff !important;
  font-size: 1.28rem !important;
  font-family: var(--display-font) !important;
  font-weight: 700 !important;
  display: block !important;
  line-height: 1.2 !important;
}

.footer-sub-tag {
  color: #ffd1b3 !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  margin: 0 0 20px !important;
}

.footer-badges {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.footer-pill-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffd1b3 !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
}

.footer-col-title {
  color: #ffffff !important;
  font-family: var(--display-font) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin: 0 0 20px !important;
  letter-spacing: 0.02em !important;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #b45f3c;
  border-radius: 2px;
}

.footer-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.28s ease !important;
  display: inline-block !important;
}

.footer-menu a:hover {
  color: #ffd1b3 !important;
  transform: translateX(5px) !important;
}

.footer-contact-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.footer-contact-block p {
  margin: 0 !important;
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.footer-contact-block p .icon-svg {
  color: #ffd1b3 !important;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-block a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color 0.25s ease !important;
}

.footer-contact-block a:hover {
  color: #ffd1b3 !important;
}

/* ── Footer Bottom Copyright Bar ────────────────────────── */
.footer-bottom-bar {
  width: min(1320px, 100%);
  margin-inline: auto;
  padding-top: 28px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 14px 24px !important;
  font-size: 0.83rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  margin: 0 !important;
}

.footer-credit {
  margin: 0 !important;
}

.footer-credit strong {
  color: #ffd1b3 !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

.footer-bottom-bar a {
  color: #ffd1b3 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
  border-bottom: 1px dashed rgba(255, 209, 179, 0.4);
}

.footer-bottom-bar a:hover {
  color: #ffffff !important;
  border-bottom-style: solid;
  border-bottom-color: #ffffff;
}

/* ── Footer Responsive Breakpoints ───────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px !important;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 60px 20px 32px !important;
    gap: 40px !important;
  }

  .footer-cta-banner {
    padding: 28px 24px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-cta-actions {
    width: 100% !important;
  }

  .footer-cta-actions .button {
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    text-align: center !important;
  }
}


/* ── 2. Header & Navigation Device Responsiveness ────────── */
@media (max-width: 992px) {
  .site-header {
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    background: rgba(10, 20, 16, 0.92) !important;
  }

  .site-header .nav {
    overflow-x: auto !important;
    white-space: nowrap !important;
    width: 100% !important;
    padding-bottom: 6px !important;
    gap: 10px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav a {
    font-size: 0.82rem !important;
    padding: 6px 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 100px !important;
    flex-shrink: 0 !important;
  }

  .site-header .nav a.nav-admin-btn {
    background: linear-gradient(135deg, #b45f3c 0%, #d97749 100%) !important;
    color: #ffffff !important;
  }
}


/* ── 3. Quick Booking Form Responsiveness ────────────────── */
@media (max-width: 860px) {
  .quick-booking-form {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .quick-booking-form {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }
}


/* ── 4. Trust Strip Responsiveness ───────────────────────── */
@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-strip div:nth-child(2) {
    border-right: 0 !important;
  }
  .trust-strip div:nth-child(3) {
    border-top: 1px solid var(--line) !important;
  }
  .trust-strip div:nth-child(4) {
    border-top: 1px solid var(--line) !important;
    border-right: 0 !important;
  }
}


/* ── 5. Hero & Weather Card Responsiveness ────────────────── */
@media (max-width: 900px) {
  .hero {
    min-height: auto !important;
    padding: 120px 20px 60px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .weather-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 32px !important;
    width: 100% !important;
  }
}


/* ── 6. Foldable Mobile & Ultra Small Screens (< 360px) ───── */
@media (max-width: 360px) {
  html {
    font-size: 14px !important;
  }

  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  .brand-logo {
    height: 34px !important;
  }

  .site-header {
    padding: 10px 12px !important;
  }

  .button {
    padding: 0 14px !important;
    min-height: 42px !important;
    font-size: 0.8rem !important;
  }

  .room-body {
    padding: 18px 16px !important;
  }

  .service-showcase-body {
    padding: 20px 16px !important;
  }

  .contact-info {
    padding: 20px 16px !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* ── 7. Touch & Mobile Cursor Polish ─────────────────────── */
@media (pointer: coarse) {
  .button, .filter-btn, .text-button, .service-action-btn, a {
    min-height: 44px;
  }
}