Homepage (site/index.html): integration-v14 promoted, Writings section integrated with 33 pieces clustered by type (stories/essays/miscellany), Writings welcome lightbox, content frame at 98% opacity. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
906 lines
66 KiB
HTML
906 lines
66 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Post Script — Annotated</title>
|
||
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
|
||
<style>
|
||
/* ══ RESET ══════════════════════════════════════════ */
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
||
/* ══ TOKENS ═════════════════════════════════════════ */
|
||
:root {
|
||
--parchment: #f0e2c0;
|
||
--parchment-2: #e8d6a8;
|
||
--parchment-3: #f7f0dc;
|
||
--leather: #1e1208;
|
||
--leather-mid: #3d2910;
|
||
--indy: #b87030;
|
||
--indy-light: #d4974e;
|
||
--nancy: #1a6b7a;
|
||
--nancy-light: #2a8fa0;
|
||
--ink: #1e1208;
|
||
--ink-mid: #5c3e20;
|
||
--ink-muted: #9a7850;
|
||
--stamp-red: #8c2015;
|
||
--letter-bg: #fdf7e6;
|
||
--shadow: rgba(30,18,8,0.18);
|
||
}
|
||
|
||
/* ══ BODY & PARCHMENT TEXTURE ══════════════════════ */
|
||
body {
|
||
background-color: var(--parchment);
|
||
background-image:
|
||
repeating-linear-gradient(
|
||
0deg,
|
||
transparent,
|
||
transparent 27px,
|
||
rgba(30,18,8,0.04) 27px,
|
||
rgba(30,18,8,0.04) 28px
|
||
);
|
||
color: var(--ink);
|
||
font-family: 'Libre Baskerville', serif;
|
||
font-size: 16px;
|
||
line-height: 1.8;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
/* ══ NAV — LEATHER EXPEDITION TABS ══════════════════ */
|
||
nav {
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 1000;
|
||
background: var(--leather);
|
||
display: flex;
|
||
overflow-x: auto;
|
||
scrollbar-width: none;
|
||
border-bottom: 4px solid var(--indy);
|
||
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
|
||
}
|
||
nav::-webkit-scrollbar { display: none; }
|
||
|
||
nav button {
|
||
background: none;
|
||
border: none;
|
||
border-right: 1px solid rgba(255,255,255,0.07);
|
||
color: var(--indy-light);
|
||
padding: 14px 22px;
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.82rem;
|
||
letter-spacing: 0.12em;
|
||
text-transform: uppercase;
|
||
cursor: pointer;
|
||
opacity: 0.65;
|
||
white-space: nowrap;
|
||
transition: opacity 0.2s, background 0.2s;
|
||
position: relative;
|
||
}
|
||
nav button::before {
|
||
content: '';
|
||
position: absolute;
|
||
bottom: 0; left: 0; right: 0;
|
||
height: 3px;
|
||
background: var(--indy);
|
||
transform: scaleX(0);
|
||
transition: transform 0.2s;
|
||
}
|
||
nav button:hover { opacity: 0.9; background: rgba(184,112,48,0.08); }
|
||
nav button:hover::before { transform: scaleX(1); }
|
||
nav button.active { opacity: 1; background: rgba(184,112,48,0.12); }
|
||
nav button.active::before { transform: scaleX(1); }
|
||
|
||
.nav-nancy { color: var(--nancy-light) !important; }
|
||
.nav-nancy.active::before,
|
||
.nav-nancy:hover::before { background: var(--nancy) !important; }
|
||
|
||
/* ══ TAB CONTENT ════════════════════════════════════ */
|
||
.tab { display: none; max-width: 780px; margin: 0 auto; padding: 52px 24px 100px; }
|
||
.tab.active { display: block; }
|
||
|
||
/* ══ STORY HEADER ═══════════════════════════════════ */
|
||
.story-header {
|
||
margin-bottom: 44px;
|
||
border-bottom: 2px solid var(--parchment-2);
|
||
padding-bottom: 28px;
|
||
}
|
||
.story-eyebrow {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.72rem;
|
||
letter-spacing: 0.18em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
margin-bottom: 8px;
|
||
}
|
||
.story-title {
|
||
font-family: 'Playfair Display', serif;
|
||
font-size: 2.6rem;
|
||
font-weight: 900;
|
||
line-height: 1.1;
|
||
margin-bottom: 8px;
|
||
}
|
||
.story-meta {
|
||
font-size: 0.82rem;
|
||
color: var(--ink-muted);
|
||
font-style: italic;
|
||
}
|
||
|
||
/* ══ LETTER COMPONENT ═══════════════════════════════ */
|
||
.letter-wrap {
|
||
margin: 32px 0;
|
||
position: relative;
|
||
}
|
||
.letter-label {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.68rem;
|
||
letter-spacing: 0.16em;
|
||
text-transform: uppercase;
|
||
color: var(--ink-muted);
|
||
margin-bottom: 6px;
|
||
}
|
||
.letter {
|
||
background: var(--letter-bg);
|
||
border: 1px solid var(--parchment-2);
|
||
border-radius: 2px;
|
||
padding: 30px 36px 28px;
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.97rem;
|
||
line-height: 1.9;
|
||
box-shadow: 3px 3px 14px var(--shadow), inset 0 0 60px rgba(255,240,200,0.3);
|
||
position: relative;
|
||
}
|
||
.letter::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0; left: 48px;
|
||
width: 1px; height: 100%;
|
||
background: rgba(184,112,48,0.18);
|
||
}
|
||
.letter p { margin-bottom: 1em; }
|
||
.letter-salutation { font-weight: bold; margin-bottom: 0.5em; }
|
||
.letter-close { margin-top: 1.5em; display: block; }
|
||
.letter-marcus { border-left: 3px solid var(--indy); }
|
||
.letter-muriel { border-left: 3px solid var(--nancy); }
|
||
|
||
/* ══ STAMP ══════════════════════════════════════════ */
|
||
.stamp {
|
||
position: absolute;
|
||
top: 12px; right: 16px;
|
||
width: 52px; height: 52px;
|
||
border: 2px solid var(--stamp-red);
|
||
border-radius: 2px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.48rem;
|
||
letter-spacing: 0.1em;
|
||
text-transform: uppercase;
|
||
color: var(--stamp-red);
|
||
opacity: 0.55;
|
||
transform: rotate(4deg);
|
||
line-height: 1.4;
|
||
text-align: center;
|
||
}
|
||
.stamp-inner { font-size: 0.9rem; font-family: 'Playfair Display', serif; font-style: italic; }
|
||
|
||
/* ══ DECODER ════════════════════════════════════════ */
|
||
.dc { display: inline; position: relative; }
|
||
|
||
.dc-btn {
|
||
background: none;
|
||
border: none;
|
||
border-bottom: 2px dashed var(--indy);
|
||
color: inherit;
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
font-style: inherit;
|
||
cursor: pointer;
|
||
padding: 0 2px;
|
||
display: inline;
|
||
line-height: inherit;
|
||
}
|
||
.dc-btn::after { content: ' 🔍'; font-size: 0.65em; opacity: 0.7; }
|
||
.dc-btn.open::after { content: ' ▴'; font-size: 0.75em; }
|
||
|
||
.dc-btn.nancy { border-bottom-color: var(--nancy); }
|
||
.dc-btn.twist { border-bottom-color: var(--stamp-red); font-weight: bold; }
|
||
|
||
.dc-panel {
|
||
display: none;
|
||
position: absolute;
|
||
top: calc(100% + 8px);
|
||
left: 0;
|
||
z-index: 600;
|
||
width: 300px;
|
||
background: var(--parchment-3);
|
||
border: 1px solid var(--indy);
|
||
border-top: 3px solid var(--indy);
|
||
padding: 14px 16px;
|
||
box-shadow: 4px 4px 18px var(--shadow);
|
||
font-family: 'Libre Baskerville', serif;
|
||
font-size: 0.84rem;
|
||
font-style: normal;
|
||
line-height: 1.6;
|
||
color: var(--ink);
|
||
border-radius: 0 4px 4px 4px;
|
||
}
|
||
.dc-panel.open { display: block; }
|
||
.dc-panel.flip { left: auto; right: 0; border-radius: 4px 0 4px 4px; }
|
||
.dc-panel.nancy-panel { border-color: var(--nancy); border-top-color: var(--nancy); }
|
||
.dc-panel.twist-panel { border-color: var(--stamp-red); border-top-color: var(--stamp-red); }
|
||
|
||
.d-tag {
|
||
display: block;
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.63rem;
|
||
letter-spacing: 0.14em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
margin-bottom: 3px;
|
||
}
|
||
.d-tag.nancy { color: var(--nancy); }
|
||
.d-tag.twist { color: var(--stamp-red); }
|
||
|
||
.d-head {
|
||
display: block;
|
||
font-family: 'Playfair Display', serif;
|
||
font-size: 1rem;
|
||
font-weight: 700;
|
||
margin-bottom: 8px;
|
||
line-height: 1.25;
|
||
}
|
||
.d-link {
|
||
display: block;
|
||
margin-top: 10px;
|
||
font-size: 0.78rem;
|
||
color: var(--indy);
|
||
text-decoration: none;
|
||
}
|
||
.d-link:hover { text-decoration: underline; }
|
||
.d-link.nancy { color: var(--nancy); }
|
||
|
||
/* ══ LIGHTBOX TRIGGER ═══════════════════════════════ */
|
||
.lb-t {
|
||
background: none;
|
||
border: none;
|
||
border-bottom: 2px solid var(--indy);
|
||
color: var(--indy);
|
||
font-family: inherit; font-size: inherit; font-style: inherit;
|
||
font-weight: 700;
|
||
cursor: pointer; padding: 0;
|
||
}
|
||
.lb-t:hover { color: var(--leather-mid); border-bottom-color: var(--leather-mid); }
|
||
|
||
/* ══ LIGHTBOX ═══════════════════════════════════════ */
|
||
.lb-overlay {
|
||
display: none;
|
||
position: fixed; inset: 0;
|
||
background: rgba(30,18,8,0.78);
|
||
z-index: 2000;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 20px;
|
||
}
|
||
.lb-overlay.open { display: flex; }
|
||
.lb-box {
|
||
background: var(--parchment);
|
||
background-image: repeating-linear-gradient(0deg,transparent,transparent 27px,rgba(30,18,8,0.04) 27px,rgba(30,18,8,0.04) 28px);
|
||
border-top: 5px solid var(--indy);
|
||
border-radius: 2px;
|
||
max-width: 640px; width: 100%;
|
||
max-height: 88vh;
|
||
overflow-y: auto;
|
||
box-shadow: 0 20px 60px rgba(0,0,0,0.5);
|
||
}
|
||
.lb-head {
|
||
display: flex; align-items: center; justify-content: space-between;
|
||
padding: 16px 22px;
|
||
border-bottom: 1px solid var(--parchment-2);
|
||
background: var(--parchment-2);
|
||
position: sticky; top: 0;
|
||
}
|
||
.lb-eyebrow {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.65rem;
|
||
letter-spacing: 0.16em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
display: block;
|
||
margin-bottom: 2px;
|
||
}
|
||
.lb-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
|
||
.lb-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink-muted); }
|
||
.lb-body { padding: 22px 26px 30px; font-size: 0.9rem; line-height: 1.7; }
|
||
.lb-body h3 {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.72rem;
|
||
letter-spacing: 0.14em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
margin: 20px 0 8px;
|
||
}
|
||
.lb-body p { margin-bottom: 0.9em; }
|
||
.lb-src { display: inline-block; margin-top: 12px; font-size: 0.79rem; color: var(--indy); text-decoration: none; }
|
||
.lb-src:hover { text-decoration: underline; }
|
||
|
||
/* ══ ACCORDION ══════════════════════════════════════ */
|
||
.acc { border-bottom: 1px solid var(--parchment-2); }
|
||
.acc-btn {
|
||
display: flex; justify-content: space-between; align-items: center;
|
||
width: 100%; background: none; border: none;
|
||
padding: 18px 2px;
|
||
cursor: pointer; text-align: left;
|
||
font-family: 'Playfair Display', serif;
|
||
font-size: 1.02rem; font-weight: 700;
|
||
color: var(--ink);
|
||
}
|
||
.acc-arrow { color: var(--indy); transition: transform 0.2s; margin-left: 14px; flex-shrink: 0; font-size: 0.85em; }
|
||
.acc-btn.open .acc-arrow { transform: rotate(180deg); }
|
||
.acc-panel { display: none; padding: 0 4px 22px; font-size: 0.9rem; line-height: 1.75; }
|
||
.acc-panel.open { display: block; }
|
||
.acc-panel p { margin-bottom: 0.9em; }
|
||
.acc-panel strong { color: var(--leather-mid); }
|
||
|
||
/* ══ EDU SECTION HEADERS ════════════════════════════ */
|
||
.edu-eyebrow {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.7rem;
|
||
letter-spacing: 0.18em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
margin-bottom: 6px;
|
||
}
|
||
.edu-eyebrow.nancy { color: var(--nancy); }
|
||
.edu-h {
|
||
font-family: 'Playfair Display', serif;
|
||
font-size: 1.8rem;
|
||
font-weight: 900;
|
||
margin-bottom: 12px;
|
||
}
|
||
.edu-intro {
|
||
font-size: 0.9rem;
|
||
color: var(--ink-mid);
|
||
margin-bottom: 32px;
|
||
line-height: 1.7;
|
||
}
|
||
|
||
/* ══ BIAS NOTE ══════════════════════════════════════ */
|
||
.bias {
|
||
background: var(--parchment-2);
|
||
border-left: 4px solid var(--nancy);
|
||
padding: 15px 18px;
|
||
font-size: 0.85rem;
|
||
line-height: 1.65;
|
||
margin-bottom: 32px;
|
||
border-radius: 0 4px 4px 0;
|
||
}
|
||
.bias strong { color: var(--nancy); }
|
||
|
||
/* ══ CALLOUT BOX ═════════════════════════════════════ */
|
||
.callout {
|
||
background: var(--parchment-2);
|
||
border: 1px solid var(--parchment-2);
|
||
border-left: 4px solid var(--indy);
|
||
padding: 16px 20px;
|
||
margin: 24px 0;
|
||
font-size: 0.88rem;
|
||
line-height: 1.65;
|
||
border-radius: 0 4px 4px 0;
|
||
}
|
||
.callout-head {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.68rem;
|
||
letter-spacing: 0.14em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
margin-bottom: 6px;
|
||
}
|
||
|
||
/* ══ FURTHER READING ════════════════════════════════ */
|
||
.fr-group {
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.68rem;
|
||
letter-spacing: 0.16em;
|
||
text-transform: uppercase;
|
||
color: var(--indy);
|
||
margin: 32px 0 12px;
|
||
}
|
||
.fr-group.nancy { color: var(--nancy); }
|
||
.fr-card {
|
||
display: block;
|
||
border: 1px solid var(--parchment-2);
|
||
background: var(--letter-bg);
|
||
padding: 12px 16px;
|
||
margin-bottom: 9px;
|
||
text-decoration: none;
|
||
color: var(--ink);
|
||
border-radius: 2px;
|
||
border-left: 3px solid var(--indy);
|
||
transition: border-color 0.15s, box-shadow 0.15s;
|
||
box-shadow: 2px 2px 6px rgba(0,0,0,0.06);
|
||
}
|
||
.fr-card.nancy { border-left-color: var(--nancy); }
|
||
.fr-card:hover { box-shadow: 3px 3px 12px var(--shadow); }
|
||
.fr-title { font-weight: 700; font-size: 0.93rem; margin-bottom: 2px; }
|
||
.fr-desc { font-size: 0.81rem; color: var(--ink-muted); }
|
||
|
||
/* ══ CHALLENGE NOTE ══════════════════════════════════ */
|
||
.challenge-note {
|
||
margin-top: 44px;
|
||
padding-top: 18px;
|
||
border-top: 2px dashed var(--parchment-2);
|
||
font-family: 'Special Elite', cursive;
|
||
font-size: 0.8rem;
|
||
color: var(--ink-muted);
|
||
line-height: 1.7;
|
||
}
|
||
.challenge-tag {
|
||
display: inline-block;
|
||
background: var(--indy);
|
||
color: var(--parchment);
|
||
font-size: 0.65rem;
|
||
letter-spacing: 0.1em;
|
||
text-transform: uppercase;
|
||
padding: 2px 8px;
|
||
border-radius: 2px;
|
||
margin-right: 4px;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
/* ══ DIVIDER ════════════════════════════════════════ */
|
||
.div { border: none; border-top: 1px dashed var(--parchment-2); margin: 40px 0; opacity: 0.7; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<nav>
|
||
<button class="active" onclick="go('story',this)">◈ The Correspondence</button>
|
||
<button onclick="go('dig',this)">⛏ Field Notes</button>
|
||
<button class="nav-nancy" onclick="go('fem',this)">◎ Reading Between the Lines</button>
|
||
<button onclick="go('further',this)">📜 Further Reading</button>
|
||
</nav>
|
||
|
||
<!-- ════════════════ TAB 1: THE CORRESPONDENCE ════════════════ -->
|
||
<div class="tab active" id="tab-story">
|
||
|
||
<div class="story-header">
|
||
<div class="story-eyebrow">Challenge Story · Renegade Storyteller</div>
|
||
<h1 class="story-title">Post Script</h1>
|
||
<p class="story-meta">A story told entirely in letters — and in what the letters don't say.</p>
|
||
</div>
|
||
|
||
<!-- LETTER 1 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus</div>
|
||
<div class="letter letter-muriel">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Muriel<br>to<br>Marcus</div>
|
||
<p class="letter-salutation">Dearest Marcus</p>
|
||
<p>I haven't had a letter in nearly three months! While I'm sure it's because you're a busy being a busybody (hehe), I'll have you know that it's very tiresome having only your Uncle Bernard to speak to. Your letters are always a wonderful break from the humdrum of everyday life here (which is, in a word, boring) and so it's very disconcerting to go for so long without so much as a peep. But I'll scold you no longer.</p>
|
||
<p>Things here are very much the same. The most exciting thing that's happened in the last three months must be <span class="dc" id="dc-joanna"><button class="dc-btn nancy" onclick="tog('dc-joanna',this)">Joanna Sanders' daughter getting pregnant</button><span class="dc-panel nancy-panel"><span class="d-tag nancy">◎ Who She Is</span><span class="d-head">The Unnamed Woman</span>Notice she is not named here — only identified through her mother. Muriel refers to her as "Joanna Sanders' daughter," "the Sanders girl," "Charlotte" (once, briefly), and "what's-her-name." She will not receive her full name until the final letter. This is not an accident of writing — it is how the village sees her: as a relative, a problem, a scandal. Not as a person. Watch how this changes.</span></span>. Completely up the spout! And to think that you and her used to play out in the woods as children. Not you and Joanna, I mean you and her daughter (I forget her name). Anyway, the whole village is talking about it because the little **** can't even say who the father is. Can you imagine. There are hardly any boys her age in the village as it is. Uncle Bernard and Howard from across the way have a bet going on who the father is. Bernie is saying it must be young Jack Blythe, while Howard insists that it has to be Reverend Milton's son, Elton. Funny name eh, Elton Milton. Personally, I think it's neither of them. I wouldn't be surprised if it turned out that the father was one of the older gentlemen who haunt that God-awful pub. What's-her-name worked there as a barmaid for ages.</p>
|
||
<p>Oh, I almost forgot to tell you, Uncle Bernard has decided that to start rearing ponies. Isn't that lovely? We've ordered three breeding pairs of Shetlands from old Rupert Behringer's brother up north. Bernie says it's a good business decision, because every little girl wants a pony, and so we can sell the foals when they're good and ready and make us a tidy little nest egg. What do you think?</p>
|
||
<p>Anyway, how are you? Have you made any significant discoveries wherever you are? You haven't been cursed by some <span class="dc" id="dc-mummy"><button class="dc-btn" onclick="tog('dc-mummy',this)">mummy's tomb</button><span class="dc-panel"><span class="d-tag">Field Note</span><span class="d-head">The Egypt Assumption</span>Muriel assumes Marcus is in Egypt — the most culturally visible site of archaeological adventure, largely thanks to Howard Carter's 1922 discovery of Tutankhamun's tomb. Marcus's dry correction ("I have never been to Egypt") establishes him immediately as someone whose work doesn't match the romantic image. His actual location is never given. The find turns out to be from their own English village garden.<a class="d-link" href="https://en.wikipedia.org/wiki/KV62" target="_blank">→ Wikipedia: Tomb of Tutankhamun</a></span></span> have you?</p>
|
||
<span class="letter-close">Lots of love and hugs and kisses<br>Auntie Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. I've sent this letter with a parcel. It contains an interesting little doohicky that Uncle Bernard found on his morning walk yesterday. I thought you might find it interesting.</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 2 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Marcus → Muriel</div>
|
||
<div class="letter letter-marcus">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Marcus<br>to<br>Muriel</div>
|
||
<p class="letter-salutation">Dear Aunt Muriel</p>
|
||
<p>I think the market for ponies is a lot smaller you think. Little girls may want them, but very few parents feed those particular desires. Remember when I demanded a suit of <span class="dc" id="dc-samurai"><button class="dc-btn" onclick="tog('dc-samurai',this)">nineteenth century samurai armour</button><span class="dc-panel"><span class="d-tag">Character Note</span><span class="d-head">Who Is Marcus?</span>This is our first real glimpse of Marcus's character. He once wanted nineteenth-century Japanese warrior armour — an unusual, specific, historically-minded request from a child. He became an archaeologist. He corrects Muriel's Egypt assumption with dry precision. He is also, we will eventually learn, the one person in the story who chose to see Charlotte Sanders as a person rather than a scandal.</span></span> for my birthday?</p>
|
||
<p>Also, since I have never been to Egypt, I am fairly sure that my spirit remains curse free.</p>
|
||
<p>The object you sent appears to be some sort of <span class="dc" id="dc-bullet"><button class="dc-btn" onclick="tog('dc-bullet',this)">bullet casing</button><span class="dc-panel"><span class="d-tag">The MacGuffin</span><span class="d-head">Uncle Bernard's Find</span>This "interesting little doohicky" drives the archaeological plot. Marcus initially identifies it as a bullet casing — then announces it predates the Bronze Age by two thousand years — then retracts the whole thing as a "curiously formed rock" after marrying Charlotte. Whether it was ever a real find, or whether Marcus buried the excavation to protect Charlotte's family from a descending team of academics, is the story's unresolved question.</span></span>, although it is unlike anything I have seen before. It's most likely to be a remnant of some recent war or other, but I shall look into it. Tell Uncle Bernard to keep his eyes peeled, and to send me anything else he might stumble upon.</p>
|
||
<span class="letter-close">Regards<br>Marcus</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. How far along is Charlotte (i.e. Joanna Sanders' daughter)?</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 3 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus</div>
|
||
<div class="letter letter-muriel">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Muriel<br>to<br>Marcus</div>
|
||
<p class="letter-salutation">Dearest Marcus</p>
|
||
<p>I'm so surprised that you responded so quickly I won't even tell you off for sending such a pitifully short letter.</p>
|
||
<p>I do remember the time when you asked for a suit of armour for your birthday, and if you will remember, your Uncle Bernard spent weeks carving you a toy sword to console you. I would think that it has quite a bit of value nowadays. Nevertheless, the Shetlands arrive next week, and your Uncle is determined to make a success of this little venture. <span class="dc" id="dc-onwards"><button class="dc-btn" onclick="tog('dc-onwards',this)">"Onwards and alongwards"</button><span class="dc-panel"><span class="d-tag">Challenge Phrase</span><span class="d-head">Required Dialogue</span>The story challenge required someone to say this phrase. The writer gave it to Uncle Bernard — appropriately, since Bernard is the story's most cheerfully oblivious character. He finds the archaeological object, wagers on everything, names his ponies after hobbits, and never once appears to notice the drama unfolding around him. The phrase suits him perfectly.</span></span> were his exact words.</p>
|
||
<p>As for the Sanders girl, she's already showing, so people are saying it must have happened around Christmas last year. Naturally, that means absolutely any Tom, Dick or Harry could have done the deed, so to speak. The village is always chock-full of holidaymakers over Christmas – I mean it's the only time we ever see you anymore. Not that it matters really, Gladys from church says that Joanna told her the girl is considering giving the child up for adoption.</p>
|
||
<p>You won't believe what happened! The other day, Uncle Bernard was out for his morning walk when he came across a lost little kid, just bleating away. So, being your Uncle, he brings the poor thing home with him and we spent all night nursing it back to health and it went to sleep happy and well fed. I was about to name it Billy (the Kid – hehe) but Bernard said that was no name for a girl. Anyway, the next morning Howard comes storming up to the house and starts shouting at Bernard and saying he stole his goat! The gall of that man. I tell you, he and Bernard almost came to blows, because neither would budge. Howard wouldn't let Bernie explain, and Bernie wouldn't let Howard keep shouting. Eventually though, they ended up making a wager as to who it was that stole the goat. I think it was that Jamie boy from down by the river, but I didn't say anything.</p>
|
||
<span class="letter-close">Lots of love<br>Auntie Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. A bullet casing! How exciting!</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 4 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Marcus → Muriel</div>
|
||
<div class="letter letter-marcus">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Marcus<br>to<br>Muriel</div>
|
||
<p class="letter-salutation">Dear Aunt Muriel</p>
|
||
<p>Unfortunately, I do not have time to spend on long letters these days, and I fear that my life here at the university is not nearly as eventful as yours.</p>
|
||
<p>You will be happy to know that Uncle Bernard's toy sword still decorates the bottom of my cupboard, and shall do so for much of the foreseeable future; such is its sentimental value.</p>
|
||
<p>Congratulations are in order. It seems that the object you sent me <span class="dc" id="dc-bronze"><button class="dc-btn" onclick="tog('dc-bronze',this)">predates the accepted beginning of the Bronze Age by about two thousand years</button><span class="dc-panel"><span class="d-tag">⛏ The Claim</span><span class="d-head">An Extraordinary Discovery</span>The <button class="lb-t" onclick="lb('lb-bronze')">Bronze Age in Britain</button> began around 2500 BCE. "Two thousand years before" would place this object at roughly 4500 BCE — deep in the Neolithic period. If a metal casing were found from that era, it would fundamentally rewrite the timeline of human metalworking. No wonder "an entire team of experts" was called in. No wonder it caused a scandal. And no wonder the eventual retraction — "a curiously formed rock" — raised no protest. The academic world moved on.<a class="d-link" href="https://en.wikipedia.org/wiki/British_Bronze_Age" target="_blank">→ Wikipedia: British Bronze Age</a></span></span>, which makes it a significant, albeit mystifying discovery. An entire team of experts has been called in to examine it, and there is talk of a possible excavation in the near future. Should the find prove substantial, Uncle Bernard will find his name in the history books.</p>
|
||
<span class="letter-close">Regards<br>Marcus</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. What did you eventually name the goat?</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 5 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus</div>
|
||
<div class="letter letter-muriel">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Muriel<br>to<br>Marcus</div>
|
||
<p class="letter-salutation">Dearest Marcus</p>
|
||
<p>The post service must be on strike or something because your last letter took almost a month to arrive. I was getting worried actually.</p>
|
||
<p>Your Uncle and I are now proud owners of six beautiful ponies. Their names are: Frodo, Samwise, Gandalf, Arwen, Galadriel and Bella. I got to name Bella because the <span class="dc" id="dc-lotr"><button class="dc-btn" onclick="tog('dc-lotr',this)">Lord of the Rings has hardly any women</button><span class="dc-panel"><span class="d-tag">Aside</span><span class="d-head">An Accidental Point</span>Muriel is absolutely right, and she says it without any apparent awareness of what she's observing. Tolkien's Middle-earth features a very small number of female characters for the scale of the world. Muriel's solution — "I got to name Bella" — is cheerfully pragmatic rather than analytical. The irony is that she is applying a feminist instinct (claiming naming rights for the sole female pony) while simultaneously participating in the shaming of Charlotte Sanders three paragraphs away.<a class="d-link" href="https://en.wikipedia.org/wiki/Women_in_Tolkien%27s_works" target="_blank">→ Wikipedia: Women in Tolkien's works</a></span></span>. I almost thought you were right, and that we were doomed to failure because when we got them, Bella had the most awful case of fleas, which she then managed to give to all of the others. It took Uncle Bernard a full week to sort that mess out. But now they are all healthy and happy, and by this time next year, I expect we will hear the pitter-patter of many new hooves! Yet again, Uncle Bernard and Howard have made wagers on which will pair with which.</p>
|
||
<p>As for the goat, we named her Susan. As it turns out, she was so happy here with me and your Uncle Bernard that Howard sold her to us for a bargain. She can now be found playing with the ponies, or sunning herself on your great-grandfather's chair. She is very cute.</p>
|
||
<p>I must admit that the thought of Uncle Bernard (or even myself) in the annals of history is tremendously exciting! I just hope that the archaeologists don't dig up my rhododendrons in search of more trinkets. Will you be on the team when they come?</p>
|
||
<span class="letter-close">Lots of love and hugs and kisses<br>Auntie Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. Gladys swears she saw you in the village the other day. I told her she's going senile. You wouldn't come into the village and not call on your dear Auntie and Uncle.</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 6 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Marcus → Muriel</div>
|
||
<div class="letter letter-marcus">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Marcus<br>to<br>Muriel</div>
|
||
<p class="letter-salutation">Dear Aunt Muriel</p>
|
||
<p><span class="dc" id="dc-village"><button class="dc-btn twist" onclick="tog('dc-village',this)">I was in the village on some urgent business, but I did not have time to call.</button><span class="dc-panel twist-panel"><span class="d-tag twist">🔍 Read This Carefully</span><span class="d-head">He Was Visiting Charlotte</span>Marcus was in the village. He didn't visit Muriel and Bernard. Gladys — who Muriel dismissed as "going senile" — was right. The "urgent business" is Charlotte Sanders. Muriel spent letters describing her as a scandal, unnamed and shamed. Marcus has been maintaining contact with her throughout the entire correspondence. He later married her. He was there.</span></span></p>
|
||
<p>Uncle Bernard's find has created quite the scandal among the scholars at the university. Many are saying that it is evidence of a highly advanced form of primitive projectile weaponry, which suggests an entirely undiscovered civilisation, while others are insisting that it is evidence of an <span class="dc" id="dc-contra"><button class="dc-btn" onclick="tog('dc-contra',this)">ancient form of contraception</button><span class="dc-panel"><span class="d-tag">⛏ Field Note</span><span class="d-head">A Real Area of Study</span>The "contraception" theory is played for comedy, but this is a genuine and serious field of archaeological inquiry. Archaeologists and historians have traced evidence of contraceptive and reproductive knowledge across ancient cultures — herbal preparations, barrier devices, pessaries. This knowledge was predominantly held and transmitted by women, and has often been dismissed or overlooked in the historical record. The fact that the scholars' debate is framed as absurd here is itself worth examining.<a class="d-link" href="https://en.wikipedia.org/wiki/History_of_birth_control" target="_blank">→ Wikipedia: History of Birth Control</a></span></span>. I have decided to remain undecided on the matter, until further evidence presents itself.</p>
|
||
<p>Should an excavation be commissioned, there will be a considerable amount of paperwork involved before anyone touches your rhododendrons, so they are safe for now. I will not be on the team, as I'm sure that by that time, my duties will lie elsewhere.</p>
|
||
<span class="letter-close">Regards<br>Marcus.</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. Has Joanna Sanders spoken to you at all?</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 7 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus</div>
|
||
<div class="letter letter-muriel">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Muriel<br>to<br>Marcus</div>
|
||
<p class="letter-salutation">Dearest Marcus</p>
|
||
<p>My, my, that was a snappy reply! But still too short! And although I understand that you have business to attend to, surely a cup of tea does not take a whole day, especially when five minutes would do your Auntie Muriel a world of good.</p>
|
||
<p>It saddens me that you won't be here when all the scholars come a-digging (hehe), but I'm sure you'll find time for a visit any way.</p>
|
||
<p>Since your reply came so quickly, I have little to tell you. The ponies are happy, Uncle Bernard and Howard have yet to make another wager and I'm sure Susan will end up quite fat if she doesn't start to watch what she eats.</p>
|
||
<span class="letter-close">Hugs and kisses and loves<br>Auntie Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. <span class="dc" id="dc-miscarriage"><button class="dc-btn nancy" onclick="tog('dc-miscarriage',this)">Joanna Sanders hasn't spoken to me. Although, Gladys did tell me that her daughter had a miscarriage and is so distraught that she won't come out of the house. I don't see why it's such a fuss, it's not like she wanted the child anyway.</button><span class="dc-panel nancy-panel"><span class="d-tag nancy">◎ A Sentence Worth Stopping At</span><span class="d-head">"I don't see why it's such a fuss"</span>This is one of the most quietly devastating lines in the story. Muriel does not say it cruelly — she says it the way people say things they genuinely believe. She has spent letters calling Charlotte a "****," speculating about who the father is, and now she cannot understand why Charlotte — who lost a pregnancy she may have had complicated feelings about — is "so distraught." The logic that "she didn't want it anyway" is used to dismiss grief that Muriel cannot be bothered to imagine. Charlotte still won't come out of the house. Marcus asked about her mother in his last postscript.</span></span></em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 8 — short -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus (six months later)</div>
|
||
<div class="letter letter-muriel">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Muriel<br>to<br>Marcus</div>
|
||
<p class="letter-salutation">Dearest Marcus</p>
|
||
<p>Six months and not a word! I'm beginning to think you've forgotten about me.</p>
|
||
<p>I have lots and lots to tell you, but I'll wait for when you get here for Christmas.</p>
|
||
<span class="letter-close">Lots of love<br>Auntie Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. <span class="dc" id="dc-goodriddance"><button class="dc-btn nancy" onclick="tog('dc-goodriddance',this)">The Sanders' left the village months ago. In the middle of the night! Good riddance.</button><span class="dc-panel nancy-panel"><span class="d-tag nancy">◎ The Village's Verdict</span><span class="d-head">Driven Out in the Night</span>"In the middle of the night" is not an incidental detail — it means the Sanders family left covertly, without goodbyes, likely to escape exactly the gossip, the censure, and the social pressure that Muriel's letters have documented. Muriel's response: "Good riddance." Charlotte, unnamed, grieving, shamed, is gone. And Muriel is relieved. This is what the village's kindness looked like from the inside.</span></span></em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 9 -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus</div>
|
||
<div class="letter letter-muriel">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Muriel<br>to<br>Marcus</div>
|
||
<p class="letter-salutation">Dear Marcus</p>
|
||
<p>You missed Christmas and New Year's. Why? Are you even still alive? I'm worried sick.</p>
|
||
<p>Please write soon.</p>
|
||
<span class="letter-close">Auntie Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. Everyone is well otherwise.</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 10 — brief -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Muriel → Marcus</div>
|
||
<div class="letter letter-muriel">
|
||
<p class="letter-salutation">Marcus</p>
|
||
<p>Gladys tells me that you are married now. She must be mad, because you wouldn't have a wedding without inviting Uncle Bernard and me.</p>
|
||
<span class="letter-close">Aunt Muriel</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. Susan ended up giving birth to a new kid. God only knows how. We called it Billy.</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LETTER 11 — THE FINAL LETTER -->
|
||
<div class="letter-wrap">
|
||
<div class="letter-label">Marcus → Muriel · The Final Letter</div>
|
||
<div class="letter letter-marcus">
|
||
<div class="stamp"><div class="stamp-inner">✉</div>Final<br>Letter</div>
|
||
<p class="letter-salutation">Dear Aunt Muriel</p>
|
||
<p><span class="dc" id="dc-twist"><button class="dc-btn twist" onclick="tog('dc-twist',this)">Charlotte and I were married last year, about five months after my last letter.</button><span class="dc-panel twist-panel"><span class="d-tag twist">🔍 The Reveal</span><span class="d-head">Charlotte Sanders</span>Charlotte. Joanna Sanders' daughter. "What's-her-name." "The little ****." The girl the village gossiped about for the entirety of this correspondence — unnamed until this moment — is now Marcus's wife. She was named in one postscript, early on ("How far along is Charlotte?"), a question Muriel didn't appear to find significant. Marcus knew her name all along. He was visiting her on his "urgent business." He withdrew the archaeological find — which would have brought a team of scholars to dig up the village — after marrying her. The story was about her the whole time.</span></span> We are well, and Charlotte is pregnant once again, due in the summer. Since you expressed such distaste for her, I felt it imprudent to extend you an invitation due to your habit of making your worst thoughts known to the entire world.</p>
|
||
<p>I regret to inform you that <span class="dc" id="dc-rock"><button class="dc-btn" onclick="tog('dc-rock',this)">the object you sent me two years ago has turned out to be nothing more than a curiously formed rock, warranting no further study.</button><span class="dc-panel"><span class="d-tag">The Retraction</span><span class="d-head">A Rock. Or a Choice.</span>Marcus — who called in an entire team of experts, who described it as predating the Bronze Age by two millennia, who caused "quite the scandal among the scholars" — now says it was just a rock. This letter is written after he married Charlotte, the woman whose family was driven from the village in the night. A real excavation would have brought academics to the village, possibly including people who knew the family, possibly complicating everything. A rock is so much more convenient. The story never confirms either reading. That's the point.</span></span></p>
|
||
<p>Send Uncle Bernard and Susan my regards.</p>
|
||
<span class="letter-close">Marcus</span>
|
||
<p style="margin-top:1em; border-top: 1px solid rgba(30,18,8,0.1); padding-top:0.8em;"><em>P.S. Don't expect me to write again.</em></p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="challenge-note">
|
||
<span class="challenge-tag">Challenge</span> Challenger: Alice Mullen · Requirements: An archaeological discovery that incites scandal | Genre: Any | Style: Correspondence | It Must Have: 1) A flea-infested pony 2) A stolen goat 3) A wayward archaeologist | Someone must say: "Onwards and alongwards!"
|
||
<br><br><em>Author's note: I used this as an exercise in writing a story while not writing it. Also, knocking someone up could classify you as wayward, yes? JL</em>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<!-- ════════════════ TAB 2: FIELD NOTES (ARCHAEOLOGY) ════════════════ -->
|
||
<div class="tab" id="tab-dig">
|
||
|
||
<div class="edu-eyebrow">⛏ Field Notes</div>
|
||
<h2 class="edu-h">The Archaeology Behind the Story</h2>
|
||
<p class="edu-intro">The archaeological plot in Post Script is the story's engine — but it's also a gentle satire of the academic world. Here's what real archaeology looks like, what Bernard's find would have meant if genuine, and why the field's history matters beyond this story.</p>
|
||
|
||
<div class="bias">
|
||
<strong>Claude's note:</strong> My knowledge of archaeology skews heavily toward European and particularly British prehistory, and toward academic traditions that have historically centred Western frameworks. Indigenous archaeologies — which often have radically different relationships to the past, to land, and to what "discovery" even means — are less represented in the sources I was trained on. I try to flag where my framing reflects those limits.
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>The Bronze Age — what it is, and what Bernard's find would have meant</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>The Bronze Age refers to the period in which human cultures developed the technology to smelt and use bronze — an alloy of copper and tin — for tools, weapons, and ornaments. In Britain, the Bronze Age began around <strong>2500 BCE</strong> and lasted until roughly 800 BCE, when iron-working began to take over.</p>
|
||
<p>Marcus claims the object predates the Bronze Age "by about two thousand years." That would place it at approximately <strong>4500 BCE</strong> — deep in the British Neolithic period, when people were farming, building monuments like the early stages of Stonehenge, and had no metal technology whatsoever.</p>
|
||
<p>A metal object from 4500 BCE found in an English village garden would be one of the most significant archaeological discoveries in human history. It would suggest that metalworking existed at least two millennia before the accepted record — overturning a foundational timeline of human development. Marcus is not exaggerating when he says it's "significant, albeit mystifying." The academic scandal makes complete sense.</p>
|
||
<p>Which is also why the retraction — "nothing more than a curiously formed rock" — is so striking. That kind of finding does not get quietly shelved.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>How real archaeological discovery actually works</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>Real archaeological discovery rarely looks like the Indiana Jones model — a lone adventurer unearthing treasure from a booby-trapped tomb. In practice, it is a methodical, bureaucratic, and collaborative process.</p>
|
||
<p><strong>Chance finds</strong> like Bernard's do happen. Members of the public, farmers, and walkers regularly discover artefacts. In England and Wales, the <strong>Portable Antiquities Scheme</strong> records over 1.5 million finds made by the public. Finders are legally required in some circumstances to report finds — particularly under the Treasure Act 1996, which applies to objects over 300 years old made of precious metal.</p>
|
||
<p><strong>Verification</strong> involves sending the object to specialists for dating (radiocarbon, thermoluminescence, or metallurgical analysis), identification, and contextual assessment. This is what Marcus is doing when he calls in "an entire team of experts."</p>
|
||
<p><strong>Excavation</strong>, when commissioned, requires planning permissions, environmental assessments, and coordination with landowners. Marcus's reassurance that Muriel's rhododendrons are safe "for now" is accurate — there is indeed considerable paperwork before a spade goes into the ground.</p>
|
||
<p><strong>Publication</strong> in peer-reviewed journals is what converts a find into established knowledge. A retraction — quietly communicated by letter, with no publication — would leave the scholarly community in limbo. In the real world, Marcus's retraction would itself warrant investigation.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>Women in archaeology — a history of erasure and emergence</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>Archaeology has historically been a male-dominated field, with women's contributions systematically overlooked, attributed to male colleagues, or simply barred by institutional policy. Some key figures who pushed against this:</p>
|
||
<p><strong>Dorothy Garrod</strong> (1892–1968) was the first woman to hold a professorial chair at either Oxford or Cambridge — she became Disney Professor of Archaeology at Cambridge in 1939. Her excavations at the Mount Carmel caves in what is now Israel revolutionised the understanding of Neanderthal and early modern human co-existence.</p>
|
||
<p><strong>Kathleen Kenyon</strong> (1906–1978) excavated Jericho and Jerusalem and fundamentally reshaped the archaeology of the ancient Near East. Her stratigraphic methods became standard practice. She is not a household name in the way Howard Carter is.</p>
|
||
<p><strong>Mary Leakey</strong> (1913–1996) made some of the most important palaeontological discoveries of the twentieth century, including the Laetoli footprints — evidence of bipedal hominids from 3.6 million years ago. Her husband Louis Leakey received considerably more public credit.</p>
|
||
<p>Feminist archaeology as a formal academic discipline emerged in the <strong>1980s and 1990s</strong>, questioning how assumptions about gender roles in the present are projected backwards onto the past — particularly in interpretations of prehistoric societies.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>The "ancient contraception" theory — why it's not just a joke</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>When Marcus mentions that some scholars think the object is "an ancient form of contraception," it is played for comic effect — and it works. But the subject itself is a legitimate and serious area of historical and archaeological inquiry.</p>
|
||
<p>Humans have practiced contraception and reproductive management for as long as records exist. Ancient Egyptian papyri describe pessaries made of crocodile dung, honey, and natron. Greek physicians including Soranus documented contraceptive methods in the 2nd century CE. Medieval European herbals contain extensive sections on plants used to prevent pregnancy.</p>
|
||
<p>This knowledge was predominantly held, transmitted, and practiced by women — midwives, herbalists, healers. It was often not written down, and when it was, it was frequently dismissed or suppressed as dangerous knowledge. Much of it has been lost precisely because it was women's knowledge, and women's knowledge was not systematically preserved.</p>
|
||
<p>The irony in the story is that the "contraception" interpretation is treated as the absurd one — the punchline — while the "ancient projectile weaponry" interpretation (weapons, objects of male violence) is treated as the serious archaeological finding. This mirrors a real pattern in how archaeological objects are interpreted.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>Was the retraction a cover-up? Reading Marcus as the "wayward archaeologist"</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>The story challenge asked for "a wayward archaeologist." The author's note asks, with a wink: "knocking someone up could classify you as wayward, yes?" — implying Marcus is the wayward one, not just for his career but for his romantic history.</p>
|
||
<p>If we take this reading seriously, the story's archaeological plot and its romantic plot collapse into each other. Marcus knew Charlotte. He was visiting her while telling Muriel he had "urgent business." He withdrew a potentially career-defining discovery immediately after marrying the woman whose family had been driven from the village in shame.</p>
|
||
<p>One reading: the object was always a rock, the experts were wrong, and Marcus simply reported their correction. This is the most innocent reading.</p>
|
||
<p>Another reading: the find was real, the excavation would have descended on the village, Charlotte's family would have been brought back into a spotlight she was trying to escape, and Marcus made a professional sacrifice to protect her. His closing line — "Don't expect me to write again" — suggests someone who has decided where his loyalties lie, and they are not with his aunt.</p>
|
||
<p>The story never resolves this. It was written as "an exercise in writing a story while not writing it." The gaps are the point.</p>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<!-- ════════════════ TAB 3: READING BETWEEN THE LINES ════════════════ -->
|
||
<div class="tab" id="tab-fem">
|
||
|
||
<div class="edu-eyebrow nancy">◎ Reading Between the Lines</div>
|
||
<h2 class="edu-h">The Story the Letters Don't Tell</h2>
|
||
<p class="edu-intro">Post Script is ostensibly about an archaeological discovery. It is actually about Charlotte Sanders — a woman who never writes a single letter in a story that is entirely composed of letters. This tab follows her story, and examines how the correspondence documents a pattern of social harm while remaining oblivious to it.</p>
|
||
|
||
<div class="bias">
|
||
<strong>Claude's note:</strong> My understanding of feminist literary analysis comes predominantly from Western academic traditions — largely British and American, largely from the 1970s–2000s. These are not the only frameworks for reading gender in narrative. I also want to be transparent that I find Marcus more sympathetic than Muriel, which probably shapes how I read the story. A less charitable reading of Marcus — as someone who also participated in Charlotte's erasure by choosing silence — is equally valid.
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>The unnamed woman — how naming is power</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>Charlotte Sanders is referred to throughout this correspondence as: "Joanna Sanders' daughter," "the Sanders girl," "her daughter," "what's-her-name," and "Charlotte" (once, in Marcus's first postscript — a detail Muriel does not pick up on). She receives her full name — Charlotte — only in the final letter, when Marcus announces he has married her.</p>
|
||
<p>This is not just a stylistic choice by the author. It reflects how communities historically handle women who step outside social norms: their identity is dissolved into their relationship to others (whose daughter, whose problem) or refused altogether. To name someone is to grant them individuality. To withhold a name is to treat someone as a category.</p>
|
||
<p>The feminist theorist Dale Spender, in <em>Man Made Language</em> (1980), wrote about how language encodes social power — who gets to name, who gets named, and on whose terms. Muriel's inability to remember Charlotte's name is not cruelty. It is something worse: indifference.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>The village gossip machine — how Muriel participates without noticing</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>Muriel is not a villain. She is warm, funny, observant in her small way, and genuinely affectionate toward Marcus. She is also the primary mechanism through which Charlotte's reputation is destroyed, one letter at a time.</p>
|
||
<p>Notice the chain of transmission: Charlotte's pregnancy is known to the village. The village speculates about the father. Muriel reports all of this to Marcus. Gladys from church relays what Joanna told her. Howard and Bernard bet on outcomes. Not one person in this chain is deliberately cruel — and yet the cumulative effect is that a young woman's most private circumstances are common entertainment.</p>
|
||
<p>Muriel herself is aware of gossip as a social force ("the whole village is talking about it") but does not identify herself as part of it. This is how gossip works: everyone is a consumer; no one is a source.</p>
|
||
<p>When Charlotte has a miscarriage, this too travels through Gladys. When the family leaves in the night, Muriel's only response is "Good riddance." The gossip machine requires no malice — just inattention to the person at the centre of it.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>The miscarriage — one sentence, and what it costs</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>"Gladys did tell me that her daughter had a miscarriage and is so distraught that she won't come out of the house. I don't see why it's such a fuss, it's not like she wanted the child anyway."</p>
|
||
<p>This is delivered as a postscript — literally appended, an afterthought, something that didn't warrant its own paragraph. Charlotte is so distraught she won't leave the house. Muriel's conclusion is that the grief is disproportionate because the pregnancy was unwanted.</p>
|
||
<p>This is a form of reasoning that has been applied to women's reproductive grief for centuries: if the pregnancy was inconvenient or shameful, the loss shouldn't hurt. But grief for a pregnancy loss does not depend on whether the pregnancy was planned, wanted, or socially acceptable. Research consistently shows that miscarriage carries significant psychological weight, including for pregnancies that were complicated or unplanned — and that the grief is frequently minimised by exactly this kind of logic.</p>
|
||
<p>Muriel is not being cruel here. She is applying the village's framework: Charlotte's pregnancy was a scandal; therefore Charlotte's suffering is not legitimate suffering. This is what structural attitudes look like at the level of individual thought.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>Driven out in the night — what "Good riddance" documents</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>The Sanders family's departure — "in the middle of the night" — is the logical endpoint of everything the letters have documented. A family, under sustained social pressure, leaves covertly to avoid public scrutiny. Muriel's "Good riddance" is not a verdict on people she knows to be bad. It is the sound of a community experiencing relief that a problem has resolved itself.</p>
|
||
<p>The phrase "in the middle of the night" is doing real work. Families who leave in daylight say goodbye. Families who leave at night are escaping. The Sanders family, in this village, could not leave in daylight.</p>
|
||
<p>This pattern — unwed mothers and their families being forced to relocate, often suddenly and without support — was not just a social phenomenon in fiction. In Britain and Ireland, the formal institutional version of this pressure (mother and baby homes, adoption coercion, social services involvement) was documented extensively in twentieth-century cases and has been the subject of significant governmental inquiry. The informal version — village gossip, social exclusion, economic pressure — was far more common and far less documented.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>Marcus — silent witness, or complicit too?</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>The sympathetic reading of Marcus is clear: he saw past the village's judgment, maintained contact with Charlotte, eventually married her, and withdrew the archaeological find to protect her from further scrutiny. His final letter is the closest the story gets to a moral statement: he didn't invite Muriel to the wedding because of "your habit of making your worst thoughts known to the entire world."</p>
|
||
<p>But a harder reading is also available. Marcus knew about Charlotte's situation from Muriel's first letter. He knew the village was treating her as a scandal. He knew she was pregnant, then that she had a miscarriage, then that the family left in the night. In all of this, he wrote carefully neutral letters, kept his connection to Charlotte entirely secret, and offered nothing — publicly — in her defence.</p>
|
||
<p>He didn't correct Muriel's gossip. He didn't use his letters to say: "She is a person. Her name is Charlotte. Stop." He waited until the final letter, when he had already married her and had leverage, to say what needed saying. The effect of his silence during the correspondence was that Charlotte's suffering was allowed to be transmitted and amplified without pushback.</p>
|
||
<p>Both readings can be true simultaneously. The story doesn't resolve them. It leaves the reader to sit with the question of what it actually means to be on someone's side.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="acc">
|
||
<button class="acc-btn" onclick="acc(this)"><span>The story Charlotte isn't allowed to tell</span><span class="acc-arrow">▾</span></button>
|
||
<div class="acc-panel">
|
||
<p>Post Script is told entirely through letters between Marcus and Muriel. Charlotte does not write a single word. We know her name only when Marcus names her. We know her feelings only through Muriel's secondhand reports, filtered through Gladys, filtered through what Joanna told Gladys. We know she had a miscarriage and was so distraught she wouldn't leave the house. We know she eventually left the village in the night. We know she married Marcus. We know she is pregnant again.</p>
|
||
<p>What we never know: what she thought, what she felt, why she stayed in the village as long as she did, whether she wanted to leave, what she made of Marcus's appearances, whether she was glad to be gone. The pregnancy she was considering giving up — what did she decide, before the miscarriage? These questions have no answers in the text. Charlotte is in every letter and writes none of them.</p>
|
||
<p>The author's note says the story was "an exercise in writing a story while not writing it." The story-that-isn't-written is Charlotte's. The letters that don't exist are hers.</p>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<!-- ════════════════ TAB 4: FURTHER READING ════════════════ -->
|
||
<div class="tab" id="tab-further">
|
||
|
||
<div class="edu-eyebrow">📜 Further Reading</div>
|
||
<h2 class="edu-h">Go Deeper</h2>
|
||
<p class="edu-intro">Starting points for archaeology, the history of reproductive rights, feminist criticism, and the social history behind what this story documents obliquely.</p>
|
||
|
||
<div class="fr-group">⛏ Archaeology — The Science</div>
|
||
<a class="fr-card" href="https://en.wikipedia.org/wiki/British_Bronze_Age" target="_blank">
|
||
<div class="fr-title">British Bronze Age — Wikipedia</div>
|
||
<div class="fr-desc">Timeline, key sites, and what metalworking technology actually looked like in prehistoric Britain.</div>
|
||
</a>
|
||
<a class="fr-card" href="https://finds.org.uk/" target="_blank">
|
||
<div class="fr-title">Portable Antiquities Scheme</div>
|
||
<div class="fr-desc">The real UK system for recording finds like Bernard's — over 1.5 million objects, searchable by type, period, and location.</div>
|
||
</a>
|
||
<a class="fr-card" href="https://en.wikipedia.org/wiki/History_of_birth_control" target="_blank">
|
||
<div class="fr-title">History of Birth Control — Wikipedia</div>
|
||
<div class="fr-desc">Evidence for contraceptive knowledge across ancient cultures — the serious scholarship behind the story's throwaway joke.</div>
|
||
</a>
|
||
|
||
<div class="fr-group nancy">◎ Women in Archaeology</div>
|
||
<a class="fr-card nancy" href="https://en.wikipedia.org/wiki/Dorothy_Garrod" target="_blank">
|
||
<div class="fr-title">Dorothy Garrod — Wikipedia</div>
|
||
<div class="fr-desc">First woman professor at Oxford or Cambridge, whose excavations at Mount Carmel reshaped understanding of early human prehistory.</div>
|
||
</a>
|
||
<a class="fr-card nancy" href="https://en.wikipedia.org/wiki/Kathleen_Kenyon" target="_blank">
|
||
<div class="fr-title">Kathleen Kenyon — Wikipedia</div>
|
||
<div class="fr-desc">Excavated Jericho and Jerusalem; her stratigraphic method became standard in field archaeology.</div>
|
||
</a>
|
||
<a class="fr-card nancy" href="https://en.wikipedia.org/wiki/Mary_Leakey" target="_blank">
|
||
<div class="fr-title">Mary Leakey — Wikipedia</div>
|
||
<div class="fr-desc">Discovered the Laetoli footprints and other landmark hominin evidence; frequently overshadowed by her husband in public recognition.</div>
|
||
</a>
|
||
<a class="fr-card nancy" href="https://en.wikipedia.org/wiki/Feminist_archaeology" target="_blank">
|
||
<div class="fr-title">Feminist Archaeology — Wikipedia</div>
|
||
<div class="fr-desc">How the discipline began questioning the projection of present-day gender assumptions onto interpretations of the past.</div>
|
||
</a>
|
||
|
||
<div class="fr-group nancy">◎ Social History — The World Behind the Story</div>
|
||
<a class="fr-card nancy" href="https://en.wikipedia.org/wiki/Mother_and_baby_homes_in_Ireland" target="_blank">
|
||
<div class="fr-title">Mother and Baby Homes in Ireland</div>
|
||
<div class="fr-desc">The formal institutional version of the social pressure the Sanders family experienced informally — extensively documented and the subject of a 2021 government report.</div>
|
||
</a>
|
||
<a class="fr-card nancy" href="https://www.miscarriageassociation.org.uk/" target="_blank">
|
||
<div class="fr-title">The Miscarriage Association (UK)</div>
|
||
<div class="fr-desc">Support and information about pregnancy loss — including why grief after miscarriage is real regardless of the circumstances of the pregnancy.</div>
|
||
</a>
|
||
|
||
<div class="fr-group">◈ Reading & Craft</div>
|
||
<a class="fr-card" href="https://en.wikipedia.org/wiki/Epistolary_novel" target="_blank">
|
||
<div class="fr-title">The Epistolary Novel — Wikipedia</div>
|
||
<div class="fr-desc">The tradition of stories told through letters — from Richardson to Bram Stoker to The Color Purple.</div>
|
||
</a>
|
||
<a class="fr-card" href="https://en.wikipedia.org/wiki/Unreliable_narrator" target="_blank">
|
||
<div class="fr-title">Unreliable Narrator — Wikipedia</div>
|
||
<div class="fr-desc">Muriel is not lying — she's something more interesting: a narrator who is telling the truth about what she sees and blind to what she doesn't.</div>
|
||
</a>
|
||
|
||
</div>
|
||
|
||
<!-- ════════════════ LIGHTBOXES ════════════════ -->
|
||
<div class="lb-overlay" id="lb-bronze" onclick="closeLbOv(event,'lb-bronze')">
|
||
<div class="lb-box">
|
||
<div class="lb-head">
|
||
<div>
|
||
<span class="lb-eyebrow">⛏ Field Notes</span>
|
||
<span class="lb-title">The Bronze Age</span>
|
||
</div>
|
||
<button class="lb-close" onclick="closeLb('lb-bronze')">✕</button>
|
||
</div>
|
||
<div class="lb-body">
|
||
<h3>What it is</h3>
|
||
<p>The Bronze Age is the period in which human cultures developed the technology to smelt copper and tin together to produce bronze — harder and more durable than either metal alone — and used it to make tools, weapons, and ornaments. It follows the Stone Age (Neolithic) and precedes the Iron Age.</p>
|
||
<h3>In Britain</h3>
|
||
<p>The British Bronze Age is generally dated from around <strong>2500 BCE to 800 BCE</strong>. Its beginning is marked by the appearance of metalworking and changes in burial practice. Its ending is marked by the adoption of iron technology. The period spans roughly 1,700 years and sees the construction of later phases of Stonehenge, the development of farming communities, and long-distance trade networks.</p>
|
||
<h3>What Marcus's claim would have meant</h3>
|
||
<p>Marcus says the object predates the Bronze Age "by about two thousand years" — placing it at approximately <strong>4500 BCE</strong>. This is the British Neolithic, a period in which people used stone tools, not metal ones. No metal objects from this period are known from Britain. A metal artefact from 4500 BCE would suggest that metalworking technology existed at least 2,000 years earlier than any existing evidence — overturning one of the foundational timelines of human technological development. The academic scandal in the story is proportionate to the claim.</p>
|
||
<h3>The retraction</h3>
|
||
<p>Marcus eventually describes the object as "a curiously formed rock, warranting no further study." In the real world, a finding that had attracted an entire team of experts would not be retracted by private letter. The scholarly community would expect a formal statement. The silence around Marcus's retraction is one of the story's unexplained gaps.</p>
|
||
<a class="lb-src" href="https://en.wikipedia.org/wiki/British_Bronze_Age" target="_blank">→ Full article: Wikipedia</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
function go(id, btn) {
|
||
document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
|
||
document.querySelectorAll('nav button').forEach(b => b.classList.remove('active'));
|
||
document.getElementById('tab-' + id).classList.add('active');
|
||
btn.classList.add('active');
|
||
window.scrollTo(0,0);
|
||
}
|
||
|
||
function tog(id, btn) {
|
||
const w = document.getElementById(id);
|
||
const p = w.querySelector('.dc-panel');
|
||
const open = p.classList.contains('open');
|
||
document.querySelectorAll('.dc-panel.open').forEach(x => x.classList.remove('open'));
|
||
document.querySelectorAll('.dc-btn.open').forEach(x => x.classList.remove('open'));
|
||
if (!open) {
|
||
p.classList.add('open');
|
||
btn.classList.add('open');
|
||
const r = p.getBoundingClientRect();
|
||
p.classList.toggle('flip', r.right > window.innerWidth - 16);
|
||
}
|
||
}
|
||
|
||
document.addEventListener('click', e => {
|
||
if (!e.target.closest('.dc')) {
|
||
document.querySelectorAll('.dc-panel.open').forEach(x => x.classList.remove('open'));
|
||
document.querySelectorAll('.dc-btn.open').forEach(x => x.classList.remove('open'));
|
||
}
|
||
});
|
||
|
||
function lb(id) { document.getElementById(id).classList.add('open'); document.body.style.overflow='hidden'; }
|
||
function closeLb(id) { document.getElementById(id).classList.remove('open'); document.body.style.overflow=''; }
|
||
function closeLbOv(e,id) { if(e.target===document.getElementById(id)) closeLb(id); }
|
||
document.addEventListener('keydown', e => {
|
||
if (e.key==='Escape') {
|
||
document.querySelectorAll('.lb-overlay.open').forEach(x=>x.classList.remove('open'));
|
||
document.body.style.overflow='';
|
||
}
|
||
});
|
||
|
||
function acc(btn) {
|
||
const p = btn.nextElementSibling;
|
||
const open = btn.classList.contains('open');
|
||
document.querySelectorAll('.acc-btn.open').forEach(b => {
|
||
b.classList.remove('open');
|
||
b.nextElementSibling.classList.remove('open');
|
||
});
|
||
if (!open) { btn.classList.add('open'); p.classList.add('open'); }
|
||
}
|
||
</script>
|
||
</body>
|
||
</html>
|