/* ============================================================
   Unsent Letters — /letters and /letters/read
   Depends on comminxy.css for tokens (--paper, --text, --font-head…).
   The page is built out of paper: sheets stay cream in both themes,
   the desk behind them follows the site theme.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&display=swap');

:root {
  --font-hand: 'Caveat', 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
  --lt-sheet:      #FBF6EC;
  --lt-sheet-2:    #F7F0E2;
  --lt-rule:       rgba(138,110,128,0.16);   /* ruled lines, mauve-ish */
  --lt-margin:     rgba(224,150,110,0.45);   /* the red margin line, in the site's peach */
  --lt-ink:        #2C2430;
  --lt-ink-soft:   #5E5660;
  --lt-tape:       rgba(224,172,104,0.42);
  --lt-warn:       #A8763E;
  --lt-danger:     #A6533E;
  --lt-line-h:     36px;   /* handwriting line spacing; the ruled lines match it */
  --lt-line-h-plain: 32px;
}
html[data-theme="dark"] {
  --lt-warn:   #E7B777;
  --lt-danger: #E39A86;
}

body.letters-page { overflow-x: hidden; }
html.letters-html { overflow-x: hidden; }

/* ---- Layout ---- */
.lt { max-width: 760px; margin: 0 auto; padding: 150px 24px 110px; position: relative; }
.lt-screen { display: none; }
.lt-screen.is-active { display: block; animation: ltIn .45s var(--ease) both; }
@keyframes ltIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* warm light wash, the same recipe as the homepage hero */
.lt-wash {
  position: absolute; left: calc(50% - 50vw); top: -160px; width: 100vw; height: 720px;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(56% 46% at 50% 10%, rgba(224,172,104,.22), transparent 70%),
    radial-gradient(46% 42% at 15% 76%, rgba(217,201,231,.34), transparent 72%),
    radial-gradient(50% 46% at 86% 70%, rgba(247,224,204,.42), transparent 72%);
}
html[data-theme="dark"] .lt-wash {
  background:
    radial-gradient(56% 46% at 50% 10%, rgba(224,172,104,.14), transparent 70%),
    radial-gradient(46% 42% at 15% 76%, rgba(178,148,166,.16), transparent 72%),
    radial-gradient(50% 46% at 86% 70%, rgba(224,150,110,.10), transparent 72%);
}

/* ---- Paper: the one material everything is made of ---- */
.lt-paper, .lt-sheet, .lt-scrap, .lt-choice, .lt-mine-item, .lt-note {
  position: relative;
  background: var(--lt-sheet);
  color: var(--lt-ink);
  border: 1px solid rgba(44,36,48,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 30px -18px rgba(60,40,70,.35), 0 2px 6px rgba(60,40,70,.06);
}
html[data-theme="dark"] .lt-paper, html[data-theme="dark"] .lt-sheet, html[data-theme="dark"] .lt-scrap,
html[data-theme="dark"] .lt-choice, html[data-theme="dark"] .lt-mine-item, html[data-theme="dark"] .lt-note {
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 24px 50px -24px rgba(0,0,0,.8), 0 2px 8px rgba(0,0,0,.35);
  border-color: rgba(0,0,0,.25);
}
/* paper grain */
.lt-sheet::after, .lt-note::after, .lt-scrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.28 0 0 0 0 0.32 0 0 0 .10 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* a strip of tape */
.lt-tape {
  position: absolute; z-index: 2; width: 92px; height: 26px; left: 50%; top: -12px;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--lt-tape);
  box-shadow: 0 1px 2px rgba(60,40,70,.12);
  backdrop-filter: blur(1px);
}
.lt-tape::before, .lt-tape::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 5px;
  background: repeating-linear-gradient(180deg, transparent 0 3px, var(--lt-sheet) 3px 5px);
  opacity: .8;
}
.lt-tape::before { left: -1px; } .lt-tape::after { right: -1px; }
.lt-tape.lt-tape-top { transform: translateX(-50%) rotate(2deg); }

/* ---- Arrive ---- */
.lt-arrive { position: relative; }
.lt-hero { position: relative; z-index: 1; text-align: center; padding-top: 24px; }
.lt-h1 {
  font-family: var(--font-head); font-weight: 600; letter-spacing: -.03em; line-height: 1.02;
  font-size: clamp(2.6rem, 7vw, 4.4rem); color: var(--text-strong); margin: 18px 0 14px;
}
.lt-tag { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text); margin: 0; }
.lt-scribble { position: relative; display: inline-block; margin: 6px auto 0; padding: 0 6px 12px; }
.lt-scribble-txt {
  font-family: var(--font-hand); font-weight: 600; font-size: clamp(2rem, 4.6vw, 2.9rem); line-height: 1.15;
  color: var(--mauve-deep); display: inline-block; transform: rotate(-1.5deg);
}
.lt-underline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 14px; }
.lt-underline path {
  fill: none; stroke: var(--gold); stroke-width: 3.2; stroke-linecap: round;
  stroke-dasharray: 420; stroke-dashoffset: 420; animation: ltDraw 1.1s var(--ease) .5s forwards;
}
@keyframes ltDraw { to { stroke-dashoffset: 0; } }
.lt-fine { text-align: center; font-size: .84rem; color: var(--text-mute); margin-top: 16px; }
.lt-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; position: relative; z-index: 1; }
.lt-actions.center { justify-content: center; }

/* the desk of scraps behind the hero */
.lt-desk { position: absolute; z-index: 0; left: calc(50% - 50vw); width: 100vw; top: -30px; height: 720px; pointer-events: none; }
.lt-scrap {
  position: absolute; width: 190px; padding: 24px 18px 30px;
  font-family: var(--font-hand); font-size: 1.32rem; line-height: 24px; color: var(--lt-ink);
  background-image: repeating-linear-gradient(180deg, transparent 0 23px, var(--lt-rule) 23px 24px);
  background-origin: content-box; background-clip: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 96% 100%, 91% 93%, 85% 100%, 78% 94%, 70% 100%, 62% 95%, 55% 100%, 47% 93%, 40% 100%, 33% 95%, 25% 100%, 17% 94%, 9% 100%, 3% 95%, 0 100%);
  animation: ltBob 9s ease-in-out infinite;
}
.lt-scrap p { margin: 0; }
.lt-scrap.s1 { left: 4%;  top: 40px;  transform: rotate(-7deg); animation-delay: -1s; }
.lt-scrap.s2 { left: 11%; top: 300px; transform: rotate(4deg);  animation-delay: -4s; width: 210px; }
.lt-scrap.s3 { right: 5%; top: 30px;  transform: rotate(6deg);  animation-delay: -2s; }
.lt-scrap.s4 { right: 13%; top: 280px; transform: rotate(-5deg); animation-delay: -6s; width: 170px; }
.lt-scrap.s5 { left: 5%;  top: 560px; transform: rotate(-3deg); animation-delay: -3s; opacity: .85; }
.lt-scrap.s6 { right: 6%; top: 580px; transform: rotate(3deg);  animation-delay: -7s; opacity: .85; }
@media (max-width: 1180px) { .lt-scrap.s5, .lt-scrap.s6 { display: none; } }
@keyframes ltBob { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@media (prefers-reduced-motion: reduce) { .lt-scrap { animation: none; } .lt-underline path { animation: none; stroke-dashoffset: 0; } }

.lt-note { margin: 84px auto 0; max-width: 600px; padding: 40px 38px 34px; border-radius: 3px; transform: rotate(-.6deg); }
.lt-note p { margin: 0 0 14px; line-height: 1.75; color: var(--lt-ink-soft); position: relative; z-index: 1; }
.lt-note p:last-child { margin-bottom: 0; }
.lt-note .lt-note-hand { font-family: var(--font-hand); font-size: 1.6rem; line-height: 1.3; color: var(--lt-ink); margin-top: 22px; }

/* ---- Questions, fields, chips ---- */
.lt-back {
  background: none; border: 0; cursor: pointer; font: inherit; font-size: .88rem; font-weight: 600;
  color: var(--text-mute); padding: 0; margin-bottom: 26px; display: inline-block;
}
.lt-back:hover { color: var(--mauve-deep); }
.lt-q {
  display: block; font-family: var(--font-head); font-weight: 600; letter-spacing: -.02em;
  font-size: 1.5rem; color: var(--text-strong); margin: 0 0 14px; line-height: 1.25;
}
.lt-q-gap { margin-top: 34px; }
.lt-q-sm { font-size: 1.1rem; }
.lt-lead { text-align: center; max-width: 560px; margin: 0 auto; font-size: 1.08rem; line-height: 1.7; color: var(--text); }
.lt-lead.left { text-align: left; margin: 0 0 6px; max-width: none; }
.lt-hint { font-size: .86rem; color: var(--text-mute); margin-top: 10px; line-height: 1.55; }
.lt-hint.lt-warn { color: var(--lt-warn); }
.lt-field { border-radius: 18px; }
.lt-field.is-bad { border-color: var(--lt-danger); box-shadow: 0 0 0 4px rgba(166,83,62,.12); }
input[type="date"].lt-field { min-height: 56px; }

.lt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.lt-chip {
  font: inherit; font-size: .92rem; font-weight: 500; cursor: pointer;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--paper-2); color: var(--text-strong); border: 1px solid var(--line);
  transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease);
}
.lt-chip:hover { border-color: var(--mauve); transform: translateY(-1px); }
.lt-chip.is-on { background: var(--mauve-soft); color: var(--mauve-deep); border-color: var(--mauve); }
html[data-theme="dark"] .lt-chip.is-on { background: rgba(178,148,166,.18); color: #d6b6ca; border-color: rgba(178,148,166,.55); }

/* type / upload switch, and the handwriting toggle */
.lt-mode { display: flex; gap: 22px; border-bottom: 1px solid var(--line); margin: 6px 0 14px; }
.lt-mode-btn {
  background: none; border: 0; cursor: pointer; font: inherit; font-size: .92rem; font-weight: 600;
  color: var(--text-mute); padding: 10px 0 12px; margin-bottom: -1px; border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.lt-mode-btn.is-on { color: var(--text-strong); border-bottom-color: var(--gold); }
.lt-fontrow { text-align: right; margin: 0 0 10px; }
.lt-fontbtn {
  background: none; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  font: inherit; font-size: .78rem; font-weight: 600; color: var(--text-mute); padding: .3rem .8rem;
}
.lt-fontbtn[aria-pressed="true"] { color: var(--mauve-deep); border-color: var(--mauve); }

/* ---- The sheet: one frame for every letter ---- */
.lt-sheet {
  border-radius: 3px;
  padding: clamp(30px, 5vw, 50px) clamp(22px, 5.5vw, 56px) clamp(30px, 5vw, 46px) clamp(46px, 8vw, 84px);
  font-family: var(--font-hand);
}
.lt-sheet::before {
  /* the margin line */
  content: ""; position: absolute; top: 0; bottom: 0; left: clamp(30px, 5.5vw, 58px); width: 1.5px;
  background: var(--lt-margin); pointer-events: none;
}
.lt-sheet > * { position: relative; z-index: 1; }
.lt-sheet-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 14px; min-height: 1.6em; }
.lt-salutation { font-family: var(--font-hand); font-size: 1.8rem; font-weight: 600; line-height: 1.2; }
.lt-date { font-family: var(--font-body); font-size: .76rem; color: var(--text-mute); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.lt-stamp {
  position: absolute; z-index: 2; top: 16px; right: 18px;
  font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--mauve-deep); border: 2px solid var(--mauve-deep); border-radius: 50%;
  padding: 14px 10px; transform: rotate(-14deg); opacity: .4; pointer-events: none;
  box-shadow: 0 0 0 3px var(--lt-sheet), 0 0 0 4px rgba(138,110,128,.35);
}

.lt-ruled {
  background-image: repeating-linear-gradient(180deg, transparent 0 calc(var(--lt-line-h) - 1px), var(--lt-rule) calc(var(--lt-line-h) - 1px) var(--lt-line-h));
  background-attachment: local;
}
.lt-textarea {
  display: block; width: 100%; min-height: calc(var(--lt-line-h) * 8); resize: none; overflow: hidden;
  border: 0; outline: 0; background-color: transparent; padding: 0;
  font-family: var(--font-hand); font-size: 1.55rem; line-height: var(--lt-line-h); color: var(--lt-ink);
}
.lt-textarea::placeholder { color: var(--text-mute); }
.lt-sign {
  display: block; width: 100%; margin-top: 14px;
  border: 0; outline: 0; background: transparent; padding: 0;
  font-family: var(--font-hand); font-size: 1.5rem; line-height: var(--lt-line-h); color: var(--lt-ink);
}
.lt-sign::placeholder { color: var(--text-mute); }

/* plain type: same sheet, the site's body face, tighter rules */
.lt-sheet.is-plain { --lt-line-h: var(--lt-line-h-plain); }
.lt-sheet.is-plain .lt-textarea, .lt-sheet.is-plain .lt-sign, .lt-sheet.is-plain .lt-body, .lt-sheet.is-plain .lt-signoff {
  font-family: var(--font-body); font-size: 1.02rem; line-height: var(--lt-line-h-plain);
}
.lt-sheet.is-plain .lt-sign, .lt-sheet.is-plain .lt-signoff { font-style: italic; }

.lt-sheet-read .lt-body { white-space: pre-wrap; font-size: 1.55rem; line-height: var(--lt-line-h); word-wrap: break-word; min-height: calc(var(--lt-line-h) * 3); }
.lt-sheet-read .lt-signoff { margin-top: 14px; font-size: 1.5rem; line-height: var(--lt-line-h); }
.lt-sheet-read .lt-caption { margin-top: 16px; font-size: 1.35rem; line-height: 1.4; color: var(--lt-ink-soft); }

/* handwritten pages */
.lt-pages { display: grid; gap: 14px; }
.lt-page { position: relative; }
.lt-page img { display: block; width: 100%; height: auto; border-radius: 2px; border: 1px solid rgba(44,36,48,.1); background: #fff; box-shadow: 0 6px 18px -10px rgba(60,40,70,.4); }
.lt-page-x {
  position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(24,19,28,.7); color: #fff; font-size: 16px; line-height: 30px;
}
.lt-upload {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  margin-top: 8px; padding: 30px 22px; border: 1.5px dashed rgba(138,110,128,.4); border-radius: 6px; cursor: pointer;
  transition: border-color .25s, background .25s;
}
.lt-upload:hover { border-color: var(--mauve-deep); background: rgba(178,148,166,.08); }
.lt-upload-ic { width: 40px; height: 40px; color: var(--mauve-deep); }
.lt-upload-ic svg { width: 100%; height: 100%; }
.lt-upload-txt { font-family: var(--font-hand); font-weight: 600; color: var(--lt-ink); font-size: 1.5rem; }
.lt-upload-sub { font-family: var(--font-body); font-size: .8rem; color: var(--text-mute); max-width: 380px; line-height: 1.5; }
.lt-upload.is-full { display: none; }

.lt-safety { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--text-mute); line-height: 1.6; }

/* ---- Choices: slips of paper ---- */
.lt-choices { display: grid; gap: 14px; margin-top: 12px; }
.lt-choice {
  text-align: left; cursor: pointer; font: inherit; border-radius: 3px;
  padding: 20px 24px 18px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.lt-choice::before { content: ""; position: absolute; top: 0; bottom: 0; left: 16px; width: 1.5px; background: var(--lt-margin); }
.lt-choice:nth-child(odd)  { transform: rotate(-.5deg); }
.lt-choice:nth-child(even) { transform: rotate(.45deg); }
.lt-choice:hover { transform: rotate(0) translateY(-3px); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 22px 40px -22px rgba(60,40,70,.45), 0 3px 8px rgba(60,40,70,.08); }
.lt-choice-t { display: block; font-family: var(--font-hand); font-weight: 600; font-size: 1.7rem; line-height: 1.15; color: var(--lt-ink); margin-bottom: 4px; }
.lt-choice-d { display: block; font-size: .94rem; color: var(--lt-ink-soft); line-height: 1.55; }

/* ---- Outcome ---- */
.lt-outcome {
  font-family: var(--font-hand); font-weight: 600; line-height: 1.15;
  font-size: clamp(2.1rem, 4.6vw, 3rem); color: var(--text-strong); text-align: center; margin: 10px 0 6px; transform: rotate(-1deg);
}
#outcomeSub { text-align: center; margin-bottom: 30px; }
.lt-sheet-read + .lt-actions { margin-top: 32px; }

/* ---- Notices ---- */
.lt-notice { margin-top: 16px; padding: 14px 18px; border-radius: 12px; background: var(--paper-3); color: var(--text-strong); font-size: .92rem; line-height: 1.55; }
.lt-notice.is-err { border-left: 3px solid var(--lt-danger); }

/* ---- Your letters: a small pile ---- */
.lt-mine { margin-top: 64px; position: relative; z-index: 1; }
.lt-mine-title { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; margin-bottom: 16px; text-align: center; }
.lt-mine-list { display: grid; gap: 12px; }
.lt-mine-item {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; align-items: center; text-align: left; cursor: pointer; font: inherit;
  border-radius: 3px; padding: 16px 20px 14px 26px;
  transition: transform .35s var(--ease);
}
.lt-mine-item::before { content: ""; position: absolute; top: 0; bottom: 0; left: 14px; width: 1.5px; background: var(--lt-margin); }
.lt-mine-item:nth-child(odd)  { transform: rotate(.5deg); }
.lt-mine-item:nth-child(even) { transform: rotate(-.6deg); }
.lt-mine-item:hover { transform: rotate(0) translateY(-2px); }
.lt-mine-item.is-due { outline: 2px solid var(--gold); outline-offset: -2px; }
.lt-mine-to { font-family: var(--font-hand); font-weight: 600; font-size: 1.5rem; line-height: 1.2; color: var(--lt-ink); }
.lt-mine-snip { grid-column: 1 / -1; font-family: var(--font-hand); font-size: 1.25rem; color: var(--lt-ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lt-mine-meta { font-size: .76rem; color: var(--text-mute); white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.lt-mine-meta .pill { font-size: .66rem; padding: .2rem .6rem; margin-left: 8px; letter-spacing: .06em; }

.lt-danger { color: var(--lt-danger) !important; }

/* ---- /letters/read: letters on a desk ---- */
.lt-read { max-width: 1040px; }
.lt-read-head { position: relative; z-index: 1; text-align: center; margin-bottom: 44px; }
.lt-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 28px 0 0; }
.lt-list { column-count: 2; column-gap: 40px; }
.lt-item { break-inside: avoid; margin: 0 0 44px; padding-top: 12px; position: relative; }
.lt-item .lt-sheet { transition: transform .4s var(--ease); }
.lt-item:nth-child(3n+1) .lt-sheet { transform: rotate(-1.1deg); }
.lt-item:nth-child(3n+2) .lt-sheet { transform: rotate(.8deg); }
.lt-item:nth-child(3n+3) .lt-sheet { transform: rotate(-.4deg); }
.lt-item:hover .lt-sheet { transform: rotate(0); }
.lt-item .lt-tape { top: 0; }
.lt-item .lt-under { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 12px; padding: 0 8px; }
.lt-felt {
  font-family: var(--font-hand); font-size: 1.25rem; font-weight: 600; cursor: pointer; line-height: 1;
  padding: .45rem 1rem .5rem; border-radius: 999px;
  background: transparent; color: var(--mauve-deep); border: 1px solid var(--line);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.lt-felt:hover { border-color: var(--mauve); transform: translateY(-1px); }
.lt-felt.is-on { background: var(--mauve-soft); border-color: var(--mauve); }
html[data-theme="dark"] .lt-felt.is-on { background: rgba(178,148,166,.18); color: #d6b6ca; }
.lt-felt-n { font-size: .8rem; color: var(--text-mute); }
.lt-remove { background: none; border: 0; cursor: pointer; font: inherit; font-size: .74rem; color: var(--text-mute); padding: 4px; }
.lt-remove:hover { color: var(--lt-danger); }
.lt-empty { text-align: center; color: var(--text-mute); padding: 40px 0; }
.lt-read-cta { text-align: center; margin-top: 56px; }
.lt-read-cta p { font-family: var(--font-hand); font-size: 1.7rem; color: var(--text-strong); margin-bottom: 16px; }
.lt-preview-note { text-align: center; font-size: .8rem; color: var(--text-mute); margin-bottom: 28px; padding: 10px 14px; border: 1px dashed var(--line); border-radius: 12px; }

/* ---- Small screens ---- */
@media (max-width: 900px) {
  .lt-list { column-count: 1; }
}
@media (max-width: 720px) {
  .lt { padding-top: 118px; }
  .lt-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .lt-sheet-head { flex-direction: column; gap: 2px; }
  .lt-mine-item { grid-template-columns: 1fr; }
  .lt-mine-meta { white-space: normal; }
  .lt-item .lt-under { flex-wrap: wrap; }
  .lt-stamp { top: 10px; right: 10px; font-size: .58rem; padding: 10px 7px; }
  /* the desk folds under the hero on a phone */
  .lt-screen.lt-arrive.is-active { display: flex; flex-direction: column; }
  .lt-hero { order: 1; }
  .lt-desk { order: 2; position: relative; left: 0; right: 0; top: 0; height: auto; margin: 40px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; padding: 0 6px; width: auto; }
  .lt-scrap { position: static; width: auto; font-size: 1.2rem; padding: 16px 14px 14px; }
  .lt-scrap.s5, .lt-scrap.s6 { display: none; }
  .lt-scrap.s1 { transform: rotate(-3deg); } .lt-scrap.s2 { transform: rotate(2deg); } .lt-scrap.s3 { transform: rotate(3deg); } .lt-scrap.s4 { transform: rotate(-2deg); }
  .lt-mine { order: 3; }
  .lt-note { order: 4; padding: 30px 22px 26px; }
}

/* ---- The readable layer under the desk (what search engines and slow readers get) ---- */
.lt-seo { max-width: 600px; margin: 80px auto 0; position: relative; z-index: 1; }
.lt-seo h2 { font-family: var(--font-head); font-weight: 600; letter-spacing: -.02em; font-size: 1.4rem; color: var(--text-strong); margin: 40px 0 12px; }
.lt-seo h2:first-child { margin-top: 0; }
.lt-seo h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--mauve-deep); margin: 22px 0 6px; }
.lt-seo p { margin: 0 0 14px; line-height: 1.75; color: var(--text); }
.lt-seo a { color: var(--mauve-deep); text-decoration: underline; text-underline-offset: 3px; }
.lt-seo .lt-seo-from { margin-top: 30px; font-size: .9rem; color: var(--text-mute); }
@media (max-width: 720px) { .lt-seo { order: 5; margin-top: 64px; } }

/* removal / collection links under an outcome */
.lt-removelink { color: var(--mauve-deep); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
