/* ORSÈNE & CO. · landing ("Exhibit · 01") */
/* Deliberately scoped. Does not share styles.css so the one honest page */
/* isn't infected by the store's low-contrast body colour, disabled focus */
/* rings, or disabled text selection. */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400&family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');

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

html { background: #f6f1e8; }

body {
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #1b1410;
  background: #f6f1e8;
  font-size: 14px;
  line-height: 1.75;
  padding: 16vh 24px 8vh;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.exhibit { max-width: 720px; margin: 0 auto; }

.unwrite-back {
  display: inline-block;
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: #1b1410;
  opacity: 0.55;
  text-decoration: none;
  padding: 4px 0;
  margin-bottom: 28px;
  transition: opacity 0.15s ease;
}

.unwrite-back:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.unwrite-back:focus-visible {
  outline: 2px solid #1b1410;
  outline-offset: 3px;
  opacity: 1;
}

.exhibit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 56px;
  border-bottom: 1px solid #1b1410;
}

.exhibit-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.monogram {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1b1410;
  line-height: 1;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #1b1410;
  margin-bottom: 10px;
  line-height: 1.1;
}

.subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 48px;
  color: #1b1410;
}

.framing p { margin-bottom: 20px; max-width: 62ch; }

.classifier-note {
  padding-left: 18px;
  border-left: 2px solid #1b1410;
  font-size: 13px;
  margin-top: 8px;
}

.cta {
  display: inline-block;
  margin: 44px 0 32px;
  padding: 16px 28px;
  border: 1.5px solid #2c1810;
  background: transparent;
  color: #1b1410;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta:hover { background: #2c1810; color: #f6f1e8; }

.cta:focus-visible {
  outline: 2px solid #1b1410;
  outline-offset: 3px;
}

.secondary {
  font-size: 12px;
  margin-bottom: 28px;
}

.secondary a {
  color: #1b1410;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.secondary a:hover { text-decoration: none; }

.secondary .sep { margin: 0 10px; opacity: 0.5; }

.secondary a:focus-visible,
.index-details summary:focus-visible {
  outline: 2px solid #1b1410;
  outline-offset: 3px;
}

.index-details {
  margin-bottom: 40px;
  font-size: 12px;
}

.index-details summary {
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  color: #1b1410;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
}

.index-details summary::-webkit-details-marker { display: none; }

.index-details summary::before {
  content: "▸";
  display: inline-block;
  width: 14px;
  margin-right: 4px;
  opacity: 0.6;
}

.index-details[open] summary::before { content: "▾"; }

.index-body {
  margin-top: 16px;
  padding: 20px 22px;
  background: rgba(27, 20, 16, 0.04);
  border-left: 2px solid #1b1410;
}

.index-body h3 {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b1410;
  margin-top: 18px;
  margin-bottom: 8px;
}

.index-body h3:first-child { margin-top: 0; }

.index-body ul { list-style: none; padding-left: 0; }

.index-body li {
  padding: 3px 0 3px 14px;
  position: relative;
  font-size: 12px;
  line-height: 1.6;
}

.index-body li::before {
  content: "·";
  position: absolute;
  left: 0;
  opacity: 0.45;
}

.index-body code {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  padding: 1px 5px;
  background: rgba(44, 24, 16, 0.08);
  border-radius: 2px;
  color: #2c1810;
}

.signature {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 20, 16, 0.25);
  font-size: 11px;
  opacity: 0.75;
}

.signature a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signature a:hover { text-decoration: none; }

@media (max-width: 640px) {
  body { padding: 10vh 20px 6vh; font-size: 13px; }
  .brand { font-size: 32px; letter-spacing: 2px; }
  .subtitle { font-size: 16px; margin-bottom: 36px; }
  .monogram { width: 36px; height: 36px; font-size: 18px; }
  .cta { display: block; text-align: center; letter-spacing: 2px; }
  .secondary .sep { margin: 0 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
