/* ============================================================
   Latin Travel — Shared Stylesheet
   Used on every page (homepage + country guides).
   Country-page-only styles live in country-guides.css.
   ============================================================ */

/* DESIGN TOKENS */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark: #1c1c1c;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --rust: #b85c2a;
  --cream: #f5f0e8;
  --mist: #d4cfc7;
  --white: #ffffff;
  --border-subtle: #2a2a2a;
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; }

/* ============================================================
   NAVIGATION (with Countries dropdown)
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.97); }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.12em; color: var(--gold); text-decoration: none; }
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links > li > a,
.nav-links > li > .nav-dropdown-trigger {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist);
  text-decoration: none; transition: color 0.2s;
  background: none; border: none; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-dropdown-trigger:hover,
.nav-links > li > .nav-dropdown-trigger[aria-expanded="true"] { color: var(--gold); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger::after {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.nav-dropdown-trigger[aria-expanded="true"]::after { transform: rotate(-135deg) translateY(2px); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.6rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 360px;
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid #2a2a2a;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Two-column dropdown layout */
.nav-dropdown-menu.nav-dropdown-cols {
  display: flex;
  flex-direction: row;
  min-width: 520px;
  padding: 0;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-dropdown:hover .nav-dropdown-menu.nav-dropdown-cols,
.nav-dropdown:focus-within .nav-dropdown-menu.nav-dropdown-cols,
.nav-dropdown.is-open .nav-dropdown-menu.nav-dropdown-cols {
  display: flex;
}
.nav-region-col {
  flex: 1;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 0;
}
.nav-region-col:first-child {
  border-right: 1px solid rgba(201, 168, 76, 0.12);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid #1c1c1c;
  transition: background 0.2s;
}
.nav-dropdown-menu li:last-child a { border-bottom: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible { background: rgba(201, 168, 76, 0.06); outline: none; }
.nav-country {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.nav-dropdown-menu a:hover .nav-country,
.nav-dropdown-menu a:focus-visible .nav-country { color: var(--gold); }
.nav-sections {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.55;
}
.nav-sections.is-coming { color: var(--gold); opacity: 0.7; }
.nav-region-header {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.85rem 1.5rem 0.35rem;
  pointer-events: none;
  opacity: 0.8;
}

/* HAMBURGER TOGGLE (mobile only) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 36px;
  height: 36px;
  z-index: 110;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 4px auto;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url("../images/machu-picchu.jpg"); background-size: cover; background-position: center 30%; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.1) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 3rem 5rem; max-width: 900px; animation: fadeUp 1.2s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ""; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 8rem); line-height: 0.92; letter-spacing: 0.04em; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 300; font-style: italic; color: var(--mist); max-width: 560px; line-height: 1.6; margin-bottom: 2.5rem; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--gold); color: var(--black); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; padding: 1rem 2rem; transition: background 0.2s, gap 0.2s; }
.hero-cta:hover { background: var(--gold-light); gap: 1.25rem; }
.hero-cta svg { width: 16px; height: 16px; }

/* ============================================================
   SHARED SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.8rem); letter-spacing: 0.05em; line-height: 1; color: var(--white); margin-bottom: 1.5rem; }

/* ============================================================
   HOMEPAGE — ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(15%); transition: filter 0.5s; }
.about-image:hover img { filter: grayscale(0%); }
.about-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 70%, var(--charcoal)); }
.about-text { background: var(--charcoal); padding: 6rem 4rem 6rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.about-body { font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.8; color: var(--mist); margin-bottom: 2rem; }
.credential-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.credential-list li { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--mist); display: flex; align-items: center; gap: 0.75rem; }
.credential-list li::before { content: ""; display: inline-block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   HOMEPAGE — FEATURES
   ============================================================ */
.features { background: var(--black); padding: 2.5rem 3rem 4rem; border-top: 1px solid #222; }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: #2a2a2a; border: 1px solid #2a2a2a; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--charcoal); padding: 2rem 2rem; transition: background 0.3s; position: relative; overflow: hidden; }
.feature-card::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
.feature-card:hover { background: #1e1e1e; }
.feature-card:hover::after { width: 100%; }
.feature-number { font-family: var(--font-display); font-size: 3.5rem; color: #2a2a2a; line-height: 1; margin-bottom: 1rem; transition: color 0.3s; }
.feature-card:hover .feature-number { color: #333; }
.feature-title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.06em; color: var(--white); margin-bottom: 0.75rem; line-height: 1.1; }
.feature-desc { font-size: 0.85rem; line-height: 1.7; color: var(--mist); }
.feature-badge { display: inline-block; margin-top: 1.25rem; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.25rem 0.7rem; opacity: 0.7; }
.feature-badge--link { text-decoration: none; transition: opacity 0.2s, background 0.2s; }
.feature-badge--link:hover { opacity: 1; background: rgba(201,168,76,0.08); }

/* ============================================================
   HOMEPAGE — ADVENTURE
   ============================================================ */
.adventure-strip { background: var(--charcoal); padding: 3.5rem 3rem; text-align: center; }
.adventure-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 900px; margin: 2rem auto 0; list-style: none; }
.adventure-tag { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); background: #222; border: 1px solid #333; padding: 0.6rem 1.2rem; transition: all 0.2s; }
.adventure-tag:hover { background: var(--rust); border-color: var(--rust); }

/* ============================================================
   HOMEPAGE — LEAD CAPTURE
   ============================================================ */
.lead-capture { background: var(--dark); padding: 4rem 3rem; text-align: center; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; }
.lead-capture .section-title { margin-bottom: 0.75rem; }
.lead-sub { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--mist); margin-bottom: 2rem; }
.lead-options { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 800px; margin: 0 auto 3rem; }
.lead-pill { background: transparent; border: 1px solid #3a3a3a; color: var(--mist); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.08em; padding: 0.7rem 1.4rem; cursor: pointer; transition: all 0.2s; }
.lead-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.lead-form { display: flex; max-width: 540px; margin: 0 auto; }
.lead-form input { flex: 1; background: #1a1a1a; border: 1px solid #333; border-right: none; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; padding: 1rem 1.25rem; outline: none; transition: border-color 0.2s; }
.lead-form input::placeholder { color: #555; }
.lead-form input:focus { border-color: var(--gold); }
.lead-form button { background: var(--gold); border: none; color: var(--black); font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 1.75rem; cursor: pointer; transition: background 0.2s; }
.lead-form button:hover { background: var(--gold-light); }

/* ============================================================
   HOMEPAGE — CONTACT
   ============================================================ */
.contact { background: var(--black); padding: 4rem 3rem; border-top: 1px solid #1e1e1e; }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-inner .section-title { margin-bottom: 0.75rem; }
.contact-sub { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--mist); margin-bottom: 2rem; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.contact-form label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.35rem; }
.contact-form input, .contact-form textarea { width: 100%; background: #111; border: 1px solid #2a2a2a; color: var(--white); font-family: var(--font-body); font-size: 0.95rem; padding: 0.9rem 1.1rem; outline: none; transition: border-color 0.2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #444; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: none; }
.contact-submit { background: var(--gold); border: none; color: var(--black); font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; padding: 1rem 2.5rem; cursor: pointer; transition: background 0.2s; align-self: flex-start; margin-top: 0.5rem; }
.contact-submit:hover { background: var(--gold-light); }
.contact-success { display: none; background: rgba(201,168,76,0.08); border: 1px solid var(--gold); color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; padding: 1rem 1.25rem; margin-top: 1rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); padding: 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #1e1e1e; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.12em; color: var(--gold); }
.footer-logo span { color: #444; }
.footer-tld { font-family: var(--font-body); font-size: 0.7rem; color: #444; letter-spacing: 0.15em; display: block; margin-top: 2px; }
.footer-note { font-size: 0.72rem; color: #444; letter-spacing: 0.08em; }

/* ============================================================
   UTILITIES
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }

  /* Mobile drawer */
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid #2a2a2a;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: -20px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a,
  .nav-links > li > .nav-dropdown-trigger {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #1c1c1c;
  }
  .nav-links > li:last-child > a { border-bottom: none; }

  /* Countries dropdown becomes accordion on mobile */
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    /* Disable hover/focus opening — only click toggle on mobile */
    max-height: 0;
    transform: none;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding: 0.25rem 0 2rem;
    -webkit-overflow-scrolling: touch;
  }
  .nav-dropdown-menu a {
    padding: 0.65rem 0 0.65rem 1rem;
    border-left: 1px solid #2a2a2a;
    border-bottom: none;
  }
  .nav-dropdown-menu.nav-dropdown-cols {
    flex-direction: column;
    min-width: 0;
  }
  .nav-region-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }
  .nav-dropdown.is-open .nav-dropdown-menu.nav-dropdown-cols {
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
  }
  .nav-country { font-size: 1rem; }
  .nav-sections { font-size: 0.55rem; }

  /* Backdrop when drawer is open */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99;
  }
  .nav-backdrop.is-visible { opacity: 1; visibility: visible; }

  /* Page sections */
  .hero-content { padding: 0 1.5rem 4rem; }
  .about { grid-template-columns: 1fr; }
  .about-image { height: 400px; }
  .about-text { padding: 3rem 1.5rem; }
  .features { padding: 3rem 1.5rem; }
  .adventure-strip { padding: 2.5rem 1.5rem; }
  .lead-capture { padding: 3rem 1.5rem; }
  .contact { padding: 3rem 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================================
   MOBILE DRAWER FIX — allow full country list to scroll
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    padding-bottom: 9rem;
    -webkit-overflow-scrolling: touch;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu.nav-dropdown-cols {
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 3rem;
  }

  .nav-dropdown-menu.nav-dropdown-cols {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* ============================================================
   IPAD / TABLET DROPDOWN FIX
   iPads often use the desktop nav width but still need a
   viewport-aware scrollable dropdown.
   ============================================================ */
@media (min-width: 769px) and (max-width: 1180px) {
  .nav-dropdown-menu.nav-dropdown-cols {
    position: fixed;
    top: 4.75rem;
    left: 50%;
    width: min(92vw, 760px);
    min-width: 0;
    max-height: calc(100dvh - 6rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-50%) translateY(-8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu.nav-dropdown-cols,
  .nav-dropdown:focus-within .nav-dropdown-menu.nav-dropdown-cols,
  .nav-dropdown.is-open .nav-dropdown-menu.nav-dropdown-cols {
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-menu a {
    padding: 0.7rem 1.25rem;
  }

  .nav-country {
    font-size: 1rem;
  }

  .nav-sections {
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .nav-region-header {
    padding: 0.75rem 1.25rem 0.3rem;
  }
}

/* ============================================================
   TEAM / FOUNDER / LEGACY — list normalisation
   Catches any <ul> inside cards regardless of class,
   using high specificity + !important to beat browser defaults.
   ============================================================ */

/* Kill browser bullets and indentation on ALL ul/li in cards */
.team-grid ul,
.team-grid li,
.team-card ul,
.team-card li,
.founder-card ul,
.founder-card li,
.legacy-content ul,
.legacy-content li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Style the ul container */
.team-grid ul,
.team-card ul,
.founder-card ul,
.legacy-content ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  margin-top: 1.25rem !important;
  padding-top: 1.25rem !important;
  border-top: 1px solid #2a2a2a !important;
}

/* Style each li */
.team-grid ul li,
.team-card ul li,
.founder-card ul li,
.legacy-content ul li {
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
  color: var(--mist) !important;
  line-height: 1.5 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Gold dash before each item — replaces the browser bullet */
.team-grid ul li::before,
.team-card ul li::before,
.founder-card ul li::before,
.legacy-content ul li::before {
  content: "" !important;
  display: inline-block !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 1px !important;
  background: var(--gold) !important;
  flex-shrink: 0 !important;
  margin-top: 0.55em !important;
}
