:root {
  --bg: #f8f4ed;
  --bg-soft: #efe4d6;
  --surface: #ffffff;
  --surface-soft: #fff8ef;
  --text: #2f241d;
  --muted: #6f5a49;
  --primary: #7d5134;
  --primary-2: #5e3d29;
  --rose: #c99590;
  --border: #e8dac8;
  --ring: rgba(172, 114, 75, 0.35);
  --shadow-sm: 0 10px 24px rgba(69, 42, 23, 0.09);
  --shadow-lg: 0 24px 60px rgba(67, 42, 24, 0.16);
  --shadow-md: 0 16px 36px rgba(72, 44, 24, 0.12);
  --radius: 22px;
  --container: 1160px;
  --ease-smooth: cubic-bezier(0.21, 0.95, 0.32, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(201, 149, 144, 0.18), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(125, 81, 52, 0.08), transparent 26%),
    radial-gradient(circle at 20% 90%, rgba(125, 81, 52, 0.08), transparent 30%),
    linear-gradient(180deg, #fdf9f4 0%, var(--bg) 100%);
  line-height: 1.7;
  min-height: 100dvh;
}

::selection {
  background: rgba(125, 81, 52, 0.18);
  color: #2d2119;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

a,
button,
input,
textarea {
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #111;
  color: #fff;
  padding: 0.55rem 0.85rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

.section {
  padding: 6rem 0;
  position: relative;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.24rem 0.64rem;
  border: 1px solid #ecd7c2;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.86);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.top-bar {
  background: linear-gradient(90deg, #4a2f1f, #74462d);
  color: #f9ebdc;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255, 232, 208, 0.18);
}

.top-bar-inner {
  padding: 0.68rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.2rem;
}

.top-bar a {
  color: #ffeedf;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 98;
  background: rgba(252, 247, 240, 0.8);
  border-bottom: 1px solid rgba(128, 82, 49, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(252, 247, 240, 0.97);
  box-shadow: 0 12px 30px rgba(76, 47, 27, 0.14);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  display: block;
  width: auto;
  height: clamp(42px, 5vw, 54px);
  max-width: min(42vw, 180px);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid #eadbca;
  background: rgba(255, 251, 246, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.main-nav a {
  color: #5f4a3a;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.56rem 0.92rem;
  transition: 0.25s var(--ease-smooth);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: #f4e8d8;
  box-shadow: 0 10px 22px rgba(92, 60, 39, 0.12);
}

.main-nav .btn::after {
  content: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: linear-gradient(120deg, var(--primary), #9a6846);
  background-size: 140% 140%;
  box-shadow: 0 12px 24px rgba(83, 52, 34, 0.2);
  color: #fff;
  transition: transform 0.24s var(--ease-smooth), box-shadow 0.24s var(--ease-smooth), background-position 0.24s var(--ease-smooth);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(94, 61, 41, 0.24);
  background-position: 100% 0;
}

.btn-outline {
  background: #fffaf4;
  border-color: var(--primary);
  color: #6a442c;
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-nav {
  margin-left: 0.25rem;
}

.main-nav a.btn,
.main-nav a.btn:hover,
.main-nav a.btn.active {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--primary), #9a6846);
  background-size: 140% 140%;
  box-shadow: 0 12px 24px rgba(83, 52, 34, 0.2);
}

.main-nav a.btn:hover,
.main-nav a.btn.active {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(94, 61, 41, 0.24);
  background-position: 100% 0;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  background: rgba(246, 232, 216, 0.5);
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #3b2d23;
}

.hero {
  padding-top: 4.8rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(201, 149, 144, 0.16), transparent 46%),
    radial-gradient(circle at 85% 20%, rgba(125, 81, 52, 0.17), transparent 38%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.15rem;
  align-items: center;
}

.hero-content h2 {
  color: var(--primary-2);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  margin-bottom: 1rem;
}

.hero-content > p {
  max-width: 57ch;
}

.hero-actions {
  display: flex;
  gap: 0.78rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.hero-badges {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-badges li {
  background: linear-gradient(160deg, #fff7ee, #f5e9db);
  border: 1px solid #e8d7c4;
  color: #5e4637;
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-strip {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-strip span {
  font-size: 0.81rem;
  color: #6a5342;
  position: relative;
  padding-left: 0.95rem;
  font-weight: 600;
}

.trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.hero-visual {
  position: relative;
}

.hero-media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #eadcca;
  background: #fff;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  transition: transform 0.45s ease;
}

.hero-media:hover img {
  transform: scale(1.03);
}

.hero-floating {
  position: absolute;
  left: -20px;
  bottom: 18px;
  max-width: 270px;
  padding: 1rem 1rem 0.82rem;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(8px);
}

.hero-floating p {
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-floating h3 {
  font-size: 1.3rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth), border-color 0.28s var(--ease-smooth);
}

.card:hover {
  border-color: #e0c7ad;
  box-shadow: 0 20px 42px rgba(72, 44, 24, 0.14);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.split-grid figure {
  overflow: hidden;
}

.split-grid figure img {
  min-height: 420px;
  filter: saturate(1.03);
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.35rem;
}

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

.rooms-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-card {
  overflow: hidden;
  transition: transform 0.32s var(--ease-smooth), box-shadow 0.32s var(--ease-smooth);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(73, 46, 26, 0.18);
}

.room-card img {
  aspect-ratio: 16 / 10;
}

.card-body {
  padding: 1.1rem;
}

.room-card ul {
  padding-left: 1rem;
  color: var(--muted);
  margin: 0.3rem 0 1rem;
}

.gallery-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 16, 11, 0.38));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 6;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 3;
}

.gallery-item img {
  min-height: 215px;
  height: 100%;
  transition: transform 0.45s ease;
}

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

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

.gallery-item::after {
  content: "Tap to view";
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(29, 20, 14, 0.6);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.amenity-grid,
.why-grid,
.faq-grid {
  margin-top: 1.4rem;
}

.amenity-card,
.why-grid .card {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 86px;
}

.amenity-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f1ddca, #eecfc5);
  color: var(--primary-2);
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.amenity-card h3,
.why-grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.attraction-grid {
  margin-top: 1.4rem;
  grid-template-columns: 1fr;
}

.attraction-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
}

.attraction-card img {
  height: 100%;
  min-height: 320px;
}

.attraction-card .card-body {
  padding: 1.25rem;
}

.attraction-card .feature-list {
  margin: 0.2rem 0 1rem;
}

.photo-credit {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: #7f6a5a;
}

.photo-credit a {
  color: #7a4f34;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.photo-credit a:hover {
  color: var(--primary);
}

.contact-card {
  padding: 1.35rem;
  background: linear-gradient(160deg, #fff, #f8eee2);
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-card a:not(.btn) {
  color: var(--primary);
}

.map-embed {
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.booking-form {
  margin-top: 1.4rem;
  padding: 1.25rem;
  background: linear-gradient(170deg, #fff, #fcf4e8);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

input,
textarea {
  border: 1px solid #d8c2ab;
  border-radius: 13px;
  padding: 0.72rem;
  font: inherit;
  color: #2c211a;
  background: #fffcf8;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ba8563;
  box-shadow: 0 0 0 3px rgba(186, 133, 99, 0.2);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.guest-card {
  padding: 1.35rem;
  text-align: center;
  background: linear-gradient(130deg, #fff, #f7ecdf);
}

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

.faq-card {
  padding: 1rem 1.1rem;
}

.faq-card h3 {
  margin-bottom: 0.45rem;
}

.site-footer {
  background: linear-gradient(140deg, #30231a, #442d1f);
  color: #f1e2d1;
  padding: 3.2rem 0 1rem;
  border-top: 1px solid rgba(255, 223, 188, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.site-footer a,
.site-footer p {
  color: #e9d7c3;
  display: block;
  margin-bottom: 0.4rem;
}

.site-footer a:hover {
  color: #fff0de;
}

.copyright {
  text-align: center;
  margin-top: 1rem;
  color: #ceb39b;
}

.dev-credit {
  margin-top: 0.2rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #d8bea6;
}

.dev-credit a {
  display: inline-flex;
  margin: 0 0 0 0.25rem;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(222, 187, 157, 0.45);
  border-radius: 999px;
  color: #f3dcc6;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.dev-credit a:hover {
  background: rgba(222, 187, 157, 0.14);
  color: #fff0e1;
  border-color: rgba(245, 213, 185, 0.7);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(19, 12, 8, 0.93);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: min(940px, 94vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox p {
  color: #f6e8d9;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 50;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: var(--primary-2);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 22px rgba(53, 32, 20, 0.26);
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 92;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(22, 118, 54, 0.33);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse-float 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(20, 107, 49, 0.42);
  animation-play-state: paused;
}

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

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 95;
  border-top: 1px solid #decab4;
  background: rgba(255, 244, 230, 0.96);
  backdrop-filter: blur(10px);
}

.mobile-action-bar a {
  flex: 1;
  text-align: center;
  padding: 0.95rem;
  font-weight: 800;
  color: var(--primary-2);
}

.mobile-action-bar a + a {
  border-left: 1px solid #decab4;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-hero {
  padding-top: 4.2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem;
  margin: 0 0 0.95rem;
  font-size: 0.84rem;
  color: #7a6453;
}

.breadcrumb a {
  color: #7a4f34;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.page-hero-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, #fff, #f6eadc);
  overflow: hidden;
  position: relative;
  border-color: #e6d0b9;
}

.page-hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -90px;
  right: -70px;
  background: radial-gradient(circle, rgba(201, 149, 144, 0.34), transparent 68%);
  pointer-events: none;
}

.page-hero-card > * {
  position: relative;
  z-index: 1;
}

.blog-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.blog-card img {
  aspect-ratio: 16 / 10;
  transition: transform 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card:hover img {
  transform: scale(1.045);
}

.blog-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}

.blog-meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}

.blog-card .btn {
  margin-top: auto;
  width: max-content;
}

.blog-article-list {
  display: grid;
  gap: 1rem;
}

.blog-article {
  padding: 1.2rem 1.2rem 1rem;
}

.blog-article h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.blog-article h3 {
  margin: 0.8rem 0 0.55rem;
  font-size: 1.15rem;
  font-family: "Manrope", sans-serif;
}

.blog-article ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.blog-article > img {
  border-radius: 14px;
  margin-bottom: 1rem;
}

.blog-article ul a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.blog-article ul a:hover {
  color: var(--primary-2);
}

.blog-cta {
  padding: 1.5rem;
}

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

@keyframes pulse-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 83px;
    right: 4vw;
    left: 4vw;
    display: none;
    background: #fff;
    border: 1px solid #e8d9c8;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 0.85rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.72rem 0.9rem;
  }

  .hero-grid,
  .split-grid,
  .attraction-card,
  .rooms-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .page-hero {
    padding-top: 3.4rem;
  }

  .hero-floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .top-bar {
    display: none;
  }

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

  .map-embed iframe {
    min-height: 340px;
  }

  .attraction-card img {
    min-height: 220px;
  }

  .section {
    padding: 4.6rem 0;
  }

  .mobile-action-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 72px;
    padding: 0.7rem;
  }

  .whatsapp-float span {
    display: none;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .brand img {
    height: clamp(34px, 9vw, 42px);
    max-width: 50vw;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.1rem 0;
  }

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

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

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badges li {
    width: 100%;
    text-align: center;
  }

  .scroll-top {
    bottom: 74px;
  }

  .blog-card .btn {
    width: 100%;
  }
}
