/* ============================================================
   magazine.css — The Fashionista
   Prefix: tf-
   Palette: ivory #faf8f5, charcoal #1a1a1a, warm-mid #6b6560,
            accent rose-red #c0392b, light rule #e8e2db
            cover-ink #0d0d0d, cover-paper #f5f0ea
   Typography: Playfair Display (serif) + Inter (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --tf-ivory:    #faf8f5;
  --tf-paper:    #f5f0ea;
  --tf-white:    #ffffff;
  --tf-charcoal: #1a1a1a;
  --tf-ink:      #0d0d0d;
  --tf-mid:      #6b6560;
  --tf-rule:     #e8e2db;
  --tf-accent:   #c0392b;
  --tf-accent-h: #a93226;
  --tf-serif:    'Playfair Display', Georgia, serif;
  --tf-sans:     'Inter', system-ui, sans-serif;
  --tf-max:      1200px;
  --tf-gutter:   clamp(1rem, 4vw, 2.5rem);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--tf-ivory);
  color: var(--tf-charcoal);
  font-family: var(--tf-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--tf-accent); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ── Page wrapper ─────────────────────────────────────────── */
.tf-page { min-height: 100vh; display: flex; flex-direction: column; }
.tf-main  { flex: 1; }

/* ══════════════════════════════════════════════════════════
   MAGAZINE CHROME — thin top line + centered wordmark
   ══════════════════════════════════════════════════════════ */

/* Thin dateline bar above the logotype */
.tf-dateline-bar {
  background: var(--tf-charcoal);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: .38rem var(--tf-gutter);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* Logotype header — magazine centrepiece */
.tf-logotype-header {
  background: var(--tf-ivory);
  border-bottom: 1px solid var(--tf-rule);
  padding: 1.6rem var(--tf-gutter) 0;
}
.tf-logotype-inner {
  max-width: var(--tf-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.tf-logotype-wordmark {
  font-family: var(--tf-serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--tf-ink);
  text-align: center;
}
.tf-logotype-wordmark em {
  font-style: italic;
  color: var(--tf-accent);
}
.tf-logotype-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--tf-mid);
  margin: .55rem 0 1.4rem;
  text-align: center;
}
.tf-logotype-nav {
  width: 100%;
  border-top: 1px solid var(--tf-rule);
}
.tf-logotype-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
}
.tf-logotype-nav a {
  display: block;
  padding: .65rem 1.4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tf-mid);
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.tf-logotype-nav a:hover,
.tf-logotype-nav a[aria-current="page"] {
  color: var(--tf-ink);
  border-bottom-color: var(--tf-accent);
}

/* ══════════════════════════════════════════════════════════
   COVER FEATURE — full-bleed dramatic opener
   ══════════════════════════════════════════════════════════ */

.tf-cover {
  background: var(--tf-ink);
  color: var(--tf-white);
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 70vw, 700px);
  display: grid;
  grid-template-columns: 1fr;
}
/* Textured paper grain overlay */
.tf-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,.022) 49px
    ),
    radial-gradient(ellipse 120% 80% at 70% 50%, #2a1f1a 0%, #0d0d0d 70%);
  pointer-events: none;
}

.tf-cover-inner {
  max-width: var(--tf-max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--tf-gutter);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 760px) {
  .tf-cover-inner {
    grid-template-columns: 1fr 280px;
    gap: 0;
  }
}
@media (min-width: 1000px) {
  .tf-cover-inner {
    grid-template-columns: 1fr 320px;
  }
}

/* LEFT: cover headline block */
.tf-cover-lead {
  padding-right: clamp(0px, 4vw, 3rem);
}
.tf-cover-kicker {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--tf-accent);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.tf-cover-kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--tf-accent);
}
.tf-cover-headline {
  font-family: var(--tf-serif);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--tf-white);
  margin-bottom: 1.4rem;
}
.tf-cover-headline em {
  font-style: italic;
  color: #f0d8d0;
}
.tf-cover-standfirst {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.tf-cover-read {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tf-white);
  border-bottom: 2px solid var(--tf-accent);
  padding-bottom: 3px;
  transition: color .2s;
}
.tf-cover-read:hover { color: var(--tf-accent); }
.tf-cover-read::after { content: '→'; font-style: normal; }

/* Issue date line below headline block */
.tf-cover-issueline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.tf-cover-issue-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.tf-cover-issue-value {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.tf-cover-issue-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.2);
}

/* RIGHT: cover-lines sidebar */
.tf-cover-lines {
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 759px) {
  .tf-cover-lines {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-left: 0;
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
.tf-cover-lines-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.tf-cover-lines-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}
@media (max-width: 759px) {
  .tf-cover-lines-label { width: 100%; }
}
.tf-cover-line {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex: 0 0 auto;
}
@media (max-width: 759px) {
  .tf-cover-line {
    flex: 1 1 200px;
    padding: .75rem .9rem;
    border: 1px solid rgba(255,255,255,.1);
    border-bottom-width: 1px;
  }
}
.tf-cover-line:last-child { border-bottom: none; }
.tf-cover-line-section {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .3rem;
}
.tf-cover-line-title {
  font-family: var(--tf-serif);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.tf-cover-line a { color: inherit; }
.tf-cover-line a:hover .tf-cover-line-title,
.tf-cover-line:hover .tf-cover-line-title { color: var(--tf-white); }

/* ══════════════════════════════════════════════════════════
   EDITORIAL SPREAD — asymmetric feature + two smaller
   ══════════════════════════════════════════════════════════ */

.tf-spread-outer {
  background: var(--tf-paper);
  border-bottom: 1px solid var(--tf-rule);
}
.tf-spread-inner {
  max-width: var(--tf-max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--tf-gutter);
}
.tf-spread-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--tf-accent);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.tf-spread-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tf-rule);
}

.tf-spread-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .tf-spread-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tf-spread-primary {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}
@media (min-width: 900px) {
  .tf-spread-grid {
    grid-template-columns: 5fr 3fr;
  }
}

/* Primary big feature */
.tf-spread-primary {
  background: var(--tf-white);
  border: 1px solid var(--tf-rule);
  display: flex;
  flex-direction: column;
}
.tf-spread-primary-thumb {
  background: linear-gradient(145deg, #1e1510 0%, #3d2d25 50%, #5a3f35 100%);
  flex: 0 0 auto;
  height: clamp(200px, 30vw, 320px);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.tf-spread-primary-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.55) 100%);
}
.tf-spread-primary-thumb-bg {
  font-family: var(--tf-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-style: italic;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.tf-spread-primary-thumb-tag {
  position: relative;
  z-index: 2;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: var(--tf-accent);
  padding: .25rem .65rem;
  display: inline-block;
  margin-bottom: .6rem;
}
.tf-spread-primary-body {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tf-spread-primary-hl {
  font-family: var(--tf-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: .85rem;
  color: var(--tf-ink);
}
.tf-spread-primary-hl a { color: inherit; }
.tf-spread-primary-hl a:hover { color: var(--tf-accent); }
.tf-spread-primary-deck {
  font-size: .9rem;
  color: var(--tf-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}
.tf-spread-read {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tf-ink);
  border-bottom: 2px solid var(--tf-accent);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .2s;
}
.tf-spread-read:hover { color: var(--tf-accent); }
.tf-spread-read::after { content: '→'; }

/* Secondary smaller features (stacked pair) */
.tf-spread-secondary {
  background: var(--tf-white);
  border: 1px solid var(--tf-rule);
  display: flex;
  flex-direction: column;
}
.tf-spread-secondary-band {
  height: clamp(80px, 12vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
}
.tf-spread-secondary-band-a {
  background: linear-gradient(120deg, #2e2018 0%, #5c3d2e 100%);
}
.tf-spread-secondary-band-b {
  background: linear-gradient(120deg, #1a2028 0%, #2e3d4f 100%);
}
.tf-spread-secondary-band-letter {
  font-family: var(--tf-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 900;
  color: rgba(255,255,255,.09);
  user-select: none;
  pointer-events: none;
}
.tf-spread-secondary-body {
  padding: 1.1rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tf-spread-secondary-tag {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: .4rem;
}
.tf-spread-secondary-hl {
  font-family: var(--tf-serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--tf-ink);
  margin-bottom: .55rem;
  flex: 1;
}
.tf-spread-secondary-hl a { color: inherit; }
.tf-spread-secondary-hl a:hover { color: var(--tf-accent); }
.tf-spread-secondary-dek {
  font-size: .82rem;
  color: var(--tf-mid);
  line-height: 1.65;
  margin-bottom: .9rem;
}
.tf-spread-secondary-read {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tf-accent);
  transition: opacity .2s;
}
.tf-spread-secondary-read:hover { opacity: .7; }
.tf-spread-secondary-read::after { content: ' →'; }

/* ══════════════════════════════════════════════════════════
   "MORE FROM THIS ISSUE" INDEX — text-led list
   ══════════════════════════════════════════════════════════ */

.tf-index-outer {
  background: var(--tf-ivory);
  padding: clamp(2rem, 5vw, 4rem) var(--tf-gutter);
}
.tf-index-inner {
  max-width: var(--tf-max);
  margin: 0 auto;
}
.tf-index-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tf-index-heading {
  font-family: var(--tf-serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--tf-ink);
  white-space: nowrap;
}
.tf-index-head-rule {
  flex: 1;
  height: 1px;
  background: var(--tf-rule);
  align-self: center;
}
.tf-index-issue {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tf-mid);
  white-space: nowrap;
}

/* ── Latest list (.spool / .topnote) ─────────────────────── */
ul.spool {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.spool li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--tf-rule);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  ul.spool li {
    grid-template-columns: 1fr auto;
    align-items: start;
    column-gap: 2.5rem;
  }
  ul.spool li .topnote { text-align: right; margin-top: .2rem; }
}
ul.spool li:first-child { border-top: 1px solid var(--tf-rule); }

ul.spool li h3 {
  font-family: var(--tf-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: .25rem 0 .45rem;
}
ul.spool li h3 a { color: var(--tf-charcoal); transition: color .2s; }
ul.spool li h3 a:hover { color: var(--tf-accent); }
ul.spool li p {
  font-size: .84rem;
  color: var(--tf-mid);
  line-height: 1.6;
  max-width: 62ch;
}

.topnote {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tf-accent);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — minimal magazine colophon
   ══════════════════════════════════════════════════════════ */

.tf-footer {
  background: var(--tf-charcoal);
  border-top: 3px solid var(--tf-accent);
}
.tf-footer-upper {
  max-width: var(--tf-max);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--tf-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 600px) {
  .tf-footer-upper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.tf-footer-wordmark {
  font-family: var(--tf-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tf-white);
  letter-spacing: -.01em;
}
.tf-footer-wordmark em {
  font-style: italic;
  color: var(--tf-accent);
}
.tf-footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tf-footer-links a {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  transition: color .2s;
}
.tf-footer-links a:hover { color: var(--tf-white); }
.tf-footer-lower {
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  padding: .9rem var(--tf-gutter);
}
.tf-footer-copy {
  font-size: .68rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════
   INNER PAGES — article, about, contact, style index
   ══════════════════════════════════════════════════════════ */

/* Inner-page page banner (replaces tf-inner-hero) */
.tf-inner-banner {
  background: var(--tf-white);
  border-bottom: 2px solid var(--tf-rule);
  padding: clamp(2rem, 5vw, 3.5rem) var(--tf-gutter);
  text-align: center;
}
.tf-inner-banner-section {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: .7rem;
}
.tf-inner-banner h1 {
  font-family: var(--tf-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 24ch;
  margin: 0 auto .75rem;
  color: var(--tf-ink);
}
.tf-inner-banner p {
  font-size: .9rem;
  color: var(--tf-mid);
  max-width: 50ch;
  margin: 0 auto;
}

/* Keep tf-inner-hero as alias so about/contact still work */
.tf-inner-hero {
  background: var(--tf-white);
  border-bottom: 2px solid var(--tf-rule);
  padding: clamp(2rem, 5vw, 3.5rem) var(--tf-gutter);
  text-align: center;
}
.tf-inner-hero h1 {
  font-family: var(--tf-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 24ch;
  margin: 0 auto .75rem;
  color: var(--tf-ink);
}
.tf-inner-hero p {
  font-size: .9rem;
  color: var(--tf-mid);
  max-width: 50ch;
  margin: 0 auto;
}

.tf-container {
  max-width: var(--tf-max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--tf-gutter);
}

.tf-section-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tf-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tf-rule);
}

/* Article header */
.tf-article-header {
  background: var(--tf-white);
  border-bottom: 1px solid var(--tf-rule);
  padding: clamp(2rem, 6vw, 4rem) var(--tf-gutter);
  text-align: center;
}
.tf-article-header .tf-article-section {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: .7rem;
}
.tf-article-header h1 {
  font-family: var(--tf-serif);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 22ch;
  margin: 0 auto .9rem;
  color: var(--tf-ink);
}
.tf-article-header .tf-article-meta {
  font-size: .75rem;
  color: var(--tf-mid);
  letter-spacing: .06em;
}

.tf-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--tf-gutter);
}
.tf-article-body p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  color: var(--tf-charcoal);
}
.tf-article-body h2 {
  font-family: var(--tf-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2.2rem 0 .8rem;
  color: var(--tf-charcoal);
}
.tf-article-body h3 {
  font-family: var(--tf-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.8rem 0 .6rem;
}
.tf-article-body ul,
.tf-article-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.tf-article-body ul li,
.tf-article-body ol li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: .4rem;
}
.tf-article-body blockquote {
  border-left: 3px solid var(--tf-accent);
  padding: 1rem 1.4rem;
  margin: 2rem 0;
  background: var(--tf-white);
  font-family: var(--tf-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--tf-mid);
}

.tf-article-footer {
  border-top: 1px solid var(--tf-rule);
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem var(--tf-gutter) 3rem;
}
.tf-back-link {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tf-mid);
  transition: color .2s;
}
.tf-back-link:hover { color: var(--tf-accent); }
.tf-back-link::before { content: '← '; }

/* Style index card grid */
.tf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.tf-card {
  background: var(--tf-white);
  border: 1px solid var(--tf-rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.tf-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.tf-card-thumb {
  background: linear-gradient(135deg, #3a3330 0%, #5c4a42 100%);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tf-card-thumb-letter {
  font-family: var(--tf-serif);
  font-size: 3.2rem;
  font-style: italic;
  color: rgba(255,255,255,.1);
  user-select: none;
}
.tf-card-body {
  padding: 1.15rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tf-card-tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: .45rem;
}
.tf-card-title {
  font-family: var(--tf-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .6rem;
  color: var(--tf-charcoal);
}
.tf-card-excerpt {
  font-size: .82rem;
  color: var(--tf-mid);
  line-height: 1.65;
  flex: 1;
}

/* Prose (about / contact) */
.tf-prose {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--tf-gutter);
}
.tf-prose p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.3rem; }
.tf-prose h2 {
  font-family: var(--tf-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 .7rem;
}
.tf-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.3rem; }
.tf-prose ul li { line-height: 1.8; margin-bottom: .35rem; }

/* Contact form */
.tf-form { margin-top: 1.5rem; }
.tf-form-group { margin-bottom: 1.25rem; }
.tf-form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tf-mid);
  margin-bottom: .45rem;
}
.tf-form-group input,
.tf-form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--tf-rule);
  background: var(--tf-white);
  font-family: var(--tf-sans);
  font-size: .95rem;
  color: var(--tf-charcoal);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
}
.tf-form-group input:focus,
.tf-form-group textarea:focus { border-color: var(--tf-accent); }
.tf-form-group textarea { min-height: 140px; resize: vertical; }
.tf-honeypot { position: absolute; left: -9999px; opacity: 0; }

.tf-submit {
  display: inline-block;
  padding: .78rem 2rem;
  background: var(--tf-accent);
  color: #fff;
  font-family: var(--tf-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
}
.tf-submit:hover { background: var(--tf-accent-h); }

.tf-alert {
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.tf-alert-success {
  background: #f0faf0;
  border: 1px solid #b7dfb7;
  color: #2d6a2d;
}
.tf-alert-error {
  background: #fff0f0;
  border: 1px solid #f0b7b7;
  color: #8b1a1a;
}

/* Utility */
.tf-divider { height: 1px; background: var(--tf-rule); margin: 2rem 0; }

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 640px) {
  .tf-logotype-nav a { padding: .55rem .9rem; letter-spacing: .1em; }
}
