:root {
  --paper: #EDEDE9;
  --paper-2: #F5F5F2;
  --paper-3: #E3E3DE;
  --ink: #26262A;
  --ink-soft: #55555A;
  --ink-faint: #86868C;
  --line: #DBDBD5;
  --clay: #B5623F;
  --clay-deep: #8F4B2F;
  --clay-tint: #E7D9CF;
  --sage: #77796A;
  --success: #4F6F52;
  --page-pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--clay); text-decoration: none; }
a:hover { color: var(--clay-deep); }

@keyframes op-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Masthead */
.masthead {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px var(--page-pad) 0;
}
.meta-row, .dateline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meta-row {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 9px;
}
.center { text-align: center; }
.right { text-align: right; }
.nameplate-wrap { text-align: center; padding: 16px 0 4px; }
.nameplate-link { text-decoration: none; }
.nameplate {
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: clamp(2.9rem, 11vw, 6.4rem);
  letter-spacing: -.025em;
  line-height: .92;
  color: var(--ink);
}
.motto {
  font-family: Fraunces, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(.95rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  margin-top: 10px;
}
.rule-major { border-top: 2px solid var(--ink); margin-top: 14px; }
.rule-minor { border-top: 1px solid var(--ink); margin-top: 2px; }
.dateline {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

/* Lead */
.lead {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px) var(--page-pad) 12px;
  animation: op-fade .7s ease both;
}
.lead-head { text-align: center; margin-bottom: 18px; }
.kicker {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.lead-head h1 {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6.2vw, 4.7rem);
  line-height: 1.0;
  letter-spacing: -.022em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}
.deck {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.5vw, 1.26rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 20px auto 0;
  max-width: 56ch;
  text-wrap: pretty;
}
.accent-rule {
  width: 44px;
  height: 2px;
  background: var(--clay);
  margin: 22px auto 0;
}

.lead-body {
  border-top: 1px solid var(--ink);
  margin-top: 26px;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* Story column */
.story-col { flex: 1 1 500px; min-width: 300px; }
.reader-photo {
  background: var(--paper-3);
  border: 1px solid var(--ink);
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reader-mock {
  position: relative;
  transform: rotate(-1.3deg);
  background: #26262A;
  border-radius: 18px;
  padding: 14px 14px 20px;
  box-shadow: 0 26px 50px -26px rgba(38, 38, 42, .5);
  width: min(260px, 74%);
}
.reader-screen {
  background: #F4F3EE;
  border-radius: 6px;
  padding: 20px 18px 14px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.reader-kicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  color: #83837B;
  text-transform: uppercase;
}
.reader-title {
  font-family: Fraunces, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.18;
  color: #2A2A2C;
  margin: 8px 0 3px;
  letter-spacing: -.01em;
}
.reader-byline { font-size: 9.5px; color: #8F8F87; margin-bottom: 12px; }
.reader-p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1.62;
  color: #3A3A3C;
  margin: 0 0 8px;
}
.reader-p:last-of-type { margin: 0; }
.reader-spacer { flex: 1; min-height: 6px; }
.reader-footer { margin-top: 14px; }
.reader-progress {
  height: 2px;
  background: #DAD9D2;
  border-radius: 2px;
  overflow: hidden;
}
.reader-progress-fill { width: 35%; height: 100%; background: #57574F; }
.reader-status {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: #9C9C94;
  margin-top: 6px;
}
.reader-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4A4A4E;
  margin: 9px auto 0;
}

.cutline {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-faint);
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.cutline-lead { font-weight: 600; color: var(--ink-soft); }

.lead-paragraph {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 24px;
  max-width: 60ch;
}
.lead-paragraph p { margin: 0; }
.drop-cap {
  float: left;
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 3.3em;
  line-height: .7;
  color: var(--clay);
  padding: 5px 9px 0 0;
}

/* Sidebar / postcard */
.sidebar-col {
  flex: 0 1 336px;
  min-width: 280px;
  border-left: 1px solid var(--line);
  margin-left: clamp(24px, 3vw, 44px);
  padding-left: clamp(24px, 3vw, 44px);
}
.subscribe-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.airmail-frame {
  position: relative;
  padding: 6px;
  border-radius: 8px;
  background: repeating-linear-gradient(-45deg, #B5623F 0 6px, #F5F5F2 6px 13px, #26262A 13px 19px, #F5F5F2 19px 26px);
  box-shadow: 0 16px 34px -22px rgba(38, 38, 42, .5);
}
.postcard {
  position: relative;
  background: var(--paper-2);
  border-radius: 3px;
  padding: 22px 22px 20px;
  overflow: hidden;
}

.stamp {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 48px;
  height: 58px;
  background: #F7F4F0;
  border: 1px solid var(--line);
  padding: 4px;
  transform: rotate(3deg);
}
.stamp-inner {
  width: 100%;
  height: 100%;
  border: 1px dashed var(--clay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--clay-tint);
}
.stamp-device { width: 13px; height: 19px; border-radius: 3px; background: var(--clay); }
.stamp-label {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 5px;
  letter-spacing: .1em;
  color: var(--clay-deep);
}

.postmark {
  position: absolute;
  top: 36px;
  right: 34px;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(143, 75, 47, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-9deg);
}
.postmark-inner {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(143, 75, 47, .45);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  color: rgba(143, 75, 47, .85);
  text-align: center;
  line-height: 1.18;
  font-size: 5.5px;
  letter-spacing: .08em;
}
.postmark-year { font-size: 4.5px; margin-top: 1px; }

.postcard-label {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.postcard-heading {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 9px 0 20px;
  letter-spacing: -.012em;
  line-height: 1.12;
  padding-right: 74px;
}

#waitlist-form input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 0 2px;
  font-family: Inter, sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .15s;
}
#waitlist-form input[type="email"]:focus { border-color: var(--clay); }
#waitlist-form input[type="email"]::placeholder { color: var(--ink-faint); }

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-error { font-size: .82rem; color: var(--clay-deep); margin-top: 9px; }

#submit-btn {
  margin-top: 18px;
  width: 100%;
  height: 50px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #F7F4F0;
  background: var(--clay);
  border: 1px solid var(--clay);
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
#submit-btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
#submit-btn:disabled { opacity: .75; cursor: default; }

.fine-print {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--ink-faint);
  margin-top: 13px;
}

.postcard-success {
  padding: 4px 0 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.postcard-success[hidden] { display: none; }
.received-stamp {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(143, 75, 47, .5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  color: rgba(143, 75, 47, .78);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  margin: 4px 0 20px;
}
.received-title { font-size: 12px; letter-spacing: .14em; }
.received-divider { width: 52px; height: 1px; background: rgba(143, 75, 47, .4); margin: 5px 0; }
.received-sub { font-size: 7px; letter-spacing: .1em; }
.success-heading {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.01em;
}
.success-body { font-size: .96rem; color: var(--ink-soft); margin-top: 11px; line-height: 1.5; }

.trust-line {
  font-family: Fraunces, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 20px;
  line-height: 1.45;
}

/* Divider sections (Process / Pricing) */
.divider-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(38px, 5vw, 58px) var(--page-pad) 0;
}
.divider-row { display: flex; align-items: center; gap: 16px; margin-bottom: 34px; }
.divider-line { flex: 1; border-top: 1px solid var(--ink); }
.divider-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}

.process-row { display: flex; flex-wrap: wrap; }
.process-step { flex: 1 1 240px; padding: 0 clamp(20px, 2.5vw, 34px); }
.process-step.ruled { border-left: 1px solid var(--line); }
.process-num {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 14px;
}
.process-title {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.24rem;
  color: var(--ink);
  margin-bottom: 9px;
  letter-spacing: -.01em;
}
.process-body {
  font-family: Georgia, serif;
  font-size: .98rem;
  line-height: 1.58;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-tier { flex: 1 1 260px; padding: 0 clamp(22px, 3vw, 40px); }
.pricing-tier.ruled { border-left: 1px solid var(--line); }
.tier-name {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.tier-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.price {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ink);
}
.price.clay { color: var(--clay); }
.price-suffix { font-size: .92rem; color: var(--ink-faint); }
.tier-desc { font-family: Georgia, serif; font-size: .98rem; line-height: 1.58; color: var(--ink-soft); }

.pricing-footnote {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-faint);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 52ch;
  text-align: center;
}

/* Footer */
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) var(--page-pad) 40px;
  margin-top: clamp(38px, 5vw, 58px);
  border-top: 2px solid var(--ink);
  text-align: center;
}
.footer-name {
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.footer-privacy {
  font-size: .86rem;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.footer-colophon {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 16px;
}

/* Policy page */
.policy-main {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px) var(--page-pad) 12px;
  animation: op-fade .7s ease both;
}
.policy-back {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.policy-lead { text-align: center; margin-bottom: 10px; }
.policy-kicker {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.policy-lead h1 {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.policy-deck {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 18px auto 0;
  max-width: 52ch;
}
.policy-updated {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 18px;
}

.policy-section {
  margin-top: clamp(30px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}
.policy-heading {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.policy-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.policy-body p { margin: 0 0 14px; }
.policy-body p:last-child { margin-bottom: 0; }
.policy-body ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
}
.policy-body li { margin-bottom: 8px; }
.policy-body li:last-child { margin-bottom: 0; }
.policy-body strong { color: var(--ink); font-weight: 600; }
