/* ============================================================
   Lone Traveller — studio website design system
   Dark cosmic identity matching cultivation-idle game visuals:
   near-black backgrounds, silver type, violet energy accents,
   Cinzel display serif + Inter body.
   ============================================================ */

/* ---------- fonts (self-hosted, no external requests) ---------- */
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cinzel-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

/* ---------- tokens ---------- */
:root {
  color-scheme: dark;
  --bg: #060609;
  --bg-raised: #0c0c13;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(214, 220, 245, 0.12);
  --line-strong: rgba(214, 220, 245, 0.24);
  --text: #e9ebf4;
  --muted: #a0a5ba;
  --faint: #6d7288;
  --violet: #8b7cf6;
  --violet-bright: #a99cff;
  --violet-deep: #4c3d99;
  --jade: #57c99b;
  --gold: #d9b96a;
  --danger-bg: rgba(224, 90, 90, 0.09);
  --danger-line: rgba(224, 110, 110, 0.45);
  --danger-text: #f0b9b9;
  --radius: 16px;
  --radius-lg: 22px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.5);
  --glow-violet: 0 0 42px rgba(139, 124, 246, 0.28);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 85% -5%, rgba(76, 61, 153, 0.16), transparent 65%),
    radial-gradient(900px 420px at -10% 30%, rgba(87, 201, 155, 0.05), transparent 60%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--violet-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover, a:focus-visible { color: #cfc4ff; }
a:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--violet-deep);
  color: #fff;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- typography ---------- */
h1, h2, h3 { margin: 0 0 0.55em; font-weight: 700; }

.display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.12;
}

h1.display { font-size: clamp(2.35rem, 6.2vw, 4.3rem); }
h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
}
h3 { font-size: 1.14rem; letter-spacing: 0.01em; }

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin: 0 0 1rem;
  color: var(--violet-bright);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet));
}

.section-intro { max-width: 46rem; }

/* ---------- layout ---------- */
.wrap {
  width: min(1080px, calc(100% - 2.6rem));
  margin-inline: auto;
}
.wrap--narrow { width: min(800px, calc(100% - 2.6rem)); }

main { padding-bottom: 1rem; }

.section {
  padding: clamp(3.4rem, 8vw, 6rem) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }

.section-head { margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 6, 9, 0.78);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}
.brand__mark { flex: 0 0 auto; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .brand__name { font-size: 0.88rem; letter-spacing: 0.12em; }
}
.brand__name span { color: var(--violet-bright); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.6vw, 1.9rem);
}
.site-nav a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--text);
  border-color: var(--violet);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  text-decoration: none;
}
.lang-toggle__opt {
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.lang-toggle__opt.is-active {
  color: #0b0b10;
  background: linear-gradient(135deg, var(--violet-bright), var(--violet));
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease,
    border-color 160ms ease, background-color 160ms ease;
}
.btn:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 3px; }

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #6f5bd8, var(--violet-deep));
  border-color: rgba(169, 156, 255, 0.55);
  box-shadow: var(--glow-violet);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 60px rgba(139, 124, 246, 0.42);
  color: #fff;
}

.btn--ghost {
  color: var(--text);
  background: var(--panel);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--violet);
  background: var(--panel-strong);
  transform: translateY(-1px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 6, 9, 0.62) 0%, rgba(6, 6, 9, 0.18) 34%, rgba(6, 6, 9, 0.86) 82%, var(--bg) 100%),
    radial-gradient(900px 480px at 18% 68%, rgba(6, 6, 9, 0.55), transparent 70%);
}
.hero__content { padding: clamp(5.5rem, 12vh, 8.5rem) 0 clamp(4rem, 9vh, 6rem); }
.hero__title { max-width: 18ch; text-wrap: balance; }
.hero__lead { max-width: 34rem; }
.hero .btn-row { margin-top: 2.1rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 2.4rem;
  color: var(--faint);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__meta li { list-style: none; display: flex; align-items: center; gap: 0.5em; }
.hero__meta ul { display: contents; }
.hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.8;
}

/* ---------- chips ---------- */
.chip {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 0.5em;
  padding: 0.32rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 10px var(--jade);
  animation: pulse 2.6s ease-in-out infinite;
}
.chip--dev .chip__dot { background: var(--violet-bright); box-shadow: 0 0 10px var(--violet-bright); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.1rem;
}

.card {
  position: relative;
  padding: 1.7rem 1.7rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--panel-strong), rgba(255, 255, 255, 0.015));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(139, 124, 246, 0.09);
  color: var(--violet-bright);
}
.card__icon svg { width: 22px; height: 22px; }

/* ---------- game showcase ---------- */
.game-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.game-gallery { display: grid; gap: 0.9rem; }
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(6, 6, 9, 0.55));
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.7rem 1rem 0.7rem;
  color: #cfd3e6;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 560px) {
  .gallery-row { grid-template-columns: 1fr; }
}

.game-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.feature-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.97rem;
}
.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--violet-bright), var(--violet-deep));
}
.feature-list strong { color: var(--text); font-weight: 600; }

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.9rem;
}

/* ---------- play badge (custom-built, official-style) ---------- */
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.25rem 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #0b0b11;
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}
.play-badge:hover, .play-badge:focus-visible {
  border-color: var(--violet);
  transform: translateY(-1px);
  color: var(--text);
}
.play-badge svg { width: 26px; height: 26px; flex: 0 0 auto; }
.play-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.play-badge__small {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.play-badge__big { font-size: 1.02rem; font-weight: 600; letter-spacing: 0.01em; }
.play-badge.is-soon {
  cursor: default;
  filter: saturate(0.55);
  opacity: 0.75;
}
.play-badge.is-soon:hover { transform: none; border-color: var(--line-strong); }

/* ---------- studio split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.split__media img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

.fact-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact-list li {
  padding: 1rem 1.2rem;
  background: var(--bg-raised);
}
.fact-list dt, .fact-list .fact-label {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fact-list dd, .fact-value {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-weight: 600;
}

/* ---------- press ---------- */
.press-box {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 240px at 90% 0%, rgba(76, 61, 153, 0.14), transparent 70%),
    var(--panel);
}
.press-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem 2rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.press-facts li { color: var(--muted); font-size: 0.94rem; }
.press-facts strong { color: var(--text); font-weight: 600; }

/* ---------- contact ---------- */
.contact-standalone { max-width: 30rem; }
.contact-note {
  margin-top: 0.9rem;
  padding-left: 1rem;
  border-left: 2px solid var(--violet-deep);
  color: var(--faint);
  font-size: 0.88rem;
}
.contact-card {
  display: block;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
  background: var(--panel-strong);
}
.contact-card h3 { display: flex; align-items: center; gap: 0.6rem; }
.contact-card h3 svg { width: 19px; height: 19px; color: var(--violet-bright); }
.contact-card p { margin: 0.3rem 0 0.7rem; color: var(--muted); font-size: 0.93rem; }
.contact-card address {
  font-style: normal;
  color: var(--violet-bright);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- legal / document pages ---------- */
.doc-header {
  padding: clamp(3rem, 7vw, 4.6rem) 0 clamp(1.6rem, 4vw, 2.4rem);
}
.doc-header .display { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.doc-effective { color: var(--faint); font-size: 0.95rem; margin-top: 0.4rem; }

.doc-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.6rem 0 0;
}
.doc-toc a {
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}
.doc-toc a:hover { color: var(--text); border-color: var(--violet); }

.doc-body { padding-bottom: 3rem; }
.doc-body section {
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}
.doc-body section:last-of-type { border-bottom: 0; }
.doc-body h2 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.doc-body h3 {
  font-size: 1.02rem;
  color: var(--violet-bright);
  margin-top: 1.4rem;
}
.doc-body p, .doc-body li { color: var(--muted); }
.doc-body strong { color: var(--text); }
.doc-body code {
  padding: 0.12em 0.4em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-strong);
  color: var(--text);
  font-size: 0.86em;
}

.notice {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 1.4rem 0 0;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--danger-line);
  border-radius: var(--radius);
  background: var(--danger-bg);
  color: var(--danger-text);
  font-size: 0.95rem;
}
.notice svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 0.15rem; }

.placeholder {
  background: rgba(217, 185, 106, 0.12);
  border-bottom: 1px dashed var(--gold);
  color: var(--gold);
  padding: 0 0.2em;
}

.steps { counter-reset: step; padding: 0; list-style: none; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-top: 1rem;
  color: var(--muted);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--violet-bright);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #040407);
  padding: clamp(2.4rem, 5vw, 3.4rem) 0 2.2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.site-footer__brand p { color: var(--faint); font-size: 0.9rem; max-width: 30ch; margin: 0.7rem 0 0; }
.footer-col h3 {
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--text); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.84rem;
}
.site-footer__legal p { margin: 0; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip__dot { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .game-showcase, .split { grid-template-columns: 1fr; }
  .split__media { order: -1; max-width: 420px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-nav { display: none; }
  .site-header__nav-toggle { display: inline-flex; }
  .hero { min-height: 78vh; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* mobile nav drawer */
.mobile-menu {
  position: fixed;
  inset: 64px 0 auto 0;
  z-index: 49;
  display: none;
  padding: 1rem 1.3rem 1.4rem;
  background: rgba(6, 6, 9, 0.97);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.2rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0.4rem;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-burger {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}
.nav-burger svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .nav-burger { display: grid; }
}
