/* ==========================================================================
   Tawang Neykor Homestay
   Palette taken from the brand card: near-black ground, monastery red,
   saffron, prayer-flag green, warm cream.
   ========================================================================== */

:root {
  --ink:        #14100e;
  --ink-2:      #201917;
  --ink-3:      #2e2521;
  --cream:      #faf6f0;
  --sand:       #f0e8dc;
  --sand-2:     #e2d6c4;
  --red:        #c0261f;
  --red-deep:   #8e1b16;
  --saffron:    #dd8a1f;
  --pine:       #2f5d46;
  --body:       #574c45;
  --body-soft:  #7d716a;
  --line:       #e4dacb;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 16, 14, .06), 0 4px 12px rgba(20, 16, 14, .05);
  --shadow-md: 0 2px 6px rgba(20, 16, 14, .07), 0 12px 32px rgba(20, 16, 14, .09);
  --shadow-lg: 0 4px 12px rgba(20, 16, 14, .08), 0 28px 60px rgba(20, 16, 14, .16);

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0;
  font-variation-settings: "SOFT" 20, "WONK" 0;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

/* ---------- shared bits ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--light { color: var(--saffron); }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  max-width: 20ch;
}

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--body);
  max-width: 62ch;
  margin-top: 20px;
}

.section-head { margin-bottom: clamp(40px, 6vw, 68px); }
.section-head--center { text-align: center; }
.section-head--center .section-title { margin-inline: auto; }
.section-head--center .lede { margin-inline: auto; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(192, 38, 31, .28); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--sand-2);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 10px 24px rgba(20, 16, 14, .2);
}

.btn--on-dark {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .34);
}
.btn--on-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

.btn--wa { --btn-bg: #1faa54; }
.btn--wa:hover { box-shadow: 0 10px 24px rgba(31, 170, 84, .3); }

.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--block { width: 100%; }

.icon { width: 18px; height: 18px; flex: none; }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 16px;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header.is-stuck {
  background: rgba(250, 246, 240, .92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  padding-block: 10px;
  box-shadow: 0 1px 20px rgba(20, 16, 14, .06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  margin-right: auto;
  flex: none;
}
.brand__mark { width: 46px; height: 46px; flex: none; transition: width .3s ease, height .3s ease; }
.header.is-stuck .brand__mark { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .3s ease;
}
.brand__name em { font-style: normal; color: var(--red); }
.brand__sub {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-top: 3px;
  transition: color .3s ease;
}
.header.is-stuck .brand__name { color: var(--ink); }
.header.is-stuck .brand__sub { color: var(--body-soft); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > .btn { display: none; }
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.header.is-stuck .nav a { color: var(--body); }
.header.is-stuck .nav a:hover { color: var(--ink); background: rgba(20, 16, 14, .05); }

.header__cta { flex: none; }
.header .btn--on-dark { border-color: rgba(255, 255, 255, .38); }
.header.is-stuck .btn--on-dark { --btn-bg: var(--red); --btn-fg: #fff; border-color: var(--red); }
.header.is-stuck .btn--on-dark:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  flex: none;
}
.header.is-stuck .nav-toggle {
  background: rgba(20, 16, 14, .05);
  border-color: var(--line);
  color: var(--ink);
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform .25s ease, background-color .25s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(48px, 7vw, 84px);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% 0%, #3a2c22 0%, #1d1613 45%, var(--ink) 100%);
}
.hero__bg img,
.hero__bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: .9;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(20, 16, 14, .78) 0%, rgba(20, 16, 14, .45) 45%, rgba(20, 16, 14, .12) 75%),
    linear-gradient(to top, rgba(20, 16, 14, .94) 0%, rgba(20, 16, 14, .38) 45%, rgba(20, 16, 14, .5) 100%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 26px;
}
.hero__tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .18);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.03;
  max-width: 15ch;
  letter-spacing: -.028em;
}
.hero h1 em {
  font-style: italic;
  color: var(--saffron);
  font-variation-settings: "SOFT" 60, "WONK" 1;
}

.hero__sub {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  max-width: 52ch;
  margin-top: 24px;
}

.hero__bo {
  font-family: "Noto Serif Tibetan", var(--font-display), serif;
  color: var(--saffron);
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-top: 22px;
  opacity: .9;
  line-height: 2.2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 7vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 26px;
}
.hero__strip div { padding-right: 18px; }
.hero__strip dt {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
}
.hero__strip dd {
  margin: 6px 0 0;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* ---------- pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px);
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, #fdf1e2, #f7e2cd);
  color: var(--red);
  margin-bottom: 22px;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.32rem; margin-bottom: 10px; }
.pillar p { font-size: 15.5px; color: var(--body-soft); margin: 0; }

/* ---------- about ---------- */

.about { background: var(--sand); }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  right: -18px;
  bottom: 32px;
  background: var(--ink);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-width: 210px;
}
.about__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--saffron);
  line-height: 1;
}
.about__badge span {
  display: block;
  margin-top: 7px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  line-height: 1.5;
}

.checklist { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--body);
}
.checklist svg { width: 21px; height: 21px; flex: none; color: var(--pine); margin-top: 2px; }

/* ---------- rooms ---------- */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 32px);
}
.room {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.room__media { position: relative; overflow: hidden; }
.room__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.room:hover .room__media img { transform: scale(1.05); }
.room__flag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(20, 16, 14, .82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}
.room__body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 1.42rem; }
.room__blurb { font-size: 15px; color: var(--body-soft); margin: 10px 0 20px; }
.room__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room__specs li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--body);
  background: var(--sand);
  border-radius: 999px;
  padding: 6px 12px;
}
.room__foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.room__price {
  font-family: var(--font-display);
  font-size: 1.62rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}
.room__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--body-soft);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 7px;
}

.rooms-note {
  margin-top: 34px;
  text-align: center;
  font-size: 14.5px;
  color: var(--body-soft);
}

/* ---------- gallery ---------- */

.house { background: var(--sand); }
.house .gallery-grid { grid-auto-flow: dense; }

.gallery { background: var(--ink); }
.gallery .section-title, .gallery h2 { color: #fff; }
.gallery .lede { color: rgba(255, 255, 255, .68); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-grid button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  display: block;
}
.gallery-grid button:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1), opacity .3s ease;
}
.gallery-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 14, .55), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-grid button:hover img { transform: scale(1.06); }
.gallery-grid button:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 8, 7, .94);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background-color .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .22); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  letter-spacing: .04em;
}

/* ---------- explore ---------- */

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 28px);
}
.spot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.spot:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spot img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.spot:hover img { transform: scale(1.06); }
.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(20, 16, 14, .95) 0%, rgba(20, 16, 14, .82) 22%, rgba(20, 16, 14, .35) 58%, rgba(20, 16, 14, .12) 100%);
}
.spot__body { padding: clamp(20px, 2.4vw, 28px); }
.spot__dist {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 9px;
}
.spot h3 { color: #fff; font-size: 1.35rem; }
.spot p { font-size: 14.5px; color: rgba(255, 255, 255, .74); margin: 8px 0 0; }

/* ---------- reviews ---------- */

.reviews { background: var(--sand); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 28px);
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; color: var(--saffron); margin-bottom: 18px; }
.stars svg { width: 17px; height: 17px; }
.review blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--red), var(--saffron));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 15px;
  flex: none;
}
.review__who strong { display: block; color: var(--ink); font-size: 15px; font-weight: 600; }
.review__who span { font-size: 13px; color: var(--body-soft); }

.placeholder-tint {
  background: repeating-linear-gradient(-45deg, #fffaf2, #fffaf2 10px, #fff4e4 10px, #fff4e4 20px);
  border-style: dashed;
  border-color: var(--sand-2);
}

/* ---------- booking ---------- */

.booking { background: var(--cream); }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(34px, 4vw, 60px);
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-md);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 38, 31, .12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237d716a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-note { font-size: 13px; color: var(--body-soft); margin-top: 16px; text-align: center; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  display: none;
}
.form-status.is-ok { display: block; background: #eaf6ee; color: #1c6b39; border: 1px solid #bfe3cc; }
.form-status.is-err { display: block; background: #fdecea; color: #96231c; border: 1px solid #f3c6c2; }

.contact-card {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-md);
}
.contact-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.contact-card > p { font-size: 15px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-list .ci {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 11px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  display: grid; place-items: center;
  color: var(--saffron);
}
.contact-list .ci svg { width: 18px; height: 18px; }
.contact-list dt {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 4px;
}
.contact-list dd { margin: 0; font-size: 15.5px; color: #fff; line-height: 1.5; }
.contact-list a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .28); }
.contact-list a:hover { border-bottom-color: var(--saffron); color: var(--saffron); }
.contact-card .btn { margin-top: 26px; }

.map-frame {
  margin-top: 26px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 220px; border: 0; filter: grayscale(.25); }

/* ---------- faq ---------- */

.faq { background: var(--sand); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.acc { border-top: 1px solid var(--sand-2); }
.acc details { border-bottom: 1px solid var(--sand-2); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s ease;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--red); }
.acc summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -8px;
  border-right: 1.8px solid var(--red);
  border-bottom: 1.8px solid var(--red);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.acc details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.acc details p { padding: 0 20px 24px 0; font-size: 15.5px; color: var(--body); }

/* ---------- cta band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--red-deep), var(--red) 55%, #a8221c);
  color: #fff;
  text-align: center;
  padding-block: clamp(60px, 8vw, 100px);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); margin-inline: auto; max-width: 18ch; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 52ch; margin: 18px auto 0; }
.cta-band .hero__actions { justify-content: center; }
.cta-band .btn--ghost { --btn-fg: #fff; border-color: rgba(255, 255, 255, .45); }
.cta-band .btn--ghost:hover { background: #fff; color: var(--red); border-color: #fff; }
.cta-band .btn { --btn-bg: #fff; --btn-fg: var(--red); }
.cta-band .btn:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, .25); }

/* ---------- footer ---------- */

.footer { background: var(--ink); color: rgba(255, 255, 255, .6); padding-block: clamp(52px, 6vw, 76px) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(26px, 4vw, 52px);
  padding-bottom: 48px;
}
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255, 255, 255, .5); }
.footer__about { margin-top: 20px; font-size: 14.5px; max-width: 34ch; }
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer a { color: rgba(255, 255, 255, .6); text-decoration: none; font-size: 14.5px; transition: color .2s ease; }
.footer a:hover { color: var(--saffron); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: grid; place-items: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.socials svg { width: 17px; height: 17px; }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer__bo { font-family: "Noto Serif Tibetan", serif; color: var(--saffron); line-height: 2; }

/* ---------- floating whatsapp ---------- */

.wa-float {
  position: fixed;
  right: 20px; bottom: 76px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1faa54;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(31, 170, 84, .42);
  transition: transform .22s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1120px) {
  .nav a { padding: 9px 10px; font-size: 14px; }
}

@media (max-width: 1000px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 460px; }
  .about__badge { right: 16px; }
  .pillars, .rooms-grid, .explore-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .booking__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--cream);
    padding: 92px 20px 26px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.3,.8,.3,1);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { transform: none; }
  .nav a { color: var(--ink) !important; font-size: 17px; padding: 14px 12px; border-radius: var(--r-sm); }
  .nav a:hover { background: var(--sand) !important; }
  .nav > .btn {
    display: inline-flex;
    margin-top: 12px;
    --btn-bg: var(--red);
    --btn-fg: #fff;
    border-color: var(--red);
  }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .pillars, .rooms-grid, .explore-grid, .reviews-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 120px; }
  .g-wide { grid-column: span 1; }
  .g-tall { grid-row: span 1; }
  .gallery-grid { grid-auto-rows: 150px; }
  .about__badge { position: static; margin-top: -34px; margin-left: 20px; max-width: none; }
  .footer__bar { flex-direction: column; }
}
