/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f0f;
  --fg: #f2ede8;
  --accent: #c2410c;
  --accent-dim: rgba(194, 65, 12, 0.15);
  --muted: #7a7572;
  --border: rgba(242, 237, 232, 0.1);
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.1; }
p { font-size: 1.05rem; line-height: 1.75; color: rgba(242,237,232,0.8); }

/* === SITE HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
}

.brand-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
}

.site-header nav {
  display: flex;
  gap: 2.5rem;
}

.site-header nav a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--fg); }

/* === SECTION LABEL === */
.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 4rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: rgba(242,237,232,0.6);
  max-width: 540px;
  font-weight: 400;
  line-height: 1.6;
}

/* === COLLECTION === */
.collection {
  padding: 6rem 3rem 8rem;
  border-top: 1px solid var(--border);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-visual {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.tshirt-visual {
  background: #1a1a1a;
}

.tshirt-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 100px; height: 120px;
  border: 2px solid var(--border);
  border-radius: 4px 4px 0 0;
}

.tshirt-visual::after {
  content: '';
  position: absolute;
  top: calc(50% - 20px); left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  width: 80px; height: 100px;
  border: 2px solid var(--border);
  border-radius: 0 0 4px 4px;
  border-top: none;
}

.mug-visual {
  background: #1a1a1a;
}

.mug-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 85px;
  border: 2px solid var(--border);
  border-radius: 0 0 8px 8px;
}

.mug-visual::before {
  content: '';
  position: absolute;
  top: calc(50% - 42px); left: calc(50% + 28px);
  width: 20px; height: 30px;
  border: 2px solid var(--border);
  border-radius: 0 10px 10px 0;
  border-left: none;
}

.journal-visual {
  background: #1a1a1a;
}

.journal-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 130px;
  border: 2px solid var(--border);
  background: #141414;
}

.journal-visual::after {
  content: '';
  position: absolute;
  top: calc(50% - 55px); left: calc(50% - 50px);
  width: 100px; height: 8px;
  background: var(--accent);
}

.incident-number {
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.product-type {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 700;
}

.product-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(242,237,232,0.6);
  flex-grow: 1;
}

.product-format {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* === CARD MECHANIC === */
.card-section {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.card-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.card-mockup {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 0.7;
  border: 1px solid var(--border);
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-inner {
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.card-number {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

.card-title {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.card-body {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(242,237,232,0.6);
  margin-top: 1rem;
  font-family: var(--mono);
}

.card-qr {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.qr-placeholder {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--muted);
  flex-shrink: 0;
}

.card-qr span {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.4;
}

.card-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.card-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* === INCIDENT SECTION === */
.incident-section {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.incident-pull-quote {
  text-align: center;
  padding: 3rem 0;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 5rem;
  font-style: italic;
  color: var(--accent);
  display: block;
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

.incident-pull-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg);
}

.incident-pull-quote cite {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: normal;
}

.incident-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.incident-log {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.log-entry {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.log-entry:last-child { border-bottom: none; }

.log-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.log-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

.log-status {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
}

.log-entry.locked .log-title,
.log-entry.locked .log-num {
  color: var(--muted);
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.manifesto-body {
  max-width: 680px;
}

.manifesto-line {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--fg);
  font-weight: 400;
}

.manifesto-line.accent {
  color: var(--accent);
  font-weight: 700;
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
  background: #111;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  margin-bottom: 2rem;
}

.closing p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(242,237,232,0.6);
  margin-bottom: 1.25rem;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-links {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-divider {
  opacity: 0.4;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-header nav { gap: 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .collection { padding: 4rem 1.5rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .card-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .card-mockup { max-width: 280px; margin: 0 auto; }
  .incident-section { padding: 4rem 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .log-entry { grid-template-columns: 50px 1fr auto; gap: 1rem; padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .site-header nav { display: none; }
}

/* ============================================================
   PRODUCT DETAIL PAGE — INCIDENT 1
   ============================================================ */

.pd-hero {
  padding: 8rem 3rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pd-hero-inner { max-width: 640px; }

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.pd-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.pd-breadcrumb a:hover { color: var(--fg); }
.pd-sep { opacity: 0.4; }

.pd-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pd-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  margin-bottom: 2rem;
}

.pd-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(242,237,232,0.6);
  max-width: 520px;
}

.pd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 4rem 3rem 6rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.pd-product-col { }

.pd-product-frame {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pd-tshirt-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background: #111;
  border: 1px solid var(--border);
}

.pd-tshirt {
  position: relative;
  width: 120px;
  height: 140px;
}

.pd-tshirt-body {
  position: absolute;
  top: 20px; left: 10px;
  width: 100px; height: 120px;
  border: 2px solid rgba(242,237,232,0.25);
  border-radius: 2px;
}

.pd-tshirt-neck {
  position: absolute;
  top: 12px; left: 40px;
  width: 40px; height: 16px;
  border: 2px solid rgba(242,237,232,0.25);
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

.pd-tshirt-sleeve {
  position: absolute;
  top: 22px;
  width: 30px; height: 50px;
  border: 2px solid rgba(242,237,232,0.25);
}

.pd-tshirt-sleeve-l { left: -18px; transform: rotate(-15deg); border-radius: 2px 0 0 2px; border-right: none; }
.pd-tshirt-sleeve-r { right: -18px; transform: rotate(15deg); border-radius: 0 2px 2px 0; border-left: none; }

.pd-incident-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.15em;
}

.pd-card-peek {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 90px;
  background: #141414;
  border: 1px solid var(--border);
  padding: 0.75rem;
}

.pd-card-peek-inner { }

.pd-card-label-sm {
  font-family: var(--mono);
  font-size: 0.45rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
}

.pd-card-title-sm {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.pd-card-num-sm {
  font-family: var(--mono);
  font-size: 0.45rem;
  color: var(--accent);
  margin-top: 0.4rem;
}

.pd-product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pd-meta-item {
  background: #0f0f0f;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pd-meta-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.pd-meta-val {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.pd-story-col { }

.pd-story-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pd-incident-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.pd-story-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.pd-story-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pd-story-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242,237,232,0.7);
}

.pd-story-card {
  border: 1px solid var(--border);
  background: #111;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-card-header {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.pd-card-c-title {
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.pd-card-c-body {
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.65;
  color: rgba(242,237,232,0.5);
}

.pd-card-c-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.pd-card-c-qr {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.pd-card-c-qr-text {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  line-height: 1.4;
}

.pd-purchase {
  padding: 4rem 3rem;
  border-top: 1px solid var(--border);
  background: #0e0e0e;
}

.pd-purchase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pd-price-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pd-price {
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--fg);
}

.pd-price-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pd-buy-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pd-buy-btn:hover { opacity: 0.85; }

.pd-form-section {
  padding: 4rem 3rem;
  border-top: 1px solid var(--border);
  background: #0e0e0e;
}

.pd-form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pd-form-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pd-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pd-field-full { grid-column: 1 / -1; }

.pd-field label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.pd-field input {
  background: #1a1a1a;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.pd-field input:focus { border-color: var(--accent); }
.pd-field input::placeholder { color: var(--muted); }

.pd-form .pd-buy-btn {
  width: 100%;
  background: var(--fg);
  color: #0f0f0f;
  font-weight: 500;
}

.pd-form-note {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 1rem;
  text-align: center;
}

.pd-order-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.pd-order-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.pd-card-preview {
  padding: 6rem 3rem;
  border-top: 1px solid var(--border);
}

.pd-card-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pd-card-preview-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pd-card-preview-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.pd-card-preview-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(242,237,232,0.6);
  max-width: 540px;
  margin: 0 auto 4rem;
}

.pd-card-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  max-width: 680px;
  margin: 0 auto;
}

.pd-card-face {
  background: #0f0f0f;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pd-card-f-label {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
}

.pd-card-f-num {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.pd-card-f-title {
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pd-card-f-body {
  font-family: var(--mono);
  font-size: 0.65rem;
  line-height: 1.6;
  color: rgba(242,237,232,0.5);
}

.pd-card-f-qr {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  margin-top: auto;
}

.pd-card-f-qr-label {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.pd-card-b-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
}

.pd-card-b-title {
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pd-card-b-inner p {
  font-family: var(--mono);
  font-size: 0.65rem;
  line-height: 1.6;
  color: rgba(242,237,232,0.5);
}

.pd-card-b-divider {
  height: 1px;
  background: var(--border);
}

.pd-card-b-url {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.pd-card-b-instruction {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(242,237,232,0.4);
  line-height: 1.5;
}

.pd-footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.pd-footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.pd-footer-links {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   SHARE PAGE — COMMUNITY INCIDENT FORM
   ============================================================ */

.share-header {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.share-home {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.share-home:hover { color: var(--fg); }

.share-main {
  padding: 5rem 3rem 8rem;
  min-height: calc(100vh - 60px);
}

.share-inner { max-width: 640px; margin: 0 auto; }

.share-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.share-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  margin-bottom: 2rem;
}

.share-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(242,237,232,0.6);
  margin-bottom: 3.5rem;
}

.share-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 5rem;
}

.share-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.share-field label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.share-opt {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: rgba(122,117,114,0.6);
  font-style: normal;
}

.share-field input,
.share-field textarea {
  background: #1a1a1a;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.share-field input:focus,
.share-field textarea:focus { border-color: var(--accent); }

.share-field input::placeholder,
.share-field textarea::placeholder { color: var(--muted); }

.share-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 1.1rem 2.5rem;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.share-submit:hover { opacity: 0.85; }
.share-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.share-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1.25rem 1.5rem;
}

.share-success-icon {
  font-size: 1.2rem;
  color: #10b981;
  flex-shrink: 0;
}

.share-success-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #10b981;
}

.share-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 1rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: #ef4444;
  letter-spacing: 0.08em;
}

.share-archive-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.share-archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.archive-entry {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.archive-entry:last-child { border-bottom: none; }

.archive-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
}

.archive-content {
  padding: 1.5rem 1.5rem;
}

.archive-name {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.archive-text {
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(242,237,232,0.7);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.archive-date {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(122,117,114,0.5);
}

.share-archive-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  padding: 2rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.share-footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 768px) {
  .pd-split { grid-template-columns: 1fr; gap: 3rem; }
  .pd-hero { padding: 7rem 1.5rem 3rem; }
  .pd-split { padding: 3rem 1.5rem 4rem; }
  .pd-purchase { padding: 3rem 1.5rem; }
  .pd-form-section { padding: 3rem 1.5rem; }
  .pd-form-grid { grid-template-columns: 1fr; }
  .pd-card-preview { padding: 4rem 1.5rem; }
  .pd-card-showcase { grid-template-columns: 1fr; }
  .share-main { padding: 4rem 1.5rem 6rem; }
}