/* chronoluxa.com - Swiss puzzle showroom. Handwritten, no framework.
   Palette: carbon-ink / white / bone + one teal accent (#12b3bb).
   Type: Outfit (display) · IBM Plex Sans (body) · IBM Plex Mono (labels). */

:root {
  --ink: #0a0d0f;
  --slate: #2e3438;
  --graphite: #656565;
  --silver: #d5d6d7;
  --bone: #f7f7f7;
  --ash: #efefef;
  --white: #ffffff;
  --teal: #12b3bb;
  --teal-deep: #0d8f96;
  --teal-wash: #e4f6f7;

  --f-display: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-body: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --pad-x: clamp(18px, 6vw, 104px);
  --rowgap: clamp(56px, 9vw, 128px);
  --radius: 2px;
  --hair: #e2e2e2;

  /* motion - strong custom curves (emil-design-eng) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --shadow-lift: 0 22px 48px -30px rgba(10, 13, 15, .28);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: clamp(15.5px, 0.5vw + 14.5px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p { text-wrap: pretty; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--graphite);
}

::selection { background: var(--teal); color: var(--ink); }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  height: 74px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.site-head.is-scrolled {
  height: 60px;
  border-bottom-color: var(--hair);
  background: rgba(255,255,255,0.94);
}
.brand {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.brand:hover { text-decoration: none; }
.brand .dot { color: var(--teal); }
.brand__mark { width: 22px; height: 22px; flex: none; }

.nav-links {
  display: flex; gap: clamp(16px, 2.4vw, 34px); align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--slate); position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--teal); transition: width .28s var(--ease-out);
}
.nav-links a:hover { color: var(--teal-deep); text-decoration: none; }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--ink);
  width: 42px; height: 38px; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
  transition: transform .25s var(--ease-out), top .25s var(--ease-out), background .2s var(--ease-out);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    position: fixed; left: 0; right: 0; top: 74px; z-index: 59;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--hair);
    padding: 8px var(--pad-x) 22px;
    transform: translateY(-140%); transition: transform .32s var(--ease-out);
    box-shadow: 0 18px 30px rgba(10,13,15,.08);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .site-head.is-scrolled .nav-links { top: 60px; max-height: calc(100vh - 60px); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; font-size: 0.82rem; width: 100%; border-bottom: 1px solid var(--hair); }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }
  /* hamburger → X when open */
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
}

/* ---------- generic section ---------- */
main { display: block; }
.section { padding-block: var(--rowgap); padding-inline: var(--pad-x); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--tight { padding-block: clamp(40px, 6vw, 76px); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-deep); margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--teal); display: inline-block;
}
.section--ink .eyebrow { color: var(--teal); }

.lede { max-width: 60ch; color: var(--slate); font-size: 1.08rem; }
.section--ink .lede { color: #c9cfd1; }

/* ---------- hero / gallery wall ---------- */
.hero {
  background: var(--ink); color: var(--white);
  padding: clamp(84px, 13vh, 132px) var(--pad-x) clamp(48px, 8vh, 92px);
  position: relative; overflow: hidden;
  display: grid; align-content: center;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 64px);
}
@media (min-width: 980px) {
  .hero { grid-template-columns: 1.02fr 0.98fr; align-items: center; min-height: min(92vh, 820px); }
}
/* faint grid texture on the wall */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: clamp(48px, 7vw, 88px) clamp(48px, 7vw, 88px);
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 40%, transparent 100%);
}
.hero__copy { max-width: 40ch; position: relative; z-index: 2; }
.hero__kicker {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 11px;
}
.hero__kicker::before { content: ""; width: 30px; height: 1px; background: var(--teal); }
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  letter-spacing: -0.015em; line-height: 0.96; margin-bottom: 24px; font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--teal); font-weight: 500; }
.hero__sub { color: #c4cbce; font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 44ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__trust {
  margin-top: 30px; font-family: var(--f-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #7f888c;
  display: flex; align-items: center; gap: 10px;
}
.hero__trust svg { width: 15px; height: 15px; flex: none; }

/* the gallery wall of framed real screenshots */
.hero__wall {
  position: relative; z-index: 1;
  display: grid; gap: clamp(12px, 1.4vw, 18px);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  max-width: 520px; width: 100%; justify-self: end;
}
.frame {
  position: relative; background: #0e1114;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 46px -26px rgba(0,0,0,.7);
}
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--f-mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; padding: 16px 10px 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.62));
}
.frame--tall { grid-row: span 2; aspect-ratio: 3 / 4; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--lead { border-color: rgba(18,179,187,.55); }
.frame--lead::after {
  content: ""; position: absolute; top: 10px; right: 10px; width: 7px; height: 7px;
  background: var(--teal); border-radius: 50%;
}
@media (max-width: 979px) {
  .hero__wall { max-width: 560px; justify-self: start; }
}
@media (max-width: 520px) {
  .hero__wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .frame--tall { aspect-ratio: 3 / 4; }
}

.scrollcue {
  position: absolute; left: var(--pad-x); bottom: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #7f888c;
}
.scrollcue__line { position: relative; width: 1px; height: 34px; background: rgba(255,255,255,.18); overflow: hidden; }
.scrollcue__line::after {
  content: ""; position: absolute; left: 0; top: -60%; width: 100%; height: 60%;
  background: var(--teal); animation: cueDrop 2.1s var(--ease-in-out) infinite;
}
@keyframes cueDrop { 0% { top: -60%; } 60%, 100% { top: 100%; } }
@media (max-width: 979px) { .scrollcue { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: transform .16s var(--ease-out), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn svg { transition: transform .2s var(--ease-out); }
.btn--fill { background: var(--teal); color: var(--ink); }
.btn--fill:hover { background: #0fd0da; box-shadow: 0 12px 26px -12px rgba(18,179,187,.6); }
.btn--fill:hover svg { transform: translateY(2px); }
.btn--ghost-light { border-color: rgba(255,255,255,.32); color: #fff; }
.btn--ghost-light:hover { border-color: var(--teal); color: var(--teal); }
.btn--ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ink:hover { background: var(--ink); color: #fff; }

/* store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--ink); border-radius: var(--radius);
  padding: 9px 15px; color: var(--ink); background: var(--white);
  transition: background .18s ease, color .18s ease, transform .16s var(--ease-out);
}
.store-btn:hover { background: var(--ink); color: #fff; text-decoration: none; }
.store-btn:active { transform: scale(0.98); }
.store-btn:hover svg [data-fill] { fill: #fff; }
.store-btn svg { width: 20px; height: 20px; flex: none; }
.store-btn .st { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn .st small { font-family: var(--f-mono); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--graphite); }
.store-btn:hover .st small { color: var(--silver); }
.store-btn .st b { font-family: var(--f-display); font-weight: 600; font-size: 0.92rem; }
.store-note { font-size: 0.86rem; color: var(--slate); align-self: center; max-width: 48ch; line-height: 1.55; margin: 0; }
.store-note a { font-weight: 600; }

/* ---------- numbers strip ---------- */
.numbers {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden;
  background: var(--hair); gap: 1px;
}
@media (min-width: 720px) { .numbers { grid-template-columns: repeat(4, 1fr); } }
.numbers__cell { background: var(--white); padding: clamp(22px, 3vw, 34px) clamp(18px, 2.4vw, 30px); }
.numbers__n {
  font-family: var(--f-display); font-weight: 600; font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.numbers__n .u { color: var(--teal-deep); }
.numbers__k {
  font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--graphite); margin-top: 12px; display: block;
}

/* ---------- curator / come scegliamo ---------- */
.curator { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 880px) { .curator { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.curator h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 20px; }
.curator__facts { margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.curator__facts > div { display: grid; grid-template-columns: 34% 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--hair); }
.curator__facts dt {
  font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--graphite); padding-top: 3px; margin: 0;
}
.curator__facts dd { margin: 0; }
.curator__facts .v { color: var(--ink); }
.caveat { border-left: 2px solid var(--teal); padding: 4px 0 4px 18px; margin-top: 26px; color: var(--slate); font-size: 0.96rem; }

/* ---------- process (how we curate) ---------- */
.process { display: grid; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 680px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--white); padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 12px; position: relative; transition: background .25s var(--ease-out); }
.step:hover { background: var(--bone); }
.step__n { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--teal-deep); }
.step h3 { font-size: 1.18rem; }
.step p { margin: 0; font-size: 0.92rem; color: var(--slate); }
.step::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: var(--teal); transition: width .4s var(--ease-out); }
.step:hover::before { width: 100%; }

/* ---------- index anchors ---------- */
.indice { padding-block: clamp(40px, 6vw, 72px); }
.indice ol {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1px;
  background: var(--hair); border: 1px solid var(--hair);
}
.indice li { background: var(--white); }
.indice a {
  display: flex; align-items: baseline; gap: 12px; padding: 16px 18px; color: var(--ink);
  transition: background .2s var(--ease-out);
}
.indice a:hover { background: var(--white); text-decoration: none; }
.indice li { transition: background .2s var(--ease-out); }
.indice li:hover { background: var(--teal-wash); }
.indice .num { font-family: var(--f-mono); font-size: 0.7rem; color: var(--teal-deep); letter-spacing: 0.08em; }
.indice .nm { font-family: var(--f-display); font-weight: 600; }
.indice .gn { display: block; font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--graphite); margin-top: 2px; }

/* ---------- filter chips ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(28px, 3.4vw, 44px); }
.chip {
  font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate); background: var(--white); border: 1px solid var(--silver);
  border-radius: 100px; padding: 9px 16px; cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .16s var(--ease-out);
}
.chip:hover { border-color: var(--ink); }
.chip:active { transform: scale(0.96); }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .c { color: var(--teal); margin-left: 6px; }
.chip[aria-pressed="true"] .c { color: var(--teal); }

/* ---------- catalog gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 30px);
}
.exhibit {
  grid-column: span 12; background: var(--white);
  border: 1px solid var(--hair); border-radius: var(--radius);
  display: flex; flex-direction: column; min-width: 0;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.exhibit.is-hidden { display: none; }
@media (min-width: 720px) { .exhibit { grid-column: span 6; } }
@media (min-width: 1080px) { .exhibit { grid-column: span 4; } }
@media (hover: hover) and (pointer: fine) {
  .exhibit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--silver); }
}

/* featured exhibits span wider and go horizontal */
.exhibit--feature { grid-column: span 12; }
@media (min-width: 900px) {
  .exhibit--feature { grid-column: span 12; flex-direction: row; }
  .exhibit--feature .exhibit__stage { width: 46%; border-right: 1px solid var(--hair); border-bottom: none; }
  .exhibit--feature .exhibit__body { width: 54%; }
}

.exhibit__stage {
  position: relative; background: var(--bone);
  border-bottom: 1px solid var(--hair);
  aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 22px; overflow: hidden;
}
.exhibit--feature .exhibit__stage { aspect-ratio: auto; }
.exhibit__stage svg { width: 100%; height: 100%; }
.exhibit__tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: #fff; padding: 5px 9px; border-radius: var(--radius);
}
.exhibit__num {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  font-family: var(--f-mono); font-size: 0.9rem; color: var(--graphite);
}

.exhibit__body { padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px; }
.exhibit__body h3 { font-size: clamp(1.4rem, 2.2vw, 1.95rem); }
.exhibit__hook { color: var(--slate); font-size: 0.98rem; margin: -4px 0 0; }
.meta {
  display: flex; flex-wrap: wrap; gap: 7px; margin: 2px 0 4px;
}
.meta span {
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate); border: 1px solid var(--hair); padding: 4px 8px; border-radius: var(--radius);
}
.meta .star { color: var(--teal-deep); border-color: var(--teal); }
.exhibit__review { margin: 0; color: var(--ink); font-size: 0.97rem; }
.exhibit__caveat { font-size: 0.87rem; color: var(--graphite); font-style: italic; }
.why { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 7px; }
.why li { position: relative; padding-left: 18px; font-size: 0.9rem; color: var(--slate); }
.why li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; background: var(--teal); }
.history {
  border-top: 1px solid var(--hair); margin-top: 6px; padding-top: 14px;
  font-size: 0.9rem; color: var(--slate);
}
.history b { font-family: var(--f-display); font-weight: 600; color: var(--ink); }

/* ---------- single screenshot in stage ---------- */
.exhibit__shot { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s var(--ease-out); }
.exhibit__stage:has(.exhibit__shot):not(.gal) { padding: 0; background: #0a0d0f; }
.exhibit--feature .exhibit__stage:has(.exhibit__shot) { aspect-ratio: 16 / 10; }
@media (min-width: 900px) { .exhibit--feature .exhibit__stage:has(.exhibit__shot) { aspect-ratio: auto; } }
.exhibit__stage:has(.exhibit__shot)::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 64px; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.42), transparent); pointer-events: none;
}
.exhibit__stage:has(.exhibit__shot) .exhibit__num { color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .exhibit:hover .exhibit__shot { transform: scale(1.04); }
}

/* ---------- screenshot gallery (multi-shot cards) ---------- */
.gal { padding: 0; background: #0a0d0f; }
.gal__track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  width: 100%; height: 100%; scrollbar-width: none; -ms-overflow-style: none;
}
.gal__track::-webkit-scrollbar { display: none; }
.gal__slide { flex: 0 0 100%; scroll-snap-align: center; position: relative; }
.gal__slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.exhibit--feature .gal { aspect-ratio: 16 / 10; }
@media (min-width: 900px) { .exhibit--feature .gal { aspect-ratio: auto; } }
.gal__dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 7px; padding: 6px 10px; border-radius: 100px;
  background: rgba(10,13,15,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gal__dot { width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.4); transition: background .25s var(--ease-out), transform .25s var(--ease-out); }
.gal__dot[aria-current="true"] { background: var(--teal); transform: scale(1.25); }
.gal__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28);
  background: rgba(10,13,15,.42); color: #fff; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .25s var(--ease-out), background .2s ease;
}
.gal:hover .gal__nav, .gal__nav:focus-visible { opacity: 1; }
.gal__nav:hover { background: rgba(10,13,15,.7); }
.gal__nav--prev { left: 12px; }
.gal__nav--next { right: 12px; }
.gal__nav svg { width: 15px; height: 15px; }
.gal__count {
  position: absolute; top: 12px; right: 14px; z-index: 4;
  font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: #fff;
  background: rgba(10,13,15,.5); padding: 4px 9px; border-radius: 100px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
@media (hover: none) { .gal__nav { display: none; } }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px);
  background: rgba(6,8,9,.9); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.lightbox[open], .lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(1000px, 100%); max-height: 86vh; width: auto; object-fit: contain;
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
}
.lightbox__close {
  position: absolute; top: clamp(14px, 3vw, 30px); right: clamp(14px, 3vw, 30px);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.06); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease, transform .16s var(--ease-out);
}
.lightbox__close:hover { background: rgba(255,255,255,.16); }
.lightbox__close:active { transform: scale(0.94); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.06); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,.16); }
.lightbox__nav--prev { left: clamp(10px, 3vw, 34px); }
.lightbox__nav--next { right: clamp(10px, 3vw, 34px); }
.lightbox__cap {
  position: absolute; bottom: clamp(14px, 3vw, 30px); left: 0; right: 0; text-align: center;
  font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: #b9c0c2;
}
@media (prefers-reduced-motion: no-preference) {
  .lightbox__img { animation: lbIn .3s var(--ease-out); }
  @keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
}

/* ---------- studio timeline ---------- */
.timeline { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.14); }
.tl-row {
  display: grid; grid-template-columns: 1fr; gap: 6px 30px;
  padding: clamp(22px, 2.8vw, 32px) 0; border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
@media (min-width: 760px) { .tl-row { grid-template-columns: 96px 1fr auto; align-items: baseline; } }
.tl-year { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--teal); }
.tl-main h3 { font-size: 1.24rem; color: #fff; margin-bottom: 4px; }
.tl-main h3 span { color: #8a9295; font-weight: 400; font-family: var(--f-body); font-size: 0.9rem; letter-spacing: 0; }
.tl-main p { margin: 6px 0 0; color: #aeb5b8; font-size: 0.94rem; max-width: 62ch; }
.tl-flag {
  font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); border: 1px solid rgba(18,179,187,.4); padding: 5px 10px; border-radius: 100px;
  white-space: nowrap; align-self: start; justify-self: start;
}
.ethos {
  margin-top: clamp(30px, 4vw, 48px); padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(18,179,187,.35); border-radius: var(--radius);
  background: rgba(18,179,187,.05); display: flex; gap: 18px; align-items: flex-start;
}
.ethos svg { width: 26px; height: 26px; flex: none; margin-top: 3px; }
.ethos p { margin: 0; color: #c9cfd1; }
.ethos b { color: #fff; font-family: var(--f-display); font-weight: 600; }

/* ---------- manifesto band ---------- */
.manifesto { text-align: left; }
.manifesto blockquote {
  margin: 0; font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem); line-height: 1.2; letter-spacing: -0.01em;
  color: #fff; max-width: 22ch;
}
.manifesto blockquote em { color: var(--teal); font-style: italic; }
.manifesto__mark { font-family: var(--f-display); font-size: clamp(3rem, 8vw, 6rem); line-height: 0.6; color: var(--teal); margin-bottom: 10px; height: .5em; }
.manifesto cite {
  display: block; margin-top: 28px; font-style: normal;
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a9295;
}

/* ---------- editor's pick ---------- */
.picks { display: grid; gap: 20px; }
@media (min-width: 760px) { .picks { grid-template-columns: repeat(3, 1fr); } }
.pick { border-top: 2px solid var(--teal); padding-top: 18px; transition: transform .3s var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .pick:hover { transform: translateY(-3px); } }
.pick .mono { color: var(--teal-deep); margin-bottom: 8px; }
.pick h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pick p { font-size: 0.93rem; color: var(--slate); margin: 0 0 14px; }
.pick a { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--ink); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  transition: color .2s ease;
}
.faq summary:hover { color: var(--teal-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 16px;
  font-family: var(--f-mono); font-size: 1.3rem; color: var(--teal-deep); transition: transform .3s var(--ease-out);
}
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq .ans { padding: 0 40px 22px 0; color: var(--slate); font-size: 0.97rem; max-width: 68ch; }
.faq .ans p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: no-preference) {
  .faq details[open] .ans { animation: ansIn .34s var(--ease-out); }
  @keyframes ansIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
}

/* ---------- section heads ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 54px); }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); letter-spacing: -0.01em; }
.sec-head p { color: var(--slate); margin-top: 16px; }
.section--ink .sec-head h2 { color: #fff; }
.section--ink .sec-head p { color: #aeb5b8; }

/* ---------- forms ---------- */
.form { max-width: 560px; display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.field label .req { color: var(--teal-deep); }
.field input, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  border: 1px solid var(--silver); border-radius: var(--radius); padding: 12px 14px; background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.field textarea { min-height: 120px; resize: vertical; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.87rem; color: var(--slate); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--teal); flex: none; }
.consent a { color: var(--teal-deep); }

/* ---------- content pages ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 42px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 10px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 7px; }
.prose .updated { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite); }
.page-head { padding: clamp(64px, 10vw, 116px) var(--pad-x) clamp(30px, 4vw, 46px); border-bottom: 1px solid var(--hair); position: relative; overflow: hidden; }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.015em; }
.page-head .mono { margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; color: var(--teal-deep); }
.page-head .mono::before { content: ""; width: 22px; height: 1px; background: var(--teal); }
.page-head p { color: var(--slate); max-width: 60ch; margin-top: 16px; }

/* review page hero */
.review-stage { background: var(--bone); border: 1px solid var(--hair); border-radius: var(--radius); padding: 34px; aspect-ratio: 16/10; display: grid; place-items: center; }
.review-grid { display: grid; gap: clamp(24px, 4vw, 54px); }
@media (min-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.review-stage--shot { padding: 0; overflow: hidden; background: #0a0d0f; }
.review-stage--shot .review-shot { display: block; width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }

/* review gallery = the multi-shot strip on review pages */
.review-gal { position: relative; }
.review-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.review-thumbs button { padding: 0; border: 1px solid var(--hair); border-radius: var(--radius); background: none; cursor: pointer; overflow: hidden; transition: border-color .2s ease, transform .16s var(--ease-out); }
.review-thumbs button:hover { border-color: var(--silver); }
.review-thumbs button:active { transform: scale(0.97); }
.review-thumbs button[aria-current="true"] { border-color: var(--teal); }
.review-thumbs img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.review-metabar {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0;
}
.review-metabar span {
  font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate); border: 1px solid var(--hair); padding: 5px 9px; border-radius: var(--radius);
}
.review-metabar .star { color: var(--teal-deep); border-color: var(--teal); }
.verdict {
  border: 1px solid var(--hair); border-left: 3px solid var(--teal); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px); margin-top: clamp(30px, 4vw, 48px); background: var(--bone);
  display: grid; gap: 12px;
}
.verdict .mono { color: var(--teal-deep); }
.verdict h2 { margin: 0; font-size: 1.4rem; }
.verdict p { margin: 0; color: var(--slate); }
.pager { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(32px, 4vw, 48px); align-items: center; }

/* ---------- footer ---------- */
.site-foot { background: var(--ash); border-top: 1px solid var(--hair); padding: clamp(48px, 7vw, 84px) var(--pad-x) 34px; }
.foot-top { display: grid; gap: 34px; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.foot-brand { font-family: var(--f-display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.14em; text-transform: lowercase; }
.foot-brand .dot { color: var(--teal); }
.foot-col h4 { font-family: var(--f-mono); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--graphite); margin-bottom: 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-col a { color: var(--slate); font-size: 0.9rem; }
.foot-col a:hover { color: var(--teal-deep); }
.foot-note { color: var(--slate); font-size: 0.9rem; max-width: 40ch; margin-top: 6px; }
.disclaimer {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--hair);
  font-size: 0.74rem; line-height: 1.6; color: var(--graphite); max-width: 92ch;
}
.copyright { margin-top: 18px; font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--graphite); }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-content: center; text-align: center; padding: 80px var(--pad-x); gap: 20px; }
.notfound .code { font-family: var(--f-mono); font-size: 4rem; color: var(--teal); letter-spacing: 0.1em; }
.notfound h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------- utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 26px; }
.lead-anchor { scroll-margin-top: 92px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* subtle reveal, motion-safe */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: .07s; }
  .reveal[data-delay="2"] { transition-delay: .14s; }
  .reveal[data-delay="3"] { transition-delay: .21s; }
}
