/* ════════════════════════════════════════════════════════════════
   MOUNTAIN ROSE VACATION RENTALS — Design System v2
   Mobile-first. Fraunces (display) + Outfit (body).
   Palette: Parchment / Deep Pine / Forest / Rose / Gold
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Color */
  --paper:        #F7F3EA;
  --paper-2:      #EFE9DA;
  --card:         #FFFFFF;
  --ink:          #1C150C;
  --ink-70:       #4A3F2E;
  --ink-50:       #7A6C55;
  --ink-30:       #B0A48D;
  --pine:         #0F1D0C;
  --pine-2:       #15260F;
  --pine-text:    #EFEAD9;
  --pine-muted:   #9CA886;
  --forest:       #2F5A28;
  --forest-hi:    #3E7434;
  --rose:         #B23A36;
  --gold:         #C2A05C;

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --body:    "Outfit", -apple-system, sans-serif;

  /* Rhythm */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --nav-h: 64px;
  --pad: 20px;
  --max-w: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*:not(hospitable-direct-mps):not(hospitable-direct-mps *),
*::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img:not(hospitable-direct-mps *) { max-width: 100%; display: block; }
a:not(hospitable-direct-mps *) { color: inherit; text-decoration: none; }
ul:not(hospitable-direct-mps *) { list-style: none; }
button:not(hospitable-direct-mps *) { font-family: inherit; cursor: pointer; border: none; background: none; }
input:not(hospitable-direct-mps *), select:not(hospitable-direct-mps *), textarea:not(hospitable-direct-mps *) { font-family: var(--body); font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 2px; }

/* ── Type utilities ────────────────────────────────────── */
.eyebrow {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
}
.eyebrow--rose { color: var(--rose); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--muted { color: var(--ink-50); }

.display-xl {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.display-lg {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.15;
}
.display-lg em, .display-xl em, .display-md em {
  font-style: italic;
  font-weight: 340;
  color: var(--forest);
}
.lede { font-size: clamp(1rem, 2.4vw, 1.15rem); line-height: 1.7; color: var(--ink-70); font-weight: 300; }
.body-text { color: var(--ink-70); line-height: 1.8; }
.small:not(hospitable-direct-mps *) { font-size: 0.82rem; }

/* Rose mark — the signature: a small rose-red asterisk-dot after key heads */
.rose-mark { color: var(--rose); font-style: normal; }

/* ── Layout ────────────────────────────────────────────── */
.container:not(hospitable-direct-mps *) { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section:not(hospitable-direct-mps *) { padding: 64px 0; }
.section--pine:not(hospitable-direct-mps *) { background: var(--pine); color: var(--pine-text); }
.section--pine:not(hospitable-direct-mps *) .body-text, .section--pine:not(hospitable-direct-mps *) .lede { color: var(--pine-muted); }
.section--paper2 { background: var(--paper-2); }
@media (min-width: 768px) { .section:not(hospitable-direct-mps *) { padding: 96px 0; } :root { --pad: 32px; } }
@media (min-width: 1100px) { .section:not(hospitable-direct-mps *) { padding: 120px 0; } }

/* ── Buttons ───────────────────────────────────────────── */
.btn:not(hospitable-direct-mps *) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  min-height: 48px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn-primary:not(hospitable-direct-mps *) { background: var(--forest); color: #fff; }
.btn-primary:not(hospitable-direct-mps *):hover { background: var(--forest-hi); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(47,90,40,0.3); }
.btn-dark:not(hospitable-direct-mps *) { background: var(--ink); color: var(--paper); }
.btn-dark:not(hospitable-direct-mps *):hover { transform: translateY(-2px); }
.btn-outline:not(hospitable-direct-mps *) { border: 1.5px solid currentColor; color: var(--ink); background: transparent; }
.btn-outline:not(hospitable-direct-mps *):hover { background: var(--ink); color: var(--paper); }
.section--pine:not(hospitable-direct-mps *) .btn-outline:not(hospitable-direct-mps *) { color: var(--pine-text); }
.section--pine:not(hospitable-direct-mps *) .btn-outline:not(hospitable-direct-mps *):hover { background: var(--pine-text); color: var(--pine); }
.btn-gold:not(hospitable-direct-mps *) { background: var(--gold); color: var(--ink); }
.btn-gold:not(hospitable-direct-mps *):hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(194,160,92,0.35); }
.link-arrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { gap: 10px; }

/* ── Nav ───────────────────────────────────────────────── */
.nav:not(hospitable-direct-mps *) {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(15,29,12,0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(239,234,217,0.08);
  transition: background 0.3s;
}
.nav:not(hospitable-direct-mps *).scrolled { background: rgba(15,29,12,0.94); }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: none; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: none; }
.nav:not(hospitable-direct-mps *) .btn-primary:not(hospitable-direct-mps *) {
  padding: 11px 20px;
  min-height: 40px;
  font-size: 0.68rem;
  background: var(--gold);
  color: var(--ink);
}
.nav:not(hospitable-direct-mps *) .btn-primary:not(hospitable-direct-mps *):hover { background: #D9BC7E; box-shadow: 0 8px 24px rgba(194,160,92,0.35); }
.nav-burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 22px; height: 1.5px; background: var(--pine-text); transition: all 0.3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: rgba(15,29,12,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 12px 0 24px;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
  border-bottom: 1px solid rgba(239,234,217,0.1);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  color: var(--pine-text);
  font-size: 1rem;
  font-weight: 500;
  padding: 15px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile a::after { content: "→"; opacity: 0.35; }
.nav-mobile .mobile-cta { margin: 12px var(--pad) 0; justify-content: center; background: var(--gold); color: var(--ink); }
.nav-mobile .mobile-cta::after { display: none; }

@media (min-width: 1000px) {
  .nav-burger, .nav-mobile { display: none; }
  .nav-links {
    display: flex;
    gap: 38px;
  }
  .nav-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(239,234,217,0.72);
    transition: color 0.25s;
    padding: 6px 0;
  }
  .nav-links a:hover { color: var(--pine-text); }
  .nav-phone {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(239,234,217,0.65);
  }
  .nav-phone:hover { color: var(--pine-text); }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero:not(hospitable-direct-mps *) {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 32px) 0 36px;
  overflow: clip;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 62%;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,29,12,0.68) 0%, rgba(15,29,12,0.3) 30%, rgba(15,29,12,0.12) 48%),
    linear-gradient(to top, rgba(15,29,12,0.9) 0%, rgba(15,29,12,0.55) 40%, rgba(15,29,12,0.22) 68%, transparent 88%),
    radial-gradient(ellipse 70% 60% at 28% 55%, rgba(15,29,12,0.45) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  white-space: nowrap;
  overflow: hidden;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow { text-shadow: 0 1px 12px rgba(15,29,12,0.9); color: #D9BC7E; }
.hero-title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(2.7rem, 11.5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 18px;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(15,29,12,0.65), 0 1px 8px rgba(15,29,12,0.5);
}
.hero-title em { font-style: italic; font-weight: 300; color: #D9BC7E; }
.hero-sub {
  font-size: clamp(0.92rem, 2.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247,243,234,0.92);
  max-width: 520px;
  margin-bottom: 28px;
  text-shadow: 0 1px 14px rgba(15,29,12,0.8);
}

/* Hero search — glass card */
.hero-search {
  position: relative;
  z-index: 2;
  background: rgba(247,243,234,0.1);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(247,243,234,0.22);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hs-field {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(247,243,234,0.14);
}
.hs-label {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.hs-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.hs-input::-webkit-calendar-picker-indicator { filter: invert(0.85); cursor: pointer; }
select.hs-input option { background: var(--pine); color: var(--paper); }
.hs-btn {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s;
  min-height: 52px;
}
.hs-btn:hover { background: #D9BC7E; }

@media (min-width: 860px) {
  .hero:not(hospitable-direct-mps *) { padding-bottom: 56px; }
  .hero-search { flex-direction: row; align-items: stretch; max-width: 880px; }
  .hs-field { flex: 1; border-bottom: none; border-right: 1px solid rgba(247,243,234,0.14); padding: 16px 26px; display: flex; flex-direction: column; justify-content: center; }
  .hs-btn { padding: 0 40px; }
}

/* ── Stat ribbon — one thin line, gold-dot separated ───── */
.stat-ribbon {
  background: var(--pine);
  color: var(--pine-text);
  border-top: 1px solid rgba(239,234,217,0.07);
  padding: 18px 0;
}
.stat-ribbon-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-ribbon-inner::-webkit-scrollbar { display: none; }
.stat-chip {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine-muted);
}
.stat-chip strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 450;
  color: var(--gold);
  letter-spacing: 0;
}
.stat-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.55; flex-shrink: 0; }

/* ── Collection (property cards) ───────────────────────── */
.collection-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 680px) { .collection-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1040px) { .collection-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

.prop-card {
  position: relative;
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(28,21,12,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(28,21,12,0.14); }
.prop-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.prop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.prop-card:hover .prop-card-img img { transform: scale(1.05); }
.prop-no {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 100px;
}
.prop-loc {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 100px;
}
.prop-loc::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--forest); }
.prop-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prop-card-title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 440;
  line-height: 1.15;
}
.prop-card-sub { font-size: 0.86rem; color: var(--ink-50); line-height: 1.6; }
.prop-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-70);
  padding-top: 10px;
  border-top: 1px solid rgba(28,21,12,0.08);
}
.prop-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}
.prop-price { font-size: 0.98rem; font-weight: 700; }
.prop-price em { font-style: normal; font-size: 0.72rem; font-weight: 500; color: var(--ink-50); }
.prop-cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
}
.prop-cta::after { content: " →"; }

/* Filter pills */
.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(var(--pad) * -1) 28px;
  padding: 4px var(--pad) 8px;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-pill {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(28,21,12,0.18);
  color: var(--ink-70);
  background: transparent;
  transition: all 0.25s;
  min-height: 42px;
  white-space: nowrap;
}
.filter-pill.active { background: var(--forest); border-color: var(--forest); color: #fff; }
.filter-pill:not(.active):hover { border-color: var(--ink); color: var(--ink); }

/* ── Difference (pine section, 3-up) ───────────────────── */
.diff-grid { display: grid; gap: 36px; margin-top: 44px; }
@media (min-width: 880px) { .diff-grid { grid-template-columns: 1fr 1fr 1fr; gap: 48px; } }
.diff-item h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 440;
  color: var(--pine-text);
  margin: 14px 0 10px;
}
.diff-item p { font-size: 0.9rem; line-height: 1.75; color: var(--pine-muted); }
.diff-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(194,160,92,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.diff-item .link-arrow { color: var(--gold); margin-top: 12px; }

/* ── About split ───────────────────────────────────────── */
.about-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 920px) { .about-grid { grid-template-columns: 5fr 6fr; gap: 64px; } }
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -14px; right: 18px;
  background: var(--pine);
  color: var(--gold);
  font-family: var(--display);
  padding: 12px 20px;
  border-radius: var(--r-md);
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(15,29,12,0.3);
}
.about-badge strong { font-size: 1.5rem; font-weight: 450; }
.about-badge span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pine-muted); font-family: var(--body); }

/* ── Reviews — horizontal snap scroll ──────────────────── */
.reviews-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(var(--pad) * -1);
  padding: 8px var(--pad) 16px;
}
.reviews-rail::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 84%;
  max-width: 380px;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 2px 12px rgba(28,21,12,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 880px) { .review-card { flex-basis: 340px; } }
.review-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; }
.review-quote {
  font-family: var(--display);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 380;
  line-height: 1.6;
  color: var(--ink-70);
}
.review-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.review-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.review-date { font-size: 0.72rem; color: var(--ink-30); }

/* ── CTA banner (photo) ────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 88px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
}
.cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-banner-veil { position: absolute; inset: 0; background: rgba(15,29,12,0.78); }
.cta-banner-inner { position: relative; z-index: 2; max-width: 560px; }
.cta-banner-inner h2 { color: var(--paper); margin: 14px 0 16px; }
.cta-banner-inner h2 em { color: var(--gold); }
.cta-banner-inner p { color: rgba(239,234,217,0.8); margin-bottom: 30px; font-weight: 300; line-height: 1.75; }

/* ── Journal cards ─────────────────────────────────────── */
.journal-grid { display: grid; gap: 24px; margin-top: 40px; }
@media (min-width: 880px) { .journal-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } }
.journal-card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(28,21,12,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.journal-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(28,21,12,0.12); }
.journal-img { aspect-ratio: 16 / 9.5; overflow: hidden; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.journal-card:hover .journal-img img { transform: scale(1.05); }
.journal-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.journal-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); }
.journal-title { font-family: var(--display); font-size: 1.25rem; font-weight: 440; line-height: 1.25; }
.journal-ex { font-size: 0.86rem; color: var(--ink-50); line-height: 1.65; }

/* ── Footer ────────────────────────────────────────────── */
.footer:not(hospitable-direct-mps *) {
  background: var(--pine);
  color: var(--pine-text);
  padding: 64px 0 28px;
}
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; } }
.footer-logo img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-tag { font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--pine-muted); }
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.88rem; color: var(--pine-muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--pine-text); }
.footer-contact { font-size: 0.88rem; color: var(--pine-muted); line-height: 2.1; }
.footer-contact a:hover { color: var(--pine-text); }
.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(239,234,217,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 0.74rem;
  color: rgba(156,168,134,0.7);
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ── Property page ─────────────────────────────────────── */
.phero {
  position: relative;
  height: 62svh;
  min-height: 340px;
  max-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}
.phero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.phero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,29,12,0.66) 0%, rgba(15,29,12,0.15) 26%, transparent 42%),
    linear-gradient(to top, rgba(15,29,12,0.85) 0%, rgba(15,29,12,0.35) 34%, transparent 58%);
}
.phero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) 32px;
}
.phero-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.phero-title {
  font-family: var(--display);
  font-weight: 360;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 14px;
}
.phero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247,243,234,0.82);
}

/* Gallery */
.gallery:not(hospitable-direct-mps *) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 130px;
  gap: 6px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 44px;
}
.gallery:not(hospitable-direct-mps *) > div { overflow: hidden; position: relative; }
.gallery:not(hospitable-direct-mps *) > div:first-child { grid-column: 1 / 3; }
.gallery:not(hospitable-direct-mps *) img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery:not(hospitable-direct-mps *) > div:hover img { transform: scale(1.04); }
.gallery-more:not(hospitable-direct-mps *) {
  position: absolute; inset: 0;
  background: rgba(15,29,12,0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--paper);
}
.gallery-more:not(hospitable-direct-mps *) strong { font-family: var(--display); font-size: 1.7rem; font-weight: 400; }
.gallery-more:not(hospitable-direct-mps *) span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
@media (min-width: 880px) {
  .gallery:not(hospitable-direct-mps *) {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 230px 230px;
  }
  .gallery:not(hospitable-direct-mps *) > div:first-child { grid-column: 1; grid-row: 1 / 3; }
}

/* Property content layout */
.prop-layout { display: grid; gap: 44px; }
@media (min-width: 980px) {
  .prop-layout { grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
  .prop-side { position: sticky; top: calc(var(--nav-h) + 20px); }
}
.prop-section { margin-bottom: 44px; }
.prop-section-title {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 430;
  margin-bottom: 18px;
}
.prop-desc { color: var(--ink-70); line-height: 1.85; margin-bottom: 16px; font-weight: 300; font-size: 0.98rem; }
.amenities { display: grid; gap: 11px; }
@media (min-width: 640px) { .amenities { grid-template-columns: 1fr 1fr; gap: 12px 28px; } }
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-70);
  line-height: 1.5;
}
.amenity::before {
  content: "✓";
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Jacuzzi/info note */
.note-box {
  display: flex;
  gap: 13px;
  background: rgba(47,90,40,0.07);
  border: 1px solid rgba(47,90,40,0.22);
  border-radius: var(--r-md);
  padding: 17px 19px;
  margin-bottom: 22px;
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--ink-70);
}
.note-box strong { color: var(--ink); font-weight: 600; }
.note-box a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.note-box-icon { color: var(--forest); flex-shrink: 0; margin-top: 2px; }

/* Reviews on property page */
.prev-grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .prev-grid { grid-template-columns: 1fr 1fr; } }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid rgba(28,21,12,0.1);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-70);
}
.rating-pill .review-stars { font-size: 0.7rem; }

/* Booking sidebar */
.book-card {
  background: #3D4D3B; /* pixel-matched to Hospitable widget theme green */
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,21,12,0.08);
}
.book-card-head {
  padding: 18px 22px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(247,243,234,0.12);
}
.book-card-head .eyebrow { display: block; margin-bottom: 4px; color: var(--gold); }
.book-card-head p { font-size: 0.78rem; color: rgba(239,234,217,0.75); }
.book-iframe {
  width: 372px;
  max-width: none;
  height: 750px;
  border: none;
  display: block;
  position: relative;
  left: 10px;  /* widget has ~10px internal left inset, ~60px right padding;
                  shifting 10px right + card clipping equalizes both gaps */
  transform: none;
}
@media (max-width: 979px) {
  .book-iframe { width: 100%; }
}
.book-card-foot {
  padding: 14px 20px 18px;
  text-align: center;
  border-top: 1px solid rgba(247,243,234,0.12);
  font-size: 0.8rem;
  color: rgba(239,234,217,0.75);
}
.book-card-foot a { color: var(--gold); font-weight: 600; }
.save-strip {
  background: rgba(47,90,40,0.08);
  border: 1px solid rgba(47,90,40,0.2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 14px;
}
.trust-card {
  margin-top: 16px;
  background: var(--card);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(28,21,12,0.05);
}
.trust-card .eyebrow { display: block; margin-bottom: 12px; }
.trust-card div { font-size: 0.85rem; color: var(--ink-70); padding: 5px 0; }

/* Sticky mobile booking bar */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--card);
  border-top: 1px solid rgba(28,21,12,0.1);
  box-shadow: 0 -6px 28px rgba(28,21,12,0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px var(--pad);
  padding-bottom: calc(11px + env(safe-area-inset-bottom));
}
.sticky-bar-price { flex: 1; min-width: 0; line-height: 1.3; }
.sticky-bar-price strong { display: block; font-size: 0.98rem; font-weight: 700; }
.sticky-bar-price strong em { font-style: normal; font-size: 0.72rem; font-weight: 500; color: var(--ink-50); }
.sticky-bar-price span { font-size: 0.7rem; color: var(--ink-50); }
.sticky-bar .btn:not(hospitable-direct-mps *) { padding: 13px 22px; min-height: 44px; font-size: 0.7rem; flex-shrink: 0; }
@media (min-width: 980px) { .sticky-bar { display: none; } }
.has-sticky-bar { padding-bottom: 84px; }
@media (min-width: 980px) { .has-sticky-bar { padding-bottom: 0; } }

/* You might also like rail */
.also-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin: 0 calc(var(--pad) * -1);
  padding: 8px var(--pad) 14px;
}
.also-rail::-webkit-scrollbar { display: none; }
.also-rail .prop-card { flex: 0 0 270px; scroll-snap-align: start; }
.also-rail .prop-card-img { aspect-ratio: 4/3; }
.also-rail .prop-card-title { font-size: 1.2rem; }

/* ── Page hero (interior pages) ────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 56px;
  background: var(--pine);
  overflow: clip;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.32; }
.page-hero-veil { position: absolute; inset: 0; background: linear-gradient(to top, var(--pine) 4%, transparent 70%); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--paper); margin-top: 12px; }
.page-hero h1 em { color: var(--gold); }
.page-hero .lede { color: var(--pine-muted); margin-top: 14px; max-width: 560px; }

/* ── Forms ─────────────────────────────────────────────── */
.form-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / 3; } }
.field:not(hospitable-direct-mps *) label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 7px;
}
.field:not(hospitable-direct-mps *) input, .field:not(hospitable-direct-mps *) select, .field:not(hospitable-direct-mps *) textarea {
  width: 100%;
  background: var(--card);
  border: 1.5px solid rgba(28,21,12,0.14);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.field:not(hospitable-direct-mps *) input:focus, .field:not(hospitable-direct-mps *) select:focus, .field:not(hospitable-direct-mps *) textarea:focus { border-color: var(--forest); }

/* FAQ */
.faq details { border-top: 1px solid rgba(28,21,12,0.12); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid rgba(28,21,12,0.12); }
.faq summary {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 430;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rose); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--ink-70); line-height: 1.8; font-size: 0.92rem; }

/* ── Reveal animation ──────────────────────────────────── */
.reveal:not(hospitable-direct-mps *) { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal:not(hospitable-direct-mps *).in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal:not(hospitable-direct-mps *) { opacity: 1; transform: none; } }

/* ── Compare table (why book direct) ───────────────────── */
.compare-grid { display: grid; gap: 20px; margin-top: 36px; }
@media (min-width: 760px) { .compare-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.compare-card {
  background: var(--card);
  border: 1.5px solid rgba(28,21,12,0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
.compare-card.win { border-color: var(--forest); }
.win-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.compare-total {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 380;
  margin: 8px 0 2px;
}
.compare-rows { border-top: 1px solid rgba(28,21,12,0.1); margin-top: 18px; padding-top: 16px; }
.compare-row { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--ink-70); padding: 4px 0; }
.compare-row.bad span:last-child { color: var(--rose); font-weight: 600; }
.compare-row.good span:last-child { color: var(--forest); font-weight: 600; }
.compare-row.total { border-top: 1px solid rgba(28,21,12,0.1); margin-top: 10px; padding-top: 12px; font-weight: 700; color: var(--ink); }

/* ── Mobile hero readability: stronger uniform veil on small screens ── */
@media (max-width: 700px) {
  .hero-veil {
    background:
      linear-gradient(to bottom, rgba(15,29,12,0.7) 0%, rgba(15,29,12,0.42) 30%, rgba(15,29,12,0.5) 60%, rgba(15,29,12,0.92) 100%);
  }
  .hero-sub { color: rgba(247,243,234,0.96); }
}

/* ── PHOTO LIGHTBOX ─────────────────────────────────────── */
.gallery:not(hospitable-direct-mps *) > div { cursor: pointer; }
.lightbox:not(hospitable-direct-mps *) {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(10, 18, 8, 0.96);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox:not(hospitable-direct-mps *).open { opacity: 1; pointer-events: auto; }
.lb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  padding-top: calc(14px + env(safe-area-inset-top));
  color: var(--pine-text);
  flex-shrink: 0;
}
.lb-count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.lb-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pine-text);
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background 0.25s;
}
.lb-close:hover { background: rgba(247,243,234,0.12); }
.lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
  padding: 0 8px;
  touch-action: pan-y;
}
.lb-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(247,243,234,0.1);
  backdrop-filter: blur(8px);
  color: var(--pine-text);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
  z-index: 2;
}
.lb-arrow:hover { background: rgba(247,243,234,0.22); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
@media (max-width: 700px) {
  .lb-arrow { display: none; } /* swipe instead */
}
.lb-caption {
  flex-shrink: 0;
  text-align: center;
  padding: 14px var(--pad);
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  color: rgba(239,234,217,0.85);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  min-height: 52px;
}
body.lb-lock { overflow: hidden; }

/* ── Nav polish ── */
.nav-links a.nav-active { color: var(--gold); }
.nav-mobile a.nav-active { color: var(--gold); }
body.menu-lock { overflow: hidden; }
/* Anchor targets land below the fixed nav */
#booking-iframe, .book-card, [id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ════ MOBILE: no hidden content, obvious swipe affordances ════ */

/* Filter pills: only 3 items — wrap instead of scroll, nothing hidden */
@media (max-width: 700px) {
  .filter-row {
    flex-wrap: wrap;
    overflow-x: visible;
    margin: 0 0 28px;
    padding: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Stat ribbon: 2x2 grid on mobile — all four visible, no scroll */
@media (max-width: 700px) {
  .stat-ribbon-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    overflow: visible;
  }
  .stat-chip { white-space: normal; }
  .stat-dot { display: none; }
}

/* Reviews & also-like rails: stronger peek so the next card clearly shows */
@media (max-width: 700px) {
  .review-card { flex: 0 0 78%; max-width: 300px; }
  .also-rail .prop-card { flex-basis: 245px; }
}

/* Scroll dots for swipeable rails */
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}
.rail-dot {
  width: 7px; height: 7px;
  border-radius: 100px;
  background: var(--ink-30);
  border: none;
  padding: 0;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.rail-dot.active { background: var(--forest); width: 20px; }
.section--pine:not(hospitable-direct-mps *) .rail-dot { background: rgba(239,234,217,0.25); }
.section--pine:not(hospitable-direct-mps *) .rail-dot.active { background: var(--gold); }

/* ── RANGE DATE PICKER ──────────────────────────────────── */
.hero-search { position: relative; }
#range-display { cursor: pointer; }
.rp-panel {
  position: fixed; /* body-level; desktop top/left set by JS from field position */
  z-index: 60;
  background: rgba(13, 24, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(247,243,234,0.18);
  border-radius: var(--r-lg);
  padding: 18px;
  display: none;
  gap: 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.rp-panel.open { display: flex; }
.rp-month { width: 280px; }
.rp-month:nth-child(2) { display: none; }
@media (min-width: 860px) {
  .rp-month:nth-child(2) { display: block; }
}
@media (max-width: 859px) {
  .rp-panel { left: 0; right: 0; justify-content: center; }
  .rp-month { width: 100%; max-width: 320px; }
}
.rp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rp-title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 440;
  color: var(--paper);
  text-align: center;
  flex: 1;
}
.rp-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--paper);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.rp-nav:hover { background: rgba(247,243,234,0.12); }
.rp-nav[disabled] { opacity: 0.2; pointer-events: none; }
.rp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.rp-dow {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,234,217,0.45);
  padding: 6px 0;
}
.rp-day {
  aspect-ratio: 1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--paper);
  border-radius: 9px;
  transition: background 0.15s;
}
.rp-day:hover:not([disabled]):not(.rp-sel) { background: rgba(247,243,234,0.14); }
.rp-day[disabled] { opacity: 0.22; pointer-events: none; }
.rp-day.rp-in { background: rgba(194,160,92,0.22); border-radius: 0; }
.rp-day.rp-sel { background: var(--gold); color: var(--ink); font-weight: 700; }
.rp-day.rp-start { border-radius: 9px 0 0 9px; }
.rp-day.rp-end { border-radius: 0 9px 9px 0; }
.rp-day.rp-start.rp-end { border-radius: 9px; }
.rp-hint {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 10px;
  grid-column: 1 / -1;
}

/* ── Range picker: mobile bottom sheet ── */
.rp-backdrop {
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(10, 18, 8, 0.5);
  display: none;
}
.rp-backdrop.open { display: block; }
.rp-close-row { display: none; }
@media (max-width: 859px) {
  .rp-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    max-height: 82svh;
    overflow-y: auto;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: center;
  }
  .rp-close-row {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 2px;
  }
  .rp-close-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--paper);
    font-size: 1.2rem;
    border-radius: 50%;
    background: rgba(247,243,234,0.1);
  }
}
