:root {
  --ink: #14110f;
  --paper: #f7f3ec;
  --paper-2: #efe8dc;
  --rule: #1a1613;
  --muted: #6b6259;
  --accent: #c8341a;   /* PlatePost tomato red */
  --jelly: #14110f;    /* Jelly stays black-on-cream */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 18px;
}

/* subtle paper texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(20,17,15,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: 0;
}

/* ===================== Masthead ===================== */
.masthead {
  position: relative;
  z-index: 1;
  border-bottom: 2px solid var(--rule);
  padding: 22px 24px 16px;
  background: var(--paper);
}
.brands {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px; height: 34px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.platepost-mark { color: var(--accent); }
.logo-mark svg { width: 100%; height: 100%; display: block; }

.brand-name {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 20px;
  color: var(--ink);
}
.brand-name.serif {
  font-family: var(--serif);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--accent);
}

.x-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--muted);
  padding: 0 4px;
  line-height: 1;
}

.release-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow {
  font-weight: 700;
  color: var(--accent);
}
.dot {
  width: 4px; height: 4px;
  background: var(--muted);
  border-radius: 50%;
  display: inline-block;
}

/* ===================== Release body ===================== */
.release {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 24px 56px;
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 14px;
}

.headline {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}
.headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.dek {
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.5;
  color: #2a2420;
  margin: 0 0 28px;
  font-weight: 400;
}

.lede-rule {
  height: 1px;
  background: var(--rule);
  margin: 28px 0 28px;
  opacity: 0.9;
}

.release p {
  margin: 0 0 18px;
  font-size: 17.5px;
  line-height: 1.7;
}

.drop-cap {
  font-family: var(--serif);
  font-weight: 800;
  float: left;
  font-size: 58px;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--accent);
}

.release h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.01em;
  margin: 36px 0 14px;
  color: var(--ink);
  border-top: 1px solid rgba(20,17,15,0.15);
  padding-top: 22px;
}

.release a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.release a:hover { text-decoration-thickness: 2px; }

/* Pull quotes */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 28px 0 28px;
  font-weight: 400;
}
.pullquote.alt { border-left-color: var(--ink); }
.attribution {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Ordered steps */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 60px;
  background: var(--paper-2);
  border: 1px solid rgba(20,17,15,0.12);
  border-radius: 2px;
  font-size: 17px;
  line-height: 1.55;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px; top: 14px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

/* Detail list */
.details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
  font-size: 17px;
}
.details li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(20,17,15,0.2);
}
.details li:last-child { border-bottom: 0; }
.details strong {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  min-width: 110px;
  font-weight: 700;
}

.contact {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
}
.contact strong {
  color: var(--ink);
  font-weight: 700;
}

.end-mark {
  text-align: center;
  font-family: var(--sans);
  letter-spacing: 0.3em;
  color: var(--muted);
  margin: 40px 0 30px;
  font-size: 14px;
}

/* Share row */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}
.copy-btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, background 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.copy-btn:hover { transform: translateY(-1px); }
.copy-btn.ghost {
  background: transparent;
  color: var(--ink);
}
.copy-btn.ghost:hover { background: var(--ink); color: var(--paper); }
.copy-btn.copied { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===================== Footer ===================== */
.foot {
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--rule);
  padding: 26px 24px 36px;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  background: var(--paper-2);
}
.foot-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.foot-brands .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
  font-size: 17px;
}
.foot-x { color: var(--muted); font-weight: 400; }

/* ===================== Mobile tweaks ===================== */
@media (max-width: 560px) {
  .release { padding: 32px 20px 48px; }
  .masthead { padding: 18px 16px 14px; }
  .brand-name { font-size: 18px; }
  .brand-name.serif { font-size: 20px; }
  .logo-mark { width: 30px; height: 30px; }
  .release-meta { font-size: 11px; letter-spacing: 0.1em; }
  .drop-cap { font-size: 48px; padding: 4px 8px 0 0; }
  .details strong { display: block; min-width: 0; margin-bottom: 2px; }
  .pullquote { padding-left: 16px; }
}

@media (min-width: 900px) {
  .release { padding-top: 60px; }
}
