:root {
  --ivory: #fff8ec;
  --paper: #ffffff;
  --ink: #251b14;
  --muted: #665a4c;
  --saffron: #d88a13;
  --gold: #a87415;
  --maroon: #84281f;
  --temple-red: #b13a25;
  --sea: #0f6f78;
  --line: #e9d8bd;
  --soft: #f8ecd7;
  --sand: #f3dfbd;
  --shadow: 0 18px 55px rgba(76, 48, 20, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.modern-site {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 138, 19, 0.11), transparent 28%),
    linear-gradient(180deg, var(--ivory), #fffdf8 48%, #fff7eb);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

.modern-site h1,
.modern-site h2,
.modern-site h3,
.modern-site h4 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
  color: var(--ink);
}

.modern-site p { color: var(--muted); margin: 0 0 16px; }

.modern-site a {
  color: var(--maroon);
  text-decoration-color: rgba(216, 138, 19, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease, background-color 160ms ease;
}

.modern-site a:hover {
  color: var(--sea);
  text-decoration-color: currentColor;
}

.site-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-header,
.header.w3l,
.newsletter,
.copy-rights {
  float: none;
}

.modern-topbar {
  background: linear-gradient(90deg, #6f211a, #9d3a23 52%, #0f626a);
  color: #fff8ea;
  font-size: 14px;
}

.modern-topbar .site-container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.modern-topbar a { color: #fff8ea; text-decoration: none; }

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.modern-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 236, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.modern-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 142px;
  height: auto;
  display: block;
}

.modern-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: #3a3026;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}

.modern-menu a:hover,
.modern-menu a.active {
  color: var(--maroon);
  background: #f5dfb8;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--ink);
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--saffron);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(177, 58, 37, 0.18);
}

.btn-modern:hover { color: #fff; background: #b9630e; text-decoration: none; transform: translateY(-1px); }

.btn-modern.secondary {
  background: #fff;
  color: var(--maroon);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(32, 20, 11, 0.78), rgba(96, 45, 18, 0.38) 48%, rgba(15, 91, 99, 0.24)),
    url("../images/vrg.jpg") center/cover no-repeat;
  color: #fff;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--saffron) 0 24px, var(--maroon) 24px 48px, var(--sea) 48px 72px);
}

.hero-content {
  max-width: 720px;
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--maroon);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow,
.page-hero .eyebrow,
.restaurant-band .eyebrow {
  color: #ffe2a2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
}

.hero p {
  max-width: 620px;
  color: #fff7e8;
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.booking-strip {
  margin-top: -58px;
  position: relative;
  z-index: 3;
}

.strip-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  border-radius: 8px;
}

.strip-item {
  padding: 14px;
  background: linear-gradient(135deg, #fff8eb, var(--soft));
  border-left: 3px solid var(--saffron);
  border-radius: 8px;
}

.strip-item strong {
  display: block;
  color: var(--ink);
}

.section {
  padding: 86px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 236, 0.72)),
    repeating-linear-gradient(135deg, rgba(216, 138, 19, 0.06) 0 2px, transparent 2px 18px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
}

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

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.feature,
.room-card,
.destination-card,
.contact-panel,
.facility-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 13px 34px rgba(76, 48, 20, 0.08);
  overflow: hidden;
}

.room-card,
.destination-card,
.facility-card,
.contact-panel,
.feature {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.room-card:hover,
.destination-card:hover,
.facility-card:hover,
.contact-panel:hover,
.feature:hover {
  transform: translateY(-3px);
  border-color: #ddb979;
  box-shadow: 0 18px 44px rgba(76, 48, 20, 0.13);
}

.feature,
.facility-card,
.contact-panel {
  padding: 24px;
}

.testimonial-section {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.98), rgba(255, 252, 246, 0.96)),
    radial-gradient(circle at 85% 18%, rgba(15, 111, 120, 0.12), transparent 30%);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.testimonial-content h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.6vw, 58px);
}

.review-feature {
  position: relative;
  margin: 30px 0 0;
  padding: 34px 36px;
  border-left: 5px solid var(--saffron);
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(76, 48, 20, 0.09);
}

.review-feature::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(216, 138, 19, 0.13);
}

.review-feature blockquote {
  position: relative;
  margin: 0;
  max-width: 640px;
  color: #46392f;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  font-family: "Playfair Display", Georgia, serif;
}

.review-feature blockquote::before {
  content: open-quote;
}

.review-feature blockquote::after {
  content: close-quote;
}

.review-feature figcaption {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.review-feature figcaption strong {
  color: var(--ink);
  font-weight: 900;
}

.review-feature figcaption span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-collage {
  min-height: 420px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.testimonial-collage .gallery-item {
  height: auto;
  min-height: 0;
}

.testimonial-collage .collage-1 {
  grid-row: 1 / span 2;
}

.testimonial-collage .collage-1 img,
.testimonial-collage .collage-2 img,
.testimonial-collage .collage-3 img {
  height: 100%;
}

.stars {
  color: var(--saffron);
  font-size: 19px;
  letter-spacing: 3px;
  margin: 0 0 10px;
}

.booking-info {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.booking-notes {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.booking-notes div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf1, #f8ecd7);
}

.booking-notes .icon-mark {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  font-size: 14px;
}

.booking-notes strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.icon-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffedc4, #f3d29a);
  color: var(--maroon);
  font-size: 22px;
}

.icon-mark .bi {
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.wide-image,
.room-card img,
.destination-card img,
.gallery-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.image-stack img:first-child { height: 430px; }
.image-stack img:last-child { height: 280px; }

.room-card img { height: 260px; border-radius: 0; }
.room-body { padding: 24px; }

.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0 14px;
}

.room-meta span:first-child {
  color: var(--maroon);
  font-weight: 900;
}

.room-status {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e5f4ee;
  color: #136341;
  font-size: 12px;
  font-weight: 900;
}

.room-status.unavailable {
  background: #f7e1dc;
  color: #9b321f;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.amenities li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3dc;
  color: #63431c;
  border: 1px solid #efd5a8;
  font-size: 13px;
  font-weight: 700;
}

.destination-card img { height: 220px; border-radius: 8px 8px 0 0; }
.destination-card div { padding: 20px; }

.place-distance {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sea);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.restaurant-band {
  background:
    linear-gradient(100deg, rgba(100, 31, 23, 0.96), rgba(132, 40, 31, 0.88)),
    url("../images/5.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.restaurant-band h2,
.restaurant-band h3 { color: #fff; }
.restaurant-band p { color: #fff2dd; }

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

.gallery-grid img { height: 210px; }

.gallery-item {
  display: block;
  width: 100%;
  height: 210px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  transition: transform 220ms ease, filter 220ms ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(27, 16, 10, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-frame {
  display: grid;
  justify-items: center;
}

.lightbox img {
  max-width: min(1080px, 94vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  margin: 14px 0 0;
  color: #fff4df;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #fff8ec;
  color: var(--maroon);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding: 96px 0 70px;
  background:
    linear-gradient(90deg, rgba(31, 19, 11, 0.82), rgba(102, 44, 18, 0.46) 55%, rgba(15, 91, 99, 0.28)),
    url("../images/slider3.jpg") center/cover no-repeat;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  max-width: 650px;
  color: #fff7e8;
  font-size: 19px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
}

.modern-form textarea { min-height: 140px; resize: vertical; }
.modern-form input[type="date"],
.modern-form input[type="number"] {
  color-scheme: light;
}

.modern-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.75;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  outline: 2px solid rgba(15, 111, 120, 0.18);
  border-color: var(--sea);
}

.modern-form input[type="submit"] {
  background: var(--saffron);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.modern-footer {
  background: linear-gradient(135deg, #2d1d13, #5d211b 58%, #0d5157);
  color: #fff7e8;
  padding: 56px 0 22px;
}

.modern-footer h2,
.modern-footer h3,
.modern-footer h4 {
  color: #ffe2a2;
}

.modern-footer p,
.modern-footer a { color: #eadfcb; }

.modern-footer a:hover {
  color: #fff;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .modern-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 8px;
  }
  .modern-menu.is-open { display: flex; }
  .modern-menu a { border-radius: 8px; }
  .hero { min-height: 620px; }
  .strip-card,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .testimonial-layout,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-collage { min-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .modern-topbar .site-container { align-items: flex-start; padding: 10px 0; }
  .hero-content { padding: 74px 0 112px; }
  .section { padding: 62px 0; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img:first-child,
  .image-stack img:last-child,
  .room-card img,
  .destination-card img,
  .gallery-grid img { height: 235px; }
  .review-feature { padding: 26px 24px; }
  .testimonial-collage {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .testimonial-collage .gallery-item { height: 235px; }
  .testimonial-collage .collage-1 { grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
}
