/* ===== header.css ===== */
/* ============================================================
   HEADER  ·  Shivoham Retreat
   Fonts  : Cormorant (display) + DM Sans (body)
   Palette: Pine & Champagne
   ============================================================ */

/* Fonts: load via <link rel="preconnect/preload"> in each HTML <head>.
   The @import previously here forced render-blocking download AFTER this
   stylesheet was fetched + parsed (~+300 ms FCP on 4G). */

/* ── Accessibility: skip-to-content + universal focus ring ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #1C3228;
  color: #fff;
  border-radius: 6px;
  z-index: 9999;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
:focus-visible {
  outline: 2px solid #B8882A;
  outline-offset: 2px;
  border-radius: 3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #B8882A;
  outline-offset: 0;
}

/* ── Design tokens ──────────────────────────── */
:root {
  --forest:     #1C3228;
  --pine:       #2E4A3A;
  --sage:       #5C7A68;
  --gold:       #B8882A;
  --gold-hover: #9A7020;
  --gold-pale:  #D4A84C;
  --ivory:      #F4EFE4;
  --cream:      #EDE6D6;
  --stone:      #7C6E5E;
  --ink:        #111C17;
  --white:      #ffffff;

  --line:       rgba(28, 50, 40, 0.10);

  --f-serif:    'Cormorant', Georgia, serif;
  --f-sans:     'DM Sans', system-ui, sans-serif;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:     0.22s;
  --t-med:      0.36s;

  --header-h:   92px;
  --wrap-max:   1340px;
  --wrap-pad:   clamp(1.25rem, 4vw, 3rem);
}

/* ── Global base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--f-sans);
  color: var(--forest);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
img { display: block; max-width: 100%; }

/* Spacer so body content doesn't hide under fixed header */
body::before {
  content: '';
  display: block;
  height: var(--header-h);
}

/* ── Site header ────────────────────────────── */
.site-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: var(--header-h);
  z-index: 900;
  border-radius: 12px;
  transition:
    background var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

/* Floating over hero — dark overlay */
.site-header.is-top {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Solid — once user scrolls: full width, no rounding */
.site-header.is-scrolled {
  background: #FAF8F2;
  box-shadow: 0 1px 0 var(--line), 0 6px 28px -6px rgba(28, 50, 40, 0.09);
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}

/* ── Inner layout — 3-column grid ──────────── */
.nav-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-inline: var(--wrap-pad);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1.5rem;
}

/* ── Nav links ──────────────────────────────── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 5px;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

/* Underline slide-in on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}

.nav-link:hover           { color: rgba(255,255,255,0.7); }
.nav-link:hover::after    { transform: scaleX(1); }
.nav-link.is-active       { color: #ffffff; }
.nav-link.is-active::after{ transform: scaleX(1); }

/* Scrolled — dark text */
.site-header.is-scrolled .nav-link        { color: #1C3228; }
.site-header.is-scrolled .nav-link:hover  { color: #5A4C40; }
.site-header.is-scrolled .logo__wordmark  { color: #1C3228; }
.site-header.is-scrolled .logo__tagline   { color: #7C6E5E; }
.site-header.is-scrolled .menu-toggle span{ background: #1C3228; }
.site-header.is-scrolled .btn-book        { border-color: rgba(0,0,0,0.15); }

/* ── Logo — centre column ───────────────────── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  text-align: center;
  transition: opacity var(--t-fast);
}
.logo:hover { opacity: 0.78; }

.logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo__wordmark {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.logo__tagline {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Invert logo text over dark hero */
.site-header.is-top .logo__wordmark {
  color: var(--white);
}
.site-header.is-top .logo__tagline {
  color: rgba(200, 169, 110, 0.88);
}

/* ── Right column ───────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

/* Book Now CTA */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 1rem;
  padding: 0.68rem 1.45rem;
  background-image: linear-gradient(to right, #1C3228 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: var(--forest);
  border: 1px solid rgba(28, 56, 41, 0.15);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 5px;
  flex-shrink: 0;
  transition:
    background-position var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform  var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
}

.btn-book:hover {
  background-position: left center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.12);
}

/* Over transparent header — keep white */
.site-header.is-top .btn-book {
  background-image: linear-gradient(to right, #1C3228 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: var(--forest);
  border-color: rgba(255, 255, 255, 0.6);
}
.site-header.is-top .btn-book:hover {
  background-position: left center;
  color: #ffffff;
  border-color: var(--white);
}

/* ── Hamburger toggle ───────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin-left: 0.65rem;
  transition: background var(--t-fast);
}

.menu-toggle:hover { background: rgba(0, 0, 0, 0.06); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  border-radius: 2px;
  transition:
    transform var(--t-med) var(--ease),
    opacity   var(--t-fast),
    width     var(--t-med)  var(--ease);
  transform-origin: center;
}

.site-header.is-top .menu-toggle span { background: var(--white); }

/* Animated X when open */
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ──────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100dvh;
  background: var(--white);
  z-index: 910;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2.5rem;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.22);
}

.mobile-nav.is-open { transform: none; }

/* Nav items */
.mobile-nav__list { flex: 1; }

.mobile-nav__list li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--f-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.01em;
  transition: color var(--t-fast), padding-left var(--t-fast) var(--ease);
}

.mobile-nav__list a::after {
  content: '→';
  font-family: var(--f-sans);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease);
}

.mobile-nav__list a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}
.mobile-nav__list a:hover::after {
  opacity: 1;
  transform: none;
}

/* CTA inside drawer */
.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.1rem;
  background: var(--forest);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 7px;
  transition: background var(--t-fast);
}
.mobile-nav__cta:hover { background: var(--pine); }

/* Contact row */
.mobile-nav__info {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav__info span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.mobile-nav__info a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  transition: color var(--t-fast);
}
.mobile-nav__info a:hover { color: var(--gold); }

/* ── Overlay ────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 21, 16, 0.42);
  z-index: 905;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .nav-left .nav-list,
  .nav-right .nav-list,
  .btn-book {
    display: none;
  }
  .menu-toggle { display: flex; }

  /* Dark overlay over hero, no blur */
  .site-header.is-top {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  /* Solid warm-white full-width on scroll */
  .site-header.is-scrolled {
    background: #FAF8F2 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 1px 0 rgba(28,50,40,0.08) !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }

  .site-header.is-scrolled .logo__wordmark  { color: #1C3228; }
  .site-header.is-scrolled .logo__tagline   { color: #7C6E5E; }
  .site-header.is-scrolled .menu-toggle span { background: #1C3228; }
}

@media (max-width: 480px) {
  :root { --header-h: 78px; }
  .logo__img      { width: 38px; height: 38px; }
  .logo__wordmark { font-size: 1rem; }
}

/* ── Sticky right — Send Query ──────────────── */
.sticky-query {
  display: none;
}

@media (max-width: 768px) {
  .sticky-query {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 940;
    background: #B8882A;
    color: #ffffff;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 1rem 0.6rem;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 16px rgba(0,0,0,0.15);
  }

  .sticky-query__text {
    font-family: var(--f-sans, sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    transform: rotate(180deg);
  }
}

/* ── Sticky bottom CTA ──────────────────────── */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    background: #FAF8F2;
    box-shadow: 0 -1px 0 rgba(28,50,40,0.08), 0 -8px 24px -8px rgba(28,50,40,0.1);
    gap: 0.75rem;
  }

  .sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-family: var(--f-sans, sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .sticky-cta__btn:active { opacity: 0.75; }

  .sticky-cta__btn--call {
    background-image: linear-gradient(to right, #B8882A 50%, #1C3228 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #ffffff;
    transition: background-position 0.38s ease, opacity 0.2s ease;
  }
  .sticky-cta__btn--call:hover { background-position: left center; }

  .sticky-cta__btn--whatsapp {
    background-image: linear-gradient(to right, #1EAD52 50%, #25D366 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #ffffff;
    transition: background-position 0.38s ease, opacity 0.2s ease;
  }
  .sticky-cta__btn--whatsapp:hover { background-position: left center; }
}

/* mobile nav close (X) button */
.mobile-nav__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem;padding-bottom:1.1rem;border-bottom:1px solid rgba(46,74,58,.12);}
.mobile-nav__brand{font-family:var(--f-serif,Georgia,serif);font-size:1.4rem;font-weight:600;color:var(--forest,#1C3228);letter-spacing:.02em;}
.mobile-nav__close{width:42px;height:42px;display:flex;align-items:center;justify-content:center;background:rgba(46,74,58,.06);border:none;border-radius:50%;color:var(--forest,#1C3228);cursor:pointer;padding:0;line-height:0;flex-shrink:0;transition:background .2s;}
.mobile-nav__close:hover{background:rgba(46,74,58,.14);}

/* ===== experiences.css ===== */
/* ============================================================
   EXPERIENCES SECTION  ·  Shivoham Retreat
   ============================================================ */

.experiences {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #f7f7f7;
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
}

/* ── Header ─────────────────────────────────── */
.xp__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.xp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7A6C5C;
  margin-bottom: 0.75rem;
}

.xp__eyebrow::before {
  content: '';
  width: 2rem;
  height: 1.5px;
  background: #111C17;
  flex-shrink: 0;
}

.xp__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1C3228;
  letter-spacing: -0.02em;
}

.xp__title em {
  font-style: normal;
  font-weight: 300;
  color: #6A5E50;
}

.xp__all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1C3228;
  border-bottom: 1.5px solid #1C3228;
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.22s ease, opacity 0.22s ease;
  text-decoration: none;
}
.xp__all:hover { gap: 1rem; opacity: 0.6; }

/* ── Grid ───────────────────────────────────── */
.xp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── Card ───────────────────────────────────── */
.xp-card {
  background: #FAF8F2;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
}

.xp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.10);
}

/* Image */
.xp-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.xp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}

.xp-card:hover .xp-card__img img { transform: scale(1.06); }

/* Tag on image */
.xp-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #111C17;
  color: #ffffff;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

/* Body */
.xp-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.xp-card__name {
  font-family: var(--f-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C3228;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.xp-card__name em {
  font-style: normal;
  font-weight: 300;
  color: #5E5248;
}

.xp-card__desc {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5E5248;
  margin-bottom: 1rem;
  flex: 1;
}

/* Pills */
.xp-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.xp-card__pills span {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A4C40;
  background: #E2D9CA;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
}

/* Discover link */
.xp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1C3228;
  text-decoration: none;
  border-bottom: 1.5px solid #1C3228;
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.22s ease, opacity 0.22s ease;
  margin-top: auto;
}
.xp-card__link:hover { gap: 0.75rem; opacity: 0.6; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .xp__grid { grid-template-columns: repeat(2, 1fr); }
  .xp__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .xp__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .xp__grid::-webkit-scrollbar { display: none; }

  .xp-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
}

/* ===== experiences-page.css ===== */
/* ============================================================
   EXPERIENCES PAGE  ·  Shivoham Retreat
   ============================================================ */

/* ── Page hero ──────────────────────────────── */
.page-hero {
  margin: 1rem;
  width: calc(100% - 2rem);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 42vh;
  min-height: 280px;
  background: #111C17;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
}

.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.page-hero__eyebrow {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

.page-hero__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero__sub {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.88rem;
  color: rgba(255,255,255, 0.72);
  margin-top: 0.75rem;
  max-width: 48ch;
  line-height: 1.6;
}

/* ── Experiences grid section ───────────────── */
.xp-page {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #f7f7f7;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.xp-page__head {
  margin-bottom: 1.75rem;
}

.xp-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7A6C5C;
  margin-bottom: 0.75rem;
}

.xp-page__eyebrow::before {
  content: '';
  width: 2rem;
  height: 1.5px;
  background: #111C17;
  flex-shrink: 0;
}

.xp-page__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1C3228;
  letter-spacing: -0.02em;
}

.xp-page__title em {
  font-style: normal;
  font-weight: 300;
  color: #6A5E50;
}

.xp-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── How it works ───────────────────────────── */
.xp-how {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #111C17;
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}

.xp-how__head {
  margin-bottom: 2rem;
}

.xp-how__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.65);
  margin-bottom: 0.75rem;
}

.xp-how__eyebrow::before {
  content: '';
  width: 2rem;
  height: 1.5px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.xp-how__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.xp-how__title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255, 0.68);
}

.xp-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222222;
  border-radius: 12px;
  overflow: hidden;
}

.xp-how__step {
  background: #111C17;
  padding: 1.75rem 1.5rem;
}

.xp-how__step-num {
  font-family: var(--f-sans, sans-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  display: block;
}

.xp-how__step-title {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.xp-how__step-text {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255, 0.72);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .xp-page__grid { grid-template-columns: repeat(2, 1fr); }
  .xp-how__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .page-hero { height: 36vh; min-height: 220px; }

  .xp-page__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }
  .xp-page__grid::-webkit-scrollbar { display: none; }
  .xp-page__grid .xp-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .xp-how__grid { grid-template-columns: 1fr; }
}

/* ── Page intro (added 2026-08-18) ─────────────────────────────── */
.xp-intro { margin: 1rem 1rem 0; width: calc(100% - 2rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem) 0; }
.xp-intro__inner { display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.xp-intro__eyebrow { display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--f-sans, sans-serif); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: #7A6C5C; margin-bottom: 0.9rem; }
.xp-intro__eyebrow::before { content: ''; width: 2rem; height: 1.5px; background: #111C17; flex-shrink: 0; }
.xp-intro__title { font-family: var(--f-sans, sans-serif); font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: #1C3228; }
.xp-intro__text { font-family: var(--f-sans, sans-serif); font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.8; color: #5A4C40; max-width: 68ch; }
.xp-intro__text + .xp-intro__text { margin-top: 0.85rem; }
@media (max-width: 900px) { .xp-intro__inner { grid-template-columns: 1fr; gap: 1rem; } }

/* ===== cta.css ===== */
/* ============================================================
   CTA BAND  ·  Shivoham Retreat
   ============================================================ */

.cta-band {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #111C17;
  border-radius: 16px;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture — large faint serif character */
.cta-band::before {
  content: 'शिव';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-serif, Georgia, serif);
  font-size: clamp(12rem, 30vw, 22rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

/* ── Eyebrow ─────────────────────────────── */
.cta-band__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.65);
  margin-bottom: 2.5rem;
}

.cta-band__eyebrow::before,
.cta-band__eyebrow::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── Headline ────────────────────────────── */
.cta-band__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-band__title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Sub ─────────────────────────────────── */
.cta-band__sub {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255, 0.68);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ── Actions ─────────────────────────────── */
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-band__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-image: linear-gradient(to right, #1C3228 50%, #FAF8F2 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: #1C3228;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-position 0.38s ease, color 0.20s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-band__btn-primary:hover {
  background-position: left center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

.cta-band__btn-primary svg { transition: transform 0.22s ease; }
.cta-band__btn-primary:hover svg { transform: translateX(3px); }

.cta-band__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-image: linear-gradient(to right, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: #ffffff;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
  transition: background-position 0.38s ease, border-color 0.22s ease;
}

.cta-band__btn-ghost:hover {
  background-position: left center;
  border-color: #ffffff;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 480px) {
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__btn-primary,
  .cta-band__btn-ghost  { justify-content: center; width: 100%; }
}

/* ===== footer.css ===== */
/* ============================================================
   FOOTER  ·  Shivoham Retreat
   ============================================================ */

.site-footer {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #111C17;
  border-radius: 16px;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) 0;
  overflow: hidden;
}

/* ── Top grid ────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem 4rem;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid #1E2E22;
}

/* ── Brand column ────────────────────────── */
.footer__brand .footer__logo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer__logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer__logo-word {
  font-family: var(--f-serif, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.footer__logo-tag {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__brand p {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.85rem;
  line-height: 1.75;
  color: #A89888;
  max-width: 28ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.08);
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.footer__social a:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* ── Nav columns ─────────────────────────── */
.footer__col h4,
.footer__col .footer__col-title {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}

.footer__col ul a {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.88rem;
  color: #B0A090;
  text-decoration: none;
  transition: color 0.2s ease;
  text-shadow: 0 0 16px rgba(255,255,255,0.06);
}

.footer__col ul a:hover { color: #ffffff; }

/* ── Contact column ──────────────────────── */
.footer__contact h4,
.footer__contact .footer__col-title {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.footer__contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255, 0.65);
}

.footer__contact-item span,
.footer__contact-item a {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.85rem;
  color: #B0A090;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
  text-shadow: 0 0 16px rgba(255,255,255,0.06);
}

.footer__contact-item a:hover { color: #ffffff; }

/* ── Bottom bar ──────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  color: rgba(255,255,255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.05em;
}

.footer__legal a:hover { color: #ffffff; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .site-footer {
    margin: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 12px;
    padding: 2.5rem 1.25rem 0;
  }

  /* Brand — centered */
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__brand p { max-width: 100%; }
  .footer__social { justify-content: center; }

  /* Contact — full width, stacked items */
  .footer__contact {
    grid-column: 1 / -1;
    display: block;
  }
  .footer__contact h4,
.footer__contact .footer__col-title { text-align: left; }
  .footer__contact-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
  }
  /* Prevent long email/address from overflowing */
  .footer__contact-item a,
  .footer__contact-item span {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  /* Bottom bar */
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer__legal { gap: 1rem; flex-wrap: wrap; }
}

@media (max-width: 380px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ===== booking-modal.css ===== */
/* ============================================================
   BOOKING MODAL  ·  Shivoham Retreat
   Premium quick-book popup triggered by "Book Now" in header
   ============================================================ */

/* ── Overlay ──────────────────────────────────────────────── */
.bkm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s var(--ease);
}
.bkm-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Modal shell ──────────────────────────────────────────── */
.bkm {
  background: var(--ivory);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 32px 80px rgba(10, 22, 16, 0.35), 0 0 0 1px rgba(184,136,42,0.18);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.36s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-pale) transparent;
}
.bkm-overlay.is-open .bkm {
  transform: translateY(0) scale(1);
}

/* ── Header bar ───────────────────────────────────────────── */
.bkm__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1.1rem;
  border-bottom: 1px solid rgba(184,136,42,0.15);
  position: sticky;
  top: 0;
  background: var(--ivory);
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.bkm__head-text {}
.bkm__eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.22rem;
}
.bkm__title {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
}
.bkm__title em { font-style: italic; color: var(--gold); }
.bkm__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(28,50,40,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  transition: background 0.18s;
  flex-shrink: 0;
}
.bkm__close:hover { background: rgba(184,136,42,0.15); color: var(--gold); }

/* ── Body ─────────────────────────────────────────────────── */
.bkm__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* ── Section label ────────────────────────────────────────── */
.bkm__section-label {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
  display: block;
}

/* ── Date + guests row ────────────────────────────────────── */
.bkm__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .bkm__row { grid-template-columns: 1fr 1fr; }
  .bkm__row .bkm__field:last-child { grid-column: span 2; }
}

/* ── Field ────────────────────────────────────────────────── */
.bkm__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bkm__field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--stone);
  text-transform: uppercase;
}
.bkm__field input,
.bkm__field select,
.bkm__field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(28,50,40,0.15);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--forest);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.bkm__field input:focus,
.bkm__field select:focus,
.bkm__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,136,42,0.12);
}
.bkm__field textarea {
  resize: none;
  min-height: 76px;
}
.bkm__field .optional {
  font-size: 0.65rem;
  color: var(--sage);
  margin-left: 0.3rem;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Contact row ──────────────────────────────────────────── */
.bkm__contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .bkm__contact-row { grid-template-columns: 1fr; }
}

/* ── Room selector ────────────────────────────────────────── */
.bkm__rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
@media (max-width: 640px) {
  .bkm__rooms { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .bkm__rooms { grid-template-columns: 1fr; }
}

.bkm__room {
  border: 1.5px solid rgba(28,50,40,0.13);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  background: var(--white);
  position: relative;
}
.bkm__room:hover {
  border-color: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,22,16,0.10);
}
.bkm__room.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,136,42,0.20), 0 6px 20px rgba(10,22,16,0.10);
}
.bkm__room img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}
.bkm__room-noimg {
  width: 100%;
  height: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(184,136,42,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-pale);
}
.bkm__room-body {
  padding: 0.55rem 0.65rem 0.6rem;
}
.bkm__room-name {
  font-family: var(--f-serif);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
}
.bkm__room-price {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.15rem;
}
.bkm__room-check {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s, transform 0.18s;
}
.bkm__room.is-selected .bkm__room-check {
  opacity: 1;
  transform: scale(1);
}

/* ── Divider ──────────────────────────────────────────────── */
.bkm__divider {
  height: 1px;
  background: rgba(28,50,40,0.08);
  margin: 0 -1.75rem;
}

/* ── Submit row ───────────────────────────────────────────── */
.bkm__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bkm__note {
  font-size: 0.75rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bkm__submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--f-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.bkm__submit:hover { background: var(--pine); transform: translateY(-1px); }
.bkm__submit:active { transform: translateY(0); }
.bkm__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Success state ────────────────────────────────────────── */
.bkm__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.75rem 2rem;
  gap: 0.9rem;
}
.bkm__success.is-show { display: flex; }
.bkm__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,136,42,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.bkm__success h3,
.bkm__success .bkm__success-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
}
.bkm__success h3,
.bkm__success .bkm__success-title em { font-style: italic; color: var(--gold); }
.bkm__success p { font-size: 0.9rem; color: var(--stone); max-width: 380px; line-height: 1.6; }
.bkm__success-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 0.4rem; }
.bkm__success-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.18s;
}
.bkm__success-btn--primary { background: var(--forest); color: var(--ivory); }
.bkm__success-btn--primary:hover { background: var(--pine); }
.bkm__success-btn--ghost { border: 1.5px solid rgba(28,50,40,0.2); color: var(--forest); }
.bkm__success-btn--ghost:hover { background: rgba(28,50,40,0.05); }
