/* ============================================================
   WLTG — We Love The UG
   Shared design system
   Black canvas · Pink #FBD0E6 accent · White text
   Mono / tech type personality · mobile-first
   ============================================================ */

/* Fonts are loaded via <link> in each page's <head> (preconnect + stylesheet)
   instead of @import, which is render-blocking and serializes the request. */

:root {
  --bg:        #000000;
  --bg-2:      #0a0a0b;
  --text:      #ffffff;
  --pink:      #FBD0E6;
  --pink-dim:  #d9a8c3;
  --muted:     rgba(255, 255, 255, 0.52);
  --faint:     rgba(255, 255, 255, 0.30);
  --line:      rgba(255, 255, 255, 0.10);
  --line-2:    rgba(255, 255, 255, 0.18);
  --pink-line: rgba(251, 208, 230, 0.30);
  --glow:      rgba(251, 208, 230, 0.45);
  --glow-soft: rgba(251, 208, 230, 0.16);

  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --pad: clamp(20px, 5.5vw, 56px);
  --maxw: 1180px;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #000; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---- mono / tech helpers ---- */
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
}
.eyebrow.muted { color: var(--muted); }

h1, h2, h3 { font-family: var(--mono); font-weight: 700; line-height: 1.04; letter-spacing: -0.01em; }

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
/* base state is the VISIBLE end-state; entrance animates from a dimmed/lowered
   state so a frozen first frame (backgrounded tab) still shows content. */
.page { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  body.loaded .page { animation: pageIn 0.55s var(--ease) backwards; }
}
@keyframes pageIn { from { opacity: 0.25; transform: translateY(14px); } to { opacity: 1; transform: none; } }
body.leaving .page { opacity: 0.15; transform: translateY(-8px); transition: opacity 0.26s ease, transform 0.26s ease; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   HEADER  (hamburger top right)
   ============================================================ */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  pointer-events: none;
}
.hdr > * { pointer-events: auto; }
.hdr-mark {
  font-family: var(--mono); font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em; color: var(--text);
  display: flex; align-items: center; gap: 9px;
  transition: opacity 0.2s ease;
}
.hdr-mark img { width: 26px; height: 26px; }
.hdr-mark .pk { color: var(--pink); }
.hdr-mark:hover { opacity: 0.7; }
/* fade the logo/wordmark away once the page is scrolled a bit */
.hdr-mark { transition: opacity 0.3s ease, transform 0.3s ease; }
.hdr-mark.is-hidden { opacity: 0; transform: translateY(-8px); pointer-events: none; }

/* hamburger button */
.burger {
  width: 46px; height: 46px; border: 1px solid var(--line-2);
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; transition: border-color 0.25s ease, background 0.25s ease;
}
.burger:hover { border-color: var(--pink-line); }
.burger span {
  display: block; width: 18px; height: 1.5px; background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.2s ease, background 0.25s ease;
}
.burger:hover span { background: var(--pink); }

/* ============================================================
   NAV OVERLAY
   ============================================================ */
.nav {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
  padding: var(--pad);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav.open { opacity: 1; visibility: visible; }

.nav-top { display: flex; align-items: center; justify-content: space-between; height: calc(var(--header-h) - 0px); }
.nav-close {
  width: 46px; height: 46px; border: 1px solid var(--line-2); background: transparent;
  border-radius: 50%; color: var(--text); font-family: var(--mono); font-size: 20px;
  display: flex; align-items: center; justify-content: center; transition: 0.25s ease;
}
.nav-close:hover { border-color: var(--pink-line); color: var(--pink); transform: rotate(90deg); }

.nav-list {
  list-style: none; margin: auto 0;
  display: flex; flex-direction: column; gap: clamp(6px, 1.4vh, 14px);
}
.nav-list li { overflow: hidden; }
.nav-link {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(38px, 11vw, 80px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--text);
  display: inline-flex; align-items: baseline; gap: 14px;
  transform: translateY(110%);
  transition: color 0.25s ease;
}
.nav.open .nav-link { transform: translateY(0); transition: transform 0.6s var(--ease); }
.nav.open li:nth-child(1) .nav-link { transition-delay: 0.06s; }
.nav.open li:nth-child(2) .nav-link { transition-delay: 0.11s; }
.nav.open li:nth-child(3) .nav-link { transition-delay: 0.16s; }
.nav.open li:nth-child(4) .nav-link { transition-delay: 0.21s; }
.nav.open li:nth-child(5) .nav-link { transition-delay: 0.26s; }
.nav.open li:nth-child(6) .nav-link { transition-delay: 0.31s; }
.nav-link .idx { font-size: 13px; font-weight: 400; color: var(--faint); letter-spacing: 0; }
.nav-link:hover, .nav-link.is-active { color: var(--pink); }
.nav-link:hover .idx { color: var(--pink-dim); }

.nav-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid var(--line); }
.nav-foot .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.socials { display: flex; gap: 12px; align-items: center; }
.soc {
  width: 44px; height: 44px; border: 1px solid var(--line-2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: 0.3s var(--ease);
}
.soc svg { width: 19px; height: 19px; fill: currentColor; }
.soc:hover {
  color: var(--pink); border-color: var(--pink-line);
  box-shadow: 0 0 22px -4px var(--glow);
  transform: translateY(-3px);
}
.socials.sm .soc { width: 38px; height: 38px; }
.socials.sm .soc svg { width: 16px; height: 16px; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-block: clamp(48px, 9vw, 96px); }

.page-head { padding-top: calc(var(--header-h) + clamp(36px, 9vw, 90px)); padding-bottom: clamp(28px, 5vw, 48px); }
.page-title {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(40px, 12vw, 96px); line-height: 0.98; letter-spacing: -0.03em;
}
.page-title .pk { color: var(--pink); }
.page-intro { max-width: 56ch; margin-top: 20px; color: var(--muted); font-size: clamp(15px, 2.4vw, 18px); }

.sec-label { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.sec-label h2 { font-size: clamp(22px, 4.5vw, 30px); }
.sec-label .count { font-family: var(--mono); font-size: 12px; color: var(--faint); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; }

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  font-weight: 500; padding: 13px 20px; border-radius: 999px;
  border: 1px solid var(--pink-line); color: var(--pink);
  background: transparent; transition: 0.3s var(--ease);
  min-height: 46px;
}
.btn:hover { background: var(--pink); color: #000; box-shadow: 0 0 28px -6px var(--glow); }
.btn.solid { background: var(--pink); color: #000; border-color: var(--pink); }
.btn.solid:hover { box-shadow: 0 0 32px -4px var(--glow); transform: translateY(-2px); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }

.txtlink {
  font-family: var(--mono); font-size: 13px; color: var(--pink);
  display: inline-flex; align-items: center; gap: 7px; letter-spacing: 0.03em;
}
.txtlink .arr { transition: transform 0.25s var(--ease); }
.txtlink:hover .arr { transform: translate(3px,-3px); }

/* ============================================================
   PLACEHOLDER (striped, labeled — swap for real media)
   ============================================================ */
.ph {
  position: relative; overflow: hidden; background: var(--bg-2);
  background-image: repeating-linear-gradient(135deg,
     rgba(255,255,255,0.035) 0 1px, transparent 1px 11px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
  padding: 4px 8px; text-align: center; max-width: 80%;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ph:has(img)::after { display: none; }
.ph iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
.ph:has(iframe)::after { display: none; }
.ph.pinkish { background-image: repeating-linear-gradient(135deg, rgba(251,208,230,0.05) 0 1px, transparent 1px 11px); }

/* play badge for video placeholders */
.play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.play i {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid var(--pink-line); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; transition: 0.3s var(--ease);
}
.play i::before { content: ''; border-left: 15px solid var(--pink); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); margin-top: clamp(40px, 8vw, 90px); }
.footer-inner {
  display: flex; flex-direction: column; gap: 28px;
  padding-block: clamp(36px, 6vw, 56px);
}
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-mark { font-family: var(--mono); font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 10px; }
.footer-mark img { width: 30px; height: 30px; }
.footer-mark .pk { color: var(--pink); }
.footer-tagline { color: var(--muted); font-size: 13px; max-width: 32ch; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--faint); text-transform: uppercase; }

/* ============================================================
   CAROUSEL / RAIL  (scroll-snap, swipe, drag)
   ============================================================ */
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.rail-nav { display: none; gap: 10px; }
.rail-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2);
  background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: 0.25s var(--ease);
}
.rail-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.rail-btn:hover:not(:disabled) { border-color: var(--pink-line); color: var(--pink); }
.rail-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.rail {
  display: flex; gap: clamp(14px, 2.6vw, 22px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding-bottom: 6px; cursor: grab;
  margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
}
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail > * { scroll-snap-align: start; flex: 0 0 auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card { transition: transform 0.35s var(--ease); }
.card .ph { transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.card:hover { transform: translateY(-4px); }
.card:hover .ph { border-color: var(--pink-line); box-shadow: 0 14px 40px -18px var(--glow); }

/* interview card */
.int-card { width: min(78vw, 320px); }
.int-card .ph { aspect-ratio: 4/5; border-radius: 14px; }
.int-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.int-name { font-family: var(--mono); font-weight: 700; font-size: 17px; }
.int-card .ig { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; display: inline-flex; gap: 6px; align-items: center; transition: color 0.25s ease; }
.int-card:hover .ig { color: var(--pink); }

/* recap video card */
.recap-card { width: min(84vw, 380px); }
.recap-card .ph { aspect-ratio: 16/9; border-radius: 14px; }
.recap-title { font-family: var(--mono); font-weight: 500; font-size: 15px; margin-top: 13px; }
.recap-sub { font-size: 12px; color: var(--faint); font-family: var(--mono); margin-top: 4px; letter-spacing: 0.04em; }

/* vlog card (big) */
.vlog-card { width: min(90vw, 620px); }
.vlog-card .ph { aspect-ratio: 16/9; border-radius: 16px; }
.vlog-title { font-family: var(--mono); font-weight: 700; font-size: clamp(17px, 3vw, 22px); margin-top: 18px; }
.vlog-sub { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ============================================================
   PHOTO SETS — camera roll grid
   ============================================================ */
.roll {
  display: grid; gap: clamp(8px, 1.6vw, 14px);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .roll { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .roll { grid-template-columns: repeat(4, 1fr); } }
.set { cursor: pointer; position: relative; }
.set .ph { aspect-ratio: 1; border-radius: 12px; }
.set .ph::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}
.set:hover .ph::before { opacity: 1; }
.set:hover .ph { border-color: var(--pink-line); }
/* keep the name/date legible over a real photo even before hover */
.set .ph:has(img)::before { opacity: 0.55; }
.set:hover .ph:has(img)::before { opacity: 1; }
.set-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 12px; }
.set-name { font-family: var(--mono); font-weight: 700; font-size: 14px; }
.set-date { font-family: var(--mono); font-size: 11px; color: var(--pink); letter-spacing: 0.06em; margin-top: 2px; }
.set-count { position: absolute; top: 10px; right: 10px; z-index: 2; font-family: var(--mono); font-size: 10px; background: rgba(0,0,0,0.55); border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px; letter-spacing: 0.06em; }

/* ============================================================
   STORY / LIGHTBOX VIEWER
   ============================================================ */
.story { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.96); backdrop-filter: blur(10px); display: none; flex-direction: column; align-items: center; justify-content: center; padding: 16px; }
.story.open { display: flex; }
.story-bars { position: absolute; top: 14px; left: 16px; right: 16px; display: flex; gap: 5px; z-index: 3; }
.story-bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.22); overflow: hidden; }
.story-bar i { display: block; height: 100%; width: 0; background: var(--pink); }
.story-bar.done i { width: 100%; }
.story-bar.active i { width: 100%; transition: width 0s; }
.story-frame { position: relative; width: min(440px, 92vw); aspect-ratio: 4/5; }
.story-frame .ph { width: 100%; height: 100%; border-radius: 16px; border-color: var(--line-2); }
/* fade each shot in once it has actually loaded, so a fast tap never flashes the previous photo */
.story-frame .ph img { opacity: 0; transition: opacity 0.18s ease; }
.story-frame .ph img.ready { opacity: 1; }
.story-cap { position: absolute; top: 30px; left: 16px; z-index: 3; font-family: var(--mono); }
.story-cap b { display: block; font-size: 15px; }
.story-cap span { font-size: 11px; color: var(--pink); letter-spacing: 0.06em; }
.story-close { position: absolute; top: 26px; right: 16px; z-index: 4; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; color: #fff; font-size: 18px; }
.story-close:hover { border-color: var(--pink-line); color: var(--pink); }
.story-tap { position: absolute; top: 0; bottom: 0; width: 40%; z-index: 2; }
.story-tap.prev { left: 0; } .story-tap.next { right: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: clamp(24px, 5vw, 40px) 8px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--mono); font-weight: 700; font-size: clamp(34px, 8vw, 58px); color: var(--pink); line-height: 1; }
.stat .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { display: grid; gap: clamp(16px, 3vw, 26px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--bg-2); transition: 0.35s var(--ease); }
.member:hover { border-color: var(--pink-line); box-shadow: 0 16px 50px -26px var(--glow); transform: translateY(-4px); }
.member .ph { aspect-ratio: 4/5; border: none; border-bottom: 1px solid var(--line); }
.member-body { padding: 20px; }
.member-name { font-family: var(--mono); font-weight: 700; font-size: 19px; }
.member-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-top: 6px; }
.member-bio { color: var(--muted); font-size: 14px; margin-top: 14px; }
.member-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line-2); display: inline-flex; gap: 6px; align-items: center; transition: 0.25s var(--ease); min-height: 36px; }
.chip:hover { border-color: var(--pink-line); color: var(--pink); }
.chip.yt { border-color: var(--pink-line); color: var(--pink); background: rgba(251,208,230,0.06); }
.chip.yt:hover { background: var(--pink); color: #000; }
.chip svg { width: 13px; height: 13px; fill: currentColor; }

/* ============================================================
   FORM
   ============================================================ */
.contact-grid { display: grid; gap: clamp(32px, 6vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.3fr 0.7fr; align-items: start; } }
.field { margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 9px; }
.field .req { color: var(--pink); }
.input {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  color: var(--text); font-family: var(--sans); font-size: 16px; padding: 15px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease; min-height: 52px;
}
textarea.input { min-height: 140px; resize: vertical; line-height: 1.5; }
select.input { appearance: none; font-family: var(--mono); font-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FBD0E6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.input:focus { outline: none; border-color: var(--pink-line); box-shadow: 0 0 0 3px rgba(251,208,230,0.10); }
.input.invalid { border-color: #ff8da6; }
.field .err { font-family: var(--mono); font-size: 11px; color: #ff8da6; margin-top: 7px; display: none; }
.field.show-err .err { display: block; }

.form-success {
  display: none; border: 1px solid var(--pink-line); border-radius: 16px; padding: 32px;
  background: rgba(251,208,230,0.05); text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { font-size: 22px; color: var(--pink); }
.form-success p { color: var(--muted); margin-top: 10px; font-size: 14px; }

.direct { border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.direct h3 { font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.direct-item { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.direct-item:last-child { border-bottom: none; padding-bottom: 0; }
.direct-ic { width: 40px; height: 40px; flex: 0 0 auto; border: 1px solid var(--line-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--pink); }
.direct-ic svg { width: 17px; height: 17px; fill: currentColor; }
.direct-item .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.direct-item .v { font-family: var(--mono); font-size: 14px; word-break: break-all; }
.direct-item a.v:hover { color: var(--pink); }

/* ============================================================
   DESKTOP RAIL NAV ENABLE
   ============================================================ */
@media (min-width: 880px) {
  .rail-nav { display: flex; }
}

/* hint chip (swipe) */
.hint { font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 8px; }
@media (min-width: 880px) { .swipe-hint { display: none; } }
