/* Accountants Edition — page-specific styles, extends styles.css */

.masthead-compact { padding-top: clamp(14px, 2vw, 24px); }
.masthead-compact .masthead-brand { font-size: clamp(1.9rem, 4vw, 2.8rem); }

.acc-hero .hero-title { max-width: 22ch; }

/* Exhibit */
.exhibit { background: var(--paper-deep); }
.exhibit-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.exhibit-copy p { color: var(--ink-muted); max-width: 46ch; margin-bottom: 16px; }
.exhibit-copy .editions-link { display: inline-block; margin-top: 8px; }

.exhibit-frame { margin: 0; }
.exhibit-screen {
  position: relative;
  display: block;
  background: var(--paper);
  padding: 8px;
  box-shadow: 0 1px 0 rgba(26,23,18,0.25), 0 16px 40px rgba(26,23,18,0.18);
  transition: transform 0.3s var(--ease-paper), box-shadow 0.3s var(--ease-paper);
}
.exhibit-screen img { display: block; width: 100%; height: auto; }
.exhibit-screen:hover, .exhibit-screen:focus-visible {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 2px 0 rgba(26,23,18,0.25), 0 28px 64px rgba(26,23,18,0.26);
}
.exhibit-screen:focus-visible { outline: 2px solid var(--press-red); outline-offset: 4px; }
.exhibit-visit {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--press-red);
  color: var(--paper-on-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease-paper), transform 0.25s var(--ease-paper);
}
.exhibit-screen:hover .exhibit-visit, .exhibit-screen:focus-visible .exhibit-visit {
  opacity: 1;
  transform: none;
}
.exhibit-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 12px;
}

/* Pricing */
.price-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--ink-hairline);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.price-card-feature {
  background: var(--ink);
  color: var(--paper-on-ink);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(26,23,18,0.3), 0 20px 48px rgba(26,23,18,0.22);
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--press-red);
  margin-bottom: 16px;
}
.price-card-feature .price-tier { color: #E8836A; }
.price-amount {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-per { font-size: 0.45em; font-weight: 500; letter-spacing: 0; }
.price-terms {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin: 10px 0 24px;
}
.price-card-feature .price-terms { color: var(--muted-on-ink); }
.price-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--ink-faint);
}
.price-card-feature .price-list li { color: var(--muted-on-ink); border-bottom-color: rgba(244,240,230,0.12); }
.price-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--press-red);
}
.price-card-feature .price-list li::before { color: #E8836A; }
.price-cta { text-align: center; }
.price-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 68ch;
}

/* FAQ */
.faq { background: var(--paper-deep); }
.faq-list { border-top: 1px solid var(--ink-hairline); max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--ink-hairline); }
.faq-item summary {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 20px 40px 20px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s var(--ease-paper);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--press-red);
  transition: transform 0.25s var(--ease-paper);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--press-red-deep); }
.faq-item summary:focus-visible { outline: 2px solid var(--press-red); outline-offset: 2px; }
.faq-item p {
  color: var(--ink-muted);
  max-width: 62ch;
  padding: 0 4px 24px;
}
.faq-item a { color: var(--press-red-deep); text-underline-offset: 3px; }

/* Mobile */
@media (max-width: 900px) {
  .price-cols { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 820px) {
  .exhibit-grid { grid-template-columns: minmax(0, 1fr); }
  .exhibit-copy, .exhibit-frame { min-width: 0; }
}
