/* DUARTT — Press Kit shared stylesheet */

:root {
  --black: #0A0A0A;
  --ink: #131312;
  --bone: #F0EAD8;
  --bone-soft: #E8E0CB;
  --bone-dim: #C8C0AC;
  --line: rgba(240, 234, 216, 0.18);
  --line-dark: rgba(10, 10, 10, 0.18);
  --grey-1: #1A1A18;
  --grey-2: #242422;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--bone);
  font-family: "DM Mono", ui-monospace, monospace;
  -webkit-font-smoothing: antialiased;
}

deck-stage { background: #050505; }

section {
  width: 1920px;
  height: 1080px;
  background: var(--black);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  font-family: "DM Mono", monospace;
  display: block;
}

section.light { background: var(--bone); color: var(--black); }

/* ============== Typography ============== */
.display {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.86;
  text-transform: uppercase;
}

.editorial {
  font-family: "DM Serif Display", "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.mono {
  font-family: "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
}

.mono-sm { font-family: "DM Mono", monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.mono-lg { font-family: "DM Mono", monospace; font-size: 18px; letter-spacing: 0.04em; }

/* ============== Layout helpers ============== */
.slide-pad { padding: 60px 80px; height: 100%; display: flex; flex-direction: column; }

.frame-top, .frame-bottom {
  position: absolute;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.62;
}
.frame-top { top: 44px; }
.frame-bottom { bottom: 44px; }

.frame-top .dot::before {
  content: "●";
  margin-right: 10px;
  font-size: 10px;
  vertical-align: middle;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}
section.light .divider { background: var(--line-dark); }

.tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid currentColor;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

.section-num {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.kicker {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.72;
}

a { color: inherit; text-decoration: none; }

/* ============== Logo ============== */
.logo-mark { display: inline-block; height: 1em; }
.logo-mark img { height: 100%; display: block; }

/* ============== Reusable backgrounds ============== */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.85 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.06) 3px 4px);
}

/* ============== Cards / grids ============== */
.grid { display: grid; gap: 24px; }

.card {
  border: 1px solid var(--line);
  padding: 28px;
  background: rgba(240,234,216,0.02);
}
section.light .card { border-color: var(--line-dark); background: rgba(10,10,10,0.02); }

.runline {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
section.light .runline { border-bottom-color: var(--line-dark); }
.runline .idx { width: 40px; opacity: 0.55; }
.runline .name { flex: 1; }
.runline .meta { opacity: 0.55; }

/* Marquee text ribbon */
.ribbon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 88px;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
}
.ribbon .sep {
  display: inline-block;
  width: 14px; height: 14px; margin: 0 24px;
  background: currentColor;
  border-radius: 50%;
  vertical-align: middle;
}

/* QR-like dot ornament */
.dot-grid {
  display: grid;
  grid-template-columns: repeat(8, 8px);
  gap: 4px;
}
.dot-grid span {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
}

/* Image utility */
.img-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-bw { filter: grayscale(1) contrast(1.05); }
.img-deep { filter: grayscale(1) brightness(0.78) contrast(1.12); }

/* Specific repeat slide patterns */
.crosshair::before, .crosshair::after {
  content: ""; position: absolute; background: currentColor; opacity: 0.5;
}
.crosshair::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.crosshair::after  { top: 50%; left: 0; right: 0; height: 1px; }

/* Print: ensure photos render full-color in PDF */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
