:root {
  --saffron: #d86f12;
  --deep: #57240f;
  --maroon: #8b2f13;
  --cream: #fff7e8;
  --paper: #fffaf2;
  --text: #2a211c;
  --muted: #6f625b;
  --line: #ead8bd;
  --green: #246b47;
  --shadow: 0 20px 60px rgba(53, 29, 12, 0.14);
  --radius: 24px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Hind,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
}
.skip-link:focus {
  left: 12px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 0;
  transition: 0.25s ease;
  background: linear-gradient(
    to bottom,
    rgba(36, 18, 8, 0.7),
    rgba(36, 18, 8, 0)
  );
  color: #fff;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: -4px;
  opacity: 0.86;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcb61, var(--saffron));
  color: #5d1f0c;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(216, 111, 18, 0.28);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
}
.main-nav a {
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--saffron);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(216, 111, 18, 0.25);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.nav-toggle span {
  height: 2px;
  background: currentColor;
  width: 26px;
  display: block;
  margin-inline: auto;
}
.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(37, 16, 4, 0.86),
      rgba(69, 27, 7, 0.58) 42%,
      rgba(69, 27, 7, 0.12)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.12));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  max-width: var(--container);
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 700;
  color: #ffd481;
}
.eyebrow.dark {
  color: var(--maroon);
}
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0;
  color: inherit;
}
h1 {
  font-size: clamp(42px, 6vw, 82px);
  max-width: 870px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
}
h3 {
  font-size: 26px;
}
.hero-text {
  font-size: 20px;
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #a84212);
  color: #fff;
  box-shadow: 0 15px 35px rgba(168, 66, 18, 0.32);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}
.btn:hover {
  transform: translateY(-2px);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-row span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
}
.quick-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 22px 0;
}
.quick-grid div {
  display: grid;
  gap: 2px;
}
.quick-grid strong {
  color: var(--maroon);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.quick-grid a,
.quick-grid span {
  font-size: 18px;
  font-weight: 600;
}
.section {
  padding: 92px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.align-center {
  align-items: center;
}
.lead-copy {
  font-size: 20px;
  color: var(--muted);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card-body {
  padding: 24px;
}
.tag {
  display: inline-flex;
  background: #fff1d2;
  color: var(--maroon);
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.card-body p {
  color: var(--muted);
  margin: 12px 0 18px;
}
.price {
  display: flex;
  align-items: end;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.price span {
  font-size: 32px;
  font-weight: 800;
  color: var(--maroon);
}
.price small {
  color: var(--muted);
  margin-bottom: 7px;
}
.facilities {
  background: #fff;
}
.feature-photo {
  position: relative;
}
.feature-photo:before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  background: #ffe0a3;
  border-radius: var(--radius);
  z-index: 0;
}
.feature-photo img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  height: 620px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.facility-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.facility-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.facility-list span {
  grid-row: 1/3;
  color: var(--saffron);
  font-weight: 800;
  font-size: 22px;
}
.facility-list strong {
  font-size: 19px;
}
.facility-list p {
  margin: 4px 0 0;
  color: var(--muted);
}
.location {
  background: linear-gradient(135deg, #fff4dd, #fffaf2);
}
.location-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.location-card p:not(.eyebrow) {
  font-size: 19px;
  color: var(--muted);
}

.map {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  border-top: 0;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.distance-grid div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.distance-grid strong {
  display: block;
  font-size: 38px;
  color: var(--maroon);
  line-height: 1;
}
.distance-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid a {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(53, 29, 12, 0.1);
  background: #fff;
}
.gallery-grid img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.gallery-grid a:hover img {
  transform: scale(1.05);
}
.booking {
  background: #fff;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.booking-copy p {
  font-size: 19px;
  color: var(--muted);
}
.contact-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.enquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.enquiry-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  margin-bottom: 16px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #dfc8a9;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 3px solid rgba(216, 111, 18, 0.18);
  border-color: var(--saffron);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.form-note {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}
.site-footer {
  background: var(--deep);
  color: #fff;
  padding: 58px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
}
.footer-grid p {
  color: rgba(255, 255, 255, 0.76);
}
.footer-grid h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38);
}
@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    color: var(--text);
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .hero {
    min-height: 690px;
  }
  .quick-grid,
  .card-grid,
  .two-col,
  .location-card,
  .booking-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-photo img {
    height: 470px;
  }
  .section {
    padding: 68px 0;
  }
  .location-card {
    padding: 28px;
  }
  .booking-wrap {
    gap: 28px;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand small {
    font-size: 12px;
  }
  h1 {
    font-size: 39px;
  }
  .hero-text {
    font-size: 18px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row span {
    font-size: 14px;
  }
  .quick-grid {
    gap: 14px;
  }
  .quick-grid a,
  .quick-grid span {
    font-size: 16px;
  }
  .section {
    padding: 54px 0;
  }
  .room-card img {
    height: 210px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid img {
    height: 230px;
  }
  .distance-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .enquiry-form {
    padding: 22px;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 14px;
    padding: 0;
    width: 40px;
  }
  .feature-photo:before {
    display: none;
  }
  .feature-photo img {
    height: 360px;
  }
  .footer-grid {
    gap: 20px;
  }
}
