/* Wanderglint — wgl-main.css
   Brand: Warm editorial travel — Fraunces serif + Inter sans + amber + cream
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --brand-navy:       #1C2B3A;
  --brand-dark-alt:   #243344;
  --amber:            #D97706;
  --amber-aa-light:   #B45309;
  --amber-aa-dark:    #FBBF24;
  --cream:            #F5F0E8;
  --bg-light:         #FAF8F4;
  --bg-white:         #FFFFFF;

  --fg-light-1:       #1C2B3A;
  --fg-light-2:       #4B5563;
  --fg-dark-1:        #F5F0E8;
  --fg-dark-2:        #9CA3AF;

  --font-display:     'Fraunces', Georgia, serif;
  --font-body:        'Inter', system-ui, sans-serif;
  --font-mono:        'JetBrains Mono', 'Courier New', monospace;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-card: 0 2px 16px rgba(28,43,58,0.08);
  --shadow-lift: 0 8px 32px rgba(28,43,58,0.14);

  --container:   1200px;
  --gutter:      clamp(24px, 5vw, 80px);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-light-1);
  background: var(--bg-white);
}
body.wgl-page--dark-top { background: var(--brand-navy); }
body.wgl-page--light-top { background: var(--bg-light); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-family: var(--font-body); font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

.wgl-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wgl-section--light .wgl-eyebrow,
.wgl-section--cream .wgl-eyebrow,
.wgl-section--white .wgl-eyebrow { color: var(--amber-aa-light); }
.wgl-section--dark .wgl-eyebrow,
.wgl-footer .wgl-eyebrow { color: var(--amber-aa-dark); }

/* ─── Layout helpers ─────────────────────────────────────────── */
.wgl-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wgl-section--light  { background: var(--bg-light); }
.wgl-section--cream  { background: var(--cream); }
.wgl-section--white  { background: var(--bg-white); }
.wgl-section--dark   { background: var(--brand-navy); }

/* ─── Buttons ────────────────────────────────────────────────── */
.wgl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.wgl-btn--primary {
  background: var(--amber);
  color: var(--bg-white);
  border-color: var(--amber);
}
.wgl-btn--primary:hover {
  background: #c96d04;
  border-color: #c96d04;
  box-shadow: 0 4px 16px rgba(217,119,6,0.35);
}
.wgl-btn--ghost-dark {
  background: transparent;
  color: var(--fg-dark-1);
  border-color: rgba(245,240,232,0.4);
}
.wgl-btn--ghost-dark:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--fg-dark-1);
}
.wgl-btn--ghost-light {
  background: transparent;
  color: var(--fg-light-1);
  border-color: rgba(28,43,58,0.3);
}
.wgl-btn--ghost-light:hover {
  background: rgba(28,43,58,0.06);
  border-color: var(--fg-light-1);
}
.wgl-btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* ─── NAV ─────────────────────────────────────────────────────── */
.wgl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0;
}
.wgl-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* Dark-top page: nav transparent at top, solid on scroll */
body.wgl-page--dark-top .wgl-nav { background: transparent; }
body.wgl-page--dark-top .wgl-nav--scrolled { background: var(--brand-navy); box-shadow: 0 2px 16px rgba(0,0,0,0.2); }

/* Light-top pages: always solid */
body.wgl-page--light-top .wgl-nav { background: var(--bg-white); box-shadow: 0 1px 0 rgba(28,43,58,0.08); }

/* Logo */
.wgl-nav__logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.wgl-nav__logo img { height: 36px; width: auto; max-width: 180px; }

/* Links */
.wgl-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 32px;
}
.wgl-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
/* Colors: dark-top = white links; light-top = navy links */
body.wgl-page--dark-top .wgl-nav__link { color: rgba(245,240,232,0.85); }
body.wgl-page--dark-top .wgl-nav__link:hover { color: var(--fg-dark-1); }
body.wgl-page--light-top .wgl-nav__link { color: var(--fg-light-1); }
body.wgl-page--light-top .wgl-nav__link:hover { color: var(--amber-aa-light); }

/* CTA secondary (Sign in) */
.wgl-nav__sign-in {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-right: 16px;
  white-space: nowrap;
}
body.wgl-page--dark-top .wgl-nav__sign-in { color: rgba(245,240,232,0.75); }
body.wgl-page--dark-top .wgl-nav__sign-in:hover { color: var(--fg-dark-1); }
body.wgl-page--light-top .wgl-nav__sign-in { color: var(--fg-light-2); }
body.wgl-page--light-top .wgl-nav__sign-in:hover { color: var(--fg-light-1); }

/* Hamburger */
.wgl-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.wgl-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
body.wgl-page--dark-top .wgl-nav__hamburger span { background: var(--fg-dark-1); }
body.wgl-page--light-top .wgl-nav__hamburger span { background: var(--fg-light-1); }

/* Mobile menu */
.wgl-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 24px var(--gutter) 32px;
  box-shadow: 0 8px 32px rgba(28,43,58,0.12);
  z-index: 99;
}
.wgl-nav__mobile-menu.is-open { display: block; }
.wgl-nav__mobile-menu .wgl-nav__link {
  display: block;
  padding: 12px 0;
  color: var(--fg-light-1);
  border-bottom: 1px solid rgba(28,43,58,0.08);
  font-size: 1rem;
}
.wgl-nav__mobile-menu .wgl-nav__link:hover { color: var(--amber-aa-light); }
.wgl-nav__mobile-menu .wgl-nav__sign-in {
  display: block;
  padding: 12px 0;
  color: var(--fg-light-2);
  margin-top: 8px;
  font-size: 1rem;
  margin-right: 0;
}
.wgl-nav__mobile-menu .wgl-btn { margin-top: 16px; width: 100%; justify-content: center; }

@media (max-width: 820px) {
  .wgl-nav__links { display: none; }
  .wgl-nav__sign-in { display: none; }
  .wgl-nav__btn { display: none; }
  .wgl-nav__hamburger { display: flex; }
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.wgl-footer {
  background: var(--brand-navy);
  color: var(--fg-dark-1);
  padding: 72px 0 0;
}
.wgl-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.wgl-footer__brand-logo { margin-bottom: 12px; }
.wgl-footer__brand-logo img { height: 32px; width: auto; max-width: 160px; }
.wgl-footer__tagline { font-size: 0.9375rem; color: var(--fg-dark-2); line-height: 1.5; margin-bottom: 8px; }
.wgl-footer__location { font-size: 0.875rem; color: var(--fg-dark-2); }
.wgl-footer__col-heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dark-2);
  margin-bottom: 20px;
}
.wgl-footer__links { display: flex; flex-direction: column; gap: 12px; }
.wgl-footer__links a {
  font-size: 0.9375rem;
  color: rgba(245,240,232,0.75);
  transition: color 0.2s;
}
.wgl-footer__links a:hover { color: var(--fg-dark-1); }
.wgl-footer__bar {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.wgl-footer__copy { font-size: 0.875rem; color: var(--fg-dark-2); }
.wgl-footer__cookie-pref {
  font-size: 0.875rem;
  color: var(--fg-dark-2);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.wgl-footer__cookie-pref:hover { color: var(--amber-aa-dark); text-decoration-color: var(--amber-aa-dark); }

@media (max-width: 768px) {
  .wgl-footer__grid { grid-template-columns: 1fr 1fr; }
  .wgl-footer__col:first-child { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .wgl-footer__grid { grid-template-columns: 1fr; }
  .wgl-footer__col:first-child { grid-column: auto; }
}

/* ─── HERO (dark index) ───────────────────────────────────────── */
.wgl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.wgl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wgl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wgl-hero__scrim-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--brand-navy) 0%, rgba(28,43,58,0.6) 35%, rgba(28,43,58,0.45) 65%, rgba(28,43,58,0.95) 100%);
  z-index: 1;
}
.wgl-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px var(--gutter) 80px;
  width: 100%;
}
.wgl-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-aa-dark);
  margin-bottom: 20px;
}
.wgl-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--fg-dark-1);
  max-width: 760px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.wgl-hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245,240,232,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.wgl-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Chat mock floating card */
.wgl-hero__chat-preview {
  background: rgba(245,240,232,0.96);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 520px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.wgl-chat__msg {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.wgl-chat__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.wgl-chat__avatar--user { background: var(--brand-navy); color: var(--fg-dark-1); }
.wgl-chat__avatar--bot { background: var(--amber); color: white; }
.wgl-chat__bubble {
  flex: 1;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 10px 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fg-light-1);
}
.wgl-chat__bubble--user { background: var(--brand-navy); color: var(--fg-dark-1); border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md); }
.wgl-chat__bubble--bot { background: var(--bg-white); }
.wgl-chat__itinerary { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.wgl-chat__itin-block {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: var(--fg-light-1);
  border-left: 3px solid var(--amber);
}
.wgl-chat__itin-block .wgl-chat__itin-label {
  font-weight: 600;
  color: var(--amber-aa-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.wgl-chat__itin-block .wgl-chat__itin-status {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
}

/* ─── PHILOSOPHY STRIP ───────────────────────────────────────── */
.wgl-philosophy { padding: 80px 0; }
.wgl-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.wgl-philosophy__col { position: relative; padding-top: 24px; }
.wgl-philosophy__rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 20px;
}
.wgl-philosophy__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--fg-light-1);
  margin-bottom: 12px;
}
.wgl-philosophy__italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--fg-light-2);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .wgl-philosophy__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── PRODUCT PREVIEW ────────────────────────────────────────── */
.wgl-product-preview { padding: 96px 0; }
.wgl-product-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wgl-product-preview__heading { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; color: var(--fg-light-1); margin-bottom: 16px; }
.wgl-product-preview__sub { font-size: 1.0625rem; color: var(--fg-light-2); line-height: 1.65; margin-bottom: 28px; }
.wgl-product-preview__cta-link { color: var(--amber-aa-light); font-weight: 600; text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
.wgl-product-preview__cta-link:hover { text-decoration-color: var(--amber-aa-light); }

/* User bubble in product preview */
.wgl-preview__prompt {
  background: var(--brand-navy);
  color: var(--fg-dark-1);
  border-radius: var(--radius-md) var(--radius-md) 0 var(--radius-md);
  padding: 18px 22px;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}
.wgl-preview__prompt::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber-aa-dark);
  position: absolute;
  top: -4px;
  left: 12px;
  line-height: 1;
}

/* Itinerary cards */
.wgl-itinerary-cards { display: flex; flex-direction: column; gap: 12px; }
.wgl-itin-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.wgl-itin-card__day {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber-aa-light);
  background: rgba(217,119,6,0.1);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
}
.wgl-itin-card__title { font-size: 0.9375rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 4px; }
.wgl-itin-card__desc { font-size: 0.875rem; color: var(--fg-light-2); line-height: 1.5; }
.wgl-itin-card__confirmed {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.wgl-product-preview__text {}
.wgl-product-preview__mock {}
@media (max-width: 900px) {
  .wgl-product-preview__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── TRUST SIGNALS ──────────────────────────────────────────── */
.wgl-trust { padding: 80px 0; }
.wgl-trust__testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.wgl-trust__card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.wgl-trust__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg-light-1);
  line-height: 1.7;
  margin-bottom: 20px;
}
.wgl-trust__name { font-size: 0.875rem; font-weight: 600; color: var(--fg-light-1); }
.wgl-trust__location { font-size: 0.8125rem; color: var(--fg-light-2); }
.wgl-trust__meta {
  text-align: center;
  border-top: 1px solid rgba(28,43,58,0.08);
  padding-top: 32px;
}
.wgl-trust__trips { font-size: 0.9375rem; color: var(--fg-light-2); margin-bottom: 8px; }
.wgl-trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber-aa-light);
  background: rgba(217,119,6,0.08);
  padding: 6px 16px;
  border-radius: 100px;
}
@media (max-width: 900px) {
  .wgl-trust__testimonials { grid-template-columns: 1fr; }
}

/* ─── FEATURES HIGHLIGHTS ────────────────────────────────────── */
.wgl-features-grid { padding: 80px 0; }
.wgl-features-grid__heading { text-align: center; margin-bottom: 48px; }
.wgl-features-grid__heading h2 { color: var(--fg-light-1); margin-bottom: 12px; }
.wgl-features-grid__heading p { color: var(--fg-light-2); font-size: 1.0625rem; max-width: 580px; margin: 0 auto; }
.wgl-features-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wgl-feature-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wgl-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
}
.wgl-feature-card__glyph { font-size: 1.5rem; margin-bottom: 16px; color: var(--amber); }
.wgl-feature-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 12px; }
.wgl-feature-card__desc { font-size: 0.9375rem; color: var(--fg-light-2); line-height: 1.65; }
@media (max-width: 900px) {
  .wgl-features-grid__cards { grid-template-columns: 1fr; }
}

/* ─── CTA BAND (dark) ────────────────────────────────────────── */
.wgl-cta-band {
  background: var(--brand-navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.wgl-cta-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.wgl-cta-band__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg-dark-1);
  margin-bottom: 16px;
}
.wgl-cta-band__subhead { font-size: 1.0625rem; color: var(--fg-dark-2); margin-bottom: 36px; }
.wgl-cta-band__svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

/* ─── SUB-PAGE HERO ──────────────────────────────────────────── */
.wgl-subhero {
  padding-top: 120px;
  padding-bottom: 72px;
}
.wgl-subhero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wgl-subhero--split .wgl-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wgl-subhero__text {}
.wgl-subhero__eyebrow { color: var(--amber-aa-light); margin-bottom: 16px; }
.wgl-subhero__h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--fg-light-1); margin-bottom: 20px; line-height: 1.15; }
.wgl-subhero__sub { font-size: 1.0625rem; color: var(--fg-light-2); line-height: 1.65; max-width: 520px; }
.wgl-subhero__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.wgl-subhero__img img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .wgl-subhero--split .wgl-subhero__inner { grid-template-columns: 1fr; }
  .wgl-subhero__img { order: -1; }
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.wgl-steps { padding: 80px 0; }
.wgl-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(28,43,58,0.08);
}
.wgl-step:last-child { border-bottom: none; }
.wgl-step__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  padding-top: 6px;
}
.wgl-step__body {}
.wgl-step__h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; color: var(--fg-light-1); margin-bottom: 16px; }
.wgl-step__copy { font-size: 1.0625rem; color: var(--fg-light-2); line-height: 1.7; max-width: 600px; }
.wgl-step__mock { margin-top: 32px; }

/* Inline itinerary mock in steps */
.wgl-step__itin-mock {
  background: var(--bg-light);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 480px;
}
.wgl-step__itin-mock-header {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-aa-light);
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .wgl-step { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.wgl-faq { padding: 80px 0; }
.wgl-faq__heading { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 600; color: var(--fg-light-1); margin-bottom: 40px; }
.wgl-faq__list { max-width: 760px; }
.wgl-faq__item { border-bottom: 1px solid rgba(28,43,58,0.1); }
.wgl-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-light-1);
  cursor: pointer;
  gap: 16px;
}
.wgl-faq__question:hover { color: var(--amber-aa-light); }
.wgl-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(28,43,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--fg-light-2);
  transition: transform 0.3s, border-color 0.2s;
}
.wgl-faq__item.is-open .wgl-faq__icon { transform: rotate(45deg); border-color: var(--amber); color: var(--amber); }
.wgl-faq__answer { display: none; padding: 0 0 20px; }
.wgl-faq__item.is-open .wgl-faq__answer { display: block; }
.wgl-faq__answer p { color: var(--fg-light-2); line-height: 1.7; }

/* ─── PRICING ─────────────────────────────────────────────────── */
.wgl-pricing-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 64px;
  overflow: hidden;
  margin-top: 68px;
}
.wgl-pricing-hero__bg { position: absolute; inset: 0; }
.wgl-pricing-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.wgl-pricing-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,240,232,0.85) 0%, rgba(245,240,232,0.95) 100%); }
.wgl-pricing-hero__content { position: relative; z-index: 2; }
.wgl-pricing-hero__h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--fg-light-1); max-width: 640px; }

.wgl-pricing-tiers { padding: 80px 0; }
.wgl-pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.wgl-tier-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.wgl-tier-card--highlight {
  border-color: var(--amber);
  box-shadow: 0 4px 24px rgba(217,119,6,0.18);
  position: relative;
}
.wgl-tier-card--highlight::before {
  content: 'Most popular';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--amber);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.wgl-tier-card__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 4px; }
.wgl-tier-card__tagline { font-size: 0.9rem; color: var(--fg-light-2); margin-bottom: 24px; }
.wgl-tier-card__price { margin-bottom: 8px; }
.wgl-tier-card__price-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--fg-light-1); }
.wgl-tier-card__price-mo { font-size: 1rem; color: var(--fg-light-2); }
.wgl-tier-card__price-annual { font-size: 0.875rem; color: var(--fg-light-2); margin-bottom: 28px; }
.wgl-tier-card__features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.wgl-tier-card__feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--fg-light-1);
  line-height: 1.5;
}
.wgl-tier-card__check { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.wgl-tier-card__cta .wgl-btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .wgl-pricing-tiers__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.wgl-about-story { padding: 96px 0; }
.wgl-about-story__inner { max-width: 760px; }
.wgl-about-story__h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--fg-light-1); margin-bottom: 32px; }
.wgl-about-story__body { font-size: 1.0625rem; color: var(--fg-light-2); line-height: 1.75; }
.wgl-about-story__body p + p { margin-top: 20px; }

.wgl-team-section { padding: 80px 0; }
.wgl-team-section__heading { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 600; color: var(--fg-light-1); margin-bottom: 48px; }
.wgl-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.wgl-team-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wgl-team-card__photo { aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.wgl-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.wgl-team-card__info { padding: 20px 20px 24px; }
.wgl-team-card__name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 4px; }
.wgl-team-card__role { font-size: 0.875rem; font-weight: 600; color: var(--amber-aa-light); margin-bottom: 12px; }
.wgl-team-card__bio { font-size: 0.9rem; color: var(--fg-light-2); line-height: 1.6; }
@media (max-width: 900px) {
  .wgl-team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wgl-team-grid { grid-template-columns: 1fr; }
}

.wgl-values-section { padding: 80px 0; }
.wgl-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.wgl-value {
  border-left: 3px solid var(--amber);
  padding-left: 24px;
}
.wgl-value__quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; font-weight: 600; color: var(--fg-light-1); line-height: 1.4; margin-bottom: 12px; }
.wgl-value__desc { font-size: 0.9375rem; color: var(--fg-light-2); line-height: 1.65; }
@media (max-width: 768px) {
  .wgl-values-grid { grid-template-columns: 1fr; }
}

.wgl-about-scene { padding: 0 0 80px; }
.wgl-about-scene__img { border-radius: var(--radius-lg); overflow: hidden; }
.wgl-about-scene__img img { width: 100%; height: auto; display: block; }
.wgl-about-scene__caption { font-size: 0.875rem; color: var(--fg-light-2); text-align: center; margin-top: 12px; font-style: italic; }

/* ─── BLOG INDEX ─────────────────────────────────────────────── */
.wgl-blog-index { padding: 48px 0 96px; }
.wgl-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 64px;
}
.wgl-blog-featured__img { overflow: hidden; }
.wgl-blog-featured__img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.wgl-blog-featured__body { padding: 40px 40px 40px 0; }
.wgl-blog-featured__tag { display: inline-block; background: rgba(217,119,6,0.1); color: var(--amber-aa-light); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.wgl-blog-featured__title { font-family: var(--font-display); font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 600; color: var(--fg-light-1); margin-bottom: 12px; line-height: 1.3; }
.wgl-blog-featured__summary { font-size: 1rem; color: var(--fg-light-2); line-height: 1.65; margin-bottom: 16px; }
.wgl-blog-featured__meta { font-size: 0.875rem; color: var(--fg-light-2); }

@media (max-width: 768px) {
  .wgl-blog-featured { grid-template-columns: 1fr; }
  .wgl-blog-featured__body { padding: 24px; }
  .wgl-blog-featured__img img { min-height: 240px; }
}

.wgl-blog-grid-heading { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 32px; }
.wgl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.wgl-blog-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.wgl-blog-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.wgl-blog-card__img-wrap { overflow: hidden; }
.wgl-blog-card__img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.wgl-blog-card__body { padding: 20px; }
.wgl-blog-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.wgl-blog-card__tag { font-size: 0.7rem; font-weight: 600; color: var(--amber-aa-light); background: rgba(217,119,6,0.1); padding: 2px 8px; border-radius: 100px; }
.wgl-blog-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 8px; line-height: 1.4; }
.wgl-blog-card__summary { font-size: 0.875rem; color: var(--fg-light-2); line-height: 1.6; margin-bottom: 12px; }
.wgl-blog-card__meta { font-size: 0.8125rem; color: var(--fg-light-2); display: flex; justify-content: space-between; align-items: center; }
.wgl-blog-card__read-more { font-size: 0.875rem; font-weight: 600; color: var(--amber-aa-light); }
.wgl-blog-card:hover .wgl-blog-card__read-more { color: var(--amber); }

@media (max-width: 900px) {
  .wgl-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wgl-blog-grid { grid-template-columns: 1fr; }
}

/* ─── BLOG ARTICLE ────────────────────────────────────────────── */
.wgl-blog-article { padding: 140px 0 80px; }
.wgl-blog-article__header { max-width: 760px; margin: 0 auto 40px; padding: 0 var(--gutter); }
.wgl-blog-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.wgl-blog-article__tag { font-size: 0.75rem; font-weight: 600; color: var(--amber-aa-light); background: rgba(217,119,6,0.1); padding: 3px 10px; border-radius: 100px; }
.wgl-blog-article__title { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--fg-light-1); margin-bottom: 16px; line-height: 1.2; }
.wgl-blog-article__meta { font-size: 0.9rem; color: var(--fg-light-2); display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.wgl-blog-article__author { font-weight: 600; }
.wgl-blog-article__cover-wrap { max-width: 960px; margin: 0 auto 48px; padding: 0 var(--gutter); }
.wgl-blog-article__cover { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
body.wgl-page--light-top .wgl-blog-article__body { color: var(--fg-light-1); }
.wgl-blog-article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: 1.0625rem;
  line-height: 1.8;
}
body.wgl-page--light-top .wgl-blog-article__body h2 { font-family: var(--font-display); font-size: 1.625rem; font-weight: 600; color: var(--fg-light-1); margin: 40px 0 16px; }
body.wgl-page--light-top .wgl-blog-article__body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--fg-light-1); margin: 32px 0 12px; }
body.wgl-page--light-top .wgl-blog-article__body p { color: var(--fg-light-2); margin-bottom: 20px; }
body.wgl-page--light-top .wgl-blog-article__body ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
body.wgl-page--light-top .wgl-blog-article__body li { color: var(--fg-light-2); margin-bottom: 8px; }
body.wgl-page--light-top .wgl-blog-article__body a { color: var(--amber-aa-light); text-decoration: underline; }
body.wgl-page--light-top .wgl-blog-article__body blockquote { border-left: 4px solid var(--amber); padding-left: 20px; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--fg-light-1); margin: 28px 0; }

.wgl-article-cta {
  padding: 56px 0;
  text-align: center;
}
.wgl-article-cta__inner { max-width: 480px; margin: 0 auto; padding: 0 var(--gutter); }
.wgl-article-cta__heading { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 20px; }

.wgl-article-related { padding: 64px 0; }
.wgl-article-related__heading { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 28px; }
.wgl-article-related .wgl-blog-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .wgl-article-related .wgl-blog-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.wgl-contact-hero { padding: 120px 0 64px; }
.wgl-contact-hero__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.wgl-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.wgl-contact-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.wgl-contact-card__icon { font-size: 1.25rem; color: var(--amber); margin-bottom: 12px; }
.wgl-contact-card__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-light-2); margin-bottom: 6px; }
.wgl-contact-card__value { font-size: 0.9375rem; color: var(--fg-light-1); font-weight: 500; }
.wgl-contact-card__value a { color: var(--amber-aa-light); }
@media (max-width: 768px) {
  .wgl-contact-cards { grid-template-columns: 1fr; }
}

.wgl-contact-form-section { padding: 64px 0 80px; }
.wgl-contact-form-inner { max-width: 600px; }
.wgl-contact-form { display: flex; flex-direction: column; gap: 20px; }
.wgl-field label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 6px; }
.wgl-field input,
.wgl-field textarea {
  width: 100%;
  background: var(--bg-white);
  border: 1.5px solid rgba(28,43,58,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--fg-light-1);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.wgl-field input:focus,
.wgl-field textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,119,6,0.12); }
.wgl-field textarea { resize: vertical; min-height: 140px; }

/* ─── AUTH PAGES ─────────────────────────────────────────────── */
.wgl-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px var(--gutter);
  background: var(--bg-light);
}
.wgl-auth-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lift);
}
.wgl-auth-card__logo { display: flex; justify-content: center; margin-bottom: 32px; }
.wgl-auth-card__logo img { height: 36px; width: auto; }
.wgl-auth-card__heading { font-family: var(--font-display); font-size: 1.625rem; font-weight: 600; color: var(--fg-light-1); text-align: center; margin-bottom: 28px; }
.wgl-auth-form { display: flex; flex-direction: column; gap: 18px; }
.wgl-auth-form .wgl-field label { color: var(--fg-light-1); }
.wgl-auth-form .wgl-field input { background: var(--bg-light); }
.wgl-auth-card__submit .wgl-btn { width: 100%; justify-content: center; }
.wgl-auth-card__links { margin-top: 20px; text-align: center; }
.wgl-auth-card__links a,
.wgl-auth-card__links p { font-size: 0.9rem; color: var(--fg-light-2); }
.wgl-auth-card__links a { color: var(--amber-aa-light); text-decoration: underline; }

/* ─── LEGAL PAGES ────────────────────────────────────────────── */
.wgl-legal-page { padding: 120px 0 96px; }
.wgl-legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wgl-legal-page .legal-article h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--fg-light-1); margin-bottom: 8px; }
.wgl-legal-page .legal-meta { font-size: 0.875rem; color: var(--fg-light-2); margin-bottom: 4px; }
.wgl-legal-page .legal-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid rgba(28,43,58,0.1); }
.wgl-legal-page .legal-article section { margin-bottom: 36px; }
.wgl-legal-page .legal-article h2 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 12px; }
.wgl-legal-page .legal-article h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--fg-light-1); margin-bottom: 8px; margin-top: 20px; }
.wgl-legal-page .legal-article p { font-size: 0.9375rem; color: var(--fg-light-2); line-height: 1.75; margin-bottom: 12px; }
.wgl-legal-page .legal-article ul { padding-left: 24px; list-style: disc; margin-bottom: 12px; }
.wgl-legal-page .legal-article li { font-size: 0.9375rem; color: var(--fg-light-2); line-height: 1.7; margin-bottom: 6px; }
.wgl-legal-page .legal-article a { color: var(--amber-aa-light); text-decoration: underline; }
.wgl-legal-page .legal-article address { font-style: normal; font-size: 0.9375rem; color: var(--fg-light-2); line-height: 1.8; }
.wgl-legal-page .legal-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 16px 0; }
.wgl-legal-page .legal-table th { background: var(--cream); padding: 10px 12px; text-align: left; font-weight: 600; color: var(--fg-light-1); border-bottom: 2px solid rgba(28,43,58,0.1); }
.wgl-legal-page .legal-table td { padding: 10px 12px; border-bottom: 1px solid rgba(28,43,58,0.06); color: var(--fg-light-2); }

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--brand-navy);
  color: var(--fg-dark-1);
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.5;
  min-width: 200px;
}
.cookie-banner__text a { color: var(--amber-aa-dark); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__btn { padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none; font-family: var(--font-body); }
.cookie-banner__btn--primary { background: var(--amber); color: white; }
.cookie-banner__btn--primary:hover { background: #c96d04; }

/* ─── MISC HELPERS ───────────────────────────────────────────── */
.wgl-section-pad { padding: 80px 0; }
.wgl-section-pad-sm { padding: 56px 0; }
.wgl-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wgl-fade-in.visible { opacity: 1; transform: none; }

/* Features page travel modes */
.wgl-travel-modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.wgl-travel-mode-card {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.wgl-travel-mode-card__icon { font-size: 1.5rem; margin-bottom: 10px; color: var(--amber); }
.wgl-travel-mode-card__name { font-weight: 600; font-size: 0.9375rem; color: var(--fg-light-1); margin-bottom: 6px; }
.wgl-travel-mode-card__desc { font-size: 0.875rem; color: var(--fg-light-2); line-height: 1.5; }
@media (max-width: 900px) {
  .wgl-travel-modes { grid-template-columns: repeat(2, 1fr); }
}

/* Destinations tag cloud */
.wgl-destinations-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.wgl-dest-tag {
  background: var(--bg-white);
  border: 1px solid rgba(28,43,58,0.12);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--fg-light-2);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.wgl-dest-tag:hover { border-color: var(--amber); color: var(--amber-aa-light); }
