/* ==========================================================
   Ollie Owen-Jones — site styles
   Dark, minimal. The only colour comes from the OOJ logo.
   ========================================================== */

:root {
  --bg: #0b0b0d;
  --bg-raised: #131317;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f3f1ed;
  --muted: #9b9aa3;
  --blue: #4a44ee;
  --red: #e6463b;
  --accent: linear-gradient(90deg, var(--blue), #b35ad8 55%, var(--red));

  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 11vw, 140px);
  --radius: 14px;
  --header-h: 72px;
}

/* Self-hosted fonts (latin + latin-ext subsets from Google Fonts) */
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/instrument-serif-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/instrument-serif-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/manrope-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/manrope-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ---------- Type ---------- */

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.h2 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
.h3 { font-size: 1.25rem; letter-spacing: -0.015em; }

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 34ch;
}

.prose p { margin: 0 0 1.2em; color: #cfcdd4; max-width: 62ch; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: #fff; }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color 0.2s, gap 0.2s;
}
.text-link:hover { border-color: var(--text); gap: 12px; }
.text-link svg { width: 16px; height: 16px; flex: none; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: auto; }
.brand span {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.nav ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav a {
  position: relative;
  display: block;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s, top 0.3s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    height: calc(100dvh - var(--header-h));
    background: var(--bg);
    padding: 24px var(--gutter);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0s 0.25s;
  }
  .nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a {
    padding: 22px 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
  }
  .nav a[aria-current="page"]::after { left: 0; right: auto; width: 32px; bottom: 14px; }
  .nav-open { overflow: hidden; }
}

/* ---------- Sections ---------- */

.section { padding-block: var(--section); }
.section + .section { padding-top: 0; }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .h2 { max-width: 18ch; }

/* ---------- Hero ---------- */

.hero { padding-block: clamp(48px, 8vw, 110px) var(--section); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero .display { margin-bottom: 28px; }
.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-raised);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4 / 3.4; }
}

/* ---------- Highlights ---------- */

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.highlight { padding: 32px 28px 32px 0; }
.highlight + .highlight { padding-left: 28px; border-left: 1px solid var(--line); }
.highlight dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.highlight dd { margin: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.45; }

@media (max-width: 760px) {
  .highlights { grid-template-columns: 1fr; }
  .highlight { padding: 24px 0; }
  .highlight + .highlight { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- Video ---------- */

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-frame iframe,
.video-frame video,
.video-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.yt-lite { cursor: pointer; border: 0; padding: 0; width: 100%; }
.yt-lite img { transition: transform 0.6s ease, opacity 0.3s; opacity: 0.85; }
.yt-lite:hover img { transform: scale(1.02); opacity: 1; }

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play span {
  display: grid;
  place-items: center;
  width: clamp(64px, 9vw, 88px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg);
  transition: transform 0.25s;
}
.play svg { width: 30%; margin-left: 6%; }
.yt-lite:hover .play span { transform: scale(1.06); }

.video-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.video-meta p { margin: 0; color: var(--muted); }
.video-meta strong { color: var(--text); font-weight: 600; }

/* ---------- Split (text + image) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split .h2 { margin-bottom: 28px; }
.split .text-link { margin-top: 32px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery .g1 { grid-column: span 4; aspect-ratio: 3 / 4; }
.gallery .g2 { grid-column: span 4; aspect-ratio: 3 / 4; }
.gallery .g3 { grid-column: span 4; aspect-ratio: 3 / 4; }
.gallery .g3 img { object-position: center 20%; }

@media (max-width: 760px) {
  .gallery { gap: 10px; }
  .gallery .g1, .gallery .g2 { grid-column: span 6; }
  .gallery .g3 { grid-column: span 12; aspect-ratio: 4 / 3; }
}

/* ---------- CTA band ---------- */

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--bg-raised);
}
.cta .h2 { max-width: 16ch; }
.cta p { margin: 16px 0 0; color: var(--muted); max-width: 44ch; }

/* ---------- Page header (inner pages) ---------- */

.page-head { padding-block: clamp(56px, 9vw, 120px) clamp(40px, 6vw, 72px); }
.page-head .display { max-width: 12ch; }
.page-head .lead { margin-top: 28px; color: var(--muted); max-width: 46ch; }

/* ---------- About page ---------- */

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 7.4;
  background: var(--bg-raised);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

@media (max-width: 760px) {
  .feature-image { aspect-ratio: 4 / 3; }
}

.columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 80px);
}
.columns .h2 { max-width: 10ch; }

@media (max-width: 860px) {
  .columns { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */

.testimonial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 88px);
  border-top: 1px solid var(--line);
}
.testimonial:last-child { border-bottom: 1px solid var(--line); }
.testimonial:nth-child(even) .testimonial-media { order: 2; }

.testimonial-media { border-radius: var(--radius); overflow: hidden; }
.testimonial-media video { width: 100%; background: #000; aspect-ratio: 16 / 9; }

.quote { margin: 0; }
.quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.quote p::before { content: "\201C"; }
.quote p::after { content: "\201D"; }
.quote footer { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
.quote cite { font-style: normal; font-weight: 700; }
.quote footer span { color: var(--muted); font-size: 0.93rem; }

@media (max-width: 860px) {
  .testimonial { grid-template-columns: 1fr; }
  .testimonial:nth-child(even) .testimonial-media { order: 0; }
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.contact-photo {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-raised);
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-photo { position: static; aspect-ratio: 4 / 3.2; order: -1; }
}

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-raised);
  color: var(--text);
  font: inherit;
  font-size: 16px; /* stops iOS zooming on focus */
  transition: border-color 0.2s, background-color 0.2s;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:hover,
.field textarea:hover { border-color: rgba(255, 255, 255, 0.2); }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--text); background: #17171c; }

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.form-status { margin: 0; font-size: 0.93rem; color: var(--muted); }
.form-status.is-ok { color: #8fe3a8; }
.form-status.is-error { color: #ff9a8f; }
.hp { position: absolute; left: -9999px; }

@media (max-width: 520px) {
  .form { grid-template-columns: 1fr; }
  .form .btn { width: 100%; }
}

/* ---------- Footer ---------- */

main { padding-bottom: var(--section); }
main > .section:last-child { padding-bottom: 0; }

.site-footer {
  padding-block: 56px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.footer-nav a:hover,
.footer-social a:hover { color: var(--text); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

/* ---------- Reveal on scroll ---------- */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Releases ---------- */

.releases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 40px) clamp(16px, 3vw, 32px);
}
.release { display: flex; flex-direction: column; }
.release-art {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-raised);
}
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.release-art:hover img { transform: scale(1.03); }
.release-art--wide { background: #000; }
.release-art--wide img { object-fit: contain; }
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.release h3 { margin-top: 18px; font-size: 1.15rem; letter-spacing: -0.015em; }
.release .meta { margin: 4px 0 0; color: var(--muted); font-size: 0.9rem; }
.release-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.chip:hover { border-color: rgba(255, 255, 255, 0.35); }
.chip--solid { background: var(--text); color: var(--bg); border-color: var(--text); }
.chip--solid:hover { background: #fff; }
.chip svg { width: 14px; height: 14px; flex: none; }

@media (max-width: 760px) {
  .releases { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .releases { gap: 24px 12px; }
  .release h3 { font-size: 1rem; margin-top: 12px; }
  .release-links { gap: 6px; }
  .chip { padding: 0 12px; font-size: 0.8rem; }
}

/* ---------- Platform / social link list ---------- */

.link-groups { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.link-groups h2 {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.link-list { margin: 0; padding: 0; list-style: none; }
.link-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 600;
  transition: padding 0.25s, color 0.2s;
}
.link-list a:hover { padding-left: 12px; }
.link-list svg.icon { width: 22px; height: 22px; flex: none; }
.link-list .handle { margin-left: auto; color: var(--muted); font-size: 0.88rem; font-weight: 500; }
.link-list .arrow { width: 16px; height: 16px; flex: none; color: var(--muted); }

@media (max-width: 760px) {
  .link-groups { grid-template-columns: 1fr; }
  .link-list .handle { display: none; }
  .link-list .arrow { margin-left: auto; }
}

.nowrap { white-space: nowrap; }

/* Home: releases become a swipeable row on phones */
@media (max-width: 760px) {
  .releases--row {
    display: flex;
    gap: 14px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .releases--row::-webkit-scrollbar { display: none; }
  .releases--row .release { flex: 0 0 68%; scroll-snap-align: start; }
}

/* ---------- Links page ---------- */

.hub { padding-block: clamp(48px, 8vw, 96px) 0; }
.hub-wrap { max-width: 640px; }
.hub-head { text-align: center; margin-bottom: 48px; }
.hub-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}
.hub-avatar > img:first-child { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.hub-avatar .hub-logo {
  position: absolute;
  right: -6px;
  bottom: -2px;
  width: 44px;
  padding: 6px;
  border-radius: 50%;
  background: var(--bg);
}
.hub-head p { margin: 12px 0 0; color: var(--muted); }
.hub-title {
  margin: 40px 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hub-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.hub-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 8px 18px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  transition: border-color 0.2s, transform 0.2s;
}
.hub-link:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-1px); }
.hub-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.hub-icon svg { width: 24px; height: 24px; }
.hub-text { display: flex; flex-direction: column; min-width: 0; }
.hub-label { font-weight: 600; line-height: 1.3; }
.hub-sub { color: var(--muted); font-size: 0.87rem; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hub-link .arrow { width: 16px; height: 16px; margin-left: auto; flex: none; color: var(--muted); }

/* ---------- About: photo row ---------- */

.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-row figure { margin: 0; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--bg-raised); }
.photo-row img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .photo-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo-row figure:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
}

.turnstile { min-height: 65px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Gallery lightbox ---------- */

.gallery-link { display: block; height: 100%; cursor: zoom-in; }
.gallery-link:focus-visible { outline-offset: -3px; }

.lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 5, 7, 0.96);
  color: var(--text);
}
.lightbox[open] { display: grid; place-items: center; animation: lb-in 0.2s ease; }
.lightbox::backdrop { background: rgba(5, 5, 7, 0.6); }
.lb-img {
  max-width: calc(100vw - 160px);
  max-height: calc(100dvh - 120px);
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}
.lb-btn {
  position: fixed;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(19, 19, 23, 0.8);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.lb-btn:hover { background: var(--bg-raised); border-color: rgba(255, 255, 255, 0.35); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: fixed;
  bottom: 22px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .lb-img { max-width: calc(100vw - 32px); max-height: calc(100dvh - 160px); }
  .lb-prev, .lb-next { top: auto; bottom: 16px; transform: none; }
  .lb-prev { left: 16px; }
  .lb-next { right: 16px; }
  .lb-close { top: 16px; right: 16px; }
  .lb-count { bottom: 30px; }
}

@keyframes lb-in { from { opacity: 0; } }
