/* ============================================================================
   BANYAN TREE — stylesheet
   Sections: tokens · base · buttons · header · hero · gallery · content
             booking card · calendar · reviews · map · modals · footer · mobile
   ========================================================================= */

/* ------------------------------------------------------------------ tokens */
:root {
  --green-900: #12362a;
  --green-800: #1b4a38;
  --green-700: #245c46;
  --green-600: #2e7256;
  --green-100: #e4efe9;
  --green-050: #f2f8f4;

  --clay-600: #b4623a;
  --clay-500: #c2703d;
  --clay-100: #f7e9df;

  --sand-050: #fbf9f5;
  --sand-100: #f5f1e9;
  --sand-200: #ece6da;

  --ink-900: #1c1a17;
  --ink-700: #46423c;
  --ink-500: #6f6a62;
  --ink-300: #a9a49b;

  --line: #e4e0d8;
  --line-strong: #cfcabf;
  --white: #ffffff;

  --wa: #25d366;
  --wa-dark: #1da851;

  --star: #1c1a17;
  --danger: #b4342a;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  --shadow-sm: 0 1px 2px rgba(28, 26, 23, .06), 0 2px 8px rgba(28, 26, 23, .05);
  --shadow-md: 0 4px 12px rgba(28, 26, 23, .09), 0 12px 32px rgba(28, 26, 23, .07);
  --shadow-lg: 0 8px 28px rgba(28, 26, 23, .14), 0 24px 64px rgba(28, 26, 23, .10);

  --serif: ui-serif, Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --header-h: 76px;
  --page: 1180px;
}

/* -------------------------------------------------------------------- base */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.015em; }
h1 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; font-weight: 600; }
h2 { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); line-height: 1.22; }
h3 { font-size: 18px; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.wrap { max-width: var(--page); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--green-700); outline-offset: 2px; border-radius: 4px; }
.muted { color: var(--ink-500); }
.dot { padding: 0 6px; color: var(--ink-300); }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 12px 20px; font-size: 15px; font-weight: 600;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--green-800); color: var(--white); }
.btn-primary:hover { background: var(--green-900); }
.btn-wa { background: var(--wa); color: #06301a; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }
.btn-ghost { background: var(--white); border-color: var(--line-strong); color: var(--ink-900); }
.btn-ghost:hover { background: var(--sand-100); border-color: var(--ink-300); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 24px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.link-underline { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

.icon { width: 20px; height: 20px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 26px; height: 26px; }
.icon-fill { fill: currentColor; stroke: none; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 14px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--green-900); white-space: nowrap; }
.logo svg { width: 30px; height: 30px; flex: none; }
.logo small { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; line-height: 1; margin-top: 3px; }
.logo-text { line-height: 1.05; }

.site-nav { display: flex; gap: 2px; margin-left: auto; }
.site-nav a {
  padding: 9px 11px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-700);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.site-nav a:hover { background: var(--sand-100); color: var(--ink-900); }
.site-nav a.active { color: var(--green-800); background: var(--green-050); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { font-size: 14px; font-weight: 600; color: var(--ink-700); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 10px; }

/* --------------------------------------------------------------- hero head */
.listing-head { padding: 28px 0 14px; }
.listing-head h1 { margin-bottom: 10px; }
.head-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 4px; font-size: 14.5px; }
.head-meta .rating { font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.head-meta .loc { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.head-actions { margin-left: auto; display: flex; gap: 4px; }
.head-actions button {
  display: inline-flex; align-items: center; gap: 7px; background: none; border: 0;
  padding: 8px 12px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.head-actions button:hover { background: var(--sand-100); }
.head-actions button.saved { color: var(--clay-600); }
.badge-favourite {
  display: inline-flex; align-items: center; gap: 6px; background: var(--green-050);
  color: var(--green-800); border: 1px solid var(--green-100);
  padding: 4px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .01em;
}

/* ----------------------------------------------------------------- gallery */
.gallery {
  position: relative; display: grid; gap: 8px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 2.1 / 1;
}
.gallery button {
  padding: 0; border: 0; background: var(--sand-200); overflow: hidden; position: relative;
}
.gallery button:first-child { grid-row: span 2; }
.gallery img, .gallery .ph { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .2s ease; }
.gallery button:hover img, .gallery button:hover .ph { transform: scale(1.04); filter: brightness(.94); }
/* Specificity must beat `.gallery button` above, which sets position: relative. */
.gallery button.gallery-all {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  background: var(--white); border: 1px solid var(--ink-900);
  border-radius: var(--r-sm); padding: 9px 15px; overflow: visible;
  font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm); width: auto; height: auto;
}
.gallery button.gallery-all:hover { background: var(--sand-100); }

/* Photo placeholder used when an image file is missing */
.ph {
  display: flex; align-items: flex-end; padding: 14px;
  background: linear-gradient(145deg, var(--green-700), var(--green-900) 60%, #0d2a20);
  color: rgba(255,255,255,.86); font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  position: relative; overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: -30% -10% auto -10%; height: 120%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.14), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(194,112,61,.28), transparent 50%);
}
.ph span { position: relative; }
.ph::after {
  content: 'add photo'; position: absolute; top: 12px; left: 14px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; opacity: .55;
}
/* Slight variation so a wall of placeholders does not read as one flat block */
.gallery button:nth-child(2) .ph, .tour-grid figure:nth-child(5n+2) .ph { background: linear-gradient(200deg, #33705a, #163d2f 65%, #0b2419); }
.gallery button:nth-child(3) .ph, .tour-grid figure:nth-child(5n+3) .ph { background: linear-gradient(115deg, #27664f, #123528 60%, #0d2a20); }
.gallery button:nth-child(4) .ph, .tour-grid figure:nth-child(5n+4) .ph { background: linear-gradient(165deg, #3a7a62, #17402f 62%, #0c2a1f); }
.gallery button:nth-child(5) .ph, .tour-grid figure:nth-child(5n)   .ph { background: linear-gradient(135deg, #235c46, #102f24 58%, #0a2018); }

/* ---------------------------------------------------------------- layout 2 */
.listing-body { display: grid; grid-template-columns: minmax(0, 1fr) 388px; gap: 72px; padding: 40px 0 24px; align-items: start; }
.section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.section:first-child { padding-top: 0; }
.section h2 { margin-bottom: 18px; }
.section-lead { color: var(--ink-700); margin-bottom: 20px; }

.overview-top { display: flex; align-items: flex-start; gap: 20px; }
.overview-top h2 { font-size: 22px; margin-bottom: 6px; }
.overview-facts { color: var(--ink-700); font-size: 15px; }
.host-chip { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none; object-fit: cover;
  background: var(--green-800); color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 600; border: 1px solid var(--line);
}
.avatar.lg { width: 66px; height: 66px; font-size: 26px; }
.avatar-wrap { position: relative; }
.avatar-badge {
  position: absolute; right: -2px; bottom: -2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--clay-500); color: #fff; display: grid; place-items: center; border: 2px solid #fff;
}
.avatar-badge svg { width: 12px; height: 12px; }

.highlights { display: grid; gap: 20px; margin-top: 26px; }
.highlight { display: flex; gap: 16px; }
.highlight svg { color: var(--green-800); margin-top: 2px; }
.highlight strong { display: block; font-size: 15.5px; }
.highlight p { font-size: 14px; color: var(--ink-500); margin: 2px 0 0; }

.desc p { color: var(--ink-700); }
.desc-clamp { position: relative; max-height: 176px; overflow: hidden; }
.desc-clamp::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 68px;
  background: linear-gradient(transparent, #fff 80%);
}
.space-notes { margin-top: 18px; display: grid; gap: 10px; }
.space-notes li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-700); }
.space-notes svg { color: var(--green-700); flex: none; margin-top: 3px; }

.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.room-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; background: var(--sand-050); }
.room-card svg { color: var(--green-800); margin-bottom: 10px; }
.room-card strong { display: block; font-size: 15.5px; }
.room-card .beds { font-size: 14px; color: var(--ink-700); margin-top: 3px; }
.room-card .note { font-size: 13px; color: var(--ink-500); margin-top: 5px; }

.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.amen-grid li { display: flex; align-items: center; gap: 14px; font-size: 15px; padding: 3px 0; }
.amen-grid svg { color: var(--ink-700); flex: none; }
.amen-off { color: var(--ink-300); text-decoration: line-through; }

.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.exp-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.exp-card svg { color: var(--clay-500); margin-bottom: 10px; }
.exp-card strong { display: block; margin-bottom: 5px; }
.exp-card p { font-size: 14px; color: var(--ink-500); }

/* ------------------------------------------------------------ booking card */
.booking-col { position: sticky; top: calc(var(--header-h) + 24px); }
.booking-card {
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 22px; background: var(--white);
}
.bc-price { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.bc-price .amt { font-size: 23px; font-weight: 700; }
.bc-price .per { font-size: 15px; color: var(--ink-700); font-weight: 400; }
.bc-price .rate-note { font-size: 13px; color: var(--ink-500); }
.bc-rating { font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }

.bc-anchor { position: relative; }
.bc-fields { border: 1px solid var(--line-strong); border-radius: var(--r-md); overflow: hidden; }
.bc-dates { display: grid; grid-template-columns: 1fr 1fr; }
.bc-dates + .bc-dates { border-top: 1px solid var(--line-strong); }
.bc-field { padding: 11px 13px; background: none; border: 0; text-align: left; width: 100%; }
.bc-dates .bc-field + .bc-field { border-left: 1px solid var(--line-strong); }
.bc-fields > .bc-field { border-top: 1px solid var(--line-strong); }
.bc-field:hover { background: var(--sand-050); }
.bc-field.is-open { box-shadow: inset 0 0 0 2px var(--ink-900); border-radius: var(--r-md); }
.bc-field .lbl { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.bc-field .val { display: block; font-size: 14.5px; color: var(--ink-700); margin-top: 2px; }
.bc-field .val.empty { color: var(--ink-300); }
.bc-field .chev { float: right; margin-top: 6px; color: var(--ink-700); }

.bc-msg { margin-top: 12px; font-size: 13.5px; padding: 9px 12px; border-radius: var(--r-sm); display: none; }
.bc-msg.show { display: block; }
.bc-msg.warn { background: var(--clay-100); color: #8a4522; }
.bc-msg.ok { background: var(--green-050); color: var(--green-800); }

.bc-actions { margin-top: 16px; display: grid; gap: 9px; }
.bc-fineprint { text-align: center; font-size: 13px; color: var(--ink-500); margin-top: 12px; }

.bc-breakdown { margin-top: 20px; display: none; }
.bc-breakdown.show { display: block; }
.bc-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; color: var(--ink-700); padding: 6px 0; }
.bc-line .lab { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.bc-line.discount { color: var(--green-700); font-weight: 600; }
.bc-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px; }
.bc-badges { margin-top: 16px; display: grid; gap: 8px; }
.bc-badges li { display: flex; gap: 9px; font-size: 13px; color: var(--ink-500); align-items: flex-start; }
.bc-badges svg { color: var(--green-700); flex: none; margin-top: 2px; }

.report { text-align: center; margin-top: 16px; font-size: 13px; color: var(--ink-500); }

/* --------------------------------------------------------------- steppers */
.guest-panel { position: absolute; z-index: 40; right: 0; top: calc(100% + 8px); width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 8px 20px 16px; }
.guest-row { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.guest-row:last-of-type { border-bottom: 0; }
.guest-row .g-lab strong { display: block; font-size: 15.5px; }
.guest-row .g-lab span { font-size: 13.5px; color: var(--ink-500); }
.stepper { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.stepper button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: #fff; display: grid; place-items: center; color: var(--ink-700);
}
.stepper button:hover:not(:disabled) { border-color: var(--ink-900); color: var(--ink-900); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper .n { min-width: 22px; text-align: center; font-size: 15px; font-weight: 600; }
.guest-note { font-size: 12.5px; color: var(--ink-500); padding-top: 12px; border-top: 1px solid var(--line); }
.panel-close { display: flex; justify-content: flex-end; padding-top: 10px; }

/* --------------------------------------------------------------- calendar */
.cal-pop {
  position: absolute; z-index: 45; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 22px; width: 700px; max-width: min(92vw, 700px);
  max-height: min(78vh, 620px); overflow-y: auto;
}
.cal-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.cal-head h4 { font-size: 19px; font-family: var(--serif); }
.cal-head p { font-size: 13.5px; color: var(--ink-500); margin: 3px 0 0; }
.cal-nav { margin-left: auto; display: flex; gap: 4px; }
.cal-nav button { width: 34px; height: 34px; border-radius: 50%; border: 0; background: none; display: grid; place-items: center; }
.cal-nav button:hover:not(:disabled) { background: var(--sand-100); }
.cal-nav button:disabled { opacity: .3; cursor: not-allowed; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 10px; }
.cal-month h5 { text-align: center; font-size: 15px; font-weight: 600; margin: 0 0 12px; }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-dow span { text-align: center; font-size: 11px; color: var(--ink-500); font-weight: 600; padding-bottom: 6px; }
.cal-cell { aspect-ratio: 1; display: grid; place-items: center; }
.cal-day {
  width: 100%; height: 100%; border: 0; background: none; border-radius: 50%;
  font-size: 13.5px; font-weight: 600; color: var(--ink-900); position: relative;
}
.cal-day:hover:not(:disabled) { box-shadow: inset 0 0 0 1.5px var(--ink-900); }
.cal-day:disabled { color: var(--ink-300); cursor: not-allowed; text-decoration: line-through; }
.cal-cell.in-range { background: var(--green-050); }
.cal-cell.range-start { background: linear-gradient(to right, transparent 50%, var(--green-050) 50%); }
.cal-cell.range-end { background: linear-gradient(to left, transparent 50%, var(--green-050) 50%); }
.cal-cell.range-start.range-end { background: none; }
.cal-day.selected { background: var(--green-800); color: #fff; }
.cal-day.selected:hover { box-shadow: none; }
.cal-foot { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.cal-legend { display: flex; gap: 16px; font-size: 12.5px; color: var(--ink-500); }
.cal-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-right: 6px; }
.cal-foot .acts { margin-left: auto; display: flex; gap: 8px; }

/* Nights where some but not all rooms are free */
.cal-day.partial::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--clay-500);
}
.cal-day.partial.selected::after { background: #fff; }

/* -------------------------------------------------------- room + service panels */
.panel-title { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-500); margin: 14px 0 10px; }
.room-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.room-choice {
  border: 1px solid var(--line-strong); background: #fff; border-radius: var(--r-md);
  padding: 12px 14px; text-align: left;
}
.room-choice strong { display: block; font-size: 15px; }
.room-choice span { font-size: 12.5px; color: var(--ink-500); }
.room-choice.active { border-color: var(--green-800); box-shadow: inset 0 0 0 1px var(--green-800); background: var(--green-050); }
.room-list { margin-top: 14px; display: grid; gap: 10px; }
.room-list li { display: flex; gap: 10px; font-size: 13.5px; }
.room-list svg { color: var(--green-700); flex: none; margin-top: 3px; }

.svc-box { border: 1px solid var(--line-strong); border-radius: var(--r-md); margin-top: 12px; overflow: hidden; }
.svc-head {
  width: 100%; display: flex; align-items: center; gap: 10px; background: none; border: 0;
  padding: 12px 14px; font-size: 14.5px; font-weight: 600; text-align: left;
}
.svc-head:hover { background: var(--sand-050); }
.svc-head em { margin-left: auto; font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--ink-500); }
.svc-head svg { transition: transform .2s ease; color: var(--ink-500); }
.svc-box.open .svc-head svg { transform: rotate(180deg); }
.svc-body { display: none; border-top: 1px solid var(--line); padding: 6px 14px 12px; max-height: 300px; overflow-y: auto; }
.svc-box.open .svc-body { display: block; }
.svc-row {
  display: flex; align-items: flex-start; gap: 11px; padding: 11px 0;
  border-bottom: 1px solid var(--line); cursor: pointer;
}
.svc-row:last-child { border-bottom: 0; }
.svc-row input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--green-800); flex: none; }
.svc-main strong { display: block; font-size: 14px; font-weight: 600; }
.svc-desc { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }
.svc-price { margin-left: auto; text-align: right; font-size: 14px; font-weight: 700; white-space: nowrap; }
.svc-price small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-500); }
.svc-row.on { color: var(--green-900); }

/* services section on the page */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; background: var(--sand-050); }
.svc-card-top { display: flex; align-items: baseline; gap: 12px; }
.svc-card-top strong { font-size: 15.5px; }
.svc-tag { margin-left: auto; font-size: 15px; font-weight: 700; white-space: nowrap; text-align: right; }
.svc-tag small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-500); }
.svc-card p { font-size: 13.5px; color: var(--ink-500); margin: 7px 0 0; }
.svc-card-soon { opacity: 0.6; }
.svc-soon-tag { font-weight: 600; font-style: italic; color: var(--ink-500); }

/* kitchen callout */
.kitchen-note {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--green-050); border: 1px solid var(--green-100);
  border-radius: var(--r-lg); padding: 24px;
}
.kn-icon { color: var(--green-800); flex: none; }
.kitchen-note h3 { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; }
.kitchen-note p { font-size: 14.5px; color: var(--ink-700); margin-bottom: 10px; }

/* room occupancy line */
.room-card .occupancy {
  display: flex; align-items: center; gap: 6px; margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--green-800);
}

/* ------------------------------------------------------------------ payment */
.pay-card {
  display: flex; gap: 28px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; background: var(--sand-050);
}
.pay-main { flex: 1; min-width: 0; }
.pay-lab {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 10px;
}
.pay-upi { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.pay-upi code {
  font-size: 19px; font-weight: 700; background: #fff; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 9px 14px; word-break: break-all;
}
.pay-note { font-size: 14.5px; color: var(--ink-700); margin-bottom: 16px; max-width: 56ch; }
.pay-fine { font-size: 12.5px; color: var(--ink-500); margin: 12px 0 0; max-width: 56ch; }
.pay-qr { flex: none; width: 176px; text-align: center; }
.pay-qr img {
  width: 176px; height: 176px; object-fit: contain; background: #fff;
  border: 1px solid var(--line-strong); border-radius: var(--r-md); padding: 8px;
}
.pay-qr span { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 8px; }
.pay-bank { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; }
.pay-bank h4 { font-size: 15px; margin-bottom: 10px; }
.pay-bank dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px 24px; margin: 0; }
.pay-bank dt { font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-500); }
.pay-bank dd { margin: 2px 0 0; font-size: 14.5px; font-weight: 600; }
.pay-steps { counter-reset: s; margin-top: 20px; display: grid; gap: 10px; }
.pay-steps li {
  counter-increment: s; position: relative; padding-left: 34px;
  font-size: 14.5px; color: var(--ink-700);
}
.pay-steps li::before {
  content: counter(s); position: absolute; left: 0; top: -1px;
  width: 23px; height: 23px; border-radius: 50%; background: var(--green-800); color: #fff;
  font-size: 12.5px; font-weight: 700; display: grid; place-items: center;
}

/* reviews empty state */
.rev-empty {
  display: flex; gap: 18px; align-items: flex-start;
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  padding: 24px; background: var(--sand-050);
}
.rev-empty svg { color: var(--ink-300); flex: none; }
.rev-empty h4 { font-size: 16.5px; margin-bottom: 6px; }
.rev-empty p { font-size: 14.5px; color: var(--ink-500); margin-bottom: 14px; max-width: 62ch; }

/* address lines */
.address-line {
  display: flex; align-items: flex-start; gap: 8px; font-size: 14.5px;
  color: var(--ink-700); margin: 0 0 18px;
}
.address-line svg { color: var(--green-700); flex: none; margin-top: 3px; }
.foot-address { font-size: 13px; color: var(--ink-500); margin-top: 10px; max-width: 34ch; }

/* --------------------------------------------------------------- calendar section */
.avail-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.avail-wrap .cal-months { margin-top: 0; }
.avail-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-500); }
.avail-legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; margin-right: 7px; vertical-align: -1px; }
.i-open { background: var(--green-100); }
.i-part { background: var(--clay-500); }
.i-booked { background: var(--sand-200); }
.i-sel { background: var(--green-800); }
.cal-legend .i-part { background: var(--clay-500); }

/* ---------------------------------------------------------------- reviews */
.rev-summary { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-bottom: 26px; }
.rev-score { display: flex; align-items: center; gap: 14px; }
.rev-score .big { font-family: var(--serif); font-size: 54px; line-height: 1; font-weight: 600; }
.rev-score .stars { display: flex; gap: 2px; }
.rev-score .stars svg { width: 15px; height: 15px; }
.rev-bars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 34px; flex: 1; min-width: 300px; }
.rev-bar { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.rev-bar .nm { width: 96px; color: var(--ink-700); }
.rev-bar .track { flex: 1; height: 4px; background: var(--sand-200); border-radius: 4px; overflow: hidden; }
.rev-bar .fill { height: 100%; background: var(--green-800); border-radius: 4px; }
.rev-bar .v { width: 26px; text-align: right; font-weight: 600; }

.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 44px; }
.rev-card .who { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rev-card .who strong { display: block; font-size: 15px; }
.rev-card .who span { font-size: 13px; color: var(--ink-500); }
.rev-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-500); margin-bottom: 6px; }
.rev-meta .stars { display: flex; gap: 1px; }
.rev-meta .stars svg { width: 12px; height: 12px; }
.rev-card p { font-size: 14.5px; color: var(--ink-700); }
.rev-card .more { background: none; border: 0; padding: 0; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }
.rev-response {
  margin-top: 12px; padding: 12px 14px; border-left: 3px solid var(--green-100);
  background: var(--sand-050); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.rev-response strong {
  display: block; font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--green-800); margin-bottom: 5px;
}
.rev-response p { font-size: 13.5px; color: var(--ink-500); }

/* -------------------------------------------------------------------- map */
.map-frame { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; height: 380px; background: var(--sand-100); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 24px; }
.loc-cols h4 { font-size: 15.5px; margin-bottom: 10px; }
.loc-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-700); padding: 5px 0; }
.loc-list svg { color: var(--green-700); flex: none; margin-top: 3px; }
.near-list li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.near-list li:last-child { border-bottom: 0; }
.near-list .d { color: var(--ink-500); font-size: 13.5px; white-space: nowrap; }

/* ------------------------------------------------------------ know / rules */
.know-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.know-cols h4 { font-size: 15.5px; margin-bottom: 12px; }
.know-cols li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-700); padding: 5px 0; }
.know-cols svg { color: var(--ink-500); flex: none; margin-top: 3px; }
.cancel-list li { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); }
.cancel-list strong { display: block; font-size: 14px; }
.cancel-list span { font-size: 13.5px; color: var(--ink-500); }

/* -------------------------------------------------------------------- faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left; padding: 18px 0;
  display: flex; align-items: center; gap: 16px; font-size: 16.5px; font-weight: 600;
}
.faq-q svg { margin-left: auto; flex: none; transition: transform .2s ease; color: var(--ink-500); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding-bottom: 20px; color: var(--ink-700); font-size: 15px; max-width: 62ch; }

/* -------------------------------------------------------------- host block */
.host-block { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.host-panel { border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 26px; text-align: center; }
.host-panel .avatar { margin: 0 auto 12px; }
.host-panel h3 { font-family: var(--serif); font-size: 24px; }
.host-panel .sh { font-size: 13px; color: var(--ink-500); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.host-stats { display: flex; justify-content: center; gap: 24px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.host-stats div { text-align: center; }
.host-stats strong { display: block; font-size: 18px; }
.host-stats span { font-size: 11.5px; color: var(--ink-500); }
.host-detail p { color: var(--ink-700); }
.host-facts { margin: 16px 0 20px; display: grid; gap: 7px; font-size: 14.5px; color: var(--ink-700); }
.host-facts li { display: flex; gap: 10px; }
.host-facts svg { color: var(--ink-500); flex: none; margin-top: 3px; }

/* -------------------------------------------------------------- CTA strip */
.cta-strip { background: var(--green-900); color: #fff; border-radius: var(--r-xl); padding: 46px; margin: 56px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(194,112,61,.28), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(46,114,86,.5), transparent 45%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { color: #fff; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,.78); max-width: 54ch; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-strip .btn-ghost { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ---------------------------------------------------------------- enquiry */
.enquiry { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-700); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); background: #fff; color: var(--ink-900); width: 100%;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--green-700); box-shadow: 0 0 0 3px var(--green-050); }
.field .err { font-size: 12.5px; color: var(--danger); display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .err { display: block; }
.enquiry-aside { background: var(--sand-050); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.enquiry-aside h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 10px; }
.enquiry-aside ul { display: grid; gap: 12px; margin-top: 18px; }
.enquiry-aside li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-700); }
.enquiry-aside svg { color: var(--green-700); flex: none; margin-top: 3px; }
.contact-row { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--sand-050); border-top: 1px solid var(--line); margin-top: 30px; padding: 52px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.foot-grid h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 14px; }
.foot-grid li { padding: 5px 0; font-size: 14.5px; color: var(--ink-700); }
.foot-grid a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot-about p { font-size: 14.5px; color: var(--ink-500); max-width: 38ch; margin-top: 12px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); margin-top: 34px; padding-top: 22px; font-size: 13.5px; color: var(--ink-500); }

/* ----------------------------------------------------------------- modals */
.modal { position: fixed; inset: 0; z-index: 90; display: none; }
.modal.open { display: block; }
.modal-scrim { position: absolute; inset: 0; background: rgba(28, 26, 23, .55); animation: fade .18s ease; }
.modal-panel {
  position: relative; margin: 5vh auto; max-width: 780px; width: calc(100% - 32px);
  max-height: 90vh; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; animation: rise .22s cubic-bezier(.2,.7,.3,1);
}
.modal-panel.wide { max-width: 1080px; }
.modal-head { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--line); flex: none; }
.modal-head h3 { font-family: var(--serif); font-size: 20px; }
.modal-body { overflow-y: auto; padding: 26px 30px 34px; }
.modal-close { width: 34px; height: 34px; border-radius: 50%; border: 0; background: none; display: grid; place-items: center; }
.modal-close:hover { background: var(--sand-100); }
.modal-head .spacer { margin-left: auto; }
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes rise { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }

.amen-modal h4 { font-size: 17px; font-family: var(--serif); margin: 26px 0 4px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.amen-modal h4:first-child { margin-top: 0; }
.amen-modal li { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.amen-modal li:last-child { border-bottom: 0; }
.amen-modal .note { font-size: 13px; color: var(--ink-500); margin-left: auto; }

.tour-nav { display: flex; gap: 8px; overflow-x: auto; padding: 12px 22px; border-bottom: 1px solid var(--line); flex: none; }
.tour-nav button { border: 1px solid var(--line-strong); background: #fff; border-radius: 999px; padding: 7px 14px; font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.tour-nav button.active { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.tour-group h4 { font-family: var(--serif); font-size: 20px; margin: 30px 0 14px; }
.tour-group:first-child h4 { margin-top: 0; }
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.tour-grid figure { margin: 0; }
.tour-grid figure button {
  display: block; width: 100%; aspect-ratio: 3/2;
  border: 0; padding: 0; background: var(--sand-200);
  border-radius: var(--r-md); overflow: hidden;
}
/* An odd-sized group gets a full-width lead image, like a real photo tour */
.tour-grid figure:first-child:nth-last-child(odd) { grid-column: span 2; }
.tour-grid figure:first-child:nth-last-child(odd) button { aspect-ratio: 2.2/1; }
.tour-grid img, .tour-grid .ph { width: 100%; height: 100%; object-fit: cover; }
.tour-grid figcaption { font-size: 13px; color: var(--ink-500); padding: 8px 2px 0; text-align: left; }

/* --------------------------------------------------------------- lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: #100f0e; display: none; }
.lightbox.open { display: flex; flex-direction: column; }
.lb-top { display: flex; align-items: center; gap: 16px; padding: 14px 20px; color: rgba(255,255,255,.85); flex: none; }
.lb-top button { background: none; border: 0; color: #fff; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.lb-top button:hover { background: rgba(255,255,255,.14); }
.lb-count { font-size: 14px; font-weight: 600; margin-left: 8px; }
.lb-stage { flex: 1; display: grid; place-items: center; position: relative; padding: 0 76px 10px; min-height: 0; }
.lb-stage img, .lb-stage .ph { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; }
.lb-stage .ph { width: min(900px, 88vw); aspect-ratio: 3/2; border-radius: var(--r-md); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(0,0,0,.35);
  color: #fff; display: grid; place-items: center;
}
.lb-arrow:hover { background: rgba(255,255,255,.2); }
.lb-arrow.prev { left: 16px; }
.lb-arrow.next { right: 16px; }
.lb-cap { flex: none; text-align: center; color: rgba(255,255,255,.72); font-size: 14px; padding: 14px 20px 22px; }

/* ----------------------------------------------------------------- floats */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #06301a; border: 0; border-radius: 999px;
  padding: 13px 20px 13px 16px; font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-md); transition: transform .16s ease, box-shadow .16s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.wa-float svg { width: 24px; height: 24px; fill: currentColor; stroke: none; }

.mobile-bar { display: none; }

.toast {
  position: fixed; left: 50%; bottom: 96px; transform: translate(-50%, 20px);
  background: var(--ink-900); color: #fff; padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; z-index: 120; opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ------------------------------------------------------------- responsive */
/* The nav has eight items, so drop the phone number before anything wraps */
@media (max-width: 1330px) { .header-phone { display: none; } }
@media (max-width: 1180px) { .site-nav a { padding: 9px 9px; font-size: 13.5px; } }

@media (max-width: 1080px) {
  .listing-body { grid-template-columns: 1fr; gap: 0; }
  .booking-col { position: static; margin: 0 0 8px; }
  .booking-card { max-width: 520px; }
  .cal-pop { width: 640px; }
}
@media (max-width: 900px) {
  .site-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; padding: 10px 20px 18px; box-shadow: var(--shadow-md); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; margin-left: auto; }
  .header-cta .btn { display: none; }
  .header-phone { display: none; }
  .know-cols, .loc-cols, .rev-grid, .exp-grid, .enquiry, .host-block, .svc-grid { grid-template-columns: 1fr; gap: 24px; }
  .rev-bars { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cal-months { grid-template-columns: 1fr; gap: 24px; }
  .cal-pop { width: min(94vw, 420px); left: 50%; right: auto; transform: translateX(-50%); }
  .gallery { aspect-ratio: 4 / 3; grid-template-columns: 1fr 1fr; }
  .gallery button:first-child { grid-column: span 2; grid-row: auto; }
  .gallery button:nth-child(4), .gallery button:nth-child(5) { display: none; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .wrap { padding: 0 16px; }
  .listing-head { padding: 20px 0 12px; }
  .head-actions { margin-left: 0; width: 100%; }
  .gallery { border-radius: var(--r-md); aspect-ratio: 1.2 / 1; }
  .overview-top { flex-direction: column; }
  .host-chip { margin-left: 0; }
  .amen-grid, .rooms-grid, .tour-grid, .form-grid, .svc-grid { grid-template-columns: 1fr; }
  .pay-card { flex-direction: column; gap: 20px; }
  .pay-qr { width: 100%; }
  .pay-upi code { font-size: 16px; }
  .kitchen-note { flex-direction: column; gap: 12px; padding: 20px; }
  .rev-empty { flex-direction: column; gap: 12px; }
  .room-choices { grid-template-columns: 1fr; }
  .tour-grid figure:first-child:nth-last-child(odd) { grid-column: auto; }
  .tour-grid figure:first-child:nth-last-child(odd) button { aspect-ratio: 3/2; }
  .rev-bars { grid-template-columns: 1fr; }
  .rev-score .big { font-size: 42px; }
  .cta-strip { padding: 32px 20px; border-radius: var(--r-lg); }
  .modal-panel { margin: 0; width: 100%; max-height: 100vh; height: 100%; border-radius: 0; }
  .modal-body { padding: 20px 18px 40px; }
  .lb-stage { padding: 0 12px 8px; }
  .lb-arrow { width: 38px; height: 38px; }
  .lb-arrow.prev { left: 6px; }
  .lb-arrow.next { right: 6px; }
  .foot-grid { grid-template-columns: 1fr; }
  .wa-float { padding: 13px; bottom: 84px; }
  .wa-float span { display: none; }

  .mobile-bar {
    display: flex; align-items: center; gap: 14px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
    background: #fff; border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(28,26,23,.08);
  }
  .mobile-bar .mp strong { font-size: 16px; }
  .mobile-bar .mp span { display: block; font-size: 12.5px; color: var(--ink-500); }
  .mobile-bar .btn { margin-left: auto; }
  body { padding-bottom: 74px; }
}

@media print {
  .site-header, .wa-float, .mobile-bar, .booking-col, .cta-strip, .site-footer { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ------------------------------------------------- photo copy deterrence --
   Images only. Page text is intentionally left selectable so guests can copy
   the address and the UPI ID — blocking that would break the site's purpose. */
img, .ph {
  -webkit-user-select: none; -moz-user-select: none; user-select: none;
  -webkit-touch-callout: none;          /* no long-press "Save Image" on iOS */
  -webkit-user-drag: none;
}
.gallery button, .tour-grid figure button, .lb-stage { -webkit-touch-callout: none; }
.foot-legal {
  font-size: 12px; line-height: 1.6; color: var(--ink-300);
  border-top: 1px solid var(--line); margin: 18px 0 0; padding-top: 16px; max-width: 92ch;
}

/* who-it-suits cards */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.who-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; background: var(--sand-050); }
.who-card svg { color: var(--green-800); margin-bottom: 10px; }
.who-card strong { display: block; font-size: 15.5px; margin-bottom: 5px; }
.who-card p { font-size: 14px; color: var(--ink-500); }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------- UPI QR + receipt upload */
.pay-qr-wrap { flex: none; width: 232px; text-align: center; }
.pay-qr-live {
  width: 232px; min-height: 232px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r-md); padding: 12px;
}
.pay-qr-live svg { display: block; width: 100%; height: auto; }
.pay-qr-live.qr-failed { min-height: 90px; padding: 18px; }
.pay-qr-cap { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-top: 10px; }
.pay-amount { font-size: 15px; color: var(--ink-700); margin-bottom: 12px; }
.pay-amount strong { font-size: 20px; color: var(--ink-900); }
.pay-amount span { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }
.pay-manual { margin-top: 14px; }
.pay-manual summary {
  font-size: 13px; color: var(--ink-500); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.pay-manual summary:hover { color: var(--ink-900); }
.pay-manual .pay-upi { margin-top: 12px; }
.pay-manual code { font-size: 15px; }

.receipt-box {
  margin-top: 24px; border: 2px solid var(--green-100); border-radius: var(--r-lg);
  padding: 26px; background: var(--green-050);
}
.receipt-box h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 20px; margin-bottom: 8px;
}
.receipt-box h3 svg { color: var(--green-800); }
.receipt-box > p { font-size: 14.5px; color: var(--ink-700); margin-bottom: 20px; max-width: 66ch; }
.receipt-box input[type="file"] {
  font: inherit; font-size: 14px; padding: 10px; background: #fff;
  border: 1px dashed var(--line-strong); border-radius: var(--r-sm); width: 100%;
}
#receiptPreview {
  max-width: 240px; max-height: 260px; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); background: #fff;
}
.receipt-msg { font-size: 14px; font-weight: 600; margin: 12px 0 0; }
.receipt-msg.ok { color: var(--green-700); }
.receipt-msg.bad { color: var(--danger); }

@media (max-width: 640px) {
  .pay-qr-wrap { width: 100%; }
  .pay-qr-live { width: 100%; max-width: 260px; margin: 0 auto; }
  .receipt-box { padding: 20px 16px; }
}
