:root {
  --navy-900: #0e2230;
  --navy-800: #143349;
  --navy-700: #1e4964;
  --sand-50: #fcf9f3;
  --sand-100: #f6efe2;
  --sand-200: #e8dbc6;
  --sand-300: #d8c1a2;
  --gold-500: #b88043;
  --gold-600: #99642f;
  --ink-900: #1a2530;
  --ink-700: #586575;
  --line: rgba(26, 37, 48, 0.1);
  --shadow-soft: 0 20px 60px rgba(18, 34, 48, 0.08);
  --shadow-strong: 0 28px 70px rgba(8, 24, 35, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f5efe4 0%, #fffdf9 48%, #f4ecdf 100%);
}

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

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

p {
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

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

.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(252, 249, 243, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--gold-500));
  color: #fff;
  font-weight: 800;
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-copy strong {
  font-size: 1.02rem;
}

.logo-copy small {
  color: var(--ink-700);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.nav a {
  font-weight: 600;
  color: var(--ink-700);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: 0 16px 30px rgba(184, 128, 67, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-secondary-dark {
  border-color: rgba(26, 37, 48, 0.16);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.5);
}

.button-light {
  background: #fff;
  color: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(184, 128, 67, 0.22), transparent 22%),
    linear-gradient(135deg, #102737 0%, #173a51 48%, #204f6c 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -180px -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

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

.section-kicker {
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .section-kicker {
  color: var(--sand-300);
}

.hero-copy h1 {
  max-width: 10.5ch;
}

.hero-text {
  max-width: 55ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hero-stats article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  border-radius: 26px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-strong);
}

.hero-card-main {
  grid-column: span 2;
  min-height: 420px;
  padding: 28px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(7, 24, 36, 0.05), rgba(7, 24, 36, 0.52)),
    linear-gradient(135deg, rgba(184, 128, 67, 0.45), rgba(14, 34, 48, 0.15)),
    url("assets/images/Bandhan 1.jpg") center/cover no-repeat;
}

.hero-card-copy p,
.hero-card-side p {
  margin-bottom: 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.8);
}

.hero-card-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 8px;
}

.hero-card-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-card-side {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(8, 25, 37, 0.6));
}

.hero-card-side-location {
  background:
    linear-gradient(180deg, rgba(7, 24, 36, 0.12), rgba(8, 25, 37, 0.68)),
    url("assets/images/Bandhan 5.jpg") center/cover no-repeat;
}

.hero-card-side-stay {
  background:
    linear-gradient(180deg, rgba(7, 24, 36, 0.12), rgba(8, 25, 37, 0.68)),
    url("assets/images/IMG-20260327-WA0047.jpg") center/cover no-repeat;
}

.hero-card-side strong {
  font-size: 1.15rem;
  line-height: 1.45;
}

.overview-strip {
  margin-top: -22px;
  position: relative;
  z-index: 3;
}

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

.overview-grid article {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.overview-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-600);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: transparent;
}

.section-white {
  background: #fffdfa;
}

.section-dark {
  background: linear-gradient(180deg, #122738, #17344b);
  color: #fff;
}

.section-contact {
  background: linear-gradient(180deg, #f5ecde, #fffdfa);
}

.section-heading {
  max-width: 720px;
}

.section-heading > p:last-child,
.section-side-note {
  color: var(--ink-700);
}

.section-heading-wide {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  max-width: none;
  margin-bottom: 30px;
}

.section-heading-dark .section-kicker,
.section-heading-dark .section-side-note {
  color: rgba(255, 255, 255, 0.75);
}

.about-grid {
  display: grid;
  gap: 28px;
}

.about-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.panel h3 {
  margin-bottom: 18px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
  color: var(--ink-700);
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.amenity-grid span,
.distance-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--sand-50);
  border: 1px solid rgba(26, 37, 48, 0.08);
}

.distance-list {
  display: grid;
  gap: 12px;
}

.distance-item strong {
  display: block;
  margin-bottom: 4px;
}

.distance-item span {
  color: var(--ink-700);
  font-size: 0.94rem;
}

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

.room-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(26, 37, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.room-visual {
  position: relative;
  aspect-ratio: 16 / 10;
}

.room-visual img {
  height: 100%;
  object-fit: cover;
}

.dummy-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(14, 34, 48, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-body {
  padding: 24px;
}

.room-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.room-count {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--gold-600);
  font-size: 0.86rem;
  font-weight: 800;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.room-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4efe7;
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.room-description {
  color: var(--ink-700);
}

.places-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
}

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

.place-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.place-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.place-type {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.place-card p {
  color: rgba(255, 255, 255, 0.76);
}

.place-distance {
  margin-top: 18px;
  color: var(--sand-300);
  font-weight: 800;
}

.route-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(184, 128, 67, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.route-label {
  margin-bottom: 14px;
  color: var(--sand-300);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-panel p:last-of-type {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.route-panel .button {
  margin-top: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
}

.contact-copy {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 37, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-copy > p:nth-of-type(2) {
  margin-top: 16px;
  color: var(--ink-700);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a {
  width: fit-content;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-map {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 37, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 22px 0 34px;
  background: #fffdfa;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-700);
}

@media (max-width: 1080px) {
  .nav-shell,
  .section-heading-wide,
  .places-layout,
  .contact-grid,
  .about-panels {
    grid-template-columns: 1fr;
  }

  .nav-shell,
  .section-heading-wide {
    display: grid;
  }

  .nav,
  .nav-cta {
    justify-self: start;
  }

  .hero-grid,
  .places-layout,
  .contact-grid,
  .about-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero {
    padding-top: 48px;
  }

  .overview-grid,
  .room-grid,
  .places-grid,
  .hero-stats,
  .amenity-grid,
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-card-main {
    min-height: 320px;
  }

  .section {
    padding: 68px 0;
  }

  .topbar-inner {
    justify-content: flex-start;
  }
}
