:root {
  --bg: #f8f4ef;
  --card: #ffffff;
  --primary: #1f513f;
  --primary-dark: #16402f;
  --accent: #d6a35e;
  --accent-soft: #f0e6d9;
  --ink: #1b1a17;
  --muted: #6b655e;
  --line: #e5dbcf;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.5em;
  color: var(--ink);
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

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

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

ul {
  padding-left: 1.1em;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(248, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.2s ease;
}

.topbar.hide {
  transform: translateY(-100%);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
}

.brand-mark.has-logo {
  background: none;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.brand small,
#brand-location {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(31, 81, 63, 0.3);
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.small {
  padding: 9px 14px;
  font-size: 14px;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, rgba(31, 81, 63, 0.8), rgba(214, 163, 94, 0.65)), var(--primary);
  padding: 110px 0 80px;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 81, 63, 0.72), rgba(27, 26, 23, 0.5));
  z-index: 1;
}

.hero.video-active {
  background: #000;
  background-image: none !important;
}

.hero.video-active .overlay {
  background: linear-gradient(120deg, rgba(31, 81, 63, 0.38), rgba(27, 26, 23, 0.32));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.hero-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
}

.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(34px, 4vw, 48px);
  color: #fff;
}

.hero-text .lead {
  color: #f5efe6;
  max-width: 560px;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.lead {
  font-size: 17px;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.hero-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 14px;
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  border-radius: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 90px 0;
}

.section.light {
  background: var(--accent-soft);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink);
}

.strip {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(31, 81, 63, 0.1), rgba(214, 163, 94, 0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: center;
}

.strip-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.highlights {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.icon-card {
  text-align: left;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.rooms {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.room-card {
  padding: 0;
  overflow: hidden;
}

.room-photo,
.media-photo,
.restaurant-photo,
.gallery-card {
  min-height: 180px;
  background: linear-gradient(135deg, rgba(31, 81, 63, 0.65), rgba(214, 163, 94, 0.65));
}

.room-photo.alt,
.media-photo.alt,
.gallery-card.alt {
  background: linear-gradient(135deg, rgba(214, 163, 94, 0.65), rgba(31, 81, 63, 0.65));
}

.room-photo.accent,
.media-photo.accent,
.gallery-card.accent {
  background: linear-gradient(135deg, rgba(31, 81, 63, 0.75), rgba(27, 26, 23, 0.7));
}

.media-photo.soft,
.gallery-card.soft {
  background: linear-gradient(135deg, rgba(240, 230, 217, 0.8), rgba(214, 163, 94, 0.5));
}

.room-body {
  padding: 18px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  color: var(--muted);
}

.amenities li {
  padding: 4px 0;
}

.room-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.structure {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.important {
  margin-top: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.callout {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(31, 81, 63, 0.08), rgba(214, 163, 94, 0.08));
  border: 1px solid var(--line);
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-body {
  padding: 16px 16px 20px;
}

.distance-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.distance-card {
  display: grid;
  gap: 6px;
  text-align: left;
}

.distance-number {
  font-weight: 800;
  font-size: 28px;
  color: var(--primary);
}

.compare {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  align-items: center;
}

.compare-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 28px;
}

.restaurant-photo {
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  position: relative;
}

.restaurant-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.restaurant-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

.restaurant-photo.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 26, 23, 0.18), rgba(27, 26, 23, 0.18));
  pointer-events: none;
  z-index: 2;
}

.restaurant-photo.video-cover iframe,
.restaurant-photo.video-cover video {
  position: relative;
  z-index: 1;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: var(--muted);
}

.timeline li {
  margin-bottom: 10px;
}

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

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
}

.gallery-card::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(27, 26, 23, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
}

.faq {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.faq summary {
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.faq details[open] {
  border-color: var(--primary);
}

.faq p {
  color: var(--muted);
  margin-top: 8px;
  cursor: default;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  background: #fff;
}

.inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  color: var(--muted);
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.mini-list li {
  margin-bottom: 8px;
}

.policies {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.map {
  background: #111;
  padding: 0 0 70px;
}

.map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer {
  background: #12110f;
  color: #f0ede7;
  padding: 40px 0;
}

.footer a {
  color: #f0ede7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.footer h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer .brand-name {
  white-space: normal;
}

.copy {
  font-size: 12px;
  color: #bbb4a8;
  margin-top: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border: none;
  text-decoration: none;
  z-index: 20;
}

.floating-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.reviews-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.reviews-carousel .card {
  min-height: 180px;
  scroll-snap-align: start;
}

@media (max-width: 780px) {
  .mobile-carousel {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .mobile-carousel > * {
    scroll-snap-align: start;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .topbar .btn.primary.small {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  .strip-actions,
  .compare-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-wrapper {
    padding: 12px 0;
  }

  .hero {
    min-height: 70vh;
  }

  .room-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .room-card .room-photo {
    min-height: 180px;
  }

  .room-card .room-body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .room-card .room-body .amenities {
    flex: 1;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }

  .brand-name {
    white-space: normal;
  }
}
