/* Fax Mode — share the website the slowest way known to man.
   A CONFIDENTIAL cover sheet that dares you not to transmit the URL. Reverse psychology is
   the distribution strategy; fax is the anti-viral medium. The contradiction is the joke. */

.fax-scrim{
  position:fixed; inset:0; z-index:10000; display:none; align-items:flex-start; justify-content:center;
  background:rgba(8,7,10,.78); backdrop-filter:blur(4px); padding:28px 16px; overflow:auto;
}
.fax-scrim.on{ display:flex; }

.fax-sheet{
  width:min(640px,100%); background:#f3efe4; color:#15140f; border-radius:4px;
  box-shadow:0 40px 120px -30px #000, 0 0 0 1px #000;
  font-family:var(--mono,ui-monospace,'Courier New',monospace); font-size:13.5px; line-height:1.6;
  padding:30px 32px 26px; position:relative; animation:faxIn .3s ease both;
}
@keyframes faxIn{ from{opacity:0;transform:translateY(-14px)} to{opacity:1;transform:none} }

.fax-sheet::before{ /* the torn-feed top edge */
  content:""; position:absolute; left:0; right:0; top:-1px; height:6px;
  background:repeating-linear-gradient(90deg,#15140f 0 7px,transparent 7px 14px); opacity:.25;
}
.fax-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:14px; border-bottom:2px solid #15140f; padding-bottom:12px; }
.fax-brand{ font-weight:700; letter-spacing:.06em; font-size:15px; }
.fax-brand small{ display:block; font-weight:400; font-size:10.5px; letter-spacing:.18em; opacity:.7; margin-top:3px; }
.fax-stamps{ display:flex; flex-direction:column; gap:6px; align-items:flex-end; }
.fax-stamp{ border:2px solid #8c2b22; color:#8c2b22; font-weight:700; font-size:10px; letter-spacing:.16em;
  padding:3px 8px; border-radius:3px; transform:rotate(3deg); text-transform:uppercase; opacity:.85; }
.fax-stamp.b{ transform:rotate(-2deg); }

h2.fax-title{ font-family:inherit; font-size:18px; letter-spacing:.22em; text-transform:uppercase; margin:16px 0 12px; }

.fax-fields{ margin:0 0 14px; display:grid; grid-template-columns:auto 1fr; gap:5px 14px; }
.fax-fields dt{ font-weight:700; letter-spacing:.1em; text-transform:uppercase; font-size:11px; padding-top:2px; }
.fax-fields dd{ margin:0; border-bottom:1px dotted #15140f; min-height:20px; }

.fax-body{ border-top:1px dashed #15140f; padding-top:14px; }
.fax-body p{ margin:0 0 10px; }
.fax-url{ text-align:center; font-weight:700; font-size:17px; letter-spacing:.06em; margin:14px 0;
  padding:10px; border:2px dashed #15140f; background:#fff; word-break:break-all; }
.fax-fine{ font-size:10.5px; line-height:1.7; opacity:.78; border-top:1px solid #15140f; padding-top:10px; margin-top:6px; }

.fax-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.fax-actions button{
  font-family:inherit; font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; border-radius:4px; padding:9px 15px; border:2px solid #15140f; background:#15140f; color:#f3efe4;
}
.fax-actions button.ghost{ background:transparent; color:#15140f; }
.fax-actions button:hover{ background:#8c2b22; border-color:#8c2b22; color:#fff; }
.fax-actions button:focus-visible{ outline:2px solid #8c2b22; outline-offset:3px; }
.fax-status{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; min-height:16px; margin-top:10px; color:#8c2b22; }

/* the 📠 trigger button in the footer */
.fax-trigger, .email-trigger{
  background:none; border:1px solid var(--line,#2a2830); border-radius:8px; cursor:pointer;
  font-size:16px; line-height:1; padding:6px 10px; color:inherit;
}
.fax-trigger:hover, .email-trigger:hover{ border-color:var(--brass,#c9a24b); }
.fax-trigger:focus-visible, .email-trigger:focus-visible{ outline:2px solid var(--brass,#c9a24b); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){ .fax-sheet{ animation:none; } }

/* print just the cover sheet */
@media print{
  body > *:not(.fax-scrim){ display:none !important; }
  .fax-scrim{ position:static; background:none; backdrop-filter:none; padding:0; display:block; }
  .fax-sheet{ box-shadow:none; width:100%; }
  .fax-actions, .fax-status{ display:none !important; }
}
