:root {
  --ink: #17201f;
  --ink-soft: #3f4a48;
  --paper: #f5f2ea;
  --paper-2: #ebe7dd;
  --white: #fffdf8;
  --forest: #0f4c43;
  --forest-dark: #0a352f;
  --sage: #b7c9a7;
  --lime: #dce8bd;
  --clay: #cb7658;
  --gold: #bd9558;
  --line: rgba(23, 32, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --muted: #68716f;
  --ok: #0f725e;
  --warn: #a5682d;
  --shadow: 0 26px 70px rgba(28, 44, 39, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Inter", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--white); background: var(--forest); }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { line-height: 1.75; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: white;
  background: var(--forest);
  border-radius: 999px;
  transition: top .2s;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 78px);
  background: rgba(245, 242, 234, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 9px 28px rgba(23, 32, 31, .06); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--forest);
}
.brand-symbol::before, .brand-symbol::after, .brand-symbol i {
  content: "";
  position: absolute;
  border: 2px solid var(--lime);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-38deg);
}
.brand-symbol::before { width: 18px; height: 24px; left: 10px; top: 9px; }
.brand-symbol::after { width: 11px; height: 17px; right: 8px; bottom: 8px; transform: rotate(38deg); }
.brand-symbol i { width: 7px; height: 7px; right: 9px; top: 8px; border-radius: 50%; background: var(--lime); }
.brand strong { display: block; font-size: 15px; letter-spacing: .08em; }
.brand em {
  display: block;
  max-width: 330px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 13px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a:focus-visible { color: var(--forest); background: rgba(15, 76, 67, .08); }
.nav .lang-switch { margin-left: 7px; border: 1px solid var(--line); }
.nav-toggle {
  display: none;
  min-width: 58px;
  min-height: 42px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow, .portal-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow > span, .portal-label > span { width: 25px; height: 2px; background: currentColor; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 51px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: white; background: var(--forest); box-shadow: 0 14px 28px rgba(15, 76, 67, .18); }
.btn.primary:hover { background: var(--forest-dark); }
.btn.outline { color: var(--ink); background: transparent; border-color: var(--line); }
.btn.light { color: var(--forest-dark); background: var(--lime); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--forest); font-size: 13px; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(2px, -2px); }

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  min-height: 690px;
  padding: 72px clamp(22px, 7vw, 108px) 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 17%, rgba(220, 232, 189, .8), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, #f0ede4 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(48px, 6.2vw, 86px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.045em;
}
.hero-lead { max-width: 620px; margin-bottom: 31px; color: var(--ink-soft); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.hero-facts { display: flex; gap: 0; margin-top: 54px; border-top: 1px solid var(--line); }
.hero-facts > div { flex: 1; padding: 20px 20px 0 0; }
.hero-facts > div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.hero-facts strong { display: block; margin-bottom: 5px; color: var(--forest); font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.hero-facts span { color: var(--muted); font-size: 11px; letter-spacing: .04em; }

.hero-gallery { position: relative; min-height: 535px; }
.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 40px 2% 10px 12%;
  border-radius: 50% 50% 42% 48%;
  background: var(--forest);
  transform: rotate(-5deg);
}
.gallery-note {
  position: absolute;
  right: -8px;
  top: 21px;
  z-index: 5;
  width: 177px;
  padding: 17px;
  color: white;
  background: var(--clay);
  border-radius: 19px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.gallery-note span, .gallery-note em { display: block; }
.gallery-note span { margin-bottom: 5px; font-size: 12px; font-weight: 800; }
.gallery-note em { color: rgba(255,255,255,.75); font-size: 10px; font-style: normal; }
.hero-frame { position: absolute; z-index: 2; margin: 0; overflow: hidden; background: white; border: 8px solid var(--white); border-radius: 10px; box-shadow: 0 24px 55px rgba(7, 31, 27, .28); }
.hero-frame img { height: 100%; object-fit: cover; }
.hero-frame figcaption { position: absolute; left: 12px; bottom: 11px; display: grid; place-items: center; width: 31px; height: 31px; color: white; background: rgba(10, 53, 47, .88); border-radius: 50%; font-size: 10px; font-weight: 800; }
.frame-1 { left: 2%; top: 26px; width: 58%; height: 56%; transform: rotate(-4deg); }
.frame-2 { right: 1%; bottom: 17px; width: 58%; height: 54%; transform: rotate(4deg); }
.frame-3 { left: 8%; bottom: 0; width: 35%; height: 36%; transform: rotate(-1deg); }

.setup-banner { display: flex; justify-content: center; gap: 22px; padding: 14px 20px; color: white; background: var(--clay); font-size: 13px; }
.setup-banner a { text-decoration: underline; font-weight: 800; }
.section-kicker { display: flex; align-items: center; gap: 15px; margin-bottom: 42px; }
.section-kicker span { display: grid; place-items: center; min-width: 42px; height: 26px; color: var(--forest); border: 1px solid var(--line); border-radius: 999px; font-size: 9px; font-weight: 800; }
.section-kicker p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.intro-section { padding-top: 124px; padding-bottom: 132px; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr); align-items: center; gap: clamp(58px, 9vw, 145px); }
.intro-copy h2, .section-heading h2, .method-intro h2, .contact-section h2, .review-start h2, .methodology-copy h2, .marketplace-intro h2, .declaration-title h2, .provenance-grid h2 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.intro-copy > p { max-width: 620px; color: var(--ink-soft); font-size: 16px; }
.company-facts { margin: 42px 0 0; border-top: 1px solid var(--line); }
.company-facts > div { display: grid; grid-template-columns: 135px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.company-facts dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.company-facts dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 700; }
.company-facts a { color: var(--forest); }
.intro-visual { position: relative; margin: 0; padding: 27px; background: var(--forest); border-radius: 45% 45% 30px 30px; }
.intro-visual img { min-height: 380px; object-fit: cover; border-radius: 50% 50% 18px 18px; }
.intro-visual figcaption { position: absolute; right: -28px; bottom: 28px; width: 225px; padding: 18px 20px; background: var(--white); border-radius: 17px; box-shadow: var(--shadow); }
.intro-visual figcaption span, .intro-visual figcaption em { display: block; }
.intro-visual figcaption span { margin-bottom: 7px; color: var(--forest); font-weight: 800; }
.intro-visual figcaption em { color: var(--muted); font-size: 11px; font-style: normal; line-height: 1.5; }

.process-section { padding: 125px 0; color: white; background: var(--forest-dark); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 56px; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); font-size: 13px; }
.process-section .section-heading > p { color: rgba(255,255,255,.65); }
.process-section .eyebrow { color: var(--lime); }
.section-heading h2 { margin: 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.process-card { position: relative; min-height: 315px; padding: 28px 35px 32px 0; }
.process-card + .process-card { padding-left: 35px; border-left: 1px solid var(--line-light); }
.process-card > span { color: var(--sage); font-size: 10px; font-weight: 800; }
.process-card h3 { margin: 22px 0 14px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.process-card p { color: rgba(255,255,255,.64); font-size: 13px; }
.process-icon { position: relative; width: 72px; height: 72px; margin-top: 28px; border: 1px solid rgba(220,232,189,.44); border-radius: 50%; }
.process-icon::before, .process-icon::after { content: ""; position: absolute; }
.work-icon::before { width: 28px; height: 36px; left: 20px; top: 16px; border: 2px solid var(--lime); border-radius: 50% 0 50% 50%; transform: rotate(-30deg); }
.work-icon::after { width: 4px; height: 26px; left: 35px; top: 22px; background: var(--lime); transform: rotate(30deg); }
.product-icon::before { width: 31px; height: 31px; left: 19px; top: 20px; border: 2px solid var(--lime); border-radius: 8px; transform: rotate(12deg); }
.product-icon::after { width: 24px; height: 2px; left: 23px; top: 34px; background: var(--lime); transform: rotate(-18deg); }
.record-icon::before { width: 30px; height: 38px; left: 19px; top: 15px; border: 2px solid var(--lime); border-radius: 5px; }
.record-icon::after { width: 13px; height: 13px; right: 15px; bottom: 12px; background: var(--clay); border: 2px solid var(--forest-dark); border-radius: 50%; }

.story-sections { padding-top: 130px; padding-bottom: 130px; }
.story-row { display: grid; grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr); align-items: center; gap: clamp(55px, 8vw, 125px); padding: 70px 0; border-bottom: 1px solid var(--line); }
.story-row:first-child { padding-top: 0; }
.story-row.reverse figure { order: 2; }
.story-row figure { position: relative; margin: 0; padding: 28px; background: var(--paper-2); border-radius: var(--radius-lg); }
.story-row figure::before { content: ""; position: absolute; inset: 12% -15px -15px 20%; z-index: -1; background: var(--sage); border-radius: var(--radius-lg); }
.story-row img { height: 355px; object-fit: cover; border-radius: 18px; }
.story-row > div > span { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.story-row h2 { margin: 20px 0 15px; font-family: Georgia, "Songti SC", serif; font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.08; }
.story-row h3 { color: var(--forest); font-size: 15px; line-height: 1.55; }
.story-row p { margin-bottom: 25px; color: var(--ink-soft); font-size: 14px; }

.records-preview { padding: 125px 0 135px; color: white; background: var(--forest); }
.records-preview .section-heading { align-items: center; }
.records-preview .section-heading h2 { max-width: 720px; }
.records-preview .eyebrow { color: var(--lime); }
.record-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.record-card { overflow: hidden; color: var(--ink); background: var(--white); border-radius: var(--radius-md); transition: transform .25s, box-shadow .25s; }
.record-card:hover { transform: translateY(-7px); box-shadow: 0 28px 65px rgba(0,0,0,.2); }
.record-cover { position: relative; height: 245px; overflow: hidden; background: var(--paper-2); }
.record-cover img { height: 100%; object-fit: cover; transition: transform .45s; }
.record-card:hover .record-cover img { transform: scale(1.035); }
.record-cover > span { display: grid; place-items: center; height: 100%; color: var(--forest); font-family: Georgia, serif; font-size: 36px; }
.record-cover > em { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; color: white; background: rgba(10,53,47,.9); border-radius: 999px; font-size: 9px; font-style: normal; font-weight: 800; }
.record-copy { padding: 23px; }
.record-copy > span { color: var(--clay); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.record-copy h3 { margin: 13px 0 10px; font-family: Georgia, "Songti SC", serif; font-size: 23px; font-weight: 500; line-height: 1.2; }
.record-copy p { min-height: 67px; color: var(--muted); font-size: 12px; }
.record-copy strong { color: var(--forest); font-size: 11px; }
.empty-record { min-height: 370px; padding: 38px; color: white; border: 1px dashed rgba(255,255,255,.32); border-radius: var(--radius-md); }
.empty-record span { color: var(--lime); font-size: 10px; font-weight: 800; }
.empty-record h3 { margin-top: 80px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.empty-record p { color: rgba(255,255,255,.68); }

.review-method { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr); gap: clamp(70px, 10vw, 150px); padding-top: 130px; padding-bottom: 130px; }
.method-intro > span { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.method-intro h2 { margin-top: 22px; }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method-list li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.method-list li > span { color: var(--clay); font-size: 10px; font-weight: 800; }
.method-list strong { display: block; margin-bottom: 5px; font-size: 14px; }
.method-list p { margin: 0; color: var(--muted); font-size: 12px; }

.contact-section { padding: 95px 0; background: var(--lime); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); align-items: center; gap: 80px; }
.contact-section h2 { margin-bottom: 15px; }
.contact-section p { max-width: 650px; margin: 0; color: var(--ink-soft); }
.contact-card { display: block; padding: 30px; color: white; background: var(--forest); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.contact-card span, .contact-card strong, .contact-card em { display: block; }
.contact-card span { margin-bottom: 25px; color: var(--sage); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.contact-card strong { overflow-wrap: anywhere; font-size: 19px; }
.contact-card em { margin-top: 20px; color: var(--lime); font-size: 11px; font-style: normal; font-weight: 800; }

.site-footer, .records-footer { padding: 52px clamp(20px, 6vw, 90px) 24px; color: white; background: #10211f; }
.footer-main, .records-footer > div { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid var(--line-light); }
.footer-brand em { color: rgba(255,255,255,.56); }
.footer-main nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-main nav a, .records-footer > div > a { color: rgba(255,255,255,.72); font-size: 12px; }
.footer-legal { display: flex; justify-content: space-between; gap: 40px; padding-top: 22px; color: rgba(255,255,255,.45); font-size: 10px; }
.footer-legal p { max-width: 800px; margin: 0; line-height: 1.6; }

/* Public dossier index */
.records-body { background: #f3f0e8; }
.records-header { color: white; background: rgba(10, 53, 47, .92); }
.records-header .brand em, .dossier-header .brand em { color: rgba(255,255,255,.56); }
.records-header .nav a, .dossier-header .nav a { color: rgba(255,255,255,.77); }
.records-header .nav a:hover, .dossier-header .nav a:hover { color: white; background: rgba(255,255,255,.09); }
.records-header .nav .lang-switch, .dossier-header .nav .lang-switch { border-color: var(--line-light); }
.records-header .nav-toggle, .dossier-header .nav-toggle { color: white; border-color: var(--line-light); }
.records-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  min-height: 590px;
  padding: 78px clamp(22px, 7vw, 110px) 95px;
  color: white;
  background:
    radial-gradient(circle at 85% 24%, rgba(220,232,189,.13), transparent 28%),
    var(--forest-dark);
}
.portal-label { color: var(--lime); }
.records-hero-copy h1 { max-width: 780px; margin-bottom: 27px; font-family: Georgia, "Songti SC", serif; font-size: clamp(55px, 7vw, 94px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.records-hero-copy > p { max-width: 690px; margin-bottom: 31px; color: rgba(255,255,255,.7); font-size: 16px; }
.records-hero .btn.primary { color: var(--forest-dark); background: var(--lime); }
.access-card { position: relative; padding: 38px; color: var(--ink); background: var(--lime); border-radius: 90px 26px 26px 26px; }
.access-card::before { content: "OPEN"; position: absolute; right: 24px; top: 22px; color: rgba(15,76,67,.2); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.access-card > span { display: block; margin-bottom: 25px; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.access-card > strong { display: block; margin-bottom: 17px; font-family: Georgia, "Songti SC", serif; font-size: 31px; font-weight: 500; line-height: 1.13; }
.access-card > p { color: var(--ink-soft); font-size: 12px; }
.access-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(15,76,67,.2); }
.access-points em { color: var(--forest); font-size: 9px; font-style: normal; font-weight: 800; }
.records-stats { display: grid; grid-template-columns: repeat(4, 1fr); width: min(1040px, calc(100% - 40px)); margin: -35px auto 0; overflow: hidden; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); }
.records-stats > div { padding: 26px 30px; }
.records-stats > div + div { border-left: 1px solid var(--line); }
.records-stats strong { display: block; margin-bottom: 5px; color: var(--forest); font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.records-stats span { color: var(--muted); font-size: 10px; }

.review-start { padding-top: 125px; padding-bottom: 115px; }
.review-start-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 145px); }
.review-start h2 { font-size: clamp(39px, 4.5vw, 59px); }
.review-start p { color: var(--ink-soft); font-size: 14px; }
.review-mini-flow { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.review-mini-flow li { display: flex; gap: 15px; padding: 20px 10px 20px 0; border-bottom: 1px solid var(--line); }
.review-mini-flow li:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); }
.review-mini-flow span { color: var(--clay); font-size: 9px; font-weight: 800; }
.review-mini-flow strong { font-size: 12px; }

.dossier-list-section { padding: 125px 0 135px; background: #e6e2d7; }
.dossier-list-section .section-heading > p { color: var(--ink-soft); }
.dossier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.dossier-card { display: grid; grid-template-columns: 42% 58%; min-height: 355px; overflow: hidden; background: var(--white); border: 1px solid rgba(23,32,31,.08); border-radius: var(--radius-md); transition: transform .25s, box-shadow .25s; }
.dossier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dossier-cover { position: relative; min-height: 100%; overflow: hidden; background: var(--forest); }
.dossier-cover img { height: 100%; object-fit: cover; transition: transform .45s; }
.dossier-card:hover .dossier-cover img { transform: scale(1.04); }
.cover-placeholder { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; padding: 24px; color: white; background: linear-gradient(145deg, var(--forest), var(--forest-dark)); }
.cover-placeholder span { font-family: Georgia, serif; font-size: 55px; color: var(--lime); }
.cover-placeholder strong { font-size: 13px; letter-spacing: .1em; }
.dossier-status { position: absolute; left: 13px; right: 13px; bottom: 13px; display: flex; align-items: center; gap: 7px; padding: 8px 10px; color: white; background: rgba(10,53,47,.92); border-radius: 999px; font-size: 8px; font-weight: 800; }
.dossier-status i { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }
.dossier-copy { display: flex; flex-direction: column; padding: 27px; }
.dossier-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.dossier-meta span { color: var(--clay); font-weight: 800; }
.dossier-meta em { font-style: normal; }
.dossier-copy h3 { margin: 18px 0 11px; font-family: Georgia, "Songti SC", serif; font-size: 27px; font-weight: 500; line-height: 1.14; }
.dossier-copy > p { color: var(--muted); font-size: 11px; }
.dossier-copy dl { margin: auto 0 20px; }
.dossier-copy dl > div { display: grid; grid-template-columns: 65px 1fr; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.dossier-copy dt { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.dossier-copy dd { margin: 0; overflow: hidden; font-size: 9px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.dossier-copy > strong { color: var(--forest); font-size: 10px; }
.no-dossiers { grid-column: 1 / -1; min-height: 280px; padding: 48px; background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius-md); }
.no-dossiers > span { color: var(--clay); font-size: 9px; font-weight: 800; }
.no-dossiers h3 { margin: 55px 0 10px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.no-dossiers p { color: var(--muted); }
.no-dossiers a { color: var(--forest); font-weight: 800; }

.methodology-section { padding: 130px 0; }
.methodology-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); align-items: center; gap: clamp(65px, 10vw, 150px); }
.methodology-copy > p { color: var(--ink-soft); }
.independence-note { margin-top: 38px; padding: 24px; background: var(--white); border-left: 4px solid var(--clay); border-radius: 0 15px 15px 0; }
.independence-note span { display: block; margin-bottom: 8px; color: var(--clay); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.independence-note p { margin: 0; color: var(--muted); font-size: 11px; }
.methodology-visual { padding: 25px; background: var(--forest); border-radius: var(--radius-lg); }
.methodology-visual img { height: 320px; object-fit: cover; border-radius: 18px; }
.methodology-visual ul { margin: 25px 0 0; padding: 0; color: white; list-style: none; }
.methodology-visual li { display: flex; align-items: start; gap: 10px; padding: 9px 0; color: rgba(255,255,255,.74); font-size: 10px; }
.methodology-visual li span { width: 7px; height: 7px; margin-top: 4px; background: var(--lime); border-radius: 50%; }
.records-footer { padding-top: 48px; }
.records-footer > p { max-width: 880px; margin: 22px 0 15px; color: rgba(255,255,255,.48); font-size: 10px; }
.records-footer > span { color: rgba(255,255,255,.35); font-size: 9px; }

/* Dossier detail */
.dossier-body { background: var(--white); }
.dossier-header { color: white; background: rgba(10, 53, 47, .96); }
.not-found-page { display: grid; place-items: center; min-height: 70vh; padding: 40px 20px; background: var(--paper); }
.not-found-page section { max-width: 650px; text-align: center; }
.not-found-page section > span { color: var(--clay); font-size: 10px; font-weight: 800; }
.not-found-page h1 { margin: 25px 0 15px; font-family: Georgia, serif; font-size: 55px; font-weight: 500; }
.not-found-page p { margin-bottom: 28px; color: var(--muted); }
.dossier-masthead { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: end; gap: clamp(55px, 8vw, 130px); padding: 72px clamp(22px, 7vw, 110px) 78px; background: var(--paper); }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 38px; color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.breadcrumbs em { overflow: hidden; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.published-label { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--ok); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.published-label i { width: 8px; height: 8px; background: var(--ok); border-radius: 50%; box-shadow: 0 0 0 5px rgba(15,114,94,.1); }
.dossier-title h1 { max-width: 900px; margin-bottom: 24px; font-family: Georgia, "Songti SC", serif; font-size: clamp(47px, 6vw, 78px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.dossier-title > p { max-width: 790px; color: var(--ink-soft); font-size: 15px; }
.dossier-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.dossier-tags span { padding: 7px 10px; color: var(--forest); background: rgba(15,76,67,.07); border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.dossier-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.record-identity { padding: 31px; background: var(--forest); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.record-status > span { display: block; margin-bottom: 11px; color: var(--sage); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.record-status > strong { display: block; color: white; font-family: Georgia, serif; font-size: 59px; font-weight: 500; line-height: 1; }
.record-status > strong em { color: var(--sage); font-size: 26px; font-style: normal; }
.record-status > p { margin: 7px 0 0; color: rgba(255,255,255,.59); font-size: 10px; }
.coverage-track { height: 5px; margin: 22px 0 25px; overflow: hidden; background: rgba(255,255,255,.16); border-radius: 99px; }
.coverage-track i { display: block; height: 100%; background: var(--lime); border-radius: inherit; }
.record-identity dl { margin: 0; }
.record-identity dl > div { padding: 11px 0; border-top: 1px solid var(--line-light); }
.record-identity dt { margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: 8px; text-transform: uppercase; }
.record-identity dd { margin: 0; overflow-wrap: anywhere; color: white; font-size: 11px; font-weight: 700; }
.approval-note { margin-top: 20px; padding: 11px 13px; color: var(--forest-dark); background: var(--lime); border-radius: 10px; font-size: 8px; font-weight: 800; line-height: 1.5; text-transform: uppercase; }
.dossier-nav { position: sticky; top: 78px; z-index: 80; display: flex; align-items: center; gap: 3px; padding: 10px clamp(20px, 5vw, 78px); overflow-x: auto; background: rgba(255,253,248,.94); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.dossier-nav span { margin-right: 15px; color: var(--clay); font-size: 8px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.dossier-nav a { padding: 8px 11px; color: var(--muted); border-radius: 999px; font-size: 9px; font-weight: 700; white-space: nowrap; }
.dossier-nav a:hover { color: var(--forest); background: rgba(15,76,67,.08); }

.dossier-overview { padding-top: 100px; padding-bottom: 110px; }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.overview-grid article { min-width: 0; padding: 24px 25px 27px 0; }
.overview-grid article + article { padding-left: 25px; border-left: 1px solid var(--line); }
.overview-grid article > span { color: var(--clay); font-size: 9px; font-weight: 800; }
.overview-grid article > p { margin: 18px 0 10px; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.overview-grid strong { display: block; overflow-wrap: anywhere; font-family: Georgia, "Songti SC", serif; font-size: 20px; font-weight: 500; line-height: 1.2; }
.overview-grid em { display: block; margin-top: 8px; overflow-wrap: anywhere; color: var(--muted); font-size: 9px; font-style: normal; }
.missing-value { color: var(--warn); font-size: .75em; font-family: inherit; font-weight: 700; }
.coverage-checks { display: grid; grid-template-columns: 200px 1fr; gap: 55px; margin-top: 55px; padding: 30px; background: var(--paper); border-radius: var(--radius-md); }
.coverage-checks > div span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.coverage-checks > div strong { display: block; margin-top: 11px; color: var(--forest); font-family: Georgia, serif; font-size: 45px; font-weight: 500; }
.coverage-checks ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 0; padding: 0; list-style: none; }
.coverage-checks li { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 7px; padding: 10px; background: var(--white); border-radius: 10px; }
.coverage-checks li i { grid-row: 1 / 3; display: grid; place-items: center; width: 22px; height: 22px; color: white; background: var(--ok); border-radius: 50%; font-size: 9px; font-style: normal; }
.coverage-checks li.unavailable i { color: var(--warn); background: rgba(165,104,45,.11); }
.coverage-checks li span { font-size: 9px; font-weight: 700; }
.coverage-checks li em { color: var(--muted); font-size: 7px; font-style: normal; text-transform: uppercase; }

.visual-relationship { padding: 115px 0 125px; background: var(--paper); }
.visual-chain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.visual-step { position: relative; overflow: hidden; background: var(--white); border: 1px solid rgba(23,32,31,.08); border-radius: var(--radius-md); }
.visual-step + .visual-step::before { content: "→"; position: absolute; left: -22px; top: 185px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; color: var(--forest); background: var(--lime); border-radius: 50%; font-size: 16px; }
.visual-step figure { position: relative; height: 330px; margin: 0; overflow: hidden; background: var(--paper-2); }
.visual-step figure img { height: 100%; object-fit: contain; padding: 15px; }
.visual-step figcaption { position: absolute; left: 15px; top: 15px; display: grid; place-items: center; width: 35px; height: 35px; color: white; background: var(--forest); border-radius: 50%; font-size: 9px; font-weight: 800; }
.file-placeholder { display: grid; place-content: center; gap: 8px; height: 100%; text-align: center; }
.file-placeholder span { color: var(--forest); font-family: Georgia, serif; font-size: 35px; }
.file-placeholder em { color: var(--muted); font-size: 9px; font-style: normal; }
.visual-step > div { padding: 24px; }
.visual-step h3 { margin-bottom: 9px; font-family: Georgia, "Songti SC", serif; font-size: 22px; font-weight: 500; }
.visual-step p { color: var(--muted); font-size: 11px; }
.visual-step a, .missing-link { color: var(--forest); font-size: 9px; font-weight: 800; }
.missing-link { color: var(--warn); }

.identity-section { padding-top: 120px; padding-bottom: 120px; }
.identity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.detail-panel { padding: 36px; background: var(--paper); border-radius: var(--radius-md); }
.panel-title { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.panel-title span { color: var(--clay); font-size: 9px; font-weight: 800; }
.panel-title h2 { margin: 0; font-family: Georgia, "Songti SC", serif; font-size: 29px; font-weight: 500; }
.detail-panel dl, .marketplace-record dl { margin: 0; }
.detail-panel dl > div, .marketplace-record dl > div { display: grid; grid-template-columns: 145px 1fr; gap: 22px; padding: 14px 0; border-top: 1px solid var(--line); }
.detail-panel dt, .marketplace-record dt { color: var(--muted); font-size: 9px; font-weight: 700; }
.detail-panel dd, .marketplace-record dd { margin: 0; overflow-wrap: anywhere; font-size: 11px; font-weight: 700; text-align: right; }
.detail-panel dd a, .marketplace-record dd a { color: var(--forest); }

.marketplace-section { padding: 125px 0; color: white; background: var(--forest-dark); }
.marketplace-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1fr); align-items: center; gap: clamp(60px, 10vw, 145px); }
.marketplace-section .eyebrow { color: var(--lime); }
.marketplace-intro > p:last-child { color: rgba(255,255,255,.62); }
.marketplace-record { padding: 35px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); }
.asin-block { margin-bottom: 22px; padding: 26px; color: white; background: var(--forest); border-radius: 18px; }
.asin-block span, .asin-block strong, .asin-block em { display: block; }
.asin-block span { color: var(--sage); font-size: 9px; font-weight: 800; }
.asin-block strong { margin: 10px 0 4px; overflow-wrap: anywhere; font-family: Georgia, serif; font-size: 36px; font-weight: 500; }
.asin-block em { color: rgba(255,255,255,.62); font-size: 10px; font-style: normal; }

.chronology-section { padding-top: 120px; padding-bottom: 120px; }
.date-pair { display: flex; gap: 14px; }
.date-pair > span { min-width: 150px; padding: 15px 18px; background: var(--paper); border-radius: 13px; }
.date-pair em, .date-pair strong { display: block; }
.date-pair em { margin-bottom: 6px; color: var(--muted); font-size: 8px; font-style: normal; text-transform: uppercase; }
.date-pair strong { color: var(--forest); font-size: 11px; }
.timeline-list { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline-list::before { content: ""; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline-list li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 24px; padding: 0 0 28px; }
.timeline-list li > span { position: relative; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; color: white; background: var(--forest); border: 7px solid var(--white); border-radius: 50%; font-size: 8px; font-weight: 800; }
.timeline-list p { margin: 0; padding: 9px 0; color: var(--ink-soft); font-size: 13px; }
.empty-detail { padding: 30px; color: var(--warn); background: var(--paper); border-radius: 16px; font-size: 12px; }

.declaration-section { padding: 120px 0; background: var(--lime); }
.declaration-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.declaration-title > span { color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.declaration-title h2 { margin-top: 22px; }
.declaration-title p { color: var(--ink-soft); }
.declaration-section blockquote { margin: 0; padding: 38px; color: white; background: var(--forest); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.declaration-section blockquote > p { font-family: Georgia, "Songti SC", serif; font-size: 20px; line-height: 1.6; }
.declaration-section blockquote footer { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line-light); }
.declaration-section blockquote span, .declaration-section blockquote strong { display: block; }
.declaration-section blockquote span { margin-bottom: 5px; color: var(--sage); font-size: 8px; text-transform: uppercase; }
.declaration-section blockquote strong { overflow-wrap: anywhere; font-size: 10px; }

.public-evidence { padding-top: 125px; padding-bottom: 135px; }
.evidence-group { margin-top: 35px; }
.evidence-group-title { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.evidence-group-title span { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.evidence-group-title em { color: var(--muted); font-size: 9px; font-style: normal; }
.evidence-file-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.evidence-file { display: grid; grid-template-columns: 165px 1fr; min-height: 175px; overflow: hidden; background: var(--paper); border-radius: 17px; transition: transform .2s, box-shadow .2s; }
.evidence-file:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.evidence-file figure { display: grid; place-items: center; margin: 0; overflow: hidden; background: var(--paper-2); }
.evidence-file figure img { height: 100%; object-fit: cover; }
.evidence-file figure > span { color: var(--forest); font-family: Georgia, serif; font-size: 29px; }
.evidence-file > div { padding: 20px; }
.evidence-file > div > span { color: var(--clay); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.evidence-file h3 { margin: 10px 0 7px; font-family: Georgia, "Songti SC", serif; font-size: 19px; font-weight: 500; }
.evidence-file p { color: var(--muted); font-size: 9px; }
.evidence-file strong { color: var(--forest); font-size: 8px; }
.no-evidence { padding: 45px; background: var(--paper); border: 1px dashed var(--line); border-radius: var(--radius-md); }
.no-evidence > span { color: var(--clay); font-size: 9px; font-weight: 800; }
.no-evidence h3 { margin: 35px 0 10px; font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.no-evidence p { color: var(--muted); }

.dossier-provenance { padding: 110px 0; color: white; background: var(--forest); }
.provenance-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .63fr); gap: clamp(60px, 9vw, 130px); }
.provenance-grid > div > span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.provenance-grid h2 { margin-top: 22px; }
.provenance-grid > div > p { max-width: 670px; color: rgba(255,255,255,.62); font-size: 11px; }
.provenance-grid dl { margin: 0; }
.provenance-grid dl > div { padding: 13px 0; border-top: 1px solid var(--line-light); }
.provenance-grid dt { margin-bottom: 5px; color: var(--sage); font-size: 8px; text-transform: uppercase; }
.provenance-grid dd { margin: 0; overflow-wrap: anywhere; font-size: 11px; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay1 { transition-delay: .1s; }
.delay2 { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-frame, .record-card, .dossier-card, .evidence-file { transition: none; }
}

@media (max-width: 1080px) {
  .home-hero, .records-hero { grid-template-columns: 1fr; }
  .home-hero { padding-top: 60px; }
  .hero-gallery { width: min(650px, 100%); min-height: 500px; margin-inline: auto; }
  .records-hero { padding-bottom: 100px; }
  .access-card { max-width: 650px; }
  .story-row { grid-template-columns: .85fr 1fr; gap: 55px; }
  .record-card-grid { grid-template-columns: repeat(2, 1fr); }
  .dossier-masthead { grid-template-columns: 1fr 310px; gap: 50px; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .overview-grid article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .overview-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .coverage-checks { grid-template-columns: 1fr; gap: 20px; }
  .evidence-file-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { min-height: 68px; padding: 12px 16px; }
  .brand-symbol { width: 39px; height: 39px; }
  .brand em { max-width: 190px; }
  .nav-toggle { display: block; }
  .nav { position: absolute; left: 12px; right: 12px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a, .records-header .nav a, .dossier-header .nav a { color: var(--ink); }
  .nav a:hover, .records-header .nav a:hover, .dossier-header .nav a:hover { color: var(--forest); background: rgba(15,76,67,.08); }
  .nav .lang-switch { margin-left: 0; }
  .home-hero { min-height: auto; padding: 52px 18px 75px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 66px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: start; flex-direction: column; }
  .hero-facts { margin-top: 40px; }
  .hero-facts > div { padding-right: 10px; }
  .hero-facts > div + div { padding-left: 10px; }
  .hero-facts strong { font-size: 22px; }
  .hero-facts span { font-size: 9px; }
  .hero-gallery { min-height: 420px; }
  .gallery-note { right: 3px; width: 150px; }
  .intro-section, .story-sections, .review-method, .review-start, .methodology-section, .dossier-overview, .identity-section, .chronology-section, .public-evidence { padding-top: 85px; padding-bottom: 85px; }
  .intro-grid, .contact-grid, .review-method, .review-start-grid, .methodology-grid, .marketplace-grid, .declaration-grid, .provenance-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-visual { width: min(500px, 100%); margin-inline: auto; }
  .intro-visual figcaption { right: 10px; }
  .process-section, .records-preview, .marketplace-section, .declaration-section { padding-top: 85px; padding-bottom: 85px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; margin-bottom: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card, .process-card + .process-card { min-height: 0; padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line-light); }
  .story-row, .story-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .story-row.reverse figure { order: 0; }
  .story-row img { height: 300px; }
  .record-card-grid, .dossier-grid { grid-template-columns: 1fr; }
  .records-hero { min-height: auto; padding: 65px 18px 88px; }
  .records-hero-copy h1 { font-size: clamp(49px, 14vw, 74px); }
  .access-card { padding: 30px; border-radius: 58px 22px 22px 22px; }
  .records-stats { grid-template-columns: 1fr 1fr; margin-top: -27px; }
  .records-stats > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .records-stats > div:nth-child(4) { border-top: 1px solid var(--line); }
  .dossier-card { grid-template-columns: 38% 62%; }
  .dossier-masthead { grid-template-columns: 1fr; padding: 55px 18px 65px; }
  .record-identity { max-width: 500px; }
  .dossier-nav { top: 68px; padding-left: 12px; padding-right: 12px; }
  .coverage-checks ul { grid-template-columns: 1fr 1fr; }
  .visual-chain { grid-template-columns: 1fr; }
  .visual-step + .visual-step::before { left: 50%; top: -21px; transform: translateX(-50%) rotate(90deg); }
  .visual-step figure { height: 300px; }
  .identity-grid { grid-template-columns: 1fr; }
  .date-pair { width: 100%; }
  .date-pair > span { flex: 1; min-width: 0; }
  .declaration-section blockquote footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section-wrap { width: min(100% - 28px, 1180px); }
  .brand em { display: none; }
  .home-hero { padding-left: 14px; padding-right: 14px; }
  .hero-gallery { min-height: 340px; }
  .gallery-note { width: 130px; padding: 13px; }
  .hero-frame { border-width: 5px; }
  .intro-copy h2, .section-heading h2, .method-intro h2, .contact-section h2, .review-start h2, .methodology-copy h2, .marketplace-intro h2, .declaration-title h2, .provenance-grid h2 { font-size: 37px; }
  .company-facts > div { grid-template-columns: 1fr; gap: 7px; }
  .intro-visual { padding: 17px; }
  .intro-visual img { min-height: 290px; }
  .story-row figure { padding: 17px; }
  .record-card-grid { grid-template-columns: 1fr; }
  .footer-main, .records-footer > div, .footer-legal { align-items: start; flex-direction: column; }
  .records-stats > div { padding: 20px; }
  .access-points { grid-template-columns: 1fr; }
  .review-mini-flow { grid-template-columns: 1fr; }
  .review-mini-flow li:nth-child(even) { padding-left: 0; border-left: 0; }
  .dossier-card { grid-template-columns: 1fr; }
  .dossier-cover { min-height: 230px; }
  .dossier-title h1 { font-size: 44px; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-grid article, .overview-grid article + article, .overview-grid article:nth-child(3) { padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .coverage-checks { padding: 20px; }
  .coverage-checks ul { grid-template-columns: 1fr; }
  .detail-panel { padding: 24px 20px; }
  .detail-panel dl > div, .marketplace-record dl > div { grid-template-columns: 1fr; gap: 7px; }
  .detail-panel dd, .marketplace-record dd { text-align: left; }
  .marketplace-record { padding: 22px; }
  .date-pair { flex-direction: column; }
  .evidence-file { grid-template-columns: 110px 1fr; }
  .declaration-section blockquote { padding: 26px; }
}

@media print {
  :root { --paper: #fff; --white: #fff; }
  body { color: #000; background: #fff; font-size: 10pt; }
  .site-header, .dossier-nav, .dossier-actions, .records-footer, .skip-link, script { display: none !important; }
  .dossier-masthead, .visual-relationship, .marketplace-section, .declaration-section, .dossier-provenance { color: #000; background: #fff; }
  .dossier-masthead { grid-template-columns: 1fr 220px; padding: 20px 0; }
  .dossier-title h1 { font-size: 30pt; }
  .record-identity, .marketplace-record, .declaration-section blockquote { color: #000; background: #fff; border: 1px solid #bbb; box-shadow: none; }
  .record-status > strong, .record-status > p, .record-identity dd, .marketplace-intro > p:last-child, .declaration-section blockquote > p, .provenance-grid > div > p { color: #000; }
  .section-wrap { width: 100%; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .visual-step, .detail-panel, .evidence-file, .coverage-checks { break-inside: avoid; box-shadow: none; }
  .visual-chain { gap: 10px; }
  .visual-step figure { height: 180px; }
  a { text-decoration: underline; }
}
