:root {
  --brand-teal: #1F6466;
  --brand-teal-deep: #174E50;
  --brand-yellow: #F5C14E;
  --brand-amber: #F5A623;
  --brand-amber-h: #e09516;
  --ivory: #FBF8F2;
  --cream: #F7F2EC;
  --cream-border: #E8DDD0;
  --ink: #1a1a1a;
  --ink-2: #3c3530;
  --muted: #7a6a55;
  --muted-2: #a89880;
  --hairline: #f0ece6;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html,body { background: var(--ivory); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { font-weight: 300; line-height: 1.6; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ======== SHARED UTILITIES ======== */
.section-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--ink);
}
.section-sub {
  font-size: 0.95rem;
  color: #555;
  max-width: 560px;
  margin-top: 10px;
}

.btn-primary {
  display: inline-block;
  background: var(--brand-amber);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--brand-amber-h); transform: translateY(-1px); }

.btn-secondary {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--muted); border-color: var(--muted); }

.btn-ghost {
  font-size: 0.82rem;
  color: var(--ink);
  padding: 10px 18px;
  border: 1px solid var(--cream-border);
  border-radius: 50px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--cream); border-color: var(--muted-2); }

.btn-ghost-dark {
  font-size: 0.82rem;
  color: var(--ink);
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { background: var(--ink); color: #fff; }

/* ======== HEADER ======== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.site-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-2);
}
.site-header-top .header-link { color: var(--brand-teal); font-weight: 500; }
.site-header-top .header-link:hover { text-decoration: underline; }
.header-utilities { display: flex; gap: 10px; align-items: center; }
.header-utilities .divider { color: #ccc; }
.header-utilities a:hover { color: var(--brand-teal); }

.site-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 40px;
}
.logo img { height: 44px; width: auto; }

.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a .caret { font-size: 0.7em; color: var(--muted-2); margin-left: 4px; }
.main-nav a:hover { color: var(--brand-teal); }

.header-cta { display: flex; gap: 10px; align-items: center; }

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  background: var(--brand-teal-deep);
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,78,80,0.55) 0%, rgba(23,78,80,0.35) 40%, rgba(23,78,80,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 32px 40px;
  text-align: center;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.92;
  font-weight: 300;
}
.hero-search {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  background: rgba(255,255,255,0.98);
  border-radius: 70px;
  padding: 8px 8px 8px 12px;
  max-width: 900px;
  width: 100%;
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  gap: 0;
}
.hs-field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 18px;
  text-align: left;
}
.hs-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hs-input {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 2px 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  text-overflow: ellipsis;
}
.hs-input:invalid, .hs-input option[disabled] { color: var(--muted-2); }
.hs-divider { width: 1px; background: var(--hairline); margin: 10px 0; }
.hs-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand-amber);
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hs-submit:hover { background: var(--brand-amber-h); transform: translateY(-1px); }
.hs-submit svg { color: #fff; }

/* ======== HERO SEARCH V2 ======== */
.hero-search-v2 {
  flex-direction: column;
  border-radius: 18px;
  padding: 26px 28px 24px;
  max-width: 980px;
  gap: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  align-items: stretch;
}
.hs2-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  text-align: center;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.hs2-selects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.hs2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.hs2-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}
.hs2-input {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 10px 34px 10px 14px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%238a7a66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  width: 100%;
  transition: border-color 0.15s;
}
.hs2-input:focus { outline: none; border-color: var(--brand-amber); }
.hs2-input option[value=""] { color: var(--muted-2); }

.hs2-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hs2-travelers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hs2-trav-label { font-size: 0.85rem; color: var(--ink); font-weight: 500; }
.hs2-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s;
}
.hs2-step:hover { background: var(--cream); border-color: var(--brand-amber); }
.hs2-trav-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  min-width: 14px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.hs2-seg {
  display: inline-flex;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.hs2-seg-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 7px 16px;
  border-radius: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.hs2-seg-btn.is-active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.hs2-seg-btn:not(.is-active):hover { color: var(--ink); }

.hs2-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink);
  padding: 0;
}
.hs2-switch-knob {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 20px;
  background: var(--muted-2);
  transition: background 0.2s;
  flex-shrink: 0;
}
.hs2-switch-knob::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.hs2-switch.is-on .hs2-switch-knob { background: var(--brand-amber); }
.hs2-switch.is-on .hs2-switch-knob::after { transform: translateX(14px); }

.hs2-submit {
  align-self: center;
  background: var(--brand-amber);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.hs2-submit:hover { background: var(--brand-amber-h); transform: translateY(-1px); }

@media (max-width: 820px) {
  .hs2-selects { grid-template-columns: repeat(2, 1fr); }
  .hs2-controls { flex-direction: column; align-items: stretch; }
  .hs2-seg { flex-wrap: wrap; justify-content: center; }
}

.press-strip {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 22px 32px;
  background: rgba(251,248,242,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.press-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.press-logo { font-family: var(--serif); font-weight: 500; color: var(--ink); letter-spacing: 0.02em; }
.press-forbes { font-size: 1.3rem; font-style: italic; }
.press-bbc { font-family: var(--sans); font-weight: 700; background: var(--ink); color: #fff; padding: 3px 8px; font-size: 0.8rem; letter-spacing: 0.1em; }
.press-ap { font-size: 0.95rem; letter-spacing: 0.08em; }
.press-divider { color: #ccc; }
.press-stars { color: var(--brand-amber); letter-spacing: 2px; }
.press-rating { color: var(--ink); font-weight: 500; }

/* ======== EXPERIENCE ======== */
.experience { max-width: 1200px; margin: 0 auto; padding: 90px 32px 80px; }
.experience .section-kicker { color: var(--muted-2); letter-spacing: 0.22em; }
.xp-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.005em;
  max-width: 700px;
  margin-bottom: 60px;
}
.xp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.xp-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.xp-media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.xp-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
  padding-left: 4px;
}
.xp-play:hover { transform: translate(-50%, -50%) scale(1.05); background: #fff; }
.xp-media-caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.xp-copy { padding-top: 40px; }
.xp-body {
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.xp-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-amber);
  border-bottom: 1px solid var(--brand-amber);
  padding-bottom: 2px;
  margin-top: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.xp-link:hover { color: var(--brand-amber-h); border-color: var(--brand-amber-h); }
.xp-link-simple {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  margin-top: 0;
}
.xp-link-simple span { transition: transform 0.2s; }
.xp-link-simple:hover span { transform: translateX(3px); }
.xp-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.xp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
}
.xp-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.xp-stat-num .plus { color: var(--brand-amber); }
.xp-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.ai-header {
  margin-top: 90px;
  margin-bottom: 32px;
  text-align: left;
}
.ai-header + .always-includes { margin-top: 0; }
.ai-header .section-kicker {
  color: var(--muted-2);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.ai-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 900px;
  margin: 0;
}

.always-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 90px;
  background: #fff;
  border: 1px solid var(--hairline);
  gap: 0;
  min-height: 560px;
}
.ai-image { position: relative; min-height: 560px; overflow: hidden; }
.ai-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; animation: aiFade 0.4s ease; }
@keyframes aiFade { from { opacity: 0; } to { opacity: 1; } }
.ai-counter { font-family: var(--serif); font-size: 1rem; color: var(--ink); padding: 0; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.ai-counter span { color: var(--muted-2); font-size: 0.85em; }
.ai-copy-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.ai-copy-top .ai-kicker { margin-bottom: 0; }
.ai-copy {
  padding: 72px 64px 56px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.ai-copy .ai-title, .ai-copy .ai-body { animation: aiFade 0.4s ease; }
.ai-body-wrap { flex: 1 1 auto; }
.ai-carousel { margin-top: auto; padding-top: 48px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.ai-dots { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.ai-dot { display: flex; align-items: baseline; gap: 14px; padding: 12px 0; text-align: left; color: var(--muted); font-size: 0.8rem; border-top: 1px solid rgba(0,0,0,0.08); transition: color 0.2s, padding 0.2s; cursor: pointer; }
.ai-dot:hover { color: var(--ink); padding-left: 4px; }
.ai-dot.is-active { color: var(--ink); }
.ai-dot.is-active { border-top-color: var(--brand-amber); }
.ai-dot-num { font-size: 0.68rem; color: var(--muted-2); letter-spacing: 0.08em; font-variant-numeric: tabular-nums; }
.ai-dot.is-active .ai-dot-num { color: var(--brand-amber); }
.ai-dot-label { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.ai-nav { display: flex; gap: 8px; flex-shrink: 0; }
.ai-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--cream-border); background: #fff; color: var(--ink); font-size: 1rem; transition: background 0.2s, border-color 0.2s, color 0.2s; cursor: pointer; }
.ai-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.ai-kicker { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-teal); margin-bottom: 18px; }
.ai-title { font-family: var(--serif); font-weight: 400; font-size: 2rem; line-height: 1.15; margin-bottom: 22px; color: var(--ink); max-width: 440px; }
.ai-body { font-size: 0.98rem; color: var(--ink-2); line-height: 1.8; max-width: 440px; }

/* ======== HIGHLIGHTED DESTINATIONS ======== */
.highlighted { max-width: 1200px; margin: 0 auto; padding: 80px 32px 80px; }
.hl-head2 {
  margin-bottom: 36px;
}
.hl-head2-titles { display: flex; flex-direction: column; }

.hl-head-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.hl-head-arrow:hover { background: #faf7f2; border-color: #e5dfd4; transform: translateX(-2px); }

.hl-head-upnext {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 50px;
  padding: 10px 20px 10px 22px;
  font-family: var(--sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, padding 0.2s, border-color 0.2s;
}
.hl-head-upnext:hover { background: #faf7f2; border-color: #e5dfd4; padding-right: 26px; }
.hl-head-upnext .hl-upnext-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hl-head-upnext .hl-upnext-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}
.hl-head-upnext svg { color: var(--brand-amber); }

.hl-title2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 8px; letter-spacing: -0.005em; }
.hl-sub2 { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-2); font-weight: 300; }

.hl-stage {
  display: block;
  border: 1px solid var(--hairline);
  background: #fff;
  overflow: hidden;
}
.hl-stage-main {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--cream);
}
.hl-stage-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: hlFade 0.5s ease;
}
@keyframes hlFade { from { opacity: 0; } to { opacity: 1; } }

.hl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.hl-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hl-arrow-prev { left: 20px; }
.hl-arrow-next { right: 20px; }

.hl-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 40px;
  font-variant-numeric: tabular-nums;
  z-index: 2;
}
.hl-counter span { opacity: 0.7; }

.hl-gallery {
  padding: 16px 20px;
  background: #FAF7F1;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hl-gallery-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  text-align: center;
}
.hl-gallery-strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}
.hl-gthumb {
  flex-shrink: 0;
  width: 100px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.hl-gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-gthumb:hover { opacity: 1; transform: translateY(-1px); }
.hl-gthumb.is-active { opacity: 1; border-color: var(--brand-amber); }

.hl-caption {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--hairline);
  border-top: none;
  background: #fff;
}
.hl-caption-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.hl-caption-nav {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hl-caption-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.hl-upnext-overlay {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 50px;
  padding: 12px 20px 12px 22px;
  font-family: var(--sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, padding 0.2s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 3;
}
.hl-upnext-overlay:hover { background: #fff; transform: translateY(-50%) translateX(-3px); padding-right: 26px; }
.hl-upnext-overlay .hl-upnext-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hl-upnext-overlay .hl-upnext-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}
.hl-upnext-overlay svg { color: var(--brand-amber); }
.hl-caption-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.hl-caption-country {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hl-caption-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.05;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.hl-caption-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-2);
  margin-top: 2px;
}
.hl-caption-body { font-size: 0.95rem; color: var(--ink-2); line-height: 1.65; margin: 0; max-width: 760px; }

.hl-meta2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 28px;
  border: 1px solid var(--hairline);
  border-top: none;
  background: #fff;
  flex-wrap: wrap;
}
.hl-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 44px;
  flex: 1;
}
.hl-meta-label2 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hl-meta-value2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.hl-meta-sub2 {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}
.hl-cta2 { flex-shrink: 0; }

.hl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.hl-dot2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.hl-dot2:hover { background: var(--muted-2); }
.hl-dot2.is-active { background: var(--brand-amber); width: 22px; border-radius: 4px; }

@media (max-width: 900px) {
  .hl-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hl-cta2 { width: 100%; text-align: center; }
  .hl-caption-row { flex-direction: column; }
  .hl-gallery { flex-direction: column; align-items: flex-start; }
}

/* ======== MAP ======== */
.map-section { max-width: 1400px; margin: 0 auto; padding: 40px 32px 80px; }
.map-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; gap: 20px; }

.map-toolbar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-bottom: none;
}
.map-search {
  position: relative;
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: 50px;
  padding: 6px 14px 6px 38px;
}
.map-search-icon { position: absolute; left: 14px; width: 14px; height: 14px; color: var(--muted); }
.map-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 8px 0;
  outline: none;
  color: var(--ink);
}
.map-filter-group { display: flex; align-items: center; gap: 10px; }
.map-filter-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.map-pills { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.map-pill {
  font-size: 0.76rem;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--cream-border);
  padding: 6px 12px;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.map-pill:hover { background: var(--cream); }
.map-pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.map-select {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--cream-border);
  padding: 6px 24px 6px 12px;
  border-radius: 50px;
  appearance: none;
  cursor: pointer;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  border: 1px solid var(--hairline);
  background: #fff;
  min-height: 600px;
}
.map-canvas {
  position: relative;
  overflow: hidden;
  background: #EBE4D6;
  cursor: grab;
  user-select: none;
}
.map-canvas:active { cursor: grabbing; }
.map-canvas-inner {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-country-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  fill: #9a8a6e;
  text-transform: uppercase;
  pointer-events: none;
}

.map-pin { cursor: pointer; transition: opacity 0.2s; }
.map-pin.is-dim { opacity: 0.25; }
.pin-dot { fill: var(--brand-teal); stroke: #fff; stroke-width: 2; transition: r 0.2s; }
.pin-dot-inner { fill: #fff; }
.map-pin.is-future .pin-dot { fill: var(--muted-2); stroke-dasharray: 2 2; }
.pin-halo { fill: var(--brand-teal); opacity: 0.2; animation: pinPulse 1.6s ease-out infinite; }
.pin-halo-out { fill: none; stroke: var(--brand-amber); stroke-width: 2; opacity: 0.8; }
.map-pin.is-selected .pin-dot { fill: var(--brand-amber); }
@keyframes pinPulse { 0% { opacity: 0.3; r: 10; } 100% { opacity: 0; r: 22; } }

.map-tooltip-svg { pointer-events: none; }
.tip-title { fill: #fff; font-family: var(--serif); font-size: 15px; font-weight: 500; }
.tip-sub { fill: #ddd; font-size: 10px; letter-spacing: 0.05em; }

.map-controls {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.map-ctl {
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  color: var(--ink);
  border-radius: 4px;
  transition: background 0.2s;
}
.map-ctl:hover { background: var(--cream); }
.map-ctl-text { font-size: 0.9rem; }

.map-legend {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.75rem;
  color: var(--ink-2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.legend-row { display: flex; align-items: center; gap: 8px; margin: 2px 0; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--hairline); }
.legend-dot-sig { background: var(--brand-teal); }
.legend-dot-short { background: var(--brand-amber); }
.legend-dot-future { background: var(--muted-2); }

.map-result-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--ink-2);
  border-radius: 4px;
}
.map-result-count strong { color: var(--ink); font-weight: 600; }

/* Side panel */
.map-side { border-left: 1px solid var(--hairline); background: #fff; overflow-y: auto; max-height: 720px; }
.side-empty { padding: 32px 28px; }
.side-empty-kicker { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.side-empty-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.side-empty-body { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.side-list { display: flex; flex-direction: column; }
.side-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  text-align: left;
  border-top: 1px solid var(--hairline);
  transition: background 0.2s;
}
.side-list-item:hover { background: var(--cream); padding-left: 8px; padding-right: 8px; margin-left: -8px; margin-right: -8px; }
.sli-name { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.sli-country { font-size: 0.74rem; color: var(--muted); margin-top: 2px; }
.sli-price { font-size: 0.85rem; font-weight: 500; color: var(--ink-2); }
.sli-future { color: var(--muted-2); font-style: italic; font-weight: 400; }
.side-list-more { padding: 12px 0; font-size: 0.75rem; color: var(--muted); text-align: center; border-top: 1px solid var(--hairline); }
.side-list-empty { padding: 20px 0; font-size: 0.85rem; color: var(--muted); font-style: italic; }

.side-panel { display: flex; flex-direction: column; }
.side-img { position: relative; }
.side-img img { width: 100%; height: 220px; object-fit: cover; }
.side-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.side-close:hover { background: #fff; }
.side-img-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(26,26,26,0.85);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.side-content { padding: 24px 28px 28px; }
.side-eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.side-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; margin-bottom: 10px; color: var(--ink); }
.side-tagline { font-family: var(--serif); font-style: italic; font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.5; margin-bottom: 22px; }
.side-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; padding: 18px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); margin-bottom: 22px; }
.side-meta-grid > div:last-child { grid-column: 1 / -1; }
.side-meta-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.side-meta-val { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 500; }
.side-meta-sub { font-family: var(--sans); font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.side-meta-small { font-size: 0.9rem; }
.side-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ======== COMMUNITY V2 ======== */
.community-v2 { background: #D9E5E3; padding: 70px 32px; }
.community-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.cv2-kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-teal); margin-bottom: 16px; }
.cv2-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.15; color: var(--ink); margin-bottom: 22px; letter-spacing: -0.005em; }
.cv2-intro { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 16px; }
.cv2-list { list-style: none; padding: 0; margin: 0 0 22px; }
.cv2-list li { font-size: 0.95rem; color: var(--ink); padding: 4px 0 4px 18px; position: relative; }
.cv2-list li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--ink); position: absolute; left: 0; top: 13px; }
.cv2-outro { font-size: 0.95rem; color: var(--ink); }

.cv2-video {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.cv2-video > img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.cv2-video-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 14px 16px; }
.cv2-video-head, .cv2-video-foot { display: flex; justify-content: space-between; align-items: center; }
.cv2-video-brand { display: flex; align-items: center; gap: 8px; }
.cv2-yt-logo { width: 28px; height: 28px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; }
.cv2-video-title { color: #fff; font-size: 0.82rem; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,0.6); }
.cv2-video-channel { color: rgba(255,255,255,0.8); font-size: 0.72rem; text-shadow: 0 1px 2px rgba(0,0,0,0.6); }
.cv2-video-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.cv2-origin-txt { font-family: var(--serif); font-weight: 700; font-style: italic; font-size: clamp(2.5rem, 7vw, 4.2rem); color: #fff; letter-spacing: -0.02em; text-shadow: 0 3px 10px rgba(0,0,0,0.4); line-height: 1; }
.cv2-play { position: absolute; width: 56px; height: 40px; border-radius: 8px; background: rgba(220,0,0,0.92); display: flex; align-items: center; justify-content: center; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cv2-founder-badge { background: #fff; color: var(--brand-teal); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; padding: 5px 14px; border-radius: 50px; margin-top: 60px; }
.cv2-video-icons { display: flex; gap: 6px; }
.cv2-yt-btn { width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; }
.cv2-watch-on { color: #fff; font-size: 0.74rem; display: inline-flex; align-items: center; background: rgba(0,0,0,0.55); padding: 4px 10px; border-radius: 4px; }

@media (max-width: 860px) {
  .community-v2-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ======== FOOTER V2 ======== */
.site-footer-v2 { background: #174D50; color: #fff; }
.footer-v2-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 50px;
  align-items: start;
}
.footer-v2-signup { max-width: 380px; }
.footer-v2-h { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: #fff; line-height: 1.5; margin-bottom: 20px; }
.f2-row { display: flex; gap: 12px; }
.f2-field { display: block; margin-bottom: 14px; flex: 1; }
.f2-field > span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.f2-field input { width: 100%; background: transparent; border: 1px solid rgba(255,255,255,0.35); color: #fff; padding: 10px 12px; font-family: inherit; font-size: 0.9rem; border-radius: 2px; }
.f2-field input:focus { outline: none; border-color: #fff; }
.f2-email-wrap { position: relative; }
.f2-email-wrap button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; padding: 4px; }
.f2-legal { font-size: 0.72rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin-top: 6px; }
.f2-legal a { color: var(--brand-amber); text-decoration: underline; }

.footer-v2-col { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.footer-v2-col a { font-size: 0.88rem; color: rgba(255,255,255,0.88); transition: color 0.2s; }
.footer-v2-col a:hover { color: #fff; }

.footer-v2-socials { display: flex; gap: 10px; flex-wrap: wrap; max-width: 200px; align-self: start; padding-top: 4px; }
.f2-soc { width: 36px; height: 36px; border-radius: 50%; background: #386A6D; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.f2-soc:hover { background: #4a7d80; }

.footer-v2-base { max-width: 1240px; margin: 0 auto; padding: 18px 40px 28px; font-size: 0.75rem; color: rgba(255,255,255,0.55); }

@media (max-width: 960px) {
  .footer-v2-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-v2-signup { grid-column: 1 / -1; max-width: none; }
  .footer-v2-socials { grid-column: 1 / -1; }
}

.ask-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  color: var(--ink-2);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 90;
  cursor: pointer;
}
.ask-pill-star { color: var(--brand-amber); }
.ask-pill-icon { color: var(--muted); }

/* ======== TWEAKS PANEL ======== */
.tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  font-size: 0.8rem;
  width: 260px;
}
.tweaks-panel h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin-bottom: 12px; }
.tweak-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid var(--hairline); }
.tweak-row:first-of-type { border-top: none; }
.tweak-row label { font-size: 0.78rem; color: var(--muted); }
.tweak-swatches { display: flex; gap: 6px; }
.tweak-swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s;
}
.tweak-swatch:hover { transform: scale(1.1); }
.tweak-swatch.is-active { border-color: var(--ink); }
.tweak-toggle { display: inline-flex; gap: 4px; }
.tweak-btn { padding: 4px 10px; font-size: 0.72rem; border: 1px solid var(--cream-border); border-radius: 50px; color: var(--ink-2); background: transparent; }
.tweak-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }


/* ======== ALL DESTINATIONS PAGE ======== */
.destinations-page { padding: 0 0 80px; }
.dp-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.dp-head { max-width: 780px; padding-top: 56px; padding-bottom: 8px; margin-bottom: 28px; }
.dp-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.dp-sub { font-size: 1rem; color: var(--ink-2); line-height: 1.7; max-width: 640px; }

/* Map */
.dp-map-wrap {
  background: #EBE4D6;
  margin: 36px 0 0;
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.dp-map {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 620px;
  max-height: 70vh;
}
.dp-map .map-svg { width: 100%; height: 100%; display: block; }
@media (max-width: 900px) { .dp-map { height: 460px; } }
.dp-map .map-svg { width: 100%; height: 100%; display: block; }
.dp-map-tooltip {
  position: absolute;
  transform: translate(-50%, -135%);
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
}
.dp-map-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: var(--ink);
}
.dp-mt-name { font-family: var(--serif); font-weight: 500; font-size: 0.95rem; }
.dp-mt-country { color: rgba(255,255,255,0.7); font-size: 0.72rem; }

/* Search bar */
.dp-searchbar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.dp-sb-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  min-width: 0;
}
.dp-sb-search { flex: 1.4; color: var(--muted); }
.dp-sb-search input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.dp-sb-search input::placeholder { color: var(--muted-2); }
.dp-sb-field select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  width: 100%;
  appearance: none;
  padding-right: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%238a7a66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.dp-sb-divider {
  width: 1px;
  align-self: stretch;
  background: var(--hairline);
  margin: 10px 0;
}
.dp-sb-submit {
  background: var(--brand-amber);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  margin-left: 8px;
}
.dp-sb-submit:hover { background: var(--brand-amber-h); transform: translateY(-1px); }

/* Filter row */
.dp-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dp-filter-count { font-size: 0.92rem; color: var(--ink-2); }
.dp-filter-count strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-right: 4px; }
.dp-seg { margin-left: auto; }

/* Grid */
.dp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  padding: 0;
  font-family: inherit;
}
.dp-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.1); border-color: var(--brand-amber); }
.dp-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.dp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dp-card:hover .dp-card-media img { transform: scale(1.05); }
.dp-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}
.dp-card-badge-alt { background: var(--brand-teal); color: #fff; }
.dp-card-badge-future { background: var(--ink); color: #fff; }
.dp-card-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.dp-card-country {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 6px;
}
.dp-card-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.dp-card-tagline {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.dp-card-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  margin-bottom: 16px;
}
.dp-card-meta-col { display: flex; flex-direction: column; gap: 2px; }
.dp-card-meta-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.dp-card-meta-value { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.dp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-amber);
  align-self: flex-start;
}
.dp-card-cta span { transition: transform 0.2s; }
.dp-card:hover .dp-card-cta span { transform: translateX(3px); }

.dp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Side peek panel */
.peek-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.4);
  z-index: 200;
  animation: peekFade 0.25s ease;
}
@keyframes peekFade { from { opacity: 0; } to { opacity: 1; } }

.peek {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(540px, 92vw);
  background: #fff;
  z-index: 201;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  animation: peekSlide 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes peekSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }

.peek-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.peek-close:hover { background: #fff; transform: scale(1.08); }

.peek-hero { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--cream); }
.peek-hero img { width: 100%; height: 100%; object-fit: cover; }
.peek-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.peek-country {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6B93B;
  margin-bottom: 8px;
}
.peek-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.peek-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  font-weight: 300;
}

.peek-body { padding: 28px 30px 40px; }

.peek-kv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 24px;
}
.peek-kv { display: flex; flex-direction: column; gap: 4px; }
.peek-kv-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.peek-kv-value {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.peek-kv-value small { font-size: 0.75rem; font-weight: 400; color: var(--muted); margin-left: 2px; }

.peek-sec { margin-bottom: 28px; }
.peek-h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.peek-sessions { display: flex; flex-direction: column; gap: 8px; }
.peek-session {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 4px;
}
.peek-session.is-waitlist { background: #faf6ee; opacity: 0.85; }
.peek-session-start { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.peek-session-range { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.peek-session-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-2);
}
.peek-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.peek-dot-a { background: #3F9D67; }
.peek-dot-w { background: #C27A2C; }
.peek-session-cta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.peek-session-cta:hover { background: var(--ink); color: #fff; }
.peek-session-cta.is-waitlist-cta { border-color: var(--cream-border); color: var(--muted); }
.peek-session-cta.is-waitlist-cta:hover { border-color: var(--ink); color: var(--ink); background: transparent; }

.peek-apts { display: flex; flex-direction: column; gap: 8px; }
.peek-apt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.peek-apt-type { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.peek-apt-sub { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.peek-apt-price { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.peek-apt-price span { font-family: var(--sans); font-size: 0.7rem; font-weight: 400; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-right: 4px; }

.peek-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  gap: 20px;
  flex-wrap: wrap;
}
.peek-go { display: inline-flex; align-items: center; gap: 8px; }
.peek-go span { transition: transform 0.2s; }
.peek-go:hover span { transform: translateX(3px); }
.peek-link {
  font-size: 0.85rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.peek-link:hover { color: var(--brand-amber); border-color: var(--brand-amber); }

@media (max-width: 1020px) {
  .dp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .dp-grid { grid-template-columns: 1fr; }
  .dp-searchbar { flex-direction: column; border-radius: 12px; padding: 8px; }
  .dp-sb-divider { display: none; }
  .dp-sb-field { width: 100%; padding: 12px; }
  .dp-sb-submit { width: 100%; margin: 6px 0 0; }
  .peek-session { grid-template-columns: 1fr; }
  .peek-kv-row { grid-template-columns: 1fr 1fr; }
}

/* ======== ALL DESTINATIONS - QUICK FILTER CHIPS ======== */
.dp-chips-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 0 8px;
  flex-wrap: wrap;
}
.dp-chips-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 10px;
  flex-shrink: 0;
}
.dp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.dp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.dp-chip:hover { border-color: var(--brand-amber); color: var(--ink); }
.dp-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.dp-chip-flag {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  filter: saturate(1.1);
}

/* ======== COUNTRY GROUPS ======== */
.dp-country-group { margin-top: 72px; }
.dp-country-group:first-of-type { margin-top: 44px; }
.dp-country-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.dp-country-flag { font-size: 1.5rem; line-height: 1; }
.dp-country-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
  margin: 0;
}
.dp-country-rule {
  flex: 1;
  height: 1px;
  background: transparent;
}
.dp-country-count {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .dp-chips-row { flex-direction: column; gap: 10px; }
  .dp-chips-label { padding-top: 0; }
}


/* ======== HL gallery overlay (v2) ======== */
.hl-gallery-overlay {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px;
  z-index: 3;
}
.hl-gallery-overlay .hl-gthumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.hl-gallery-overlay .hl-gthumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 10px;
}
.hl-gallery-overlay .hl-gthumb:hover { transform: translateY(-2px); }
.hl-gallery-overlay .hl-gthumb.is-active {
  border-color: var(--accent, #E89B3B);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.hl-stage-main { position: relative; }

/* hide old gallery label/strip if any legacy elements remain */
.hl-gallery { display: none !important; }


/* ======== TESTIMONIALS ======== */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 80px;
}
.testi-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.testi-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-amber, #E89B3B);
  margin-bottom: 14px;
  font-weight: 500;
}
.testi-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 400;
}
.testi-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.testi-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
.testi-photo {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--hairline);
  overflow: hidden;
}
.testi-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-tape {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 64px; height: 14px;
  background: rgba(255, 248, 224, 0.7);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 2px;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  display: none; /* subtle polaroid feel — off by default; flip to block to enable */
}
.testi-quote {
  margin: 0;
  padding: 28px 26px 18px;
  flex: 1;
  position: relative;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-wrap: pretty;
}
.testi-quote p { margin: 0; }
.testi-mark {
  color: var(--brand-amber, #E89B3B);
  margin-bottom: 10px;
  display: block;
}
.testi-attr {
  padding: 0 26px 26px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  margin-top: 6px;
}
.testi-name {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: var(--sans, inherit);
  font-style: normal;
}
.testi-meta {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.testi-dot { margin: 0 6px; opacity: 0.5; }
.testi-footer {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.testi-more, .testi-share {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color 150ms ease, color 150ms ease;
}
.testi-more:hover, .testi-share:hover {
  color: var(--brand-amber, #E89B3B);
  border-bottom-color: currentColor;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { padding: 72px 20px 60px; }
  .testi-footer { flex-direction: column; gap: 14px; }
}


/* ======== UPCOMING WEBINARS ======== */
.webinars {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 80px;
}
.webinars .section-kicker {
  color: var(--muted-2);
  letter-spacing: 0.22em;
}
.webinars-head {
  margin-bottom: 36px;
}
.webinars-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.webinars-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  font-weight: 300;
  margin: 0;
}
.webinars-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 4px;
}
.webinars-count {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.webinars-nav {
  display: flex;
  gap: 8px;
}
.wb-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cream-border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.wb-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.wb-arrow:active {
  transform: scale(0.96);
}
.webinars-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  padding: 4px 4px 20px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--muted-2) transparent;
}
.webinars-grid::-webkit-scrollbar { height: 8px; }
.webinars-grid::-webkit-scrollbar-track { background: var(--hairline); border-radius: 50px; }
.webinars-grid::-webkit-scrollbar-thumb { background: var(--muted-2); border-radius: 50px; }
.webinars-grid::-webkit-scrollbar-thumb:hover { background: var(--muted); }
.wb-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.wb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -18px rgba(14,30,37,0.22);
  border-color: transparent;
}
.wb-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.wb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.wb-card:hover .wb-img img {
  transform: scale(1.04);
}
.wb-img::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent, var(--brand-amber));
  z-index: 2;
}
.wb-azure      { --accent: #4A7A8C; }
.wb-amber      { --accent: var(--brand-amber); }
.wb-terracotta { --accent: #C8694E; }
.wb-olive      { --accent: #7A8660; }

.wb-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: 4px;
  padding: 9px 12px 10px;
  text-align: center;
  min-width: 62px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.25);
  z-index: 2;
  font-family: var(--sans);
  line-height: 1;
}
.wb-day {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--brand-amber));
  font-weight: 600;
  margin-bottom: 5px;
}
.wb-mo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.wb-yr {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.wb-tag {
  position: absolute;
  top: 20px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
}

.wb-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wb-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.wb-host {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 2px;
}
.wb-blurb {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.wb-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  margin-top: 6px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.wb-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.3;
}
.wb-meta-item svg {
  color: var(--accent, var(--brand-amber));
  flex-shrink: 0;
}
.wb-btn {
  align-self: flex-start;
  margin-top: 6px;
  padding: 10px 22px;
  border: 1.5px solid var(--brand-amber);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.wb-btn:hover {
  background: var(--brand-amber);
  color: #1a1a1a;
}

.webinars-foot {
  margin-top: 36px;
  text-align: center;
}
.wb-prevlink {
  font-size: 0.92rem;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s;
}
.wb-prevlink:hover {
  color: var(--brand-amber-h);
}

.wb-more {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px dashed var(--cream-border);
  border-radius: 6px;
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.wb-more:hover {
  background: #fff;
  border-color: var(--brand-amber);
  transform: translateY(-3px);
}
.wb-more-inner {
  max-width: 240px;
}
.wb-more-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--cream-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-amber);
  margin: 0 auto 18px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.wb-more:hover .wb-more-icon {
  background: var(--brand-amber);
  color: #fff;
  border-color: var(--brand-amber);
}
.wb-more-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  margin-bottom: 10px;
}
.wb-more-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 400;
}
.wb-more-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .webinars-grid { grid-auto-columns: minmax(280px, 320px); }
}
@media (max-width: 640px) {
  .webinars { padding: 20px 20px 60px; }
  .webinars-grid { grid-auto-columns: minmax(260px, 85vw); }
  .webinars-head { flex-direction: column; align-items: flex-start; }
}
