/* ── Parle Conmigo — broadsheet front page ─────────────────── */

:root {
  --ink: #111110;
  --ink-soft: #33322f;
  --paper: #f7f4ec;
  --paper-deep: #efeadd;
  --pencil: #004aad;
  --rule: #1b1a18;
  --serif-display: "Playfair Display", "Times New Roman", serif;
  --serif-body: "Old Standard TT", Georgia, serif;
  --gothic: "Oswald", "Arial Narrow", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper-deep);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* newsprint sheet */
.paper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 48px 56px;
  background: var(--paper);
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12), 0 18px 60px rgba(20, 16, 6, 0.18);
}

/* faint pulp grain over everything */
.paper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── rules ── */
.double-rule {
  border-top: 3px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  height: 6px;
  margin: 0 0 4px;
}
.thin-rule { border-top: 1px solid var(--rule); margin: 42px 0 0; }

/* ── dateline ── */
.dateline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 5px 2px;
  font-family: var(--gothic);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── masthead ── */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 0 18px;
}
.masthead-logo {
  width: 220px;
  height: auto;
  display: block;
  animation: settle 0.9s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.masthead-side {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.masthead-left { text-align: right; }
.masthead-right { text-align: left; }

/* ── hero ── */
.hero {
  text-align: center;
  padding: 46px 40px 40px;
}
.kicker {
  display: inline-block;
  font-family: var(--gothic);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pencil);
  border-top: 1px solid var(--pencil);
  border-bottom: 1px solid var(--pencil);
  padding: 6px 18px;
  margin-bottom: 30px;
  animation: rise 0.7s 0.1s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.headline {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(38px, 6.2vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin-bottom: 26px;
  animation: rise 0.7s 0.22s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.headline em { font-style: italic; }
.blue-pencil {
  color: var(--pencil);
  position: relative;
  white-space: nowrap;
}
.blue-pencil::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.02em;
  height: 0.09em;
  background: var(--pencil);
  transform: skewY(-0.6deg);
}
.deck {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  animation: rise 0.7s 0.34s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.cta {
  display: inline-block;
  font-family: var(--gothic);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 15px 34px;
  text-decoration: none;
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--pencil);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  animation: rise 0.7s 0.46s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.cta:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--pencil); }
.cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--pencil); }
.cta-note {
  margin-top: 14px;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  animation: rise 0.7s 0.56s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

/* ── columns ── */
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 40px 0 8px;
}
.col {
  padding: 0 30px;
  border-left: 1px solid rgba(27, 26, 24, 0.55);
}
.col:first-child { border-left: none; padding-left: 2px; }
.col:last-child { padding-right: 2px; }
.col-head {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.14;
  margin-bottom: 6px;
}
.col-sub {
  font-family: var(--gothic);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pencil);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.col p { margin-bottom: 12px; text-align: justify; hyphens: auto; }
.dropcap {
  float: left;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 54px;
  line-height: 0.82;
  padding: 6px 8px 0 0;
}

/* ── stop the presses ── */
.presses {
  margin: 46px -48px 0;
  background: var(--pencil);
  color: #f4f7ff;
  text-align: center;
  padding: 44px 48px 48px;
}
.presses-kicker {
  font-family: var(--gothic);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}
.presses-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.3;
  max-width: 780px;
  margin: 0 auto;
}

/* ── subscribe ── */
.subscribe { padding: 54px 0 10px; display: flex; justify-content: center; }
.subscribe-box {
  max-width: 560px;
  width: 100%;
  border: 3px double var(--rule);
  outline: 1px solid var(--rule);
  outline-offset: 5px;
  padding: 36px 40px 32px;
  text-align: center;
  background: var(--paper);
}
.subscribe-label {
  font-family: var(--gothic);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pencil);
  margin-bottom: 10px;
}
.subscribe-head {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 14px;
}
.subscribe-copy { font-size: 16px; color: var(--ink-soft); margin-bottom: 24px; }

#waitlist-form { display: flex; gap: 10px; }
#waitlist-form input[type="email"] {
  flex: 1;
  font-family: var(--serif-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #fffdf7;
  color: var(--ink);
  min-width: 0;
}
#waitlist-form input[type="email"]:focus {
  outline: 2px solid var(--pencil);
  outline-offset: 1px;
}
/* honeypot — off-canvas, invisible to humans */
#paper_route { position: absolute; left: -6000px; width: 1px; height: 1px; opacity: 0; }

#waitlist-btn {
  font-family: var(--gothic);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pencil);
  color: #fff;
  border: 1px solid var(--pencil);
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}
#waitlist-btn:hover { background: #003a88; }
#waitlist-btn:disabled { opacity: 0.55; cursor: wait; }

.form-note {
  min-height: 22px;
  margin-top: 12px;
  font-style: italic;
  font-size: 14.5px;
  color: var(--pencil);
}
.form-note.error { color: #9d1c1c; }

/* ── colophon ── */
.colophon { text-align: center; padding-top: 20px; font-size: 14px; color: var(--ink-soft); }
.colophon a { color: inherit; }
.colophon-fine { margin-top: 6px; font-style: italic; font-size: 12.5px; opacity: 0.8; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ── motion ── */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes settle { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── smaller sheets ── */
@media (max-width: 900px) {
  .paper { padding: 14px 26px 44px; }
  .columns { grid-template-columns: 1fr; }
  .col { border-left: none; border-top: 1px solid rgba(27, 26, 24, 0.55); padding: 26px 2px 0; margin-top: 26px; }
  .col:first-child { border-top: none; margin-top: 0; padding-top: 0; }
  .presses { margin: 40px -26px 0; }
  .hero { padding: 36px 6px 34px; }
  .masthead { grid-template-columns: 1fr; justify-items: center; gap: 14px; padding: 22px 0 14px; }
  .masthead-side { display: none; }
}
@media (max-width: 560px) {
  #waitlist-form { flex-direction: column; }
  .subscribe-box { padding: 28px 22px 26px; }
  .sm-hide { display: none; }
  .dateline { font-size: 9.5px; letter-spacing: 0.1em; }
}
