/* Squibjoy — core stylesheet. One file, loaded on every page.
   Palette / type / shape tokens adapted from the site's chosen style reference:
   flat surfaces, hairline dividers, a single warm gradient reserved for the
   hero and one callout frame, pill-shaped interactive controls. */

@font-face {
  font-family: "Squibjoy Display";
  src: url("/assets/fonts/space-grotesk-700.woff2?v=1") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Squibjoy Text";
  src: url("/assets/fonts/inter-400.woff2?v=1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Squibjoy Text";
  src: url("/assets/fonts/inter-600.woff2?v=1") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --sqj-ink: #202020;
  --sqj-carbon: #000000;
  --sqj-bone: #ffffff;
  --sqj-graphite: #646464;
  --sqj-smoke: #d9d9d9;
  --sqj-fog: #f2f2f0;
  --sqj-vellum: #f9f9f7;
  --sqj-cream: #fefce9;
  --sqj-forest: #2b9a66;
  --sqj-ember: #ea2804;
  --sqj-gradient: linear-gradient(135deg, #ff6bfc 0%, #ea2804 50%, #f6f47f 100%);
  --sqj-radius-pill: 999px;
  --sqj-gap-8: 8px;
  --sqj-gap-16: 16px;
  --sqj-gap-24: 24px;
  --sqj-gap-32: 32px;
  --sqj-gap-48: 48px;
  --sqj-gap-64: 64px;
  --sqj-gap-96: 96px;
  --sqj-max: 1180px;
  --sqj-font-display: "Squibjoy Display", "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sqj-font-text: "Squibjoy Text", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Fallback stack metric-matched to Inter/Space Grotesk avoids the CLS jump
   that plain sans-serif substitutes cause once the webfont swaps in. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--sqj-bone);
  color: var(--sqj-ink);
  font-family: var(--sqj-font-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--sqj-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sqj-gap-16);
  color: var(--sqj-carbon);
}
h1 { font-size: clamp(34px, 5.4vw, 58px); }
h2 { font-size: clamp(24px, 3.2vw, 32px); }
h3 { font-size: 20px; }
p { margin: 0 0 var(--sqj-gap-16); }
a { color: inherit; }
img { max-width: 100%; display: block; border-radius: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
svg { display: block; }

.sqj-page-home main, .sqj-page-hub main, .sqj-page-list main,
.sqj-page-review main, .sqj-page-prose main, .sqj-page-404 main {
  display: block;
}

/* --- links inside long-form text keep an underline, not just colour --- */
.sqj-block__text a,
.sqj-legal__section a,
.sqj-review__section a {
  color: var(--sqj-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------------------
   Scroll-reveal (progressive enhancement; see assets/js/behavior.js)
--------------------------------------------------------------------- */
.sqj-js .sqj-reveal {
  opacity: 0;
  transform: translateY(16px);
}
.sqj-js .sqj-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .sqj-js .sqj-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------
   Buttons — one pill geometry site-wide, differentiated by fill/weight.
--------------------------------------------------------------------- */
.sqj-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--sqj-radius-pill);
  padding: 13px 26px;
  font-family: var(--sqj-font-text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}
.sqj-go--primary {
  background: var(--sqj-carbon);
  color: var(--sqj-bone);
}
.sqj-go--primary:hover { background: var(--sqj-ink); transform: translateY(-1px); }
.sqj-go--primary:active { transform: translateY(0); }
.sqj-go--ghost {
  background: transparent;
  color: var(--sqj-ink);
  border-color: var(--sqj-smoke);
}
.sqj-go--ghost:hover { border-color: var(--sqj-ink); background: var(--sqj-fog); }
.sqj-go--small { padding: 9px 18px; font-size: 14px; min-height: 40px; }
.sqj-go--full { width: 100%; margin-top: var(--sqj-gap-16); }
.sqj-go:focus-visible {
  outline: 3px solid var(--sqj-ember);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   Header
--------------------------------------------------------------------- */
.sqj-top {
  background: var(--sqj-bone);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 0 rgba(32, 32, 32, 0.06);
}
.sqj-top__inner {
  max-width: var(--sqj-max);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sqj-gap-16);
}
.sqj-top__brand, .sqj-base__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--sqj-ink);
}
.sqj-top__mark { width: 28px; height: 28px; flex: none; }
.sqj-top__word {
  font-family: var(--sqj-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--sqj-carbon);
}
.sqj-top__word--accent {
  color: var(--sqj-carbon);
  border-bottom: 3px solid var(--sqj-ember);
}
.sqj-top__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.sqj-top__link {
  text-decoration: none;
  color: var(--sqj-ink);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.sqj-top__link:hover, .sqj-top__link--active {
  border-bottom-color: var(--sqj-ink);
}
.sqj-top__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1.5px solid var(--sqj-smoke);
  border-radius: var(--sqj-radius-pill);
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.sqj-top__burger-bar {
  width: 18px;
  height: 2px;
  background: var(--sqj-ink);
  border-radius: 2px;
}
.sqj-top__burger-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

@media (max-width: 780px) {
  .sqj-top__burger { display: inline-flex; }
  .sqj-top__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sqj-bone);
    box-shadow: 0 1px 0 rgba(32, 32, 32, 0.06);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 20px 20px;
    display: none;
  }
  .sqj-top__nav.is-open { display: flex; }
  .sqj-top__link { width: 100%; padding: 10px 4px; }
}

/* ---------------------------------------------------------------------
   Hero
--------------------------------------------------------------------- */
.sqj-banner {
  position: relative;
  background: var(--sqj-gradient);
  overflow: hidden;
}
.sqj-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.16) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}
.sqj-banner__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sqj-gap-96) 20px var(--sqj-gap-64);
  text-align: center;
}
.sqj-banner__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sqj-carbon);
  margin: 0 0 var(--sqj-gap-16);
}
.sqj-banner__title {
  color: var(--sqj-carbon);
  margin: 0 0 var(--sqj-gap-16);
}
.sqj-banner__lead {
  font-size: 18px;
  color: rgba(0,0,0,0.78);
  max-width: 58ch;
  margin: 0 auto var(--sqj-gap-32);
}
.sqj-banner__actions {
  display: flex;
  gap: var(--sqj-gap-16);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------
   Generic section block
--------------------------------------------------------------------- */
.sqj-block { padding: var(--sqj-gap-64) 0; }
.sqj-block--alt { background: var(--sqj-vellum); }
.sqj-block--hub-intro { padding-top: var(--sqj-gap-48); }
.sqj-block--next { background: var(--sqj-fog); }
.sqj-block--404 { padding: var(--sqj-gap-96) 0; text-align: center; }
.sqj-block__inner {
  max-width: var(--sqj-max);
  margin: 0 auto;
  padding: 0 20px;
}
.sqj-block__inner--prose { max-width: 760px; }
.sqj-block__head { max-width: 680px; margin-bottom: var(--sqj-gap-32); }
.sqj-block__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sqj-graphite);
  margin: 0 0 var(--sqj-gap-8);
}
.sqj-block__title--sm { font-size: clamp(22px, 2.6vw, 28px); }
.sqj-block__lead { font-size: 17px; color: var(--sqj-graphite); max-width: 68ch; }
.sqj-block__text { max-width: 72ch; font-size: 16px; }
.sqj-block--404 .sqj-block__text { margin-left: auto; margin-right: auto; }

.sqj-frame {
  background: var(--sqj-gradient);
  padding: 5px;
}
.sqj-frame__inner {
  background: var(--sqj-bone);
  padding: var(--sqj-gap-48) var(--sqj-gap-32);
}
.sqj-frame__inner .sqj-block__text:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   Genre showcase
--------------------------------------------------------------------- */
.sqj-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sqj-gap-24);
}
.sqj-showcase--links { grid-template-columns: repeat(3, 1fr); }
.sqj-showcase__item {
  background: var(--sqj-bone);
  padding: var(--sqj-gap-32);
  display: flex;
  flex-direction: column;
  gap: var(--sqj-gap-8);
}
.sqj-block--alt .sqj-showcase__item,
.sqj-block--alt .sqj-showcase__item--link { background: var(--sqj-bone); }
.sqj-showcase__item--link { text-decoration: none; color: var(--sqj-ink); border: 1px solid var(--sqj-smoke); }
.sqj-showcase__item--link:hover { border-color: var(--sqj-ink); }
.sqj-showcase__eyebrow { font-size: 13px; font-weight: 600; color: var(--sqj-graphite); margin: 0; }
.sqj-showcase__title { font-size: 22px; margin: 0; }
.sqj-showcase__title a { text-decoration: none; }
.sqj-showcase__title a:hover { text-decoration: underline; }
.sqj-showcase__text { color: var(--sqj-graphite); font-size: 15px; margin: 0; flex: 1; }
.sqj-showcase__link {
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid var(--sqj-ink);
  padding-bottom: 1px;
}

/* ---------------------------------------------------------------------
   Game entry — single list-row card style, image left / text right.
--------------------------------------------------------------------- */
.sqj-entry-list { display: flex; flex-direction: column; }
.sqj-entry {
  display: flex;
  gap: var(--sqj-gap-24);
  padding: var(--sqj-gap-24) 0;
  border-bottom: 1px solid var(--sqj-fog);
  align-items: flex-start;
}
.sqj-entry:first-child { padding-top: 0; }
.sqj-entry:last-child { border-bottom: none; }
.sqj-entry__media { flex: none; }
.sqj-entry__img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: var(--sqj-fog);
}
.sqj-entry__body { flex: 1; min-width: 0; }
.sqj-entry__meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--sqj-graphite); margin: 0 0 4px; }
.sqj-entry__tag {
  display: inline-flex;
  border: 1px solid var(--sqj-smoke);
  border-radius: var(--sqj-radius-pill);
  padding: 2px 10px;
  font-weight: 600;
}
.sqj-entry__title { margin: 0 0 6px; font-size: 19px; }
.sqj-entry__title a { text-decoration: none; }
.sqj-entry__title a:hover { text-decoration: underline; }
.sqj-entry__text { color: var(--sqj-graphite); font-size: 15px; margin: 0 0 10px; max-width: 62ch; }
.sqj-entry__foot { display: flex; align-items: center; gap: var(--sqj-gap-16); margin: 0; }
.sqj-entry__score { font-family: var(--sqj-font-display); font-weight: 700; }
.sqj-entry__score-num { font-size: 20px; color: var(--sqj-ember); }
.sqj-entry__score-den { font-size: 13px; color: var(--sqj-graphite); }
.sqj-entry__go { font-size: 14px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--sqj-ink); padding-bottom: 1px; }

/* ---------------------------------------------------------------------
   Comparison tables
--------------------------------------------------------------------- */
.sqj-grid { margin-top: var(--sqj-gap-8); }
.sqj-grid__scroll { overflow-x: auto; }
.sqj-grid__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.sqj-grid__table caption { text-align: left; font-size: 13px; color: var(--sqj-graphite); padding-bottom: 8px; caption-side: top; }
.sqj-grid__table th, .sqj-grid__table td {
  text-align: left;
  padding: 12px 14px;
  white-space: nowrap;
}
.sqj-grid__table thead th {
  border-bottom: 2px solid var(--sqj-ink);
  font-weight: 700;
  color: var(--sqj-ink);
}
.sqj-grid__table tbody tr:nth-child(even) { background: var(--sqj-vellum); }
.sqj-grid__table tbody th { font-weight: 600; }
.sqj-grid__table tbody th a { text-decoration: none; }
.sqj-grid__table tbody th a:hover { text-decoration: underline; }
.sqj-grid__note { font-size: 13.5px; color: var(--sqj-graphite); margin-top: var(--sqj-gap-8); max-width: 72ch; }

/* ---------------------------------------------------------------------
   Breadcrumbs
--------------------------------------------------------------------- */
.sqj-trail {
  max-width: var(--sqj-max);
  margin: 0 auto;
  padding: 18px 20px 0;
  font-size: 13.5px;
  color: var(--sqj-graphite);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.sqj-trail__item { color: var(--sqj-graphite); text-decoration: none; }
.sqj-trail__item:hover { text-decoration: underline; }
.sqj-trail__sep { padding: 0 2px; }
.sqj-trail__current { color: var(--sqj-ink); font-weight: 600; }

/* ---------------------------------------------------------------------
   Review page
--------------------------------------------------------------------- */
.sqj-review { max-width: var(--sqj-max); margin: 0 auto; padding: var(--sqj-gap-32) 20px var(--sqj-gap-96); }
.sqj-review__head { max-width: 800px; margin-bottom: var(--sqj-gap-32); }
.sqj-review__eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sqj-graphite); margin: 0 0 8px; }
.sqj-review__hook { font-size: 18px; color: var(--sqj-graphite); max-width: 62ch; margin: 8px 0 var(--sqj-gap-16); }
.sqj-review__score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--sqj-font-display);
  border: 1.5px solid var(--sqj-smoke);
  border-radius: var(--sqj-radius-pill);
  padding: 8px 20px;
}
.sqj-review__score-num { font-size: 26px; font-weight: 700; color: var(--sqj-ember); }
.sqj-review__score-den { font-size: 14px; color: var(--sqj-graphite); }
.sqj-review__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: var(--sqj-gap-64);
  align-items: start;
}
.sqj-review__lead { font-size: 18px; }
.sqj-review__section { margin-top: var(--sqj-gap-32); }
.sqj-review__section h2 { font-size: 23px; }
.sqj-review__aside {
  position: sticky;
  top: 90px;
  background: var(--sqj-vellum);
  padding: var(--sqj-gap-24);
}
.sqj-review__icon { width: 72px; height: 72px; margin: 0 auto var(--sqj-gap-16); }

.sqj-facts { margin: 0; }
.sqj-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--sqj-smoke);
  font-size: 13.5px;
}
.sqj-facts__row:last-child { border-bottom: none; }
.sqj-facts__label { color: var(--sqj-graphite); margin: 0; }
.sqj-facts__value { color: var(--sqj-ink); font-weight: 600; text-align: right; margin: 0; }

.sqj-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sqj-gap-16);
  margin: var(--sqj-gap-32) 0;
}
.sqj-gallery__img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; background: var(--sqj-fog); }

.sqj-verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sqj-gap-32);
  background: var(--sqj-vellum);
  padding: var(--sqj-gap-24);
  margin: var(--sqj-gap-32) 0;
}
.sqj-verdict__title { font-weight: 700; margin: 0 0 10px; }
.sqj-verdict__list { display: flex; flex-direction: column; gap: 8px; }
.sqj-verdict__list li { position: relative; padding-left: 22px; font-size: 15px; }
.sqj-verdict__list--pro li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px;
  background: var(--sqj-forest);
  clip-path: polygon(0 45%, 35% 80%, 100% 10%, 85% 0%, 33% 55%, 15% 30%);
}
.sqj-verdict__list--con li::before {
  content: "";
  position: absolute; left: 2px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--sqj-graphite);
}

.sqj-related__title { font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sqj-graphite); margin: var(--sqj-gap-32) 0 8px; }

@media (max-width: 900px) {
  .sqj-review__body { grid-template-columns: 1fr; }
  .sqj-review__aside { position: static; order: -1; }
  .sqj-verdict { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   Roundup list
--------------------------------------------------------------------- */
.sqj-list { display: flex; flex-direction: column; }
.sqj-list__item {
  display: flex;
  gap: var(--sqj-gap-24);
  padding: var(--sqj-gap-24) 0;
  border-bottom: 1px solid var(--sqj-fog);
}
.sqj-list__item:first-child { padding-top: 0; }
.sqj-list__item:last-child { border-bottom: none; }
.sqj-list__rank {
  flex: none;
  width: 48px;
  font-family: var(--sqj-font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--sqj-smoke);
}
.sqj-list__item:nth-child(-n+3) .sqj-list__rank { color: var(--sqj-ember); }
.sqj-list__body { display: flex; gap: var(--sqj-gap-16); flex: 1; min-width: 0; }
.sqj-list__img { width: 64px; height: 64px; flex: none; background: var(--sqj-fog); }
.sqj-list__meta { font-size: 13px; color: var(--sqj-graphite); margin: 0 0 4px; }
.sqj-list__title { margin: 0 0 6px; font-size: 19px; }
.sqj-list__title a { text-decoration: none; }
.sqj-list__title a:hover { text-decoration: underline; }
.sqj-list__note { color: var(--sqj-graphite); font-size: 15px; margin: 0 0 8px; max-width: 64ch; }
.sqj-list__go { font-size: 14px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--sqj-ink); padding-bottom: 1px; }

/* ---------------------------------------------------------------------
   Contact card / legal / sitemap
--------------------------------------------------------------------- */
.sqj-contact-card {
  background: var(--sqj-vellum);
  padding: var(--sqj-gap-24);
  margin-top: var(--sqj-gap-24);
}
.sqj-contact-card__title { font-weight: 700; margin: 0 0 8px; }
.sqj-contact-card__email a { font-size: 18px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--sqj-ink); }

.sqj-legal__updated { color: var(--sqj-graphite); font-size: 14px; }
.sqj-legal__section { margin-bottom: var(--sqj-gap-32); }
.sqj-legal__section h2 { font-size: 20px; }
.sqj-legal__section p { max-width: 72ch; }

.sqj-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sqj-gap-32); }
.sqj-map__title { font-size: 16px; margin: 0 0 10px; }
.sqj-map__links { display: flex; flex-direction: column; gap: 8px; }
.sqj-map__links a { text-decoration: none; font-size: 14.5px; }
.sqj-map__links a:hover { text-decoration: underline; }

/* ---------------------------------------------------------------------
   Footer
--------------------------------------------------------------------- */
.sqj-base { background: var(--sqj-ink); color: var(--sqj-bone); margin-top: var(--sqj-gap-64); }
.sqj-base__inner {
  max-width: var(--sqj-max);
  margin: 0 auto;
  padding: var(--sqj-gap-64) 20px var(--sqj-gap-32);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sqj-gap-32);
}
.sqj-base__brand { color: var(--sqj-bone); }
.sqj-base__brand .sqj-top__word,
.sqj-base__brand .sqj-top__word--accent { color: var(--sqj-bone); }
.sqj-base__brand .sqj-top__mark polygon:first-child { fill: #ffffff; }
.sqj-base__tag { color: rgba(255,255,255,0.65); font-size: 13.5px; margin-top: var(--sqj-gap-16); max-width: 30ch; }
.sqj-base__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin: 0 0 var(--sqj-gap-16); }
.sqj-base__links { display: flex; flex-direction: column; gap: 10px; }
.sqj-base__links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 14.5px; }
.sqj-base__links a:hover { text-decoration: underline; }
.sqj-base__contact-text { color: rgba(255,255,255,0.65); font-size: 13.5px; margin: 0 0 10px; }
.sqj-base__contact a { color: var(--sqj-bone); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--sqj-ember); }
.sqj-base__legal { border-top: 1px solid rgba(255,255,255,0.12); }
.sqj-base__owner { max-width: var(--sqj-max); margin: 0 auto; padding: var(--sqj-gap-24) 20px; font-size: 12.5px; color: rgba(255,255,255,0.5); }

.sqj-lift {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: var(--sqj-radius-pill);
  border: none;
  background: var(--sqj-carbon);
  color: var(--sqj-bone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}
.sqj-lift.is-shown { opacity: 1; pointer-events: auto; transform: none; }
.sqj-lift svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------------------------------------------------------------------
   Cookie / information notice
--------------------------------------------------------------------- */
.sqj-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--sqj-carbon);
  color: var(--sqj-bone);
  padding: var(--sqj-gap-24);
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}
.sqj-notice[hidden] { display: none; }
.sqj-notice__inner { display: flex; flex-direction: column; gap: var(--sqj-gap-16); }
.sqj-notice__text { font-size: 14px; color: rgba(255,255,255,0.88); margin: 0; max-width: none; }
.sqj-notice__text a { color: var(--sqj-bone); text-decoration: underline; }
.sqj-notice__actions { display: flex; gap: 10px; justify-content: flex-end; }
.sqj-notice .sqj-go--ghost { border-color: rgba(255,255,255,0.4); color: var(--sqj-bone); }
.sqj-notice .sqj-go--ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------- */
@media (max-width: 900px) {
  .sqj-showcase { grid-template-columns: 1fr; }
  .sqj-showcase--links { grid-template-columns: 1fr; }
  .sqj-base__inner { grid-template-columns: 1fr 1fr; }
  .sqj-map { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sqj-base__inner { grid-template-columns: 1fr; }
  .sqj-map { grid-template-columns: 1fr; }
  .sqj-entry__img { width: 72px; height: 72px; }
  .sqj-list__img { width: 56px; height: 56px; }
  .sqj-gallery { grid-template-columns: 1fr; }
  .sqj-banner__inner { padding: var(--sqj-gap-64) 20px var(--sqj-gap-48); }
  .sqj-notice { left: 12px; right: 12px; bottom: 12px; padding: var(--sqj-gap-16); }
  .sqj-notice__actions { justify-content: stretch; }
  .sqj-notice__actions .sqj-go { flex: 1; }
}
