/* ========================================================================
   Bokehmono — editorial travel-magazine redesign
   ======================================================================== */

:root {
  /* Palette — parchment (default) */
  --bg: #F3EEE5;
  --paper: #FBF7EE;
  --ink: #1A1816;
  --ink-soft: #2A2723;
  --muted: #756B5C;
  --muted-soft: #A89E8C;
  --line: rgba(26, 24, 22, 0.12);
  --line-strong: rgba(26, 24, 22, 0.28);
  --accent: #B85C3B;            /* clay */
  --accent-ink: #FBF7EE;

  /* Type */
  --f-serif: "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", monospace;

  /* Rhythm */
  --pad: clamp(20px, 4vw, 56px);
  --max: 1480px;
  --radius: 4px;
}

[data-theme="midnight"] {
  --bg: #15140F;
  --paper: #1C1B16;
  --ink: #F2EBDB;
  --ink-soft: #DAD2BF;
  --muted: #948B78;
  --muted-soft: #6A6353;
  --line: rgba(242, 235, 219, 0.13);
  --line-strong: rgba(242, 235, 219, 0.32);
  --accent: #3B6A85;
  --accent-ink: #15140F;
}

[data-theme="paper"] {
  --bg: #F7F4ED;
  --paper: #FFFFFF;
  --ink: #111111;
  --ink-soft: #2A2A2A;
  --muted: #6F6F6F;
  --line: rgba(0,0,0,0.10);
  --line-strong: rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.serif { font-family: var(--f-serif); font-weight: 400; }
.italic { font-style: italic; }
.divider { height: 1px; background: var(--line); width: 100%; }
.divider-strong { height: 1px; background: var(--line-strong); }
.rule-top { border-top: 1px solid var(--line); }
.rule-bot { border-bottom: 1px solid var(--line); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 16px; padding-bottom: 16px;
  gap: 24px;
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-issue { display: flex; flex-direction: column; line-height: 1.15; }
.topbar-issue b { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.topbar-issue span { font-family: var(--f-mono); font-size: 10px; color: var(--muted); }
.topbar-logo {
  font-family: var(--f-serif); font-size: 30px; letter-spacing: -0.01em;
  text-align: center;
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.topbar-logo .mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-family: var(--f-serif); font-style: italic; font-size: 18px;
}
.topbar-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: 22px;
  font-size: 13px; letter-spacing: 0.02em;
}
.topbar-nav a { position: relative; }
.topbar-nav a:hover { color: var(--accent); }
.topbar-search {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 8px 14px; color: var(--muted);
  background: var(--paper);
  cursor: text;
}
.topbar-search:hover { color: var(--ink); border-color: var(--ink); }
.topbar-search svg { width: 14px; height: 14px; }
.topbar-search kbd {
  font-family: var(--f-mono); font-size: 10px;
  padding: 2px 6px; border: 1px solid var(--line); border-radius: 3px;
  background: var(--bg);
}

/* ---------- hero ---------- */
.hero { padding-top: 36px; padding-bottom: 56px; position: relative; }
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 36px;
}
.hero-meta-row .label { display: flex; gap: 8px; align-items: center; }
.hero-meta-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-headline {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.hero-headline .swash { font-style: italic; color: var(--accent); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 28px;
}
.hero-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.hero-img-wrap:hover img { transform: scale(1.04); }
.hero-img-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px 22px;
  color: #FBF7EE;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
}
.hero-img-overlay .badge {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid rgba(251,247,238,0.6);
  border-radius: 999px;
  align-self: flex-start;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.18);
}
.hero-img-overlay .badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: #B85C3B; box-shadow: 0 0 0 0 rgba(184,92,59,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184,92,59,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(184,92,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,92,59,0); }
}
.hero-img-overlay .coords { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; opacity: 0.9; }
.hero-side {
  display: flex; flex-direction: column; gap: 28px;
  padding-bottom: 12px;
}
.hero-side .kicker {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.hero-side .feat-title {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}
.hero-side .feat-title em { color: var(--accent); }
.hero-side .lede {
  font-family: var(--f-serif);
  font-size: 22px; line-height: 1.35;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
  max-width: 38ch;
}
.hero-side .meta-grid {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 24px 36px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hero-side .meta-grid .item .l { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.hero-side .meta-grid .item .v { font-family: var(--f-serif); font-size: 20px; line-height: 1; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  align-self: flex-start;
  padding: 14px 22px 14px 26px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; letter-spacing: 0.02em;
  transition: background .2s ease, transform .2s ease;
}
.hero-cta:hover { background: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.hero-cta .arrow { display: inline-flex; transition: transform .3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

/* full-bleed hero variant */
.hero.fullbleed { padding: 0; }
.hero.fullbleed .hero-fb {
  position: relative; height: 92vh; min-height: 640px; max-height: 920px;
  overflow: hidden;
}
.hero.fullbleed .hero-fb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero.fullbleed .hero-fb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%);
}
.hero.fullbleed .hero-fb-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px var(--pad);
  color: #FBF7EE;
}
.hero.fullbleed .hero-fb-content .top-row, .hero.fullbleed .hero-fb-content .bot-row {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
}
.hero.fullbleed h1 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(64px, 11vw, 180px); line-height: 0.95;
  margin: 0 0 12px 0; letter-spacing: -0.025em;
  text-wrap: balance; max-width: 14ch;
}
.hero.fullbleed h1 em { color: #E8A887; }
.hero.fullbleed .lede { font-family: var(--f-serif); font-size: 22px; line-height: 1.3; max-width: 36ch; }
.hero.fullbleed .mono-line { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--paper);
}
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: scroll 60s linear infinite;
  width: max-content;
  font-family: var(--f-serif);
  font-size: 28px; letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .star { color: var(--accent); font-size: 18px; }
.marquee-track .italic { font-style: italic; color: var(--muted); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section header ---------- */
.section { padding: 80px 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: end; margin-bottom: 48px;
}
.section-head .lhs h2 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -0.02em;
  margin: 12px 0 0 0; text-wrap: balance;
}
.section-head .lhs h2 em { color: var(--accent); }
.section-head .rhs { color: var(--muted); font-size: 15px; max-width: 38ch; justify-self: end; text-align: right; }
.section-head .label { display: flex; align-items: center; gap: 8px; }
.section-head .label .num { color: var(--muted); }

/* ---------- featured trio ---------- */
.trio {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.trio-card { display: flex; flex-direction: column; }
.trio-card .img-wrap {
  position: relative;
  overflow: hidden; border-radius: var(--radius);
  background: var(--paper);
}
.trio-card.tall .img-wrap { aspect-ratio: 4/5; }
.trio-card.std .img-wrap { aspect-ratio: 3/4; }
.trio-card.wide .img-wrap { aspect-ratio: 1/1; }
.trio-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.trio-card:hover .img-wrap img { transform: scale(1.05); }
.trio-card .img-wrap .index {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  color: #fff; background: rgba(0,0,0,0.35); backdrop-filter: blur(6px);
  padding: 4px 8px; border-radius: 3px;
}
.trio-card .meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px;
}
.trio-card .meta .cat { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.trio-card .meta .date { font-family: var(--f-mono); font-size: 11px; color: var(--muted); }
.trio-card h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 38px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 10px 0 8px 0;
}
.trio-card .kicker { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 8px 0 4px 0; }
.trio-card .excerpt { color: var(--ink-soft); margin: 0; line-height: 1.5; font-size: 15px; max-width: 40ch; }
.trio-card .read-row {
  margin-top: 14px; display: flex; gap: 14px; align-items: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.trio-card .read-row .read-link { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.trio-card .read-row .read-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- destinations ---------- */
.dests {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dest-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--paper);
  transition: flex 0.4s ease;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .4s ease; filter: saturate(0.85); }
.dest-card:hover img { transform: scale(1.06); filter: saturate(1); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
}
.dest-card .body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px;
  color: #FBF7EE;
}
.dest-card .top { display: flex; justify-content: space-between; }
.dest-card .num { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; padding: 4px 8px; background: rgba(0,0,0,0.3); backdrop-filter: blur(6px); border-radius: 3px; }
.dest-card .name { font-family: var(--f-serif); font-size: 30px; line-height: 1; margin: 0 0 4px 0; }
.dest-card .country { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; }
.dest-card .coord { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.05em; opacity: 0.8; margin-top: 6px; }

/* ---------- latest list ---------- */
.list-wrap { position: relative; }
.list-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 110px 80px 100px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .3s ease, padding .3s ease;
}
.list-row:hover { padding-left: 12px; padding-right: 12px; background: var(--paper); }
.list-row .idx { font-family: var(--f-mono); font-size: 11px; color: var(--muted); }
.list-row .ttl { font-family: var(--f-serif); font-size: clamp(22px, 2vw, 32px); line-height: 1.05; letter-spacing: -0.01em; }
.list-row .ttl small { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.list-row .excerpt { color: var(--muted); font-size: 14px; max-width: 50ch; }
.list-row .place { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft); }
.list-row .rating { display: flex; gap: 2px; }
.list-row .rating .s { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.list-row .rating .s.on { background: var(--accent); }
.list-row .date { font-family: var(--f-mono); font-size: 11px; color: var(--muted); justify-self: end; }

.list-peek {
  position: fixed;
  width: 280px; height: 360px;
  pointer-events: none;
  z-index: 60;
  opacity: 0; transform: translate(-50%, -50%) scale(0.92) rotate(-3deg);
  transition: opacity .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  background: var(--paper);
}
.list-peek.visible { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-3deg); }
.list-peek img { width: 100%; height: 100%; object-fit: cover; }
.list-peek .tag {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px); padding: 6px 10px; border-radius: 3px;
}
.list-header {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 110px 80px 100px;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-strong);
}
.list-header span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.list-header .date-h { justify-self: end; }
.list-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.chip {
  padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 13px;
  background: transparent;
  color: var(--ink);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- categories ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.cat {
  position: relative;
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 260px;
  overflow: hidden;
  cursor: pointer;
  transition: background .35s ease, color .35s ease;
}
.cat:last-child { border-right: 1px solid var(--line); }
.cat:hover { background: var(--ink); color: var(--bg); }
.cat:hover .cat-num { color: var(--bg); }
.cat:hover .cat-arrow { transform: translate(6px, -6px); color: var(--accent); }
.cat .cat-num { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.cat .cat-name { font-family: var(--f-serif); font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em; }
.cat .cat-blurb { color: var(--muted); font-size: 14px; line-height: 1.45; max-width: 30ch; margin-top: auto; }
.cat:hover .cat-blurb { color: color-mix(in srgb, var(--bg) 70%, var(--muted)); }
.cat .cat-arrow {
  position: absolute; top: 28px; right: 24px;
  transition: transform .35s ease, color .35s ease;
}

/* ---------- about / newsletter ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: 80px var(--pad);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden; border-radius: var(--radius);
  max-width: 480px;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait .stamp {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; gap: 8px;
  padding: 6px 10px; border-radius: 3px;
  background: rgba(0,0,0,0.45); color: #FBF7EE;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.about-body h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(36px, 4vw, 58px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 12px 0 18px 0;
}
.about-body h3 em { color: var(--accent); }
.about-body p {
  font-family: var(--f-serif); font-size: 22px; line-height: 1.4;
  color: var(--ink-soft); max-width: 48ch;
  margin: 0 0 16px 0;
  text-wrap: pretty;
}
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 28px; padding-top: 24px;
  max-width: 560px;
}
.about-stats .stat .v { font-family: var(--f-serif); font-size: 36px; line-height: 1; }
.about-stats .stat .l { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: block; }
.newsletter {
  display: flex; gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  max-width: 460px;
  background: var(--bg);
}
.newsletter input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 14px 22px; font: inherit; color: var(--ink);
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter button {
  border: none; padding: 14px 22px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; letter-spacing: 0.02em;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--accent); color: var(--accent-ink); }

/* ---------- footer ---------- */
.footer {
  padding: 80px 0 36px 0;
  position: relative;
  overflow: hidden;
}
.footer-wordmark {
  font-family: var(--f-serif);
  font-size: clamp(96px, 18vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0 0 40px 0;
  color: var(--ink);
  text-align: center;
  position: relative;
}
.footer-wordmark .swash { color: var(--accent); font-style: italic; }
.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.footer-cols h5 {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px 0;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-cols ul a { font-size: 14px; }
.footer-cols ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px;
  font-family: var(--f-mono); font-size: 11px; color: var(--muted);
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .trio { grid-template-columns: 1fr 1fr; }
  .trio-card.wide { grid-column: 1 / -1; }
  .trio-card.wide .img-wrap { aspect-ratio: 16/9; }
  .dests { grid-template-columns: repeat(3, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .list-row { grid-template-columns: 40px 1.4fr 1fr 80px; }
  .list-row .place, .list-row .date { display: none; }
  .list-header { grid-template-columns: 40px 1.4fr 1fr 80px; }
  .list-header .place-h, .list-header .date-h { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .topbar-inner { grid-template-columns: 1fr auto; }
  .topbar-left { display: none; }
  .topbar-nav .nav-link.hide-mob { display: none; }
  .section { padding: 56px 0; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .rhs { justify-self: start; text-align: left; }
  .trio { grid-template-columns: 1fr; }
  .trio-card.wide .img-wrap { aspect-ratio: 4/5; }
  .dests { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; padding: 56px var(--pad); gap: 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .list-row { grid-template-columns: 40px 1fr 70px; gap: 16px; }
  .list-row .excerpt { display: none; }
  .list-header { grid-template-columns: 40px 1fr 70px; }
  .list-header .excerpt-h { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .marquee-track { font-size: 22px; gap: 28px; }
  .marquee-track span { gap: 28px; }
}
