:root {
  --green: #10261f;
  --green-2: #17382e;
  --charcoal: #171a18;
  --gold: #b9934b;
  --gold-soft: #e4d0a6;
  --white: #fffdfa;
  --ivory: #f6f2ea;
  --muted: #6f746e;
  --line: rgba(23, 26, 24, 0.12);
  --shadow: 0 24px 60px rgba(16, 38, 31, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(16, 38, 31, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 208, 166, 0.65);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

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

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.18rem;
  color: rgba(255, 253, 250, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
  padding: 6rem 2rem 2rem;
  background: var(--green);
  color: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.nav-panel.open {
  transform: translateX(0);
}

.nav-panel a {
  font-size: 1.35rem;
  font-weight: 600;
}

.nav-cta {
  width: fit-content;
  border: 1px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--green) url("hero-kashmir.jpg") center/cover no-repeat;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 12s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 15, 0.78), rgba(10, 18, 15, 0.26) 58%, rgba(10, 18, 15, 0.5)),
    linear-gradient(0deg, rgba(10, 18, 15, 0.58), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 0 4.5rem;
  max-width: 760px;
  justify-self: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(4.4rem, 15vw, 9rem);
  letter-spacing: 0;
}

.hero h2 {
  margin-top: 0.55rem;
  max-width: 680px;
  font-size: clamp(2rem, 7vw, 4.8rem);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.15rem 0 0;
  color: rgba(255, 253, 250, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-copy .btn {
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn.secondary {
  margin-left: 0.6rem;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn.secondary.dark {
  margin-left: 0;
  color: var(--green);
  border-color: rgba(16, 38, 31, 0.22);
}

.section,
.booking-band,
.instagram {
  padding: 5rem 0;
}

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

.booking-band {
  background: var(--green);
  color: var(--white);
}

.booking-intro {
  margin-bottom: 1.4rem;
}

.booking-intro h2,
.section-heading h2,
.dining-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 6vw, 4rem);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

label span,
.newsletter span {
  display: block;
  margin-bottom: 0.4rem;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 0.8rem 0.9rem;
}

select option {
  color: var(--charcoal);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.dining-copy p,
.about-copy p,
.contact-copy,
.footer p {
  color: var(--muted);
}

.room-grid,
.experience-grid {
  display: grid;
  gap: 1.2rem;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.room-card img {
  height: 270px;
  object-fit: cover;
}

.room-copy {
  padding: 1.25rem;
}

.price {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-weight: 700;
}

.room-copy h3,
.experience h3 {
  font-size: 1.7rem;
}

.room-copy ul {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.amenities {
  background: var(--ivory);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.amenity-grid div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  padding: 1rem;
  font-weight: 700;
}

.amenity-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-soft);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.dining-layout,
.about-layout,
.contact-layout,
.review-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.dining-media {
  position: relative;
  min-height: 430px;
}

.dining-media img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dining-media img:first-child {
  inset: 0 10% 16% 0;
  height: 84%;
}

.dining-media img:last-child {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  border: 8px solid var(--white);
}

.experiences {
  background: var(--green);
  color: var(--white);
}

.experiences .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 250, 0.7);
}

.experience {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
}

.experience img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 65%);
}

.experience h3 {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.experience:hover img {
  transform: scale(1.06);
}

.reviews {
  background: var(--ivory);
}

.review-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.8rem;
  align-items: center;
}

.review-carousel article {
  min-height: 250px;
  display: grid;
  align-content: center;
  border-left: 2px solid var(--gold);
  padding: 1.5rem;
  background: rgba(255, 253, 250, 0.72);
  border-radius: var(--radius);
}

.review-carousel p {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.review-carousel span {
  color: var(--muted);
}

.circle-btn,
.back-to-top,
.floating-whatsapp,
.lightbox button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.masonry {
  columns: 1;
  column-gap: 1rem;
}

.masonry button {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  border-radius: var(--radius);
}

.masonry img {
  transition: transform 0.35s ease;
}

.masonry button:hover img {
  transform: scale(1.04);
}

.about {
  background: var(--charcoal);
  color: var(--white);
}

.about-copy p {
  color: rgba(255, 253, 250, 0.72);
}

.weather-widget {
  border: 1px solid rgba(228, 208, 166, 0.28);
  border-radius: var(--radius);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.weather-widget span {
  color: var(--gold-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.weather-widget strong {
  display: block;
  margin: 0.6rem 0;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
}

address {
  font-style: normal;
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(rgba(16, 38, 31, 0.64), rgba(16, 38, 31, 0.64)),
    url("https://images.unsplash.com/photo-1595815771614-ade9d652a65d?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.map-placeholder span {
  color: var(--gold-soft);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.map-placeholder strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.instagram {
  padding-top: 0;
}

.insta-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.insta-strip img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.footer {
  background: var(--green);
  color: var(--white);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer h2 {
  margin: 0 0 1rem;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer a {
  display: block;
  margin: 0.5rem 0;
  color: rgba(255, 253, 250, 0.78);
}

.footer-brand {
  color: var(--white);
}

.newsletter input {
  margin-bottom: 0.8rem;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 1rem;
  z-index: 45;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp {
  bottom: 1rem;
  background: #1f7a4f;
  font-weight: 800;
}

.back-to-top {
  bottom: 4.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 13, 11, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  to {
    transform: scale(1);
  }
}

@media (max-width: 420px) {
  .hero-actions {
    display: grid;
    gap: 0.8rem;
  }

  .btn.secondary {
    margin-left: 0;
  }

  .review-carousel {
    grid-template-columns: 1fr;
  }

  .circle-btn {
    display: none;
  }
}

@media (min-width: 680px) {
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form .wide {
    grid-column: span 2;
  }

  .amenity-grid,
  .insta-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .masonry {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.1rem;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .nav-panel a {
    font-size: 0.9rem;
    font-weight: 700;
  }

  .nav-cta {
    padding: 0.55rem 0.85rem;
  }

  .hero-content {
    justify-self: start;
  }

  .booking-form {
    grid-template-columns: 1.1fr 1.1fr 0.9fr 1.2fr 1.4fr auto;
    align-items: end;
  }

  .booking-form .wide {
    grid-column: auto;
  }

  .room-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenity-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .dining-layout,
  .about-layout,
  .contact-layout,
  .review-layout {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry {
    columns: 3;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
