/* ============================================================
   Baltimore — style.css
   Palette: sharp black editorial type, vivid yellow highlights,
   and quiet neutral surfaces.
   ============================================================ */

:root {
  --ink:           #000000;
  --ink-soft:      #3e3e3a;
  --line:          #dfdfd8;
  --line-strong:   #c9c9bf;
  --paper:         #ffffff;
  --paper-2:       #f6f6f1;
  --paper-3:       #eeeee6;
  --accent:        #F7CB00;
  --accent-ink:    #000000;
  --gold:          #F7CB00;
  --shadow:        0 1px 2px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lift:   0 2px 4px rgba(0,0,0,.08), 0 18px 42px rgba(0,0,0,.12);
  --shadow-soft:   0 4px 20px 0 rgba(33, 37, 41, 0.05);

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-serif:   "Lora", Georgia, serif;
  --font-sans:    "Barlow", system-ui, sans-serif;

  --wrap: 1180px;
  --gap:  24px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; width: 100%; background: #f2f2f2; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fbfbf7;
  line-height: 1.5;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pg-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease; }
a:hover { color: var(--accent-ink); }
::selection { background: var(--accent); color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 3vw, 28px); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* --- Reusable image frame --- */
.frame {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease, opacity .32s ease; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--wide   { aspect-ratio: 16 / 9; }

/* --- Category badge --- */
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 6px 10px 5px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.badge--gold { background: var(--gold); color: var(--ink); }
.badge--ink  { background: var(--ink); color: #fff; }

.kicker {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.kicker:hover,
.tag:hover { text-decoration-thickness: 5px; }

/* ============================================================
   TOP UTILITY BAR + MASTHEAD
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px clamp(18px, 3vw, 28px) 14px;
}
.utility {
  display: flex;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.utility--right { justify-content: flex-end; }
.utility a {
  position: relative;
  padding: 7px 10px 6px;
}
.utility a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.logo {
  max-width: 200px;
}

.burger {
  display: none;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  transition: background-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.burger:hover { background: var(--paper-2); }
.burger span {
  position: absolute;
  left: 10px;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  margin: 0;
  transition: top .24s cubic-bezier(.22,1,.36,1), transform .24s cubic-bezier(.22,1,.36,1), opacity .18s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.2);
}
.burger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* --- Primary nav --- */
.mainnav {
  border-bottom: 0;
  background: var(--ink);
}
.mainnav__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px clamp(18px, 3vw, 28px);
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mainnav__list a {
  display: block;
  color: #f5f5f0;
  padding: 7px 10px 6px;
  border: 1px solid transparent;
}
.mainnav__list a:hover {
  border-color: rgba(247,203,0,.6);
  color: var(--accent);
  background: rgba(255,255,255,.06);
}

.mobile-menu {
  display: none;
  background: var(--ink);
}
.mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  min-height: 460px;
  display: grid;
  align-items: center;
}
.hero__img { position: absolute; inset: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.25);
}
.hero__inner {
  position: relative;
  text-align: left;
  padding: 92px clamp(18px, 3vw, 28px) 156px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
  max-width: none;
}
.hero__title span { display: block; white-space: nowrap; }
.hero__title b { color: var(--accent); font-weight: inherit; }
.hero__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  max-width: 720px;
  margin: 24px 0 0;
  color: #f5f5f0;
}
.hero__sub a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  padding: 8px 12px 7px;
  background: rgba(0,0,0,.32);
}
.hero__sub a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: border-color .18s ease, transform .18s ease;
}
.hero__sub a:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}
.hero__sub a:hover::after {
  border-color: var(--ink);
  transform: translateX(2px) rotate(45deg);
}

/* Category circles */
.cats {
  position: relative;
  margin-top: -72px;
  z-index: 2;
}
.cats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.cat {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 106px;
  text-align: left;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.cat:last-child { border-right: 0; }
.cat__img {
  position: relative;
  width: 58px; max-width: 58px; aspect-ratio: 1/1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.cat__name {
  font-family: var(--font-display);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; font-size: 16px;
  line-height: 1.05;
}
.cat:hover { background: var(--accent); }
.cat:hover .cat__img { border-color: var(--ink); }
.cat:hover .cat__img img { transform: scale(1.07) rotate(-2deg); }
.cat:hover .cat__name {
  color: var(--ink);
  text-decoration: none;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section { padding: 72px 0; }
.section--wash { background: var(--paper-2); }

.sechead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}
.sechead__title {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin: 0;
  position: relative; padding-top: 16px;
  letter-spacing: .01em;
}
.sechead__title::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 58px; height: 5px; background: var(--accent);
}
.sechead__link {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; font-size: 13px; color: var(--ink);
  white-space: nowrap;
  border: 1px solid var(--ink);
  padding: 8px 13px 7px;
}
.sechead__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

/* ============================================================
   FEATURED CARDS (top 3)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.fcard__media { position: relative; }
.fcard__badge { position: absolute; left: 14px; bottom: 14px; }
.fcard:hover .frame img,
.rcard:hover .frame img,
.travel__feature:hover > .frame img,
.travel-card:hover .frame img,
.mapitem:hover .frame img { transform: scale(1.04); }
.fcard__title {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 22px; line-height: 1.18;
  margin: 14px 0 8px;
}
.fcard--spotlight .fcard__copy {
  position: relative;
  z-index: 1;
  margin: -48px 28px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow-lift);
  padding: 20px 20px 22px;
  text-align: center;
}
.fcard--spotlight .pick__meta { justify-content: center; margin-bottom: 8px; }
.fcard--spotlight .fcard__title { font-size: 25px; margin: 0; }

/* Span equivalents for non-inline elements converted from headings inside cards */
.fcard__title span,
.rcard__title span,
.travel__title span,
.travel-card__title span,
.mapitem__title span {
  display: block;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* ============================================================
   REPORTS ROW (5 small cards)
   ============================================================ */
.reports { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.rcard {
  background: var(--paper);
  padding: 12px 12px 16px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.rcard__media { display: block; margin-bottom: 18px; }
.rcard .kicker { display: block; margin-bottom: 10px; }
.rcard__title {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 17px; line-height: 1.25; margin: 0;
}

/* ============================================================
   MAPS GRID
   ============================================================ */
.maps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 24px; }
.mapitem {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mapitem:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.mapitem__thumb { flex: 0 0 84px; }
.mapitem__body { min-width: 0; }
.mapitem .kicker { display: inline-block; margin-bottom: 10px; }
.mapitem__title { font-family: var(--font-serif); font-weight: 700; font-size: 18px; line-height: 1.22; margin: 0; }

/* ============================================================
   COMPACT ARTICLE GRIDS + NUMBERED LIST
   ============================================================ */
.picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 22px;
  align-content: start;
}
.pick {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.pick:nth-child(1),
.pick:nth-child(2),
.pick:nth-child(3) { border-top: 0; padding-top: 0; }
.pick__media { order: -1; }
.pick__meta { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.tag { font-family: var(--font-sans); font-weight: 500; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); padding: 1px 0; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.pick__title { font-family: var(--font-serif); font-weight: 700; font-size: 16px; line-height: 1.22; margin: 0; }

.ranklist { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.ranklist li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.ranklist li:first-child { border-top: 0; }
.ranklist li::before {
  counter-increment: rank; content: counter(rank) ".";
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink);
  background: var(--accent);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ranklist a { font-family: var(--font-serif); font-weight: 600; font-size: 16px; line-height: 1.25; }

/* ============================================================
   FEATURED LIST - list + big image
   ============================================================ */
.travel { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.travel--reverse { grid-template-columns: 1.4fr 1fr; }

.travel__feature { position: relative; margin-bottom: 55px; }
.travel__card {
  position: absolute; left: 24px; right: 24px; bottom: -55px;
  background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--accent); box-shadow: var(--shadow-lift);
  padding: 24px;
  text-align: center;
}
.travel__card .pick__meta { justify-content: center; }
.travel__title { font-family: var(--font-serif); font-weight: 700; font-size: 28px; line-height: 1.15; margin: 8px 0 0; }

.travel-stack { display: grid; gap: 16px; }
.travel-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.travel-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.travel-card--lead {
  display: block;
  padding-top: 0;
  border-top: 0;
}
.travel-card--lead .frame { margin-bottom: 14px; }
.travel-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
}
.travel-card--lead .travel-card__title { font-size: 25px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #f5f5f0; padding: 48px 0 36px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: .02em; text-transform: uppercase; color: #fff; }
.footer__logo b {
  color: var(--ink);
  background: var(--accent);
  padding: 0 .04em;
}
.footer__cats { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.footer__cats a {
  font-family: var(--font-display); font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; font-size: 14px; color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  padding: 8px 14px 7px;
}
.footer__cats a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.footer hr { border: 0; border-top: 1px solid rgba(255,255,255,.6); margin: 28px 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-display); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: 14px; }
.footer__links a:hover { color: var(--gold); }
.footer__legal { margin-top: 18px; font-size: 13px; color: rgba(245,245,240,.62); display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer__legal a:hover { color: var(--gold); }
.footer__copy { margin-top: 14px; font-size: 12.5px; color: rgba(245,245,240,.5); letter-spacing: .03em; }
.footer__disclaimer,
.site-disclaimer { margin-top: 14px; font-size: 12px; color: rgba(245,245,240,.45); line-height: 1.5; }
.site-disclaimer a { color: rgba(245,245,240,.7); text-decoration: underline; }
.site-disclaimer a:hover { color: var(--gold); }

/* Ad containment */
.ad_code {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 12px 20px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfbf7;
  text-align: center;
}
.ad_code::before {
  content: "Advertisement";
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 6px;
}
.ad_code iframe { max-width: 100%; }

/* ============================================================
   DIRECTORY
   ============================================================ */
.dir {
  background: var(--ink);
  color: #f5f5f0;
  padding: 72px 0 64px;
  border-top: 8px solid var(--accent);
}
.dir__intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
  padding-bottom: 34px;
}
.dir__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  margin: 0;
  line-height: 1;
  position: relative;
  padding-top: 14px;
}
.dir__heading::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 46px; height: 4px; background: var(--accent);
}
.dir__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
}
.dir__col { display: flex; flex-direction: column; gap: 28px; }
.dir__group { background: transparent; box-shadow: none; padding: 0; }
.dir__group-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.dir__group-title a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.dir__group-title a::after {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.dir__group-title a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.dir__group-title a:hover::after { transform: translateX(3px) rotate(45deg); }
.dir__toggle { display: none; }
.dir__list {
  list-style: none;
  margin: 0; padding: 0;
  columns: 2;
  column-gap: 16px;
}
.dir__list li { break-inside: avoid; margin-bottom: 6px; }
.dir__list a {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: rgba(245,245,240,.72);
  line-height: 1.3;
  display: block;
  padding: 3px 0;
}
.dir__list a:hover { color: var(--gold); transform: translateX(3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .reports { grid-template-columns: repeat(3, 1fr); }
  .maps { grid-template-columns: 1fr 1fr; }
  .dir__body { grid-template-columns: 1fr 1fr; }
  .cats__row { grid-template-columns: repeat(2, 1fr); }
  .cat:nth-child(2n) { border-right: 0; }
  .cat:nth-child(1),
  .cat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 1350px) {
  .topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 12px 68px;
    position: relative;
  }
  .utility,
  .topbar__inner > .utility--right { display: none; }
  .burger {
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo { max-width: 150px;}

  .mainnav { display: none; }
  .mobile-menu {
    display: block;
    position: absolute;
    left: 0; right: 0; top: 100%;
    z-index: 45;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-bottom: 0 solid transparent;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: max-height .58s cubic-bezier(.16,1,.3,1), opacity .38s ease, visibility 0s linear .58s, border-color .38s ease, box-shadow .38s ease;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: translateY(-5px);
    transition: padding .44s cubic-bezier(.16,1,.3,1), transform .44s cubic-bezier(.16,1,.3,1);
  }
  .mobile-menu.open {
    max-height: calc(100vh - 64px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-bottom-width: 1px;
    border-bottom-color: var(--ink);
    box-shadow: 0 22px 42px rgba(0,0,0,.18);
    transition: max-height .64s cubic-bezier(.16,1,.3,1), opacity .42s ease, visibility 0s linear 0s, border-color .38s ease, box-shadow .42s ease;
  }
  .mobile-menu.open .mobile-menu__list { padding: 6px 20px 18px; transform: translateY(0); }
  .mobile-menu__list li {
    border-top: 1px solid rgba(255,255,255,.14);
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity .34s ease, transform .4s cubic-bezier(.16,1,.3,1);
  }
  .mobile-menu.open .mobile-menu__list li { opacity: 1; transform: translateY(0); }
  .mobile-menu__list a {
    display: block;
    width: 100%;
    color: #f5f5f0;
    padding: 12px 10px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
    border: 1px solid transparent;
  }
  .mobile-menu__list a:hover {
    border-color: rgba(247,203,0,.6);
    color: var(--accent);
    background: rgba(255,255,255,.06);
  }
}

@media (max-width: 760px) {
  .hero { min-height: 0; }
  .hero__inner { text-align: center; padding: 52px 20px 54px; }
  .hero__title { max-width: 10ch; margin: 0 auto; }
  .hero__title span { white-space: normal; }
  .hero__sub {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 390px);
    margin: 24px auto 0;
  }
  .hero__sub a {
    position: relative;
    width: 100%;
    justify-content: center;
    padding-left: 42px;
    padding-right: 42px;
    text-align: center;
  }
  .hero__sub a::after { position: absolute; right: 22px; }
  .cats { margin-top: 0; padding: 0; }
  .cats__row { grid-template-columns: 1fr 1fr; border-left: 0; border-right: 0; box-shadow: var(--shadow); }
  .cat { grid-template-columns: 46px 1fr; min-height: 92px; gap: 12px; padding: 16px; }
  .cat__img { width: 46px; max-width: 46px; }

  .feature-grid { grid-template-columns: 1fr; gap: 28px; }
  .reports,
  .maps,
  .travel-stack {
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--paper);
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  }

  :is(.rcard, .mapitem, .travel-card) {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 20px;
    gap: 0 16px;
    align-items: center;
    padding: 14px 24px 14px 14px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  :is(.rcard, .mapitem, .travel-card)::after {
    content: "";
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 8px; height: 8px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: rotate(45deg);
  }
  :is(.rcard, .mapitem, .travel-card):hover {
    background: var(--paper-2);
    box-shadow: none;
    transform: none;
  }
  .reports .rcard + .rcard,
  .maps .mapitem + .mapitem,
  .travel-stack .travel-card + .travel-card { border-top: 1px solid var(--line); }
  .rcard__media,
  .mapitem__thumb,
  .travel-card > .frame {
    grid-column: 1; grid-row: 1;
    width: 100%; max-width: none;
    aspect-ratio: 1 / 1;
    margin: 0;
  }
  .mapitem__thumb { flex: initial; }
  .rcard .kicker,
  .mapitem .kicker,
  .travel-card .pick__meta { display: none; }
  .rcard__title,
  .mapitem__body,
  .travel-card > div { grid-column: 2; grid-row: 1; align-self: center; min-width: 0; }
  :is(.rcard__title, .mapitem__title, .travel-card__title) { font-size: 18px; line-height: 1.22; }

  .picks { grid-template-columns: 1fr 1fr; }
  .pick:nth-child(3) { border-top: 1px solid var(--line); padding-top: 14px; }

  .travel--reverse { grid-template-columns: 1fr; }
  .travel { grid-template-columns: 1fr; gap: 32px; }
  .travel__feature { margin-bottom: 0; }
  .travel__feature > .frame { aspect-ratio: 4 / 3; }
  .travel__card {
    position: relative;
    left: auto; right: auto; bottom: auto;
    z-index: 1;
    margin: -44px 24px 0;
    padding: 18px 18px 20px;
    text-align: center;
  }
  .travel__card .pick__meta { justify-content: center; margin-bottom: 8px; }
  .travel__title { font-size: 23px; margin: 0; }

  .footer__logo { font-size: 36px; }
  .dir { text-align: center; }
  .dir__intro { justify-content: center; }
  .dir__heading::before { left: 50%; transform: translateX(-50%); }
  .dir__body { grid-template-columns: 1fr; gap: 12px; }
  .dir__col { gap: 12px; }
  .dir__col + .dir__col { margin-top: 0; }
  .dir__group {
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    padding: 0;
    text-align: left;
  }
  .dir__group + .dir__group { margin-top: 0; }
  .dir__group-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    margin: 0; padding: 0;
    border-bottom: 0;
  }
  .dir__group-title a { display: block; padding: 16px 0 16px 18px; }
  .dir__group-title a::after { display: none; }
  .dir__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 100%; min-height: 52px;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
  }
  .dir__toggle::before {
    content: "";
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease;
  }
  .dir__group.is-open .dir__toggle::before { transform: rotate(225deg); }
  .dir__list { columns: 1; }
  .dir__group .dir__list { display: none; padding: 0 18px 18px; }
  .dir__group.is-open .dir__list { display: block; }

  .footer { text-align: center; }
  .footer__top { justify-content: center; }
  .footer__cats,
  .footer__links,
  .footer__legal { justify-content: center; }
}

@media (max-width: 440px) {
  .picks { grid-template-columns: 1fr; }
  .pick { grid-template-columns: 92px 1fr; }
  .pick:nth-child(2) { border-top: 1px solid var(--line); padding-top: 14px; }
  :is(.rcard, .mapitem, .travel-card) {
    grid-template-columns: 72px minmax(0, 1fr) 18px;
    padding: 12px 20px 12px 12px;
  }
  :is(.rcard__title, .mapitem__title, .travel-card__title) { font-size: 17px; }
  .travel__card { margin: -36px 16px 0; }
  .travel__title { font-size: 21px; }
  .dir__list { columns: 1; }
  .hero__title { font-size: 44px; }
  .hero__sub a { width: 100%; }
  .cat {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .burger,
  .burger span,
  .mobile-menu,
  .mobile-menu__list,
  .mobile-menu__list li,
  .cat__img img {
    transition: none !important;
  }
}

/* LAYOUT RESET */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
  max-width: var(--wrap);
}

/* FONTS RESET */
.pages .layout h1,
.pages .layout h2 {
  font-weight: 700;
  color: var(--ink);
}

.pages .layout h1,
.pages .layout h2,
.pages .layout h3,
.pages .layout p,
.pages .layout strong {
  color: var(--ink);
}

.pages .layout h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pages .layout h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.pages .layout h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.pages .layout p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pages .layout strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pages .layout h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages .layout h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .pages .layout h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .pages .layout p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* TABLE RESET */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--line) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--ink) !important;
}

table th {
  background: var(--ink) !important;
  color: var(--paper) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--paper-3) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

/* CONTACT US FORM */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--line);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--ink);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--ink-soft);
}

#contact-form button {
  background: var(--ink);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--line) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--ink);
  background: var(--paper-3);
  border-color: var(--ink);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--accent);
  color: var(--ink);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23000000'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist {
  padding-top: 0 !important;
}

.item-sublist:has(.sublist.card) .row > div {
  padding: 10px !important;
}

.sublist.card {
  border: none;
  border-radius: 0;
  transition: 0.2s ease-in;
}

.sublist.card .card-img-holder {
  aspect-ratio: 16 / 9;
  position: relative;
  width: 100%;
  height: auto;
}

.sublist.card .card-img-holder img {
  position: absolute;
  border-radius: 0;
  transition: 0.2s ease-in;
}

.sublist.card h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 14px;
}

.sublist.card h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 12px;
}

.sublist.card.horizontal h5 {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 0;
}

.sublist.card .card-body {
  padding: 0px;
}

.sublist.card:hover h2,
.sublist.card:hover h5 {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.sublist.card:hover img {
  transform: scale(1.06);
}

@media (max-width: 767.98px) {
  .item-sublist:has(.sublist.card) .row > div {
    padding: 0 0 10px !important;
  }

  .item-sublist {
    padding-bottom: 0 !important;
  }

  .item-sublist:has(.horizontal) {
    margin-bottom: 20px;
  }

  .container.layout .row.layout > .cols {
    padding: 0;
  }

  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .sublist.card.horizontal {
    margin-bottom: 0;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
  }

  .sublist.card.horizontal .card-title {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card.horizontal h5 {
    font-size: 16px;
  }
}
