:root{
  --linen:#ffffff;
  --linen-2:#f7f5f2;
  --linen-3:#efece6;
  --ink:#22201c;
  --ink-dim:#6b6459;
  --lantern:#c96f2e;
  --lantern-dim:#a85920;
  --lantern-tint:#fdf1e6;
  --sage:#5f7a63;
  --sage-tint:#eaf1eb;
  --clay:#b5533a;
  --danger:#c1432a;
  --danger-tint:#fbeae6;
  --line:#e6e2da;
  --radius:14px;
  --shadow-sm:0 1px 3px rgba(30,25,15,0.08);
  --shadow-md:0 8px 24px rgba(30,25,15,0.10);
  --shadow-lg:0 20px 48px rgba(30,25,15,0.16);
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background:var(--linen);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{
  font-family:'Fraunces',serif;
  font-weight:600;
  letter-spacing:-0.01em;
  margin:0;
}
.mono{ font-family:'IBM Plex Mono',monospace; letter-spacing:0.02em; }
.note{ font-family:'Caveat',cursive; }
.verse{ font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 56px; }
:focus-visible{ outline:2px solid var(--lantern); outline-offset:3px; }
.hidden{ display:none !important; }

/* ---------- lantern glow dot ---------- */
.glow{
  width:9px; height:9px; border-radius:50%;
  background:var(--lantern);
  box-shadow:0 0 0 0 rgba(201,111,46,0.6);
  animation:pulse 2.4s ease-in-out infinite;
  display:inline-block; flex-shrink:0;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(201,111,46,0.55); }
  70%{ box-shadow:0 0 0 8px rgba(201,111,46,0); }
  100%{ box-shadow:0 0 0 0 rgba(201,111,46,0); }
}
@media (prefers-reduced-motion: reduce){
  .glow{ animation:none; box-shadow:0 0 8px 2px rgba(201,111,46,0.5); }
}
.svg-glow-dot{ animation:svgPulse 2.4s ease-in-out infinite; }
@keyframes svgPulse{
  0%{ filter:drop-shadow(0 0 0px rgba(201,111,46,0.7)); }
  50%{ filter:drop-shadow(0 0 3.5px rgba(201,111,46,0.95)); }
  100%{ filter:drop-shadow(0 0 0px rgba(201,111,46,0.7)); }
}
@media (prefers-reduced-motion: reduce){
  .svg-glow-dot{ animation:none; filter:drop-shadow(0 0 3px rgba(201,111,46,0.7)); }
}
.logo-mark{ display:inline-flex; align-items:center; }
.logo-mark svg{ display:block; }

/* ---------- section divider ornament ---------- */
.ornament{
  display:flex; align-items:center; justify-content:center; gap:14px;
  padding:4px 0 26px; color:var(--ink-dim);
}
.ornament::before, .ornament::after{
  content:""; flex:1; max-width:220px; height:1px; background:var(--line);
}
.ornament svg{ width:20px; height:20px; opacity:0.85; }

/* ---------- header ---------- */
header{
  position:sticky; top:0; z-index:40;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
section[id]{ scroll-margin-top:110px; }
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; gap:20px; flex-wrap:wrap; row-gap:10px;
}
.logo{ display:flex; align-items:center; gap:9px; font-size:19px; }
.logo .glow{ width:7px;height:7px; }
.navlinks{ display:flex; align-items:center; gap:28px; font-size:14.5px; flex:1; }
.navlinks a{ color:var(--ink-dim); transition:color .15s; }
.navlinks a:hover{ color:var(--ink); }
.navauth{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

/* ---------- mobile nav drawer ---------- */
.mobile-menu-btn{
  display:none; background:none; border:none; padding:6px; margin:-6px; color:var(--ink); cursor:pointer; flex-shrink:0;
}
.mobile-menu-btn svg{ width:22px; height:22px; display:block; }
#mobileMenuOverlay{ justify-content:flex-end; padding:0; }
.mobile-menu-panel{
  background:var(--linen); width:min(320px, 86vw); height:100%;
  padding:22px 22px 24px; display:flex; flex-direction:column; gap:22px;
  box-shadow:var(--shadow-lg); overflow-y:auto; animation:mobileMenuIn .2s ease;
}
@keyframes mobileMenuIn{ from{ transform:translateX(20px); opacity:0.5; } to{ transform:translateX(0); opacity:1; } }
.mobile-menu-head{ display:flex; align-items:center; justify-content:space-between; }
.mobile-menu-links{ display:flex; flex-direction:column; }
.mobile-menu-links a{
  padding:13px 2px; font-size:15.5px; color:var(--ink); border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
}
.mobile-menu-auth{ display:flex; flex-direction:column; gap:10px; margin-top:auto; padding-top:18px; border-top:1px solid var(--line); }
.mobile-menu-auth .btn{ width:100%; text-align:center; }
.mobile-menu-auth .userchip{ justify-content:center; padding:6px 0; }
.mobile-menu-auth .linkbtn{ text-align:center; padding:4px 0; }
.btn{
  border:none; border-radius:999px; padding:10px 20px;
  font-size:14.5px; font-weight:600; transition:transform .15s, opacity .15s;
}
.btn:hover{ transform:translateY(-1px); }
.btn:disabled{ opacity:.6; cursor:default; transform:none; }
.btn svg{ width:15px; height:15px; vertical-align:-3px; margin-right:3px; }
.chip svg{ width:13px; height:13px; vertical-align:-2px; margin-right:2px; }
.btn-lantern{ background:var(--lantern); color:#ffffff; }
.btn-ghost{ background:transparent; color:var(--ink); border:1px solid var(--line); }
.btn-sage{ background:var(--sage); color:#ffffff; }
.btn-sm{ padding:7px 14px; font-size:13px; }
.userchip{
  display:flex; align-items:center; gap:8px; font-size:14px; color:var(--ink-dim);
}
.userchip .avatar{
  width:28px; height:28px; border-radius:50%; background:var(--sage); color:#ffffff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px;
  font-family:'Fraunces',serif;
}
.linkbtn{
  background:none; border:none; color:var(--ink-dim); font-size:13.5px; padding:0;
}
.linkbtn:hover{ color:var(--ink); }

/* ---------- hero ---------- */
.hero{
  padding:56px 0 40px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:-40% -10% auto -10%;
  height:520px;
  background:radial-gradient(closest-side, rgba(201,111,46,0.16), transparent 70%);
  pointer-events:none;
}
.hero-backdrop{
  position:absolute; left:0; right:0; bottom:0; height:220px;
  pointer-events:none; z-index:0;
}
.hero .wrap{ position:relative; z-index:1; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--lantern); font-size:13px; font-weight:600;
  text-transform:uppercase; letter-spacing:0.09em;
  margin-bottom:12px;
}
.hero h1{
  font-size:clamp(40px, 6vw, 64px);
  line-height:1.04;
  max-width:780px;
}
.hero p.lede{
  font-size:18px; line-height:1.5; color:var(--ink-dim);
  max-width:560px; margin:14px 0 24px;
}

.search{
  display:flex; flex-wrap:wrap; gap:10px;
  background:var(--linen-2);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  max-width:720px;
}
.search .field{ flex:1; min-width:150px; }
.search label{
  display:block; font-size:11px; text-transform:uppercase; letter-spacing:.07em;
  color:var(--ink-dim); margin-bottom:6px; font-weight:600;
}
.search input, .search select{
  width:100%; background:transparent; border:none; color:var(--ink);
  font-family:'Inter',sans-serif; font-size:15px; padding:2px 0;
}
.search input:focus, .search select:focus{ outline:none; }
.search select option{ background:var(--linen-2); }
.search .divider{ width:1px; background:var(--line); margin:2px 4px; }

/* ---------- trust row ---------- */
.trust-row{
  display:flex; flex-wrap:wrap; gap:24px; margin-top:18px; max-width:720px;
}
.trust-item{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--ink-dim); }
.trust-item svg{ width:20px; height:20px; flex-shrink:0; opacity:0.85; }

/* ---------- sticky compact search ---------- */
.search-compact{
  display:flex; align-items:center; gap:10px;
  background:var(--linen-2); border:1px solid var(--line); border-radius:999px;
  padding:8px 8px 8px 16px; font-size:13.5px; color:var(--ink-dim);
  opacity:0; transform:translateY(-6px) scale(0.97); pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.search-compact.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.search-compact .sc-icon{ width:16px; height:16px; opacity:0.7; }
.search-compact .sc-go{
  background:var(--lantern); color:#ffffff; border:none; border-radius:999px;
  width:30px; height:30px; display:flex; align-items:center; justify-content:center;
  font-size:14px; flex-shrink:0;
}

/* ---------- testimonials ---------- */
.testimonials{ padding:0 0 40px; }
.testimonial-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.testimonial-card{
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
}
.testimonial-card .verse{ font-size:16.5px; line-height:1.42; color:var(--ink); flex:1; margin-bottom:12px; }
.testimonial-author{ display:flex; align-items:center; gap:10px; }
.testimonial-author .avatar{
  width:34px; height:34px; border-radius:50%; background:var(--sage); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:12.5px; font-weight:700;
  font-family:'Fraunces',serif; flex-shrink:0;
}
.testimonial-author strong{ font-size:13.5px; }
.testimonial-author .role{ font-size:12px; color:var(--ink-dim); }

/* ---------- events strip ---------- */
.events{ padding:0 0 40px; }
.section-head{
  display:flex; align-items:baseline; justify-content:space-between;
  margin-bottom:16px; gap:16px; flex-wrap:wrap;
}
.section-head h2{ font-size:24px; }
.section-head .sub{ color:var(--ink-dim); font-size:14.5px; }
.page-intro{ color:var(--ink-dim); font-size:15.5px; line-height:1.55; max-width:640px; margin:-10px 0 6px; }

.event-row{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.event-card{
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:16px; position:relative; box-shadow:var(--shadow-sm);
  transition:box-shadow .18s ease, transform .18s ease;
}
.event-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); }
.event-card .when{ color:var(--lantern); font-size:12.5px; font-weight:600; }
.event-card h3{ font-size:18px; margin:6px 0 4px; }
.event-card .hosts{
  display:flex; align-items:center; gap:7px; margin-top:10px;
  font-size:13px; color:var(--ink-dim);
}

/* ---------- listings ---------- */
.listings{ padding:4px 0 44px; }
.reunion-search-row{ margin-bottom:16px; }
.reunion-search-input{
  width:100%; max-width:420px; border:1px solid var(--line); border-radius:999px;
  padding:11px 18px; font:inherit; font-size:14px; background:var(--linen-2); color:var(--ink);
}
.reunion-search-input:focus{ outline:none; border-color:var(--sage); }
.filters{ display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
.chip{
  background:var(--linen-2); border:1px solid var(--line); color:var(--ink-dim);
  border-radius:999px; padding:8px 16px; font-size:13.5px; font-weight:500;
  transition:all .15s;
}
.chip.active{ background:var(--sage); color:#ffffff; border-color:var(--sage); }
.chip:hover:not(.active){ color:var(--ink); border-color:var(--ink-dim); }
select.chip.lang-select{
  cursor:pointer; font-family:inherit; -webkit-appearance:none; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%236b6459' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; padding-right:32px;
}

.grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.empty-state{
  grid-column:1/-1; text-align:center; padding:50px 20px; color:var(--ink-dim);
  border:1px dashed var(--line); border-radius:var(--radius);
}
.card{
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column; cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .18s ease, transform .18s ease;
}
.card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.card .photo{
  height:132px;
  position:relative;
  overflow:hidden;
}
.card .photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.card .photo .badge{
  position:absolute; bottom:12px; left:12px;
  background:rgba(255,255,255,0.92); border:1px solid rgba(0,0,0,0.06);
  border-radius:999px; padding:5px 11px; font-size:11.5px; font-weight:600;
  display:flex; align-items:center; gap:6px; color:var(--ink);
  box-shadow:var(--shadow-sm);
}
.fav-btn{
  position:absolute; top:10px; right:10px; z-index:2;
  width:30px; height:30px; border-radius:50%; border:none;
  background:rgba(24,37,40,0.55); display:flex; align-items:center; justify-content:center;
  transition:transform .12s ease, background .15s ease;
}
.fav-btn:hover{ transform:scale(1.08); background:rgba(24,37,40,0.8); }
.fav-btn svg{ width:16px; height:16px; }
.fav-btn path{ fill:none; stroke:#ffffff; stroke-width:1.6; transition:fill .15s, stroke .15s; }
.fav-btn.saved path{ fill:var(--clay); stroke:var(--clay); }
.card .body{ padding:14px 16px 16px; display:flex; flex-direction:column; gap:8px; flex:1; }
.card .city{ font-size:12px; color:var(--ink-dim); text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.card h3{ font-size:19px; }
.card .meta{ display:flex; gap:14px; font-size:13px; color:var(--ink-dim); align-items:center; flex-wrap:wrap; }
.stars{ display:inline-flex; align-items:center; gap:4px; color:var(--ink); font-weight:600; font-size:13px; }
.stars svg{ width:13px; height:13px; }
.stars .count{ color:var(--ink-dim); font-weight:400; }
.card .noteline{
  font-family:'Caveat',cursive; font-size:20px; color:var(--lantern);
  line-height:1.15; margin-top:2px;
}
.card .foot{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:auto; padding-top:12px; border-top:1px solid var(--line);
}
.card .fee{ font-size:14px; font-weight:600; }
.card .fee span{ color:var(--ink-dim); font-weight:400; font-size:12.5px; }
.card .req{
  background:transparent; border:1px solid var(--lantern); color:var(--lantern);
  border-radius:999px; padding:7px 15px; font-size:13px; font-weight:600;
}
.card .req:hover{ background:var(--lantern); color:#ffffff; }

/* ---------- region explorer / world map ---------- */
.region-explore{ padding:4px 0 44px; }
.map-layout{ display:grid; grid-template-columns:1.4fr 1fr; gap:28px; align-items:center; }
.world-map-wrap{
  background:var(--linen-2); border:1px solid var(--line); border-radius:var(--radius);
  padding:14px; position:relative; box-shadow:var(--shadow-sm);
}
.world-map-svg{ width:100%; height:auto; display:block; }
.region-landmass{ fill:var(--linen-3); opacity:0.7; transition:opacity .15s; }
.region-hotspot{ cursor:pointer; }
.region-hotspot:hover .region-landmass, .region-hotspot:focus .region-landmass{ opacity:1; }
.region-hotspot-ring{
  fill:none; stroke:var(--lantern); stroke-width:1; opacity:0;
  transition:opacity .15s, r .15s;
}
.region-hotspot:hover .region-hotspot-ring, .region-hotspot:focus .region-hotspot-ring{ opacity:0.55; }
.region-hotspot-dot{
  fill:var(--lantern); animation:svgPulse 2.6s ease-in-out infinite;
}
.region-hotspot-label{
  fill:var(--ink); font-family:'Inter',sans-serif; font-size:9.5px; font-weight:600;
  text-anchor:middle; opacity:0; transition:opacity .15s;
}
.region-hotspot-count{
  fill:var(--ink-dim); font-family:'IBM Plex Mono',monospace; font-size:7.5px;
  text-anchor:middle; opacity:0; transition:opacity .15s;
}
.region-hotspot:hover .region-hotspot-label, .region-hotspot:focus .region-hotspot-label,
.region-hotspot:hover .region-hotspot-count, .region-hotspot:focus .region-hotspot-count{ opacity:1; }
.region-hotspot.active .region-hotspot-dot{ fill:var(--sage); }
.region-hotspot.active .region-hotspot-label,
.region-hotspot.active .region-hotspot-count{ opacity:1; }

.region-list{ display:flex; flex-direction:column; gap:8px; }
.region-list-item{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  background:var(--linen-2); border:1px solid var(--line); border-radius:10px;
  padding:12px 16px; font-size:14px; text-align:left; width:100%;
  transition:border-color .15s, background .15s;
}
.region-list-item:hover{ border-color:var(--ink-dim); }
.region-list-item.active{ border-color:var(--sage); background:var(--sage-tint); }
.region-list-item .count{ color:var(--ink-dim); font-size:12.5px; font-family:'IBM Plex Mono',monospace; }

/* ---------- how it works ---------- */
.how{ padding:44px 0; background:var(--linen-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.ecosystem-intro{ max-width:680px; color:var(--ink-dim); font-size:16px; line-height:1.55; margin:-8px 0 22px; }
.ecosystem-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; margin-bottom:14px; }
.ecosystem-card{
  display:flex; flex-direction:column; align-items:flex-start; text-align:left;
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px 18px; box-shadow:var(--shadow-sm);
  transition:box-shadow .18s ease, transform .18s ease, border-color .18s ease;
  flex:1 1 190px; max-width:230px;
}
.ecosystem-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); border-color:var(--ink-dim); }
.ecosystem-card .eco-icon{
  width:36px; height:36px; border-radius:50%; background:var(--sage-tint); color:var(--sage);
  display:flex; align-items:center; justify-content:center; margin-bottom:10px; flex-shrink:0;
}
.ecosystem-card .eco-icon svg{ width:18px; height:18px; }
.ecosystem-card h3{ font-size:15px; margin-bottom:5px; }
.ecosystem-card p{ font-size:13px; color:var(--ink-dim); line-height:1.45; margin:0; }
.ecosystem-card-accent{ border-color:var(--lantern-dim); background:var(--lantern-tint); }
.ecosystem-card-accent .eco-icon{ background:var(--lantern); color:#ffffff; }
.ecosystem-card-accent:hover{ border-color:var(--lantern-dim); }
.ecosystem-close{
  background:var(--sage-tint); border-radius:var(--radius); padding:14px 18px;
  font-size:14px; color:var(--ink); line-height:1.5; max-width:900px;
}
.how-layout{ display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:start; margin-top:20px; }
.steps{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:20px; }
.step .num{ font-family:'IBM Plex Mono',monospace; color:var(--lantern); font-size:13px; }
.step h3{ font-size:18px; margin:8px 0 6px; }
.step p{ color:var(--ink-dim); font-size:14px; line-height:1.5; margin:0; }

.compare-strip{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.compare-col{ border-radius:12px; padding:14px 16px; }
.compare-without{ background:var(--danger-tint); }
.compare-with{ background:var(--sage-tint); }
.compare-label{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; margin-bottom:10px; }
.compare-without .compare-label{ color:var(--danger); }
.compare-with .compare-label{ color:var(--sage); }
.compare-col ul{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px; }
.compare-col li{ font-size:13px; color:var(--ink-dim); line-height:1.4; padding-left:14px; position:relative; }
.compare-col li::before{ content:"—"; position:absolute; left:0; }
.compare-with li::before{ content:"✓"; color:var(--sage); font-weight:700; }

/* ---------- interactive demo widget ---------- */
.demo-frame{ position:sticky; top:100px; }
.demo-window{
  background:var(--linen); border:1px solid var(--line); border-radius:16px;
  overflow:hidden; box-shadow:var(--shadow-lg);
}
.demo-bar{ display:flex; gap:6px; padding:12px 14px; border-bottom:1px solid var(--line); }
.demo-bar span{ width:9px; height:9px; border-radius:50%; background:var(--linen-3); }
.demo-stage{ position:relative; height:230px; }
.demo-state{
  position:absolute; inset:0; padding:22px; opacity:0; transform:translateX(10px);
  transition:opacity .35s ease, transform .35s ease; pointer-events:none;
}
.demo-state.active{ opacity:1; transform:translateX(0); pointer-events:auto; }
.demo-search{
  display:flex; align-items:center; background:var(--linen-2); border:1px solid var(--line);
  border-radius:999px; padding:10px 14px; font-size:13.5px; color:var(--ink); margin-bottom:16px;
}
.demo-search-seg{ display:flex; align-items:center; gap:8px; }
.demo-search-divider{ width:1px; height:16px; background:var(--line); margin:0 12px; flex-shrink:0; }
.demo-search svg{ width:16px; height:16px; color:var(--ink-dim); flex-shrink:0; }
.demo-result{
  display:flex; align-items:center; gap:12px; padding:10px; border-radius:10px;
  border:1px solid transparent; margin-bottom:8px; transition:border-color .3s, opacity .3s;
  position:relative;
}
.demo-result.highlighted{ border-color:var(--lantern); background:var(--lantern-tint); }
.demo-result.dim{ opacity:0.45; }
.demo-swatch{ width:44px; height:36px; border-radius:8px; flex-shrink:0; overflow:hidden; }
.demo-swatch svg{ width:100%; height:100%; display:block; }
.demo-lines{ display:flex; flex-direction:column; gap:6px; flex:1; }
.demo-lines span{ display:block; height:7px; border-radius:4px; background:var(--linen-3); width:100%; }
.demo-lines span.short{ width:55%; }
.demo-heart{ width:16px; height:16px; }
.demo-heart svg{ width:100%; height:100%; }
.demo-heart path{ fill:var(--clay); stroke:var(--clay); }
.demo-cursor{
  position:absolute; width:22px; height:22px; left:60%; top:90px; z-index:5;
  opacity:0; filter:drop-shadow(0 2px 3px rgba(0,0,0,0.25)); pointer-events:none;
}
.demo-cursor.run{ animation:demoCursorMove 1.8s ease-in-out forwards; }
@keyframes demoCursorMove{
  0%{ left:58%; top:92px; opacity:0; transform:scale(1); }
  20%{ opacity:1; }
  55%{ left:85%; top:38px; transform:scale(1); }
  68%{ left:85%; top:38px; transform:scale(0.78); }
  82%{ left:85%; top:38px; transform:scale(1.1); }
  100%{ left:85%; top:38px; transform:scale(1); opacity:1; }
}
@media (prefers-reduced-motion: reduce){
  .demo-cursor.run{ animation:none; opacity:1; left:85%; top:38px; }
}
.demo-bubble{
  font-family:'Caveat',cursive; font-size:19px; color:var(--ink); background:var(--linen-2);
  border-radius:14px 14px 14px 4px; padding:14px 16px; margin-bottom:16px; line-height:1.3;
}
.demo-sent{ display:flex; align-items:center; gap:8px; color:var(--sage); font-size:13.5px; font-weight:600; }
.demo-check{
  display:inline-flex; align-items:center; justify-content:center; width:18px; height:18px;
  border-radius:50%; background:var(--sage); color:#fff; font-size:11px; flex-shrink:0;
}
.demo-confirm{ text-align:center; padding-top:14px; }
.demo-check-lg{ width:40px; height:40px; font-size:20px; margin-bottom:10px; }
.demo-confirm h4{ font-family:'Fraunces',serif; font-size:18px; margin-bottom:6px; }
.demo-confirm p{ color:var(--ink-dim); font-size:13.5px; margin:0; }
.demo-steps{ display:flex; gap:6px; margin-top:14px; }
.demo-step{
  flex:1; background:var(--linen-2); border:1px solid var(--line); color:var(--ink-dim);
  border-radius:8px; padding:8px 4px; font-size:11.5px; font-weight:600; text-align:center;
  transition:background .2s, color .2s, border-color .2s;
}
.demo-step.active{ background:var(--ink); color:var(--linen); border-color:var(--ink); }

/* ---------- footer ---------- */
footer{ border-top:1px solid var(--line); padding:26px 0 32px; }
footer .top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px; margin-bottom:16px; }
footer .disclaimer{
  font-size:12.5px; color:var(--ink-dim); line-height:1.6; max-width:640px;
}

/* ---------- modal ---------- */
.overlay{
  position:fixed; inset:0; background:rgba(15,22,24,0.72);
  display:none; align-items:center; justify-content:center; z-index:100; padding:20px;
}
.overlay.open{ display:flex; }
.modal{
  background:var(--linen); border:1px solid var(--line); border-radius:18px;
  padding:24px; width:100%; max-width:460px; max-height:88vh; overflow:auto;
  position:relative; box-shadow:var(--shadow-lg);
}
.modal h2{ font-size:24px; margin-bottom:6px; }
.modal .sub{ color:var(--ink-dim); font-size:13.5px; margin-bottom:22px; }
.modal .hint{ color:var(--ink-dim); font-size:12px; margin:-8px 0 16px; }
.modal .hint code{ background:var(--linen-2); padding:1px 5px; border-radius:5px; }
.fgroup{ margin-bottom:16px; }
.fgroup label{ display:block; font-size:12.5px; font-weight:600; margin-bottom:6px; color:var(--ink-dim); }
.fgroup input, .fgroup textarea, .fgroup select{
  width:100%; background:var(--linen-2); border:1px solid var(--line); border-radius:9px;
  color:var(--ink); padding:10px 12px; font-family:'Inter',sans-serif; font-size:14.5px;
}
.fgroup input:focus, .fgroup textarea:focus, .fgroup select:focus{
  outline:none; border-color:var(--lantern); background:var(--linen);
}
.fgroup textarea{ resize:vertical; min-height:64px; font-family:'Caveat',cursive; font-size:18px; }
.fgroup textarea.plain{ font-family:'Inter',sans-serif; font-size:14px; }
.date-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.checkbox-label{
  display:flex !important; align-items:flex-start; gap:10px; font-size:13.5px;
  font-weight:400 !important; color:var(--ink-dim); cursor:pointer; line-height:1.4;
}
.checkbox-label input[type="checkbox"]{ width:auto; margin-top:2px; accent-color:var(--sage); flex-shrink:0; }
.fgroup-label-only{
  font-size:12.5px; font-weight:600; color:var(--ink-dim); margin:18px 0 10px;
  text-transform:uppercase; letter-spacing:.04em;
}
.liability-notice{
  background:var(--lantern-tint); border:1px solid var(--lantern-dim); border-radius:12px;
  padding:14px 16px; font-size:12.5px; line-height:1.55; color:var(--ink-dim); margin-bottom:16px;
}
.liability-notice strong{ color:var(--ink); }
.liability-notice .checkbox-label{ color:var(--ink); font-weight:500 !important; }
.liability-notice a{ text-decoration:underline; }
.terms-body h3{ font-family:'Fraunces',serif; font-weight:600; font-size:16px; margin:28px 0 8px; }
.terms-body h3:first-child{ margin-top:0; }
.terms-body p{ color:var(--ink-dim); line-height:1.65; font-size:14.5px; margin:0; }
.terms-body ul{ list-style:disc; padding-left:20px; display:block; }
.terms-body li{ color:var(--ink-dim); line-height:1.65; font-size:14.5px; background:none; border:none; padding:2px 0; }
.faq-category{ margin:36px 0 4px; }
.faq-category:first-child{ margin-top:0; }
.faq-category h2{ font-family:'Fraunces',serif; font-size:19px; font-weight:600; margin-bottom:2px; }
.faq-item{ border-bottom:1px solid var(--line); padding:15px 0; }
.faq-item:first-of-type{ border-top:1px solid var(--line); }
.faq-question{ font-family:'Fraunces',serif; font-weight:500; font-size:15.5px; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:14px; }
.faq-question::-webkit-details-marker{ display:none; }
.faq-question::after{ content:"+"; font-family:'IBM Plex Mono',monospace; font-size:19px; color:var(--lantern); flex-shrink:0; }
.faq-item[open] .faq-question::after{ content:"−"; }
.faq-answer{ color:var(--ink-dim); line-height:1.65; font-size:14.5px; margin:10px 0 0; }
.faq-answer a{ color:var(--lantern); text-decoration:underline; }
.swap-badge{
  display:inline-flex; align-items:center; gap:5px; background:var(--sage-tint); color:var(--sage);
  border-radius:999px; padding:5px 11px; font-size:11.5px; font-weight:700;
}
.swap-badge svg{ width:12px; height:12px; flex-shrink:0; }
.language-pills{ display:flex; flex-wrap:wrap; gap:6px; }
.language-pill{
  background:var(--linen-2); border:1px solid var(--line); border-radius:999px;
  padding:5px 12px; font-size:12.5px; color:var(--ink-dim);
}

.photo-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:12px;
}
.photo-grid .photo-thumb{
  position:relative; aspect-ratio:1; border-radius:8px; overflow:hidden; background:var(--linen-2);
}
.photo-grid .photo-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo-grid .photo-thumb .remove-photo{
  position:absolute; top:4px; right:4px; width:20px; height:20px; border-radius:50%;
  background:rgba(0,0,0,0.6); color:#fff; border:none; font-size:12px; line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.photo-upload-btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  border:1.5px dashed var(--line); border-radius:10px; padding:14px;
  color:var(--ink-dim); font-size:13.5px; font-weight:600; cursor:pointer;
  transition:border-color .15s, color .15s;
}
.photo-upload-btn:hover{ border-color:var(--lantern); color:var(--lantern); }

.price-breakdown{
  background:var(--linen-2); border:1px solid var(--line); border-radius:12px;
  padding:16px; margin-bottom:16px; font-size:13.5px;
}
.price-breakdown .row{ display:flex; justify-content:space-between; padding:4px 0; color:var(--ink-dim); }
.price-breakdown .row.total{
  color:var(--ink); font-weight:700; font-size:15px; margin-top:8px; padding-top:10px;
  border-top:1px solid var(--line);
}
.price-breakdown .note{ font-size:12px; color:var(--ink-dim); margin-top:10px; line-height:1.5; }
.price-breakdown .absorbed{ color:var(--sage); font-weight:600; }
.modal-actions{ display:flex; gap:10px; margin-top:22px; }
.modal-actions .btn{ flex:1; }
.close-x{
  position:absolute; top:16px; right:16px; background:none; border:none;
  color:var(--ink-dim); font-size:20px; line-height:1;
}
.confirm{ display:none; text-align:center; padding:10px 0 4px; }
.confirm.show{ display:block; }
.confirm .glow{ width:12px; height:12px; margin-bottom:14px; }
.form-error{
  color:var(--danger); font-size:13px; margin:-6px 0 14px; min-height:1px;
}

.tabbar{ display:flex; gap:6px; margin-bottom:22px; background:var(--linen-2); border-radius:11px; padding:4px; }
.tab{
  flex:1; background:none; border:none; color:var(--ink-dim); padding:9px 0;
  border-radius:8px; font-size:13.5px; font-weight:600;
}
.tab.active{ background:var(--linen); color:var(--ink); box-shadow:var(--shadow-sm); }
.tabpanel{ display:none; }
.tabpanel.active{ display:block; }

/* ---------- toasts ---------- */
.toasts{
  position:fixed; bottom:20px; right:20px; z-index:200;
  display:flex; flex-direction:column; gap:10px; max-width:340px;
}
.toast{
  background:var(--linen-2); border:1px solid var(--line); border-left:3px solid var(--sage);
  border-radius:10px; padding:12px 16px; font-size:13.5px; box-shadow:0 8px 24px rgba(0,0,0,0.35);
  animation:toastIn .2s ease;
}
.toast.error{ border-left-color:var(--danger); }
@keyframes toastIn{ from{ opacity:0; transform:translateY(8px);} to{ opacity:1; transform:translateY(0);} }

/* ---------- listing detail ---------- */
.detail-hero{
  height:230px; border-radius:var(--radius); border:1px solid var(--line);
  margin-bottom:20px;
  position:relative; overflow:hidden;
}
.detail-hero svg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.detail-hero .carousel-root{ width:100%; height:100%; }

/* ---------- swipeable photo carousel ---------- */
.carousel-root{
  position:relative; width:100%; height:100%; overflow:hidden;
  touch-action:pan-y; cursor:grab;
}
.carousel-root:active{ cursor:grabbing; }
.carousel-track{ display:flex; width:100%; height:100%; will-change:transform; }
.carousel-track img{
  flex:0 0 100%; width:100%; height:100%; object-fit:cover; display:block;
  user-select:none; -webkit-user-drag:none; pointer-events:none;
}
.carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:28px; height:28px; border-radius:50%; border:none;
  background:rgba(255,255,255,0.9); color:var(--ink);
  display:flex; align-items:center; justify-content:center; font-size:15px;
  opacity:0; transition:opacity .15s, background .15s; box-shadow:var(--shadow-sm);
}
.carousel-root:hover .carousel-arrow{ opacity:1; }
.carousel-arrow:hover{ background:#fff; }
.carousel-arrow.prev{ left:8px; }
.carousel-arrow.next{ right:8px; }
.carousel-arrow.is-hidden{ display:none; }
.carousel-dots{
  position:absolute; bottom:10px; left:50%; transform:translateX(-50%);
  display:flex; gap:4px; z-index:2;
}
.carousel-dots .dot{
  width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.6);
  transition:background .2s, width .2s; border:none; padding:0; cursor:pointer;
}
.carousel-dots .dot.active{ background:#fff; width:14px; border-radius:3px; }
.detail-hero .carousel-arrow{ width:38px; height:38px; font-size:19px; opacity:1; }
.detail-hero .carousel-dots .dot{ width:6px; height:6px; }
.detail-hero .carousel-dots .dot.active{ width:18px; }
.detail-hero .badge{
  position:absolute; bottom:16px; left:16px; z-index:1;
  background:rgba(255,255,255,0.92); border:1px solid rgba(0,0,0,0.06);
  border-radius:999px; padding:6px 13px; font-size:12.5px; font-weight:600;
  display:flex; align-items:center; gap:6px; white-space:nowrap; color:var(--ink);
  box-shadow:var(--shadow-sm);
}
.detail-hero .fav-btn{ top:16px; right:16px; }
.breadcrumb{ font-size:13px; color:var(--ink-dim); margin-bottom:14px; display:inline-block; }
.breadcrumb:hover{ color:var(--ink); }
.detail-layout{ display:grid; grid-template-columns:1.7fr 1fr; gap:32px; align-items:start; }
.detail-main h1{ font-size:30px; margin-bottom:5px; }
.detail-main .city{ color:var(--ink-dim); font-size:14px; text-transform:uppercase; letter-spacing:.06em; font-weight:600; margin-bottom:14px; }
.detail-block{ margin-bottom:22px; }
.detail-block h3{ font-size:16px; margin-bottom:10px; color:var(--ink-dim); text-transform:uppercase; letter-spacing:.05em; font-size:12.5px; }
.detail-block p{ line-height:1.6; margin:0; }
.amenity-list{ display:flex; flex-wrap:wrap; gap:9px; list-style:none; padding:0; margin:0; }
.amenity-list li{
  background:var(--linen-2); border:1px solid var(--line); border-radius:999px; padding:7px 14px; font-size:13px;
}
.review{ border-top:1px solid var(--line); padding:16px 0; }
.review:first-child{ border-top:none; padding-top:0; }
.review .author{ font-weight:600; font-size:14px; margin-bottom:5px; }
.review .body{ color:var(--ink-dim); font-size:14.5px; line-height:1.55; }
.booking-panel{
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px; position:sticky; top:100px; box-shadow:var(--shadow-md);
}
.booking-panel .fee{ font-size:22px; margin-bottom:4px; }
.booking-panel .fee span{ font-size:13px; color:var(--ink-dim); font-weight:400; }
.service-fee-note{ font-size:12.5px; color:var(--ink-dim); margin-bottom:14px; }
.service-fee-note.absorbed{ color:var(--sage); font-weight:600; }
.booking-panel .dates{ color:var(--ink-dim); font-size:13.5px; margin-bottom:18px; }
.booking-panel .host-line{ display:flex; align-items:center; gap:10px; margin-top:18px; padding-top:18px; border-top:1px solid var(--line); font-size:13.5px; color:var(--ink-dim); }

/* ---------- dashboard ---------- */
.dash-tabbar{ display:flex; gap:8px; margin-bottom:20px; }
.dash-tab{
  background:var(--linen-2); border:1px solid var(--line); color:var(--ink-dim);
  border-radius:999px; padding:8px 16px; font-size:14px; font-weight:600;
}
.dash-tab.active{ background:var(--sage); color:#ffffff; border-color:var(--sage); }
.dash-list{ display:flex; flex-direction:column; gap:10px; }
.dash-card{
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:14px 18px; display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  box-shadow:var(--shadow-sm);
}
.dash-card .swatch{ width:48px; height:48px; border-radius:10px; flex-shrink:0; overflow:hidden; position:relative; }
.dash-card .info{ flex:1; min-width:180px; }
.dash-card .info h3{ font-size:16px; margin-bottom:3px; }
.dash-card .info .meta{ font-size:13px; color:var(--ink-dim); }
.dash-card .msg{ font-family:'Caveat',cursive; font-size:18px; color:var(--lantern); flex-basis:100%; }
.status-pill{
  border-radius:999px; padding:5px 12px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
}
.status-pill.pending{ background:var(--lantern-tint); color:var(--lantern-dim); }
.status-pill.accepted{ background:var(--sage-tint); color:var(--sage); }
.status-pill.declined{ background:var(--danger-tint); color:var(--danger); }
.dash-actions{ display:flex; gap:8px; }
.pending-badge{
  background:var(--lantern); color:#ffffff; border-radius:999px; padding:2px 8px; font-size:11px; font-weight:700; margin-left:6px;
}

/* ---------- tips ---------- */
.tip-sent{ font-size:12.5px; color:var(--sage); font-weight:600; }
.tip-form{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  margin-top:10px; padding-top:10px; border-top:1px solid var(--line);
}
.tip-form.hidden{ display:none; }
.tip-amt-btn{
  border:1px solid var(--line); background:#fff; border-radius:999px;
  padding:6px 14px; font-size:13px; font-weight:600; cursor:pointer;
}
.tip-amt-btn:hover{ border-color:var(--lantern); color:var(--lantern); }
.tip-custom-input{
  width:90px; border:1px solid var(--line); border-radius:999px;
  padding:6px 12px; font-size:13px;
}

/* ---------- featured listings ---------- */
.top-left-badges{
  position:absolute; top:10px; left:10px; z-index:1;
  display:flex; flex-direction:column; align-items:flex-start; gap:6px;
}
.featured-badge{
  display:inline-flex; align-items:center; gap:4px;
  background:var(--lantern); color:#fff; border-radius:999px; padding:5px 11px;
  font-size:11.5px; font-weight:700;
}
.feature-listing-btn{ margin-top:8px; }

/* ---------- connect (host payouts) ---------- */
.connect-panel{
  flex-direction:column; align-items:flex-start; gap:6px;
  margin-bottom:14px; border-width:1.5px;
}
.connect-panel strong{ font-size:15px; }
.connect-panel span{ font-size:13px; color:var(--ink-dim); line-height:1.5; }
.connect-panel.connect-ready{ border-color:var(--sage); background:var(--sage-tint); }
.connect-panel.connect-pending{ border-color:var(--lantern); background:var(--lantern-tint); }
.connect-panel .btn{ margin-top:4px; }

/* ---------- nav unread badge ---------- */
.nav-badge{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:17px; height:17px; padding:0 4px; margin-left:5px;
  background:var(--lantern); color:#fff; border-radius:999px;
  font-size:10.5px; font-weight:700; font-family:'IBM Plex Mono',monospace;
  vertical-align:2px;
}

/* ---------- nav reminder bell ---------- */
.reminder-bell{ position:relative; display:flex; align-items:center; }
.reminder-bell-btn{
  position:relative; display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%; color:var(--ink-dim); background:none; border:none;
}
.reminder-bell-btn:hover{ background:var(--linen-2); color:var(--ink); }
.reminder-bell-btn svg{ width:19px; height:19px; }
.reminder-bell-btn .nav-badge{
  position:absolute; top:2px; right:2px; margin-left:0;
}
.reminder-dropdown{
  position:absolute; top:calc(100% + 10px); right:0; width:300px; max-height:360px; overflow-y:auto;
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow-md); padding:8px; z-index:60;
}
.reminder-item{
  display:flex; flex-direction:column; gap:2px; padding:10px 12px; border-radius:10px; color:inherit;
}
.reminder-item:hover{ background:var(--linen-2); }
.reminder-item-title{ font-weight:700; font-size:14px; }
.reminder-item-meta{ font-size:12.5px; color:var(--ink-dim); }
.reminder-empty{ padding:14px 12px; font-size:13.5px; color:var(--ink-dim); }

/* ---------- dashboard reminders ---------- */
.dash-reminders{
  background:var(--sage-tint); border-radius:var(--radius); padding:14px 18px; margin-bottom:18px;
}
.dash-reminders h3{ font-size:15px; margin-bottom:10px; }
.dash-reminder-list{ display:flex; flex-direction:column; gap:2px; }
.dash-reminder-item{
  display:flex; align-items:baseline; gap:12px; padding:8px 4px; border-radius:8px; color:inherit;
}
.dash-reminder-item:hover{ background:rgba(255,255,255,.5); }
.dash-reminder-days{
  font-family:'IBM Plex Mono',monospace; font-size:12px; font-weight:700; color:var(--sage);
  min-width:52px; flex-shrink:0;
}
.dash-reminder-title{ font-weight:600; font-size:14px; }
.dash-reminder-meta{ font-size:13px; color:var(--ink-dim); margin-left:auto; }

/* ---------- messages: thread list ---------- */
.thread-list{ display:flex; flex-direction:column; gap:10px; }
.thread-row{
  display:flex; align-items:center; gap:14px; width:100%; text-align:left;
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:14px 16px; transition:box-shadow .15s, border-color .15s;
}
.thread-row:hover{ box-shadow:var(--shadow-sm); border-color:var(--ink-dim); }
.thread-row.unread{ border-color:var(--lantern); background:var(--lantern-tint); }
.thread-row .avatar{
  width:38px; height:38px; border-radius:50%; background:var(--sage); color:#fff; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px;
  font-family:'Fraunces',serif;
}
.thread-row-body{ flex:1; min-width:0; display:flex; flex-direction:column; gap:2px; }
.thread-row-top{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; font-size:14.5px; }
.thread-row-when{ font-size:11.5px; color:var(--ink-dim); flex-shrink:0; }
.thread-row-sub{ font-size:12.5px; color:var(--ink-dim); }
.thread-row-preview{
  font-size:13.5px; color:var(--ink-dim); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.thread-row.unread .thread-row-preview{ color:var(--ink); font-weight:500; }
.thread-unread-dot{ width:9px; height:9px; border-radius:50%; background:var(--lantern); flex-shrink:0; }

/* ---------- messages: thread view ---------- */
.thread-pane{
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column; background:var(--linen);
}
.thread-messages{
  display:flex; flex-direction:column; gap:12px;
  padding:22px; max-height:52vh; min-height:220px; overflow-y:auto;
}
.bubble-row{ display:flex; flex-direction:column; max-width:78%; }
.bubble-row.mine{ align-self:flex-end; align-items:flex-end; }
.bubble-row.theirs{ align-self:flex-start; align-items:flex-start; }
.bubble{
  background:var(--linen-2); border:1px solid var(--line); border-radius:16px;
  padding:10px 14px; font-size:14.5px; line-height:1.45; position:relative; word-break:break-word;
}
.bubble-row.mine .bubble{ background:var(--sage-tint); border-color:var(--sage-tint); }
.bubble-time{ font-size:10.5px; color:var(--ink-dim); margin-top:4px; padding:0 2px; }
.bubble-flag{
  display:inline-flex; align-items:center; gap:3px; background:none; border:none; padding:0; margin-top:6px;
  font-size:10.5px; color:var(--ink-dim);
}
.bubble-flag svg{ width:10px; height:10px; }
.bubble-flag:hover{ color:var(--danger); }
.thread-composer{
  display:flex; gap:10px; align-items:flex-end; padding:14px 16px;
  border-top:1px solid var(--line); background:var(--linen-2);
}
.thread-composer textarea{
  flex:1; resize:none; border:1px solid var(--line); border-radius:12px; padding:10px 12px;
  font-family:'Inter',sans-serif; font-size:14.5px; min-height:42px; max-height:120px; background:var(--linen);
}
.thread-composer textarea:focus{ outline:none; border-color:var(--sage); }

/* ---------- travel requests board ---------- */
.request-list{ display:flex; flex-direction:column; gap:10px; }
.request-card{
  background:var(--linen); border:1px solid var(--line); border-radius:var(--radius);
  padding:16px; box-shadow:var(--shadow-sm);
}
.request-card-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:14px; }
.request-card-head h3{ font-size:18px; margin-bottom:4px; }
.request-card-head .meta{ font-size:13px; color:var(--ink-dim); }
.region-tag{
  background:var(--sage-tint); color:var(--sage); border-radius:999px; padding:4px 12px;
  font-size:11.5px; font-weight:700; white-space:nowrap; flex-shrink:0;
}
.request-card-foot{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-top:4px; }

/* ---------- reunion RSVP + attendees ---------- */
.rsvp-row{ display:flex; gap:8px; flex-wrap:wrap; }
.rsvp-btn{
  background:var(--linen-2); border:1px solid var(--line); color:var(--ink-dim);
  border-radius:999px; padding:9px 18px; font-size:13.5px; font-weight:600;
  transition:all .15s;
}
.rsvp-btn:hover{ border-color:var(--ink-dim); color:var(--ink); }
.rsvp-btn.active.going{ background:var(--sage); border-color:var(--sage); color:#ffffff; }
.rsvp-btn.active.maybe{ background:var(--lantern); border-color:var(--lantern); color:#ffffff; }
.rsvp-btn.active.not_going{ background:var(--ink-dim); border-color:var(--ink-dim); color:#ffffff; }
.attendee-list{ display:flex; flex-wrap:wrap; gap:8px; }
.attendee-chip{
  background:var(--sage-tint); color:var(--sage); border-radius:999px;
  padding:6px 14px; font-size:13px; font-weight:600;
}

/* ---------- reunion wall ---------- */
.comment-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:16px; }
.comment-item{ border-bottom:1px solid var(--line); padding-bottom:14px; }
.comment-item:last-child{ border-bottom:none; padding-bottom:0; }
.comment-head{ display:flex; align-items:center; gap:8px; margin-bottom:4px; }
.comment-author{ font-weight:700; font-size:14px; }
.comment-time{ color:var(--ink-dim); font-size:12.5px; }
.comment-delete-btn{
  margin-left:auto; background:none; border:none; color:var(--ink-dim);
  font-size:18px; line-height:1; cursor:pointer; padding:0 2px;
}
.comment-delete-btn:hover{ color:var(--danger); }
.comment-body{ font-size:14.5px; line-height:1.55; white-space:pre-wrap; }
.comment-form{ display:flex; gap:10px; align-items:flex-end; }
.comment-form textarea{
  flex:1; resize:vertical; min-height:44px; border:1px solid var(--line);
  border-radius:var(--radius-sm, 10px); padding:10px 12px; font:inherit; font-size:14px;
  background:var(--linen-2);
}

@media (max-width:860px){
  .wrap{ padding:0 32px; }
  .event-row, .grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:1fr; }
  .ecosystem-card{ flex-basis:calc(50% - 7px); max-width:none; }
  .navlinks{ display:none; }
  .navauth{ display:none; }
  .mobile-menu-btn{ display:flex; align-items:center; justify-content:center; }
  .detail-layout{ grid-template-columns:1fr; }
  .booking-panel{ position:static; }
  .map-layout{ grid-template-columns:1fr; }
  .how-layout{ grid-template-columns:1fr; }
  .demo-frame{ position:static; max-width:420px; }
  .testimonial-row{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .wrap{ padding:0 22px; }
  .event-row, .grid{ grid-template-columns:1fr; }
  .search .divider{ display:none; }
  .navauth{ width:100%; justify-content:flex-start; gap:8px; }
  .navauth .btn{ padding:8px 14px; font-size:13.5px; }
  .userchip span:last-child{ display:none; }
  .compare-strip{ grid-template-columns:1fr; }
  .testimonial-row{ grid-template-columns:1fr; }
  .ecosystem-card{ flex-basis:100%; max-width:none; }
}
