:root {
  --ink: #17211d;
  --muted: #65726b;
  --paper: #f8f4ec;
  --ivory: #fffaf1;
  --forest: #18352d;
  --moss: #637e58;
  --gold: #c69b4a;
  --terracotta: #a8583c;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(22, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 30, 25, 0.42);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.93);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 228px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #1d2b25;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, #f5dfac, #c69b4a);
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-cta {
  color: #1d2b25;
  background: #f0d89d;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 25, 20, 0.82), rgba(15, 25, 20, 0.42) 48%, rgba(15, 25, 20, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 38%, rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  padding: 168px 0 120px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary {
  color: #15231d;
  background: #f0d89d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.button.primary.dark {
  color: white;
  background: var(--forest);
  box-shadow: none;
}

.button.whatsapp {
  color: white;
  background: #1f8f55;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.button.outline {
  color: var(--forest);
  border-color: rgba(24, 53, 45, 0.24);
  background: transparent;
}

.button.glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.88);
}

.rating-number {
  font-size: 30px;
  font-weight: 850;
  color: white;
}

.stars {
  color: #f1cf72;
  letter-spacing: 0;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.58;
}

.availability-card {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 46px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(560px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.availability-card div {
  padding: 18px;
  background: rgba(22, 32, 28, 0.32);
}

.availability-card span,
.availability-card strong {
  display: block;
}

.availability-card span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
}

.availability-card strong {
  font-size: 18px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.section-copy {
  max-width: 680px;
}

.section-copy.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intro-grid article,
.review-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 18px 60px rgba(36, 44, 39, 0.07);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  background: #ead7aa;
  border-radius: 6px;
}

.intro-grid p,
.text-block p,
.panel-text p,
.hall-inner p,
.location p,
.enquiry-copy p,
.review-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: end;
  min-height: 540px;
  padding: clamp(28px, 5vw, 58px);
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(19, 36, 30, 0.92), rgba(19, 36, 30, 0.68)),
    url("assets/vandan-room.jpeg") center/cover;
  box-shadow: var(--shadow);
}

.panel-text {
  max-width: 660px;
}

.panel-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spec-list span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.text-block {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--terracotta);
  font-weight: 800;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.photo-frame,
.gallery-grid figure,
.hall-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ivory);
}

.photo-frame img,
.gallery-grid img,
.hall-photo img {
  height: 100%;
  object-fit: cover;
}

.photo-frame {
  min-height: 560px;
}

.photo-frame figcaption,
.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  background: rgba(16, 27, 23, 0.68);
  backdrop-filter: blur(12px);
}

.dining-photo img {
  object-position: center;
}

.hall {
  width: 100%;
  max-width: none;
  padding: 100px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--forest);
}

.hall {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.hall-inner {
  max-width: 800px;
}

.hall-photo {
  min-height: 430px;
  margin: 0;
}

.hall-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / -1;
  gap: 1px;
  max-width: 860px;
  margin-top: 38px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.hall-stats div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.hall-stats strong,
.hall-stats span {
  display: block;
}

.hall-stats strong {
  margin-bottom: 6px;
  font-size: 27px;
  font-family: Georgia, "Times New Roman", serif;
}

.hall-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery {
  padding-top: 104px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.review-top span {
  color: var(--gold);
  letter-spacing: 0;
  white-space: nowrap;
}

.location-card,
.enquiry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.plus-code {
  font-weight: 800;
}

.enquiry {
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-panel a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel strong {
  color: var(--forest);
  font-size: 19px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

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

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.enquiry-form button {
  justify-self: start;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--moss);
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 32px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #101b17;
}

.site-footer strong {
  color: white;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    inset: 12px 12px auto;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  body.menu-open .main-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    border-radius: 8px;
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 142px 0 280px;
    margin-left: 16px;
  }

  .availability-card {
    left: 16px;
    right: 16px;
    bottom: 26px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .section,
  .intro,
  .split,
  .enquiry {
    width: calc(100% - 32px);
  }

  .intro,
  .split,
  .feature-panel,
  .location-card,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .review-grid,
  .hall-stats,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .photo-frame {
    min-height: 500px;
  }

  .hall {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hall-photo {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .gallery-grid .wide {
    grid-column: auto;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .enquiry-form button {
    width: 100%;
  }

  .inline-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

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

  .section {
    padding: 72px 0;
  }

  .intro-grid article,
  .review-grid article {
    min-height: 0;
  }
}
