/* ──────────────────────────────────────────────────────────────────────────
   V2 marketplace design system — adapted from the Claude Design handoff
   (design_handoff_vrc_marketplace). Loaded after app.css on public pages.
   Tokens mirror tailwind.config.js; component classes are lifted from the
   prototype's styles.css with map-view / lookup-modal / tweaks omitted.
   ────────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #ffffff;
  --bg-2: #f7f7f5;
  --bg-3: #efefea;
  --ink: #161513;
  --ink-2: #4d4a45;
  --ink-3: #8a8580;
  --line: #e7e5e0;
  --line-soft: #f0eee9;
  --accent: #1f6e54;
  --accent-ink: #ffffff;
  --accent-soft: #e8f1ec;
  --accent-mid: #2d8a6a;
  --save: #d94c3d;
  --r-card: 14px;
  --r-input: 12px;
  --r-pill: 999px;
  --r-md: 10px;
  --shadow-sm: 0 1px 2px rgba(20,18,15,.04), 0 1px 1px rgba(20,18,15,.03);
  --shadow-md: 0 4px 16px rgba(20,18,15,.08), 0 1px 3px rgba(20,18,15,.04);
  --shadow-lg: 0 12px 40px rgba(20,18,15,.12), 0 4px 12px rgba(20,18,15,.06);
}

body.mkt {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

/* ───── glassmorphism helpers ───── */
.glass {
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ───── nav ───── */
.nav2 {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(231,229,224,0.7);
}
.nav2-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav2-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
.nav2-logo .mark {
  width: 32px; height: 32px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 9px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; letter-spacing: -0.04em;
}
.nav2-search-compact {
  justify-self: center;
  display: flex; align-items: center;
  border: 1px solid rgba(231,229,224,0.9);
  border-radius: var(--r-pill);
  padding: 5px 5px 5px 18px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: box-shadow .15s, background .15s;
  max-width: 480px; width: 100%;
  color: var(--ink);
}
.nav2-search-compact:hover,
.nav2-search-compact:focus-within { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.9); }
.nav2-search-compact input {
  flex: 1; border: 0; background: transparent;
  font-size: 13.5px; font-weight: 500; font-family: inherit;
  color: var(--ink); outline: none; box-shadow: none;
  padding: 7px 8px; min-width: 0;
}
.nav2-search-compact input:focus { outline: none; box-shadow: none; border: 0; }
.nav2-search-compact input::placeholder { color: var(--ink-3); }
.nav2-search-compact .go {
  background: var(--accent); color: var(--accent-ink);
  border: 0; border-radius: var(--r-pill);
  padding: 9px 14px;
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.nav2-search-compact .go:hover { background: #19593f; }
.nav2-right { display: flex; align-items: center; gap: 6px; }
.nav2-right .pill-link {
  background: transparent; border: 0;
  font-size: 13.5px; font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.nav2-right .pill-link:hover { background: var(--bg-2); }
.nav2-right .pill-cta {
  background: var(--accent); color: var(--accent-ink);
}
.nav2-right .pill-cta:hover { background: #19593f; }

/* ───── hero ───── */
.hero2 {
  background: linear-gradient(to bottom, var(--bg-2) 0%, var(--bg) 100%);
  padding: 56px 32px 24px;
  position: relative;
  overflow: hidden;
}
/* soft accent glow blobs behind the glass surfaces */
.hero2::before, .hero2::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero2::before {
  width: 480px; height: 480px;
  background: rgba(31,110,84,0.10);
  top: -180px; right: -120px;
}
.hero2::after {
  width: 360px; height: 360px;
  background: rgba(45,138,106,0.08);
  bottom: -160px; left: -100px;
}
.hero2-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.hero2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px 6px 8px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero2-eyebrow .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.hero2 h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  max-width: 880px;
  color: var(--ink);
}
.hero2 h1 .em { color: var(--accent); }
.hero2-sub {
  font-size: 18px; color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 640px; line-height: 1.45;
}

/* ───── big search ───── */
.search2 {
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.75);
  outline: 1px solid rgba(231,229,224,0.6);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  align-items: stretch;
  box-shadow: var(--shadow-md);
  max-width: 940px;
  position: relative;
}
.search2-cell {
  padding: 14px 22px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  border-radius: 20px;
  transition: background .15s;
}
.search2-cell:hover { background: var(--bg-2); }
.search2-cell:last-of-type { border-right: 0; }
.search2-cell .l {
  font-size: 11.5px; font-weight: 700;
  color: var(--ink); margin-bottom: 3px;
}
.search2-cell input,
.search2-cell select {
  border: 0; background: transparent;
  font-size: 14.5px; font-family: inherit;
  width: 100%; outline: none; padding: 0;
  color: var(--ink);
  appearance: none;
  box-shadow: none;
}
.search2-cell input:focus,
.search2-cell select:focus { box-shadow: none; outline: none; border: 0; }
.search2-cell input::placeholder { color: var(--ink-3); }
.search2-go {
  align-self: center; margin-right: 8px;
  background: var(--accent); color: var(--accent-ink);
  border: 0; border-radius: var(--r-pill);
  padding: 14px 22px;
  font-weight: 600; font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: background .15s;
}
.search2-go:hover { background: #19593f; }

/* reverse-lookup chip */
.reverse-chip {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 10px;
  font-size: 13px; color: var(--ink-2);
  cursor: pointer; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.reverse-chip:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.reverse-chip .icon {
  width: 22px; height: 22px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
}
.reverse-chip strong { color: var(--ink); font-weight: 600; }

/* Compact centered page-hero variant for utility/marketing pages */
.hero2-page { text-align: center; padding-bottom: 36px; }
.hero2-page h1 { font-size: clamp(32px, 4vw, 46px); margin-left: auto; margin-right: auto; }
.hero2-page .hero2-sub { margin-left: auto; margin-right: auto; }

/* ───── category strip ───── */
.cats {
  border-bottom: 1px solid rgba(231,229,224,0.7);
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  position: sticky;
  top: 61px; /* nav2 height: 14+32+14+1 */
  z-index: 40;
}
.cats-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cats-inner::-webkit-scrollbar { display: none; }
.cat {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer; white-space: nowrap;
  color: var(--ink-3);
  font-size: 12px; font-weight: 500;
  transition: all .12s;
  min-width: 84px;
  text-decoration: none;
}
.cat:hover { color: var(--ink); }
.cat.active { color: var(--ink); border-color: var(--ink); background: white; }
.cat .ico {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  font-size: 18px; opacity: 0.85;
}

/* ───── section ───── */
.sec { max-width: 1440px; margin: 0 auto; padding: 48px 32px; }
.sec-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px; gap: 24px;
}
.sec-head h2 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0; line-height: 1.1;
  color: var(--ink);
}
.sec-head p { margin: 6px 0 0; color: var(--ink-3); font-size: 14px; max-width: 480px; }
.sec-head .more {
  background: transparent; border: 0;
  font-weight: 600; font-size: 14px;
  color: var(--ink); cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: 4px;
  padding: 6px 0; white-space: nowrap;
}
.sec-head .more:hover { color: var(--accent); }

/* ───── company card ───── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 18px; }
.ccard {
  cursor: pointer;
  display: flex; flex-direction: column; gap: 10px;
  color: inherit; text-decoration: none;
}
.ccard-img {
  aspect-ratio: 1.05/1;
  background: var(--bg-3);
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.ccard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
/* Logo-only companies: contain the mark on a soft brand wash instead of cropping it */
.ccard-img img.fit-logo {
  object-fit: contain;
  padding: 16%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-2) 100%);
}
/* No imagery at all: branded initial tile */
.ccard-ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-2) 60%, var(--bg-3) 100%);
  color: var(--accent);
}
.ccard-ph .init {
  font-size: 56px; font-weight: 700; letter-spacing: -0.03em;
  opacity: 0.55; line-height: 1;
}
.ccard-ph .material-symbols-outlined {
  position: absolute; bottom: 14px; right: 14px;
  font-size: 20px; opacity: 0.35;
}
.ccard:hover .ccard-img img { transform: scale(1.03); }
.ccard-save {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer; color: white;
  font-size: 16px;
  transition: transform .15s;
  z-index: 2;
}
.ccard-save:hover { transform: scale(1.08); background: rgba(0,0,0,0.5); }
.ccard-save.saved { color: var(--save); }
.ccard-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 11.5px; font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-md);
}
.ccard-badge .green-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.ccard-verified {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px; font-weight: 600;
  padding: 5px 10px 5px 8px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 5px;
}
.ccard-verified .v {
  width: 14px; height: 14px;
  background: var(--accent); color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9px;
}
.ccard-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.ccard-row h3 {
  font-size: 15.5px; font-weight: 600; margin: 0;
  letter-spacing: -0.01em; line-height: 1.2;
  color: var(--ink);
}
.ccard-row .rating {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 13.5px; font-weight: 500; white-space: nowrap;
  color: var(--ink);
}
.ccard-loc { font-size: 13.5px; color: var(--ink-3); margin: 0; }
.ccard-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 2px; font-size: 13.5px;
}
.ccard-foot .props { color: var(--ink-3); }
.ccard-foot .save-amt { color: var(--accent); font-weight: 600; }

/* ───── destinations ───── */
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.dest-tile {
  cursor: pointer; position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  display: block; text-decoration: none;
}
.dest-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.dest-tile:hover img { transform: scale(1.05); }
.dest-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.dest-tile .label {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  color: white; z-index: 1;
}
.dest-tile .label .n { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.dest-tile .label .c { font-size: 12px; opacity: 0.85; margin-top: 2px; }

/* ───── trust strip ───── */
.trust3 { background: var(--bg-2); padding: 64px 32px; }
.trust3-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
}
.trust-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.trust-card .ico {
  width: 48px; height: 48px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.trust-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
.trust-card p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.trust-card .stat {
  font-size: 32px; font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
  margin-top: 4px;
}

/* ───── story block ───── */
.story-block {
  background: var(--ink); color: white;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 480px;
}
.story-img { background-size: cover; background-position: center; }
.story-body {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.story-body .eyebrow {
  font-size: 12px; font-weight: 600;
  color: var(--accent-mid);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.story-body h2 {
  font-size: 36px; font-weight: 600; margin: 0;
  letter-spacing: -0.02em; line-height: 1.05;
}
.story-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55; margin: 0; max-width: 440px;
}

/* ───── CTA band ───── */
.cta-band {
  background: var(--accent); color: white;
  padding: 72px 32px;
  margin-top: 16px;
}
.cta-band-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: center;
}
.cta-band h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600; letter-spacing: -0.025em;
  margin: 0 0 14px; line-height: 1.02;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 24px; max-width: 480px; line-height: 1.5;
}
.cta-band .ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn2 {
  border: 0; border-radius: var(--r-pill);
  padding: 14px 22px;
  font-weight: 600; font-size: 14.5px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s;
}
.btn2-light { background: white; color: var(--accent); }
.btn2-light:hover { background: rgba(255,255,255,0.92); }
.btn2-ghost-light {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn2-ghost-light:hover { border-color: white; }
.btn2-primary { background: var(--accent); color: white; }
.btn2-primary:hover { background: #19593f; }
.cta-band .checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.cta-band .checks li {
  display: flex; align-items: start; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.cta-band .checks .c {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  flex-shrink: 0; margin-top: 1px;
}

/* ───── footer ───── */
.foot2 {
  background: var(--bg-2);
  padding: 56px 32px 24px;
  border-top: 1px solid var(--line);
}
.foot2-inner { max-width: 1440px; margin: 0 auto; }
.foot2-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot2-brand h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.foot2-brand h3 .mark {
  width: 28px; height: 28px;
  background: var(--accent); color: white;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 13px;
}
.foot2-brand p { color: var(--ink-3); font-size: 14px; max-width: 360px; margin: 0; }
.foot2-col h4 {
  font-size: 13px; font-weight: 600;
  color: var(--ink); margin: 0 0 14px;
}
.foot2-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot2-col a {
  color: var(--ink-2);
  font-size: 13.5px;
  text-decoration: none;
  cursor: pointer;
}
.foot2-col a:hover { color: var(--accent); }
.foot2-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: var(--ink-3);
  flex-wrap: wrap; gap: 8px;
}
.foot2-news input {
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 13.5px; font-family: inherit;
  background: white; color: var(--ink);
  outline: none; width: 100%;
}
.foot2-news button {
  background: var(--accent); color: white;
  border: 0; border-radius: var(--r-pill);
  padding: 10px 18px;
  font-weight: 600; font-size: 13.5px;
  cursor: pointer; white-space: nowrap;
}
.foot2-news button:hover { background: #19593f; }

/* ───── search results ───── */
.results2 { max-width: 1440px; margin: 0 auto; padding: 24px 32px 64px; }
.results2-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px; gap: 24px; flex-wrap: wrap;
}
.results2-head h1 {
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0; line-height: 1.15;
  color: var(--ink);
}
.results2-head .count { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-chip {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 13.5px; font-weight: 500;
  cursor: pointer; color: var(--ink-2);
  text-decoration: none; display: inline-block;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: white; border-color: var(--ink); }

/* ───── company profile ───── */
.cp2 { max-width: 1280px; margin: 0 auto; padding: 32px 32px 80px; }
.cp2-crumbs {
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 16px;
  display: flex; gap: 6px; align-items: center;
}
.cp2-crumbs a {
  cursor: pointer; color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
}
.cp2-crumbs a:hover { text-decoration-color: var(--ink); }
.cp2-title-row {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 18px; gap: 24px;
}
.cp2-title-row h1 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600; letter-spacing: -0.025em;
  margin: 0 0 8px; line-height: 1.05;
  color: var(--ink);
}
.cp2-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px;
  font-size: 13.5px; color: var(--ink-2);
}
.cp2-meta .verified {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 4px 12px 4px 8px;
}
.cp2-meta .verified .v {
  width: 16px; height: 16px;
  background: var(--accent); color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px;
}
.cp2-actions { display: flex; gap: 8px; }
.cp2-actions button, .cp2-actions a {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 13.5px; font-weight: 600;
  cursor: pointer; color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.cp2-actions button:hover, .cp2-actions a:hover { border-color: var(--ink); }

.cp2-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2.4/1;
}
.cp2-gallery > div {
  background: var(--bg-3);
  overflow: hidden; position: relative;
}
.cp2-gallery > div:first-child { grid-row: span 2; }
.cp2-gallery img { width: 100%; height: 100%; object-fit: cover; }
.cp2-gallery.cp2-gallery-2 { grid-template-columns: 2fr 1fr; }

.cp2-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
.cp2-section {
  padding-bottom: 32px; margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.cp2-section:last-child { border-bottom: 0; }
.cp2-section h3 {
  font-size: 20px; font-weight: 600;
  margin: 0 0 12px; letter-spacing: -0.015em;
  color: var(--ink);
}
.cp2-section p {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.55; margin: 0;
}
.cp2-perks {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.cp2-perks li { display: flex; align-items: start; gap: 12px; font-size: 14.5px; }
.cp2-perks .c {
  width: 22px; height: 22px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  flex-shrink: 0; margin-top: 1px;
}

.cp2-booking {
  position: sticky;
  top: 92px;
  align-self: start;
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7);
  outline: 1px solid rgba(231,229,224,0.6);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.7);
}
.cp2-booking h4 {
  font-size: 18px; font-weight: 600;
  margin: 0 0 4px; letter-spacing: -0.015em;
  color: var(--ink);
}
.cp2-booking .sub { font-size: 13px; color: var(--ink-3); margin-bottom: 18px; }
.cp2-booking .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-2);
  font-size: 13.5px;
  margin-bottom: 8px;
}
.cp2-booking .row.direct {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.cp2-booking .row .src { color: var(--ink-2); font-weight: 500; }
.cp2-booking .row.direct .src { color: var(--accent); font-weight: 600; }
.cp2-booking .btn-book {
  width: 100%;
  background: var(--accent); color: white;
  border: 0; border-radius: var(--r-pill);
  padding: 14px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none;
  display: block; text-align: center;
}
.cp2-booking .btn-book:hover { background: #19593f; }
.cp2-booking .small {
  text-align: center;
  font-size: 12px; color: var(--ink-3);
  margin-top: 10px;
}

/* ───── responsive ───── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
  .cp2-body { grid-template-columns: 1fr; }
  .cp2-booking { position: static; }
  .foot2-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .nav2-inner { grid-template-columns: auto 1fr; padding: 12px 16px; }
  .nav2-search-compact { display: none; }
  .nav2-right { justify-self: end; }
  .nav2-right .pill-link.hide-sm { display: none; }
  .hero2 { padding: 36px 16px 20px; }
  .sec { padding: 32px 16px; }
  .trust3 { padding: 40px 16px; }
  .cta-band { padding: 48px 16px; }
  .foot2 { padding: 40px 16px 20px; }
  .results2 { padding: 16px 16px 48px; }
  .cp2 { padding: 20px 16px 56px; }
  .search2 { grid-template-columns: 1fr; }
  .search2-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .search2-go { margin: 10px; justify-content: center; }
  .trust3-inner, .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-block { grid-template-columns: 1fr; }
  .story-img { min-height: 280px; }
  .story-body { padding: 32px 24px; }
  .cp2-gallery { grid-template-columns: 1fr; grid-template-rows: none; aspect-ratio: 4/3; }
  .cp2-gallery > div:not(:first-child) { display: none; }
  .cp2-perks { grid-template-columns: 1fr; }
  .foot2-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ED-NAV-ADDITIONS — shared header: primary nav links + compact wordmark */
.nav2-links { display:flex; align-items:center; gap:2px; justify-self:center; }
.nav2-links a { font-size:13.5px; font-weight:500; color:var(--ink-2); text-decoration:none; padding:9px 13px; border-radius:var(--r-pill); white-space:nowrap; transition:color .12s, background .12s; }
.nav2-links a:hover { color:var(--ink); background:var(--bg-2); }
.nav2-logo .wordmark { font-weight:700; font-size:16px; letter-spacing:-.02em; color:var(--ink); }
.nav2-logo .wordmark .wm-soft { color:var(--ink-3); font-weight:600; }
.nav2-logo .mark { font-size:12px; letter-spacing:0; }
@media (max-width:899px){ .nav2-logo .wordmark{ display:none; } }
@media (max-width:767px){ .nav2-links{ display:none; } }

/* ED-NAV-FIX — prevent nav overflow on tablet widths (wordmark→monogram <1280, links→hamburger <1024) */
.nav2-inner { grid-template-columns: auto minmax(0, 1fr) auto; }
@media (max-width:1279px){ .nav2-logo .wordmark{ display:none; } }
@media (max-width:1023px){ .nav2-links{ display:none; } }
