:root {
  --paper:      #ffffff;
  --linen-wash: #f7f4ef;
  --linen-fill: #faf8f4;
  --ink:        #321929;
  --ink-soft:   #6a5560;
  --smoke:      #636363;
  --line:       #e0dddf;
  --line-deep:  #cbc4bd;
  --moss:       #7f8b5a;
  --moss-deep:  #5f6a43;

  --font-display: 'Young Serif', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-hero:   clamp(2.7rem, 3.2rem + 3.6vw, 5.4rem);
  --fs-h2:     clamp(1.85rem, 1.5rem + 1.7vw, 3rem);
  --fs-h3:     clamp(1.45rem, 1.25rem + 1vw, 2rem);
  --fs-lead:   clamp(1.12rem, 1.05rem + 0.4vw, 1.35rem);
  --fs-body:   1.0625rem;
  --fs-small:  0.9rem;
  --fs-label:  0.73rem;

  --pad-x:      clamp(20px, 5vw, 96px);
  --sec-gap:    clamp(60px, 9vw, 128px);
  --sec-gap-sm: clamp(40px, 6vw, 84px);

  --measure: 64ch;
  --radius:  10px;
  --radius-img: 24px;
  --radius-pill: 999px;
  --shadow-pill: rgba(50, 25, 41, 0.15) 0 2px 10px 0;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--moss-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; border-radius: 3px; }
::selection { background: #dfe3cf; color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-gap); }
.section--tight { padding-block: var(--sec-gap-sm); }
.band { background: var(--linen-wash); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--moss-deep);
  margin: 0 0 clamp(14px, 2vw, 22px);
}
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); max-width: var(--measure); }
.measure { max-width: var(--measure); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  padding: 13px 24px; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.btn:hover { box-shadow: var(--shadow-pill); text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: #43222f; }
.btn--moss { border-color: var(--moss-deep); color: var(--moss-deep); }
.btn--ghost { border-color: var(--line-deep); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--sm { padding: 9px 16px; font-size: 0.86rem; }

.link-more {
  font-weight: 700; color: var(--moss-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.link-more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.link-more:hover svg { transform: translateX(3px); }

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand svg { width: 30px; height: 30px; }
.brand b { font-family: var(--font-display); font-weight: 400; font-size: 1.32rem; letter-spacing: 0.01em; }
.brand span { color: var(--moss-deep); }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a { color: var(--ink); font-weight: 600; font-size: 0.94rem; }
.nav a:hover { color: var(--moss-deep); text-decoration: none; }
.nav .btn { padding: 9px 18px; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 19px; height: 1.5px; background: var(--ink); transition: transform .22s ease, opacity .2s ease; }
.burger span::before { transform: translateY(-6px); }
.burger span::after { transform: translateY(4.5px); }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-1.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 66px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-x) 22px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav .btn { margin-top: 16px; justify-content: center; }
}

.hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: var(--sec-gap-sm); }
.hero-grid { display: grid; gap: clamp(28px, 5vw, 60px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 { font-size: var(--fs-hero); letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--moss-deep); }
.hero .lead { margin-top: clamp(18px, 2.5vw, 26px); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(24px, 3vw, 34px); }
.hero-trust { margin-top: clamp(20px, 2.6vw, 28px); display: flex; align-items: center; gap: 10px; color: var(--smoke); font-size: var(--fs-small); }
.hero-trust svg { width: 16px; height: 16px; flex: none; color: var(--moss-deep); }
.hero-still { border: 1px solid var(--line); border-radius: var(--radius-img); overflow: hidden; background: var(--linen-fill); }
.hero-still svg { width: 100%; height: auto; }

.pick-grid { display: grid; gap: clamp(30px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .pick-grid { grid-template-columns: 0.9fr 1.1fr; } }
.pick-points { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pick-points li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pick-points .n { font-family: var(--font-display); color: var(--moss-deep); font-size: 1.15rem; line-height: 1; padding-top: 2px; }
.pick-points b { display: block; margin-bottom: 3px; font-weight: 800; }
.pick-points p { margin: 0; color: var(--ink-soft); font-size: var(--fs-small); }

.curator {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--linen-fill); padding: clamp(22px, 3.5vw, 36px);
}
.curator .who { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.curator .who .mono { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-deep); flex: none; }
.curator .who b { font-family: var(--font-display); font-size: 1.28rem; font-weight: 400; }
.curator .who span { display: block; color: var(--smoke); font-size: var(--fs-small); }
.curator p:last-child { margin-bottom: 0; }
.curator .caveat { font-size: var(--fs-small); color: var(--ink-soft); border-left: 2px solid var(--moss); padding-left: 14px; margin-top: 18px; }

.index-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); margin-top: 6px; }
@media (min-width: 720px) { .index-list { grid-template-columns: repeat(3, 1fr); } }
.index-list a {
  display: flex; align-items: baseline; gap: 12px;
  padding: 15px 4px; border-bottom: 1px solid var(--line); color: var(--ink);
  font-weight: 600;
}
.index-list a:hover { color: var(--moss-deep); text-decoration: none; }
.index-list .num { font-family: var(--font-display); color: var(--moss-deep); font-size: 0.95rem; }
.index-list .flag { font-size: 0.7rem; color: var(--smoke); font-weight: 700; letter-spacing: 0.04em; }

.catalog { display: grid; gap: clamp(46px, 7vw, 86px); }
.exhibit { display: grid; gap: clamp(20px, 3.5vw, 44px); grid-template-columns: 1fr; align-items: start; scroll-margin-top: 84px; }
@media (min-width: 840px) {
  .exhibit { grid-template-columns: 0.92fr 1.08fr; }
  .exhibit--flip .exhibit__media { order: 2; }
}
.exhibit__media { border: 1px solid var(--line); border-radius: var(--radius-img); overflow: hidden; background: var(--linen-fill); aspect-ratio: 3 / 2; }
.exhibit__media svg { width: 100%; height: auto; }
.exhibit__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.exhibit__no {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  color: var(--moss-deep); line-height: 1; display: inline-block; margin-bottom: 8px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.tag {
  font-size: var(--fs-label); letter-spacing: 0.05em; font-weight: 700;
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  padding: 3px 11px; color: var(--ink); text-transform: uppercase;
}
.tag--moss { border-color: var(--moss-deep); color: var(--moss-deep); }
.tag--warn { border-color: #a9622f; color: #8a4f24; text-transform: none; letter-spacing: 0; font-weight: 700; }
.tag--gem { background: var(--moss-deep); color: #fff; border-color: var(--moss-deep); }
.exhibit h3 { font-size: var(--fs-h3); margin-bottom: 6px; }
.exhibit .hook { color: var(--ink-soft); font-size: var(--fs-lead); line-height: 1.5; margin-bottom: 16px; }

.meta { display: flex; flex-wrap: wrap; gap: 6px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 0 18px; padding: 4px 0; list-style: none; }
.meta li { display: flex; align-items: center; gap: 6px; font-size: var(--fs-small); color: var(--smoke); padding: 6px 0; }
.meta li:not(:last-child)::after { content: ""; width: 1px; height: 13px; background: var(--line); margin: 0 14px; }
.meta b { color: var(--ink); font-weight: 700; }

.exhibit .review p { color: var(--ink-soft); }
.why { list-style: none; margin: 4px 0 20px; padding: 0; display: grid; gap: 8px; }
.why li { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: var(--fs-small); color: var(--ink); }
.why svg { width: 15px; height: 15px; margin-top: 4px; color: var(--moss-deep); flex: none; }

.warn-note {
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  background: #fbf3ea; border: 1px solid #ecd6bf; border-radius: 9px;
  padding: 12px 14px; margin: 0 0 18px; font-size: var(--fs-small); color: #7a471f;
}
.warn-note svg { width: 16px; height: 16px; margin-top: 2px; flex: none; }
.warn-note b { color: #663c1a; }

.store-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.store-only { font-size: var(--fs-small); color: var(--smoke); }

.picks { display: grid; gap: clamp(16px, 2.5vw, 22px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .picks { grid-template-columns: repeat(3, 1fr); } }
.pick-card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 2.6vw, 26px); background: var(--paper); display: flex; flex-direction: column; }
.pick-card .k { font-family: var(--font-display); color: var(--moss-deep); font-size: 1.1rem; margin-bottom: 12px; }
.pick-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pick-card p { font-size: var(--fs-small); color: var(--ink-soft); margin-bottom: 16px; }
.pick-card .link-more { margin-top: auto; }

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: clamp(18px, 2.4vw, 24px) 40px clamp(18px, 2.4vw, 24px) 0;
  position: relative; font-family: var(--font-display); font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px; background:
    linear-gradient(var(--moss-deep),var(--moss-deep)) center/13px 1.6px no-repeat,
    linear-gradient(var(--moss-deep),var(--moss-deep)) center/1.6px 13px no-repeat;
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { background: linear-gradient(var(--moss-deep),var(--moss-deep)) center/13px 1.6px no-repeat; }
.faq .faq-body { padding: 0 40px 22px 0; color: var(--ink-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }

.prose { max-width: 70ch; }
.prose h2 { font-size: var(--fs-h2); margin: clamp(34px, 4vw, 52px) 0 14px; }
.prose h3 { font-size: var(--fs-h3); margin: clamp(26px, 3vw, 36px) 0 10px; }
.prose p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.prose p strong { color: var(--ink); }
.prose ul { color: var(--ink-soft); padding-left: 1.1em; margin-bottom: 1.1rem; }
.prose li { margin-bottom: 6px; }
.page-head { padding-top: clamp(30px, 5vw, 58px); }
.page-head h1 { font-size: clamp(2.3rem, 1.6rem + 3vw, 4rem); letter-spacing: -0.02em; }
.page-head .lead { margin-top: 18px; }

.form-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field .req { color: var(--moss-deep); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  border: 1px solid var(--line-deep); border-radius: 8px; background: #fff;
  padding: 12px 13px;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(127,139,90,0.18); }
.field textarea { resize: vertical; min-height: 128px; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: var(--fs-small); color: var(--ink-soft); margin-bottom: 20px; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--moss-deep); }
.form-note { font-size: 0.82rem; color: var(--smoke); margin-top: 14px; }
.contact-aside { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); background: var(--linen-fill); align-self: start; }
.contact-aside dt { font-weight: 800; margin-top: 16px; font-size: 0.9rem; }
.contact-aside dt:first-child { margin-top: 0; }
.contact-aside dd { margin: 4px 0 0; color: var(--ink-soft); font-size: var(--fs-small); }

.site-foot { border-top: 1px solid var(--line); background: var(--linen-wash); padding-block: clamp(44px, 6vw, 72px) 32px; }
.foot-grid { display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand b { font-family: var(--font-display); font-size: 1.4rem; }
.foot-brand p { color: var(--ink-soft); font-size: var(--fs-small); max-width: 40ch; margin-top: 12px; }
.foot-col h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke); margin-bottom: 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-col a { color: var(--ink); font-size: var(--fs-small); }
.foot-col a:hover { color: var(--moss-deep); }
.disclaimer { margin-top: clamp(34px, 5vw, 54px); padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--smoke); line-height: 1.6; max-width: 92ch; }
.foot-bottom { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; font-size: 0.78rem; color: var(--smoke); }

.cookie-note {
  position: fixed; left: clamp(12px, 3vw, 24px); right: clamp(12px, 3vw, 24px); bottom: 16px;
  z-index: 60; max-width: 460px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line-deep); border-radius: 12px;
  box-shadow: var(--shadow-pill); padding: 16px 18px;
  display: none; font-size: var(--fs-small); color: var(--ink-soft);
}
.cookie-note.is-in { display: block; }
.cookie-note p { margin: 0 0 12px; }
.cookie-note .row { display: flex; gap: 10px; align-items: center; }

.oops { min-height: 60vh; display: grid; place-content: center; text-align: center; gap: 18px; padding-block: var(--sec-gap); }
.oops .big { font-family: var(--font-display); font-size: clamp(4rem, 3rem + 8vw, 9rem); color: var(--moss-deep); line-height: 0.9; }
.oops p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.sec-head { margin-bottom: clamp(28px, 4vw, 46px); }
.sec-head h2 { font-size: var(--fs-h2); }
.sec-head .lead { margin-top: 14px; }
.count-hint { font-size: var(--fs-small); color: var(--smoke); }

.site-head { transition: box-shadow .3s ease, background .3s ease; }
.site-head.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 6px 22px -18px rgba(50,25,41,0.4); }
.site-head.is-scrolled .head-row { height: 58px; }
.head-row { transition: height .3s ease; }

.hero-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: clamp(10px, 1.4vw, 16px);
  align-content: start;
}
.hero-collage figure {
  margin: 0; border: 1px solid var(--line); border-radius: var(--radius-img);
  overflow: hidden; background: var(--linen-fill);
}
.hero-collage figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-collage .c1 { grid-row: 1 / span 2; aspect-ratio: 4 / 5; }
.hero-collage .c2 { aspect-ratio: 16 / 10; }
.hero-collage .c3 { aspect-ratio: 16 / 10; }
.hero-collage .c1 { box-shadow: var(--shadow-pill); }
@media (max-width: 520px) {
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .hero-collage .c1 { grid-row: auto; grid-column: 1 / span 2; aspect-ratio: 16 / 11; }
}
.scroll-cue {
  margin-top: clamp(26px, 3vw, 38px); display: inline-flex; align-items: center; gap: 10px;
  color: var(--smoke); font-size: 0.8rem; letter-spacing: 0.02em;
}
.scroll-cue svg { width: 15px; height: 15px; color: var(--moss-deep); animation: cueBob 2.4s ease-in-out infinite; }
@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue svg { animation: none; } }

.colophon { border-block: 1px solid var(--line); background: var(--linen-fill); }
.colophon-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 720px) { .colophon-grid { grid-template-columns: repeat(4, 1fr); } }
.colophon-grid .stat {
  padding: clamp(22px, 3vw, 34px) clamp(16px, 2.4vw, 30px);
  border-top: 1px solid var(--line);
}
.colophon-grid .stat:nth-child(odd) { border-right: 1px solid var(--line); }
@media (min-width: 720px) {
  .colophon-grid .stat { border-top: 0; border-right: 1px solid var(--line); }
  .colophon-grid .stat:last-child { border-right: 0; }
  .colophon-grid .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}
.colophon-grid .val {
  font-family: var(--font-display); color: var(--ink);
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.1rem); line-height: 1; letter-spacing: -0.01em;
}
.colophon-grid .val span { color: var(--moss-deep); }
.colophon-grid .k { display: block; margin-top: 10px; font-weight: 700; font-size: 0.9rem; }
.colophon-grid .sub { display: block; margin-top: 3px; color: var(--smoke); font-size: var(--fs-small); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  color: var(--ink-soft); background: var(--paper);
  border: 1px solid var(--line-deep); border-radius: var(--radius-pill);
  padding: 8px 16px; cursor: pointer; line-height: 1;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .12s ease;
}
.chip:hover { border-color: var(--ink); }
.chip:active { transform: scale(0.97); }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .c { color: var(--moss-deep); font-weight: 800; }
.chip[aria-pressed="true"] .c { color: #cdd3b6; }
.exhibit.is-hidden, .feature.is-hidden { display: none; }
.filter-empty { color: var(--smoke); font-size: var(--fs-small); margin-top: 24px; display: none; }
.filter-empty.is-in { display: block; }

.gallery { position: relative; }
.gallery__frame {
  border: 1px solid var(--line); border-radius: var(--radius-img);
  overflow: hidden; background: var(--linen-fill); position: relative;
}
.gallery__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track .shot {
  scroll-snap-align: center; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  background: var(--linen-fill); cursor: zoom-in; border: 0; padding: 0; margin: 0; width: 100%;
}
.gallery__track .shot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.gallery__frame .zoom-hint {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.9); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 5px 11px;
  font-size: 0.72rem; font-weight: 700; color: var(--ink-soft);
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.gallery:hover .zoom-hint { opacity: 1; }
.gallery__frame .zoom-hint svg { width: 12px; height: 12px; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid var(--line-deep);
  display: none; align-items: center; justify-content: center; cursor: pointer;
  color: var(--ink); transition: transform .16s ease, box-shadow .16s ease;
}
.gallery__nav:hover { box-shadow: var(--shadow-pill); }
.gallery__nav:active { transform: translateY(-50%) scale(0.94); }
.gallery__nav svg { width: 18px; height: 18px; }
.gallery__nav.prev { left: 12px; }
.gallery__nav.next { right: 12px; }
.gallery:hover .gallery__nav, .gallery:focus-within .gallery__nav { display: inline-flex; }
.gallery__dots { display: flex; gap: 7px; justify-content: center; margin-top: 12px; }
.gallery__dots button {
  width: 7px; height: 7px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-deep); background: transparent;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.gallery__dots button[aria-current="true"] { background: var(--moss-deep); border-color: var(--moss-deep); transform: scale(1.25); }
.gallery__caption { margin-top: 10px; font-size: 0.8rem; color: var(--smoke); text-align: center; }
@media (max-width: 520px) { .gallery__track .shot { cursor: default; } }

.feature {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--paper); scroll-margin-top: 84px;
}
.feature__banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px clamp(18px, 3vw, 34px);
  background: var(--linen-fill); border-bottom: 1px solid var(--line);
}
.feature__banner .ribbon {
  font-size: var(--fs-label); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800;
  color: #fff; background: var(--moss-deep); border-radius: var(--radius-pill); padding: 5px 13px;
}
.feature__banner .lede { color: var(--ink-soft); font-size: var(--fs-small); }
.feature__body { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 40px); padding: clamp(20px, 3vw, 40px); }
@media (min-width: 860px) { .feature__body { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }
.feature__body.flip .gallery { order: 2; }
.feature__no {
  font-family: var(--font-display); font-size: clamp(1.6rem, 1rem + 2.4vw, 2.6rem);
  color: var(--moss-deep); line-height: 1; display: inline-block; margin-bottom: 8px;
}
.feature h3 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); margin-bottom: 8px; }
.feature .hook { color: var(--ink-soft); font-size: var(--fs-lead); line-height: 1.45; margin-bottom: 16px; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 680px; font-size: var(--fs-small); }
table.compare caption { text-align: left; padding: 16px 18px 0; color: var(--smoke); font-size: 0.8rem; }
table.compare th, table.compare td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.compare thead th {
  font-family: var(--font-body); font-weight: 800; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--smoke);
  border-bottom: 1px solid var(--line-deep); background: var(--linen-fill);
  position: sticky; top: 0;
}
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover td { background: var(--linen-wash); }
table.compare .g { font-weight: 800; color: var(--ink); }
table.compare .g a { color: var(--ink); }
table.compare .g a:hover { color: var(--moss-deep); }
table.compare .num { font-variant-numeric: tabular-nums; color: var(--ink-soft); white-space: nowrap; }
.pricepill { display: inline-block; font-weight: 700; font-size: 0.76rem; padding: 2px 9px; border-radius: var(--radius-pill); border: 1px solid var(--line-deep); color: var(--ink-soft); }
.pricepill.paid { border-color: var(--moss-deep); color: var(--moss-deep); }
.mini-flag { display: inline-block; font-size: 0.72rem; font-weight: 700; color: #8a4f24; border: 1px solid #d8b48f; border-radius: var(--radius-pill); padding: 1px 8px; }

.timeline { border-top: 1px solid var(--line); margin-top: 8px; }
.timeline .entry {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(16px, 3vw, 40px);
  padding: clamp(22px, 3vw, 34px) 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .timeline .entry { grid-template-columns: 140px 1fr; } }
.timeline .yr { font-family: var(--font-display); color: var(--moss-deep); font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); line-height: 1; }
.timeline .yr .studio { display: block; margin-top: 8px; font-family: var(--font-body); font-size: 0.8rem; color: var(--smoke); font-weight: 700; line-height: 1.4; }
.timeline .entry h3 { font-size: 1.28rem; margin-bottom: 6px; }
.timeline .entry p { color: var(--ink-soft); font-size: var(--fs-small); margin-bottom: 10px; }
.timeline .awards { display: flex; flex-wrap: wrap; gap: 7px; }
.timeline .award {
  font-size: 0.74rem; font-weight: 700; color: var(--moss-deep);
  border: 1px solid var(--line-deep); border-radius: var(--radius-pill); padding: 3px 11px;
  display: inline-flex; align-items: center; gap: 6px;
}
.timeline .award svg { width: 12px; height: 12px; }

.pullquote { background: var(--ink); color: #f3ede7; }
.pullquote .wrap { max-width: 940px; text-align: center; }
.pullquote .mark { font-family: var(--font-display); color: var(--moss); font-size: 3.4rem; line-height: 0.6; display: block; margin-bottom: 8px; }
.pullquote blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.5rem); line-height: 1.28; letter-spacing: -0.01em;
  color: #fbf7f2;
}
.pullquote blockquote em { font-style: normal; color: var(--moss); }
.pullquote .by { margin-top: clamp(20px, 3vw, 30px); font-size: var(--fs-small); color: #c9bcc0; }
.pullquote .by b { color: #f3ede7; font-weight: 700; }

.picks--tri { grid-template-columns: 1fr; }
@media (min-width: 860px) { .picks--tri { grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; } }
@media (min-width: 860px) { .picks--tri .pick-card.lead { grid-row: 1 / span 2; } }
.pick-card.lead { background: var(--linen-fill); }
.pick-card.lead h3 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem); }
.pick-card .badge { align-self: flex-start; font-size: var(--fs-label); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 800; color: var(--moss-deep); margin-bottom: 12px; }

.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  align-items: center; justify-content: center; padding: clamp(14px, 4vw, 48px);
  background: rgba(28, 14, 22, 0.92);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); }
.lightbox figure { margin: 0; text-align: center; max-width: 1000px; }
.lightbox figcaption { color: #d7cdd1; font-size: var(--fs-small); margin-top: 14px; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .16s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-close:active, .lightbox .lb-nav:active { transform: scale(0.94); }
.lightbox .lb-close { top: clamp(12px, 3vw, 26px); right: clamp(12px, 3vw, 26px); width: 46px; height: 46px; }
.lightbox .lb-close svg { width: 20px; height: 20px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox .lb-nav:active { transform: translateY(-50%) scale(0.94); }
.lightbox .lb-nav svg { width: 22px; height: 22px; }
.lightbox .lb-nav.prev { left: clamp(8px, 2vw, 24px); }
.lightbox .lb-nav.next { right: clamp(8px, 2vw, 24px); }
.lightbox .lb-count { position: absolute; bottom: clamp(14px, 3vw, 28px); left: 0; right: 0; text-align: center; color: #cdbfc4; font-size: 0.8rem; font-variant-numeric: tabular-nums; }
@media (max-width: 560px) { .lightbox .lb-nav { width: 40px; height: 40px; } }

[data-reveal].reveal { transition-delay: var(--reveal-delay, 0ms); }

.foot-mark { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.foot-mark svg { width: 26px; height: 26px; }
.foot-note { margin-top: 14px; font-size: 0.78rem; color: var(--smoke); }
.foot-note a { color: var(--moss-deep); }
