/* ============================================================
   The Mossy Roof — landing page styles
   Brand: B (Island Botanical) · pyramid fish-scale tile mark
   ============================================================ */

:root {
  --terracotta:      #B5613F;
  --terracotta-dark: #A4542F;
  --moss:            #8C9A78;
  --moss-soft:       #a9b79b;
  --forest:          #34433A;
  --forest-deep:     #2c382c;
  --forest-deeper:   #1f271f;
  --cream:           #F4EFE3;
  --ivory:           #EFE6D2;
  --sand:            #E8DCC6;
  --text:            #54564e;
  --serif: 'Marcellus', serif;
  --sans:  'Mukta', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: #2c382c;
  background: var(--cream);
  overflow-x: hidden;
}

::selection { background: var(--terracotta); color: var(--cream); }

img { display: block; }

/* visually hidden — readable by Google + screen readers, invisible on screen */
.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;
}

.roofmark { overflow: visible; }

/* ---------- Shared text bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 4px;
  margin: 0 0 18px;
}
.eyebrow--terracotta { color: var(--terracotta); }
.eyebrow--moss { color: var(--moss-soft); }

.section-head {
  max-width: 1180px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  color: var(--forest);
  margin: 0;
}
.section-title--cream { color: var(--cream); margin-bottom: 18px; }
.section-lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: #c9d2bf;
  max-width: 580px;
  margin: 0 auto;
}
.section-lede--dark { color: var(--text); max-width: 600px; }

/* ============================================================
   Persistent logo + hamburger + header + drawer
   ============================================================ */
#site-logo {
  position: fixed; top: 28px; left: 40px; z-index: 60;
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.4));
}
.logo-word {
  font-family: var(--serif);
  font-size: 16px; letter-spacing: 4px;
  color: var(--cream);
}

#hamburger {
  position: fixed; top: 21px; right: 40px; z-index: 60;
  width: 36px; height: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}
#hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .22s;
}
#hamburger span + span { margin-top: 6px; }

/* slim header bar — hidden over hero, slides in on scroll (JS toggles transform) */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 54;
  height: 72px;
  background: rgba(36,48,38,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(0,0,0,.12);
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}

/* full-screen drawer */
#nav-drawer {
  position: fixed; inset: 0; z-index: 58;
  background: rgba(20,26,21,.97);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s ease, visibility .45s;
}
#nav-drawer.open { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-mark { margin-bottom: 34px; }
.nav-link {
  font-family: var(--serif);
  font-size: 40px; color: var(--cream);
  text-decoration: none; padding: 7px 0; line-height: 1.2;
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
#nav-drawer.open .nav-link { opacity: 1; transform: translateY(0); }
.nav-link--accent { color: var(--terracotta); }
.drawer-meta {
  margin-top: 40px;
  font-family: var(--sans); font-weight: 300;
  font-size: 12px; letter-spacing: 4px; color: #7d8a72;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #0e2526;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 78% 56% at 50% 48%, rgba(9,28,28,.5) 0%, rgba(9,28,28,0) 72%),
    linear-gradient(180deg, rgba(9,28,28,.4) 0%, rgba(9,28,28,.12) 36%, rgba(9,28,28,.18) 58%, rgba(9,28,28,.62) 100%);
}
.hero__content { position: relative; z-index: 2; color: var(--cream); padding: 0 24px; max-width: 780px; }
.hero__eyebrow {
  font-family: var(--sans); font-weight: 400;
  font-size: 13px; letter-spacing: 6px; color: var(--cream); opacity: .92;
  text-shadow: 0 2px 18px rgba(0,0,0,.85); margin: 0 0 20px;
}
.hero__title {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(34px, 6vw, 64px); line-height: 1.08; letter-spacing: .5px;
  text-shadow: 0 3px 30px rgba(0,0,0,.55), 0 1px 8px rgba(0,0,0,.5); margin: 0 0 20px;
}
.hero__sub {
  font-family: var(--sans); font-weight: 300; color: var(--ivory);
  font-size: clamp(14px, 1.9vw, 17px); line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0,0,0,.8); margin: 0 auto 32px; max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; justify-content: center; }
.hero__cta {
  display: inline-block; font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: 3px;
  color: var(--forest); background: var(--ivory); padding: 16px 40px; border-radius: 30px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.28); transition: background .35s ease, color .35s ease;
}
.hero__cta:hover { background: var(--terracotta); color: var(--cream); }
.hero__link {
  font-family: var(--sans); font-weight: 400; font-size: 13px; letter-spacing: 1px; color: var(--cream);
  text-decoration: none; border-bottom: 1px solid rgba(244,239,227,.5); padding-bottom: 3px;
  text-shadow: 0 2px 12px rgba(0,0,0,.7); transition: border-color .3s ease;
}
.hero__link:hover { border-color: var(--cream); }
.hero__cue {
  position: absolute; bottom: 34px; left: 50%; z-index: 3;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,239,227,.45); border-radius: 50%;
  color: var(--cream); text-decoration: none;
  animation: cueBob 1.8s ease-in-out infinite;
  transition: background .4s ease;
}
.hero__cue:hover { background: rgba(244,239,227,.16); }
@keyframes cueBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50%     { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   Intro
   ============================================================ */
.intro { background: var(--cream); padding: 120px 48px; }
.intro__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 42px; line-height: 1.25; color: var(--forest);
  margin: 0 0 26px;
}
.intro__body {
  font-family: var(--sans); font-weight: 300;
  font-size: 15px; line-height: 1.95; color: var(--text);
  margin: 0 0 20px;
}
.intro__body:last-child { margin-bottom: 0; }
.intro__figure { position: relative; }
.intro__figure img { width: 100%; height: 520px; object-fit: cover; border-radius: 4px; }
.intro__stamp {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--forest); padding: 18px 26px;
  display: flex; align-items: center; gap: 14px;
}
.intro__stamp-text {
  font-family: var(--serif); font-size: 13px; letter-spacing: 2px;
  color: var(--cream); line-height: 1.3;
}
.intro__stamp-text span {
  font-family: var(--sans); font-weight: 300; font-size: 9px;
  letter-spacing: 2px; color: var(--moss-soft);
}

/* ============================================================
   Villa facts
   ============================================================ */
.facts { background: var(--forest); padding: 80px 48px; }
.facts__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 30px;
}
.fact { text-align: center; padding: 0 14px; }
.fact--divider { border-left: 1px solid rgba(239,230,210,.16); }
.fact__num { font-family: var(--serif); font-size: 46px; color: var(--ivory); line-height: 1; }
.fact__label {
  font-family: var(--sans); font-weight: 300;
  font-size: 12px; letter-spacing: 2px; color: var(--moss-soft); margin-top: 12px;
}

/* ============================================================
   Rooms
   ============================================================ */
.rooms { background: var(--cream); padding: 120px 48px 40px; }
.rooms .section-head { margin-bottom: 70px; }
.room {
  max-width: 1180px; margin: 0 auto 110px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.room:last-child { margin-bottom: 40px; }
.room--reverse { grid-template-columns: 1fr 1.05fr; }
.room--reverse .room__img { order: 2; }
.room--reverse .room__body { order: 1; }
.room__img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; }
.room__body--right { text-align: right; }
.room__num { font-family: var(--serif); font-size: 15px; letter-spacing: 3px; color: var(--terracotta); }
.room__name { font-family: var(--serif); font-weight: 400; font-size: 36px; color: var(--forest); margin: 8px 0 4px; }
.room__sub { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 4px; color: #8a8478; margin-bottom: 22px; }
.room__text { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.95; color: var(--text); margin: 0; }

/* ============================================================
   Experiences
   ============================================================ */
.exp { background: var(--forest); padding: 120px 48px; }
.exp__feature { max-width: 1180px; margin: 0 auto 24px; }
.exp__feature img { width: 100%; height: 540px; object-fit: cover; border-radius: 4px; }
.exp__feature-cap {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-top: 22px;
}
.exp__feature-title { font-family: var(--serif); font-weight: 400; font-size: 34px; color: var(--cream); margin: 0; }
.exp__feature-sub { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 4px; color: var(--terracotta); margin-top: 8px; }
.exp__feature-text { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.9; color: #c9d2bf; max-width: 420px; margin: 0; }

.exp__grid {
  max-width: 1180px; margin: 42px auto 0;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.exp__card img { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; }
.exp__card-title { font-family: var(--serif); font-weight: 400; font-size: 21px; color: var(--cream); margin: 18px 0 4px; }
.exp__card-text { font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 1.75; color: var(--moss-soft); margin: 0; }

/* ============================================================
   The island
   ============================================================ */
.island { background: var(--cream); padding: 120px 48px; }
.island__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 34px;
}
.island__card img { width: 100%; height: 380px; object-fit: cover; border-radius: 4px; }
.island__title { font-family: var(--serif); font-weight: 400; font-size: 25px; color: var(--forest); margin: 22px 0 4px; }
.island__sub { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 3px; color: #8a8478; margin-bottom: 12px; }
.island__text { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.85; color: var(--text); margin: 0; }

/* ============================================================
   Reserve
   ============================================================ */
.reserve { background: var(--forest-deep); padding: 118px 48px; text-align: center; color: var(--ivory); }
.reserve__mark { display: flex; justify-content: center; margin-bottom: 26px; }
.reserve__title { font-family: var(--serif); font-weight: 400; font-size: 46px; color: #D9C9A8; margin: 0 0 14px; }
.reserve__sub { font-family: var(--sans); font-weight: 300; font-size: 15px; letter-spacing: 1px; color: #c9d2bf; margin: 0 0 40px; }
.reserve__perks {
  max-width: 760px; margin: 0 auto 44px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 24px;
  border-top: 1px solid rgba(239,230,210,.16);
  border-bottom: 1px solid rgba(239,230,210,.16);
  padding: 30px 0;
}
.perk__name { font-family: var(--serif); font-size: 15px; color: var(--cream); }
.perk__note { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 1px; color: var(--moss-soft); margin-top: 4px; }
.reserve__contact { font-family: var(--sans); font-weight: 300; font-size: 14px; letter-spacing: 1px; color: #d6ddcd; margin-bottom: 30px; }
.reserve__btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: 3px;
  color: var(--forest); text-decoration: none;
  background: var(--ivory); padding: 16px 44px; border-radius: 30px;
  transition: background .35s ease, color .35s ease;
}
.reserve__btn:hover { background: var(--terracotta); color: var(--cream); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--forest-deeper); padding: 38px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__name { font-family: var(--serif); font-size: 16px; letter-spacing: 3px; color: var(--cream); }
.footer__tag { font-family: var(--sans); font-weight: 300; font-size: 9px; letter-spacing: 3px; color: #7d8a72; margin-top: 3px; }
.footer__meta { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 2px; color: #7d8a72; text-align: right; }

/* ============================================================
   Scroll reveal — motion driven by JS adding .in
   .reveal = slide-up + fade (for text)
   .rise   = slide-up only, no opacity fade (keeps photos crisp)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.rise { transform: translateY(34px); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.rise.in { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .rise { opacity: 1; transform: none; transition: none; }
  .hero__cue { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .intro { padding: 84px 28px; }
  .intro__grid { grid-template-columns: 1fr; gap: 44px; }
  .intro__figure img { height: 380px; }
  .facts { padding: 56px 28px; }
  .facts__grid { grid-template-columns: repeat(2,1fr); gap: 40px 20px; }
  .fact--divider { border-left: 0; }
  .fact:nth-child(odd) { border-left: 0; }

  .rooms { padding: 84px 28px 20px; }
  .rooms .section-head { margin-bottom: 48px; }
  .room, .room--reverse { grid-template-columns: 1fr; gap: 26px; margin-bottom: 64px; }
  .room--reverse .room__img { order: 0; }
  .room--reverse .room__body { order: 0; }
  .room__body--right { text-align: left; }
  .room__img { height: 340px; }

  .exp { padding: 84px 28px; }
  .exp__feature img { height: 360px; }
  .exp__feature-cap { flex-direction: column; align-items: flex-start; gap: 14px; }
  .exp__grid { grid-template-columns: repeat(2,1fr); gap: 28px 20px; }

  .island { padding: 84px 28px; }
  .island__grid { grid-template-columns: 1fr; gap: 44px; }
  .island__card img { height: 320px; }

  .reserve { padding: 84px 28px; }

  .section-title, .intro__title { font-size: 32px; }
  .reserve__title { font-size: 34px; }

  .footer { flex-direction: column; gap: 18px; text-align: center; }
  .footer__meta { text-align: center; }
}

@media (max-width: 560px) {
  #site-logo { top: 20px; left: 22px; }
  #hamburger { top: 15px; right: 22px; }
  .logo-word { font-size: 13px; letter-spacing: 2px; }
  .facts__grid { grid-template-columns: 1fr 1fr; }
  .exp__grid { grid-template-columns: 1fr; }
  .nav-link { font-size: 30px; }
}

/* ============================================================
   Booking widget (Reserve section)
   ============================================================ */
.book { max-width: 680px; margin: 14px auto 0; }
.book__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px;
}
.book__field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.book__field--wide { grid-column: 1 / -1; }
.book__field span {
  font-family: var(--sans); font-weight: 300; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--moss-soft);
}
.book__field input, .book__field select {
  font-family: var(--sans); font-size: 14px; color: var(--cream);
  background: rgba(244,239,227,.06); border: 1px solid rgba(239,230,210,.22);
  border-radius: 9px; padding: 12px 13px; outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.book__field input::placeholder { color: #8a9381; }
.book__field input:focus, .book__field select:focus {
  border-color: var(--terracotta); background: rgba(244,239,227,.1);
}
.book__field select option { color: #2c382c; }
.book__quote {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--cream); padding: 11px 14px; border-radius: 9px; margin-bottom: 16px;
  background: rgba(140,154,120,.16); border: 1px solid rgba(140,154,120,.3);
}
.book__quote b { font-weight: 600; color: #fff; }
.book__quote--no { background: rgba(181,97,63,.16); border-color: rgba(181,97,63,.4); color: #f0d9cf; }
.book__or { margin-top: 14px; font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--moss-soft); }
.book__or a { color: var(--ivory); }

#bk-submit { width: 100%; border: none; cursor: pointer; }
#bk-submit:disabled { opacity: .65; cursor: wait; }

/* QR / waiting card */
.bk-card {
  background: rgba(244,239,227,.05); border: 1px solid rgba(239,230,210,.18);
  border-radius: 16px; padding: 26px 22px; max-width: 380px; margin: 0 auto;
}
.bk-step { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
.bk-qrwrap { background: #fff; border-radius: 12px; padding: 12px; display: inline-block; }
.bk-qr { width: 220px; height: 220px; display: block; }
.bk-amt { font-family: var(--serif); font-size: 30px; color: #D9C9A8; margin: 16px 0 4px; }
.bk-amt span { font-family: var(--sans); font-weight: 300; font-size: 12px; letter-spacing: 1px; color: var(--moss-soft); display: block; margin-top: 2px; }
.bk-memo { font-family: var(--sans); font-size: 13px; color: var(--cream); margin: 14px 0 6px; }
.bk-memo b { font-family: var(--serif); letter-spacing: 1px; color: #fff; }
.bk-copy { margin-left: 8px; font-size: 11px; padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(239,230,210,.3); background: transparent; color: var(--ivory); cursor: pointer; }
.bk-warn { font-family: var(--sans); font-weight: 300; font-size: 12px; line-height: 1.6; color: #e8c9bb; background: rgba(181,97,63,.14); border-radius: 8px; padding: 10px 12px; margin: 12px 0; }
.bk-bank { font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--moss-soft); }
.bk-status { font-family: var(--sans); font-size: 13.5px; color: var(--cream); margin: 16px 0 6px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.bk-status--ok { color: #bfe0a8; font-weight: 500; }
.bk-status--no { color: #f0b6a3; }
.bk-dot { width: 9px; height: 9px; border-radius: 50%; background: #c9a05a; animation: bkPulse 1.2s ease-in-out infinite; }
@keyframes bkPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.bk-sum { font-family: var(--sans); font-weight: 300; font-size: 12px; color: var(--moss-soft); margin-top: 6px; }
.bk-cancel { margin-top: 16px; font-family: var(--sans); font-size: 12px; color: var(--moss-soft); background: transparent; border: none; cursor: pointer; text-decoration: underline; }
.bk-done { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(239,230,210,.18); font-family: var(--sans); font-weight: 300; font-size: 13.5px; line-height: 1.7; color: var(--cream); }
.bk-done b { color: #fff; }
.bk-done-tick { width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 50%; background: rgba(140,154,120,.25); color: #bfe0a8; font-size: 24px; display: flex; align-items: center; justify-content: center; }

@media (max-width: 560px) {
  .book__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Dedicated booking page (/dat-phong/)
   ============================================================ */
.bp-body { background: var(--cream); min-height: 100vh; }
.bp-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; max-width: 760px; margin: 0 auto; }
.bp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.bp-logo span { font-family: var(--serif); font-size: 15px; letter-spacing: 3px; color: var(--forest); }
.bp-back { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--text); text-decoration: none; }
.bp-back:hover { color: var(--terracotta); }
.bp-main { max-width: 600px; margin: 0 auto; padding: 14px 22px 60px; }
.bp-head { text-align: center; margin-bottom: 22px; }
.bp-head .eyebrow { margin-bottom: 10px; }
.bp-title { font-family: var(--serif); font-weight: 400; font-size: 36px; color: var(--forest); margin: 0; }

.bp-steps { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0 0 22px; }
.bp-steps li { flex: 1; display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 400; font-size: 12.5px; color: #9a9488; padding: 10px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--sand); }
.bp-steps li.active { color: var(--forest); border-color: var(--terracotta); }
.bp-stepnum { width: 22px; height: 22px; border-radius: 50%; background: var(--sand); color: var(--text); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex: none; }
.bp-steps li.active .bp-stepnum { background: var(--terracotta); color: var(--cream); }
.bp-steps li.done .bp-stepnum { background: var(--moss); color: var(--cream); }

.bp-card { background: #fff; border: 1px solid var(--sand); border-radius: 16px; padding: 26px 24px; box-shadow: 0 8px 30px rgba(44,56,44,.06); }
.bp-card .book__field span { color: #8a8478; }
.bp-card .book__field input, .bp-card .book__field select { background: var(--cream); border-color: var(--sand); color: var(--forest); }
.bp-card .book__field input::placeholder { color: #b1a991; }
.bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.bp-card .book__field--wide { grid-column: 1 / -1; }
.bp-card .book__quote { color: var(--forest); background: rgba(140,154,120,.16); border-color: rgba(140,154,120,.34); }
.bp-card .book__quote b { color: var(--terracotta-dark); }
.bp-card .book__quote--no { background: rgba(181,97,63,.12); border-color: rgba(181,97,63,.34); color: var(--terracotta-dark); }
.bp-btn { width: 100%; border: none; cursor: pointer; }
.bp-btn:disabled { opacity: .65; cursor: wait; }
.bp-row2 { display: flex; gap: 12px; align-items: center; }
.bp-row2 .bp-btn { flex: 2; }
.bp-ghost { flex: 1; background: transparent; border: 1px solid var(--sand); border-radius: 30px; padding: 14px 18px; font-family: var(--sans); font-size: 13px; color: var(--text); cursor: pointer; }
.bp-recap { background: var(--cream); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; color: var(--text); margin-bottom: 18px; }
.bp-recap b { color: var(--forest); }

/* payment card reuses .bk-* but on a light page */
#step-pay { text-align: center; }
#step-pay .bk-amt { color: var(--terracotta-dark); }
#step-pay .bk-amt span { display: block; font-size: 12px; color: #8a8478; margin-top: 2px; }
#step-pay .bk-memo { color: var(--forest); }
#step-pay .bk-memo b { color: var(--terracotta-dark); }
#step-pay .bk-copy { border-color: var(--sand); color: var(--text); }
#step-pay .bk-warn { background: rgba(181,97,63,.1); color: var(--terracotta-dark); }
#step-pay .bk-bank { color: #8a8478; }
#step-pay .bk-status { color: var(--forest); }
#step-pay .bk-status--no { color: var(--terracotta-dark); }
#step-pay .bp-ghost { width: 100%; margin-top: 14px; }

/* success */
.bp-success { text-align: center; }
.bp-tick { width: 60px; height: 60px; margin: 4px auto 14px; border-radius: 50%; background: rgba(140,154,120,.2); color: #5e7a4e; font-size: 30px; display: flex; align-items: center; justify-content: center; }
.bp-success-title { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--forest); margin: 0 0 6px; }
.bp-success-sub { font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--text); margin: 0 0 22px; }
.bp-summary { text-align: left; background: var(--cream); border-radius: 12px; padding: 8px 16px; margin-bottom: 18px; }
.bp-srow { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--sand); font-size: 14px; color: var(--forest); }
.bp-srow:last-child { border-bottom: 0; }
.bp-srow span:first-child { color: #8a8478; }
.bp-next { font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 1.7; color: var(--text); margin: 0 0 20px; }
.bp-foot { text-align: center; font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: #8a8478; padding: 24px; }
.bp-foot span { font-size: 11px; letter-spacing: 2px; }

@media (max-width: 520px) { .bp-grid { grid-template-columns: 1fr; } .bp-title { font-size: 30px; } .bp-steps li { font-size: 0; gap: 0; justify-content: center; } .bp-steps .bp-stepnum { font-size: 12px; } }

.bp-or-line { text-align: center; font-family: var(--sans); font-weight: 300; font-size: 12px; color: #8a8478; margin: 0 0 14px; }

/* ---- date-range calendar (booking page) ---- */
.cal { border: 1px solid #e3d9c5; border-radius: 12px; padding: 14px; background: #fff; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-title { font-family: var(--serif, 'Marcellus', serif); font-size: 16px; color: #2c2a26; }
.cal-nav { width: 38px; height: 38px; border-radius: 9px; border: 1px solid #e3d9c5; background: #fff; font-size: 18px; cursor: pointer; line-height: 1; color: #2c2a26; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-wd { margin-bottom: 4px; }
.cal-wdh { text-align: center; font-size: 10px; font-weight: 600; color: #9a907c; padding: 2px 0; }
.cal-day { height: 40px; border: none; border-radius: 9px; background: transparent; color: #2c2a26; font-size: 14px; cursor: pointer; font-family: inherit; }
.cal-day:hover:not(:disabled) { background: #f5efe2; }
.cal-day:focus-visible { outline: 2px solid #B5613F; outline-offset: -2px; }
.cal-out { color: #cdc3ad; }
.cal-disabled { color: #a99f88; cursor: not-allowed; text-decoration: line-through; }
.cal-out.cal-disabled { text-decoration: none; }
.cal-today { outline: 1px solid #B5613F; outline-offset: -1px; }
.cal-sel { background: #B5613F; color: #fff; font-weight: 600; text-decoration: none; }
.cal-range { background: #FBEEE7; }
.cal-summary { margin-top: 10px; text-align: center; font-size: 13px; font-weight: 500; color: #9a907c; }
.cal-summary--ok { color: #5e7a4e; }
@media (max-width: 420px) { .cal-day { height: 38px; font-size: 13px; } }

/* ===== Pre-launch "Sắp khai trương" popup ===== */
.mossy-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 22px;
  background: rgba(31,39,31,.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.mossy-modal.open { opacity: 1; visibility: visible; }
.mossy-modal__card { position: relative; max-width: 400px; width: 100%; text-align: center;
  background: var(--cream); border-radius: 20px; padding: 38px 28px 30px; box-shadow: 0 24px 60px rgba(0,0,0,.4);
  transform: translateY(10px) scale(.98); transition: transform .3s ease; }
.mossy-modal.open .mossy-modal__card { transform: none; }
.mossy-modal__mark { font-size: 42px; line-height: 1; margin-bottom: 12px; }
.mossy-modal__eyebrow { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 4px; color: var(--terracotta); margin-bottom: 10px; }
.mossy-modal__title { font-family: var(--serif); font-size: 27px; color: var(--forest); margin-bottom: 12px; }
.mossy-modal__text { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 22px; }
.mossy-modal__btns { display: flex; flex-direction: column; gap: 10px; }
.mossy-modal__btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: .5px; text-decoration: none;
  padding: 13px 18px; border-radius: 30px; cursor: pointer; transition: opacity .2s ease; border: none; }
.mossy-modal__btn:hover { opacity: .88; }
.mossy-modal__btn--call { background: var(--terracotta); color: var(--cream); }
.mossy-modal__btn--ig { background: var(--forest); color: var(--cream); }
.mossy-modal__close { position: absolute; top: 12px; right: 16px; font-size: 24px; line-height: 1; color: var(--text);
  background: none; border: none; cursor: pointer; opacity: .5; }
.mossy-modal__close:hover { opacity: 1; }
