* { box-sizing: border-box; 
    --c-red: #87085D; /* global scope */
    --light-beige:#FFFAF8;
    --beige: #E6D6CF;
    --black: #000000;
}

/* Shared --------------------------------------------------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tco-tag {
  font-family: var(--font-primary);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 2px;
  background: transparent;
}
a.kind-hint {
  text-decoration: none;
}

.kind-hint {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-red);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--c-red);
}
.inline-expand {
  grid-column: 1 / -1;
  background: var(--light-beige);
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-top: 18px;
  animation: expand-in 320ms cubic-bezier(.2,.6,.2,1);
}
@keyframes expand-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.inline-expand-inner {
  padding: 28px 32px;
  font-family: var(--font-serif);
  font-size: 19px; line-height: 1.55;
  color: #000000;
}
.inline-expand-body { font-style: italic; font-weight: 300; margin: 0 0 16px; max-width: 60ch; }
.inline-expand-close {
  background: transparent; border: 0; padding: 0;
  font-family: var(--font-primary); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; color: #000000;
  border-bottom: 1px solid #000000; padding-bottom: 2px;
}
.inline-expand-close:hover { color: var(--c-red); border-color: var(--c-red); }

/* ===========================================================
   Direction A — Editorial Vertical
   =========================================================== */
.tl-editorial {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* background: #FFFAF8; */
  padding: 80px 64px 120px;
  max-width: 1680px;
  margin: 0 auto;
}
.tl-editorial-rule {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: #000000;
  opacity: 0.4;
  transform: translateX(-0.5px);
  z-index: 1;
  pointer-events: none;
}
.tl-ed-row {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 80px;
}
.tl-ed-marker {
  grid-column: 2;
  display: flex; 
  flex-direction: column; 
  align-items: center;
  position: sticky; 
  top: 24px;
  padding-top: 8px;
  background-color: #ffffff;
  min-width: 0;
  z-index: 2;
}
.tl-ed-year {
  font-family: var(--font-serif);
  font-weight: 400; 
  font-style: italic;
  font-size: 28px; 
  color: #000000;
  margin-bottom: 12px;
}
.tl-ed-diamond {
  background: #ffffff;
  padding: 6px 0;
  color: var(--c-red);
}
.tl-ed-card {
  background: var(--light-beige);
  border: 1px solid var(--beige);
  text-align: left;
  cursor: pointer;
  padding: 16px 24px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
  transition: background 200ms var(--ease-standard);
}
.tl-ed-row:nth-child(even) .tl-ed-card { grid-column: 1; padding-right:48px; text-align: right; }
.tl-ed-row:nth-child(odd)  .tl-ed-card { grid-column: 3; padding-left: 48px; margin-top: 3rem; }
.tl-ed-row:nth-child(even) .tl-ed-card .tag-row { justify-content: flex-end; }
.tl-ed-card:hover { background: var(--beige); }
.tl-ed-img {
  margin-bottom: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.tl-ed-img svg { width: 100%; height: 100%; display: block; }
.tl-ed-eyebrow {
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
}
.tl-ed-title {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 32px;
  line-height: 1.05; color: #000000;
  margin: 0 0 12px;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.tl-ed-blurb {
  /* font-family: var(--font-primary); */
  font-weight: 300; font-size: 16px; line-height: 1.5;
  color: #000000;
  margin: 0;
  max-width: 48ch;
}
.tl-ed-row:nth-child(even) .tl-ed-blurb { margin-left: auto; }

/* ===========================================================
   Direction B — Filmic Spread
   =========================================================== */
.tl-filmic {
  background: #000000;
  color: #F5EFEA;
  padding: 96px 64px 120px;
}
.tl-fm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto 96px;
}
.tl-fm-right .tl-fm-image { order: 2; }
.tl-fm-image {
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: transform 360ms var(--ease-standard);
}
.tl-fm-image svg { width: 100%; height: 100%; display: block; transition: transform 600ms var(--ease-standard), filter 360ms var(--ease-standard); }
.tl-fm-image:hover svg { transform: scale(1.03); filter: brightness(1.08); }
.tl-fm-yearmark {
  position: absolute;
  bottom: 18px; left: 22px;
  display: flex; align-items: baseline; gap: 8px;
  color: #FFFAF8;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.tl-fm-year {
  font-family: var(--font-serif);
  font-weight: 700; font-style: italic;
  font-size: 56px; line-height: 1;
}
.tl-fm-month {
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.tl-fm-eyebrow {
  font-family: var(--font-primary);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #E6D6CF;
  margin-bottom: 18px;
}
.tl-fm-title {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 44px; line-height: 1.05;
  color: #FFFAF8;
  margin: 0 0 18px;
  text-wrap: balance;
}
.tl-fm-lead {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; font-size: 22px; line-height: 1.4;
  color: #d7ccc5;
  margin: 0 0 24px;
  max-width: 42ch;
}
.tl-fm-cta {
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #E6D6CF;
}
.tl-fm-cta .kind-hint { color: #E6D6CF; border-bottom-color: #E6D6CF; }
.tl-fm-cta:hover .kind-hint { color: var(--c-red); border-bottom-color: var(--c-red); }
.tl-filmic .inline-expand {
  background: #1f1c1a; border-top-color: #3a322c; border-bottom-color: #3a322c;
}
.tl-filmic .inline-expand-body, .tl-filmic .inline-expand-close { color: #E6D6CF; border-color: #E6D6CF; }



/* ===========================================================
   Drawer / Modal / Toast
   =========================================================== */
.tco-drawer-root { position: fixed; inset: 0; z-index: 1000; }
.tco-drawer-scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.5); animation: fade-in 200ms; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-in-r { from { transform: translateX(100%); } to { transform: none; } }
.tco-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(560px, 92vw);
  background: #FFFAF8;
  box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  animation: slide-in-r 320ms var(--ease-standard);
  display: flex; flex-direction: column;
}
.tco-drawer-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: 1px solid #000000;
  color: #000000; padding: 8px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.tco-drawer-close:hover { background: #000000; color: #FFFAF8; }
.tco-drawer-content {
  padding: 64px 56px 48px;
  overflow-y: auto;
}
.tco-drawer-eyebrow {
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red); margin-bottom: 18px;
}
.tco-drawer-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 40px; line-height: 1.05;
  margin: 0 0 24px; color: #000000;
  text-wrap: balance;
}
.tco-drawer-lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: #000000;
  font-weight: 300; margin: 0 0 24px;
}
.tco-drawer-body {
  font-family: var(--font-primary); font-weight: 300;
  font-size: 16px; line-height: 1.6; color: #222;
  margin: 0 0 32px;
}
.tco-drawer-foot { margin-top: auto; }

@keyframes scale-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.tco-modal-root {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  animation: fade-in 200ms;
}
.tco-modal-card {
  background: #FFFAF8;
  width: min(1000px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: scale-in 280ms var(--ease-standard);
}
.tco-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.4);
  color: #FFFAF8;
  padding: 8px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.tco-modal-close:hover { background: rgba(0,0,0,0.85); }
.tco-modal-image { aspect-ratio: 16/10; overflow: hidden; }
.tco-modal-image svg { width: 100%; height: 100%; display: block; }
.tco-modal-body { padding: 40px 48px 48px; }
.tco-modal-eyebrow {
  font-family: var(--font-primary); font-size: 11px;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red); margin-bottom: 16px;
}
.tco-modal-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 44px; line-height: 1.05;
  margin: 0 0 20px; color: #000000;
  text-wrap: balance;
}
.tco-modal-lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: #000000;
  font-weight: 300; margin: 0 0 24px;
}
.tco-modal-text {
  font-family: var(--font-primary); font-weight: 300;
  font-size: 16px; line-height: 1.6; color: #222; margin: 0;
}

.tco-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  background: #000000; color: #FFFAF8;
  padding: 18px 28px;
  z-index: 999;
  font-family: var(--font-primary);
  animation: scale-in 240ms var(--ease-standard);
  max-width: 90vw;
}
.tco-toast-eyebrow {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #E6D6CF; margin-bottom: 6px;
}
.tco-toast-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 16px; margin-bottom: 4px;
}
.tco-toast-href {
  font-size: 12px; color: #B8A99F; font-style: italic;
}

/* ===========================================================
   Hero (shared by all directions)
   =========================================================== */
.fwm-hero {
  position: relative;
  min-height: 88vh;
  background: #000000;
  color: #FFFAF8;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}
.fwm-hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.fwm-hero-img svg { width: 100%; height: 100%; display: block; }
.fwm-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
}
.fwm-hero-content {
  position: relative; z-index: 1;
  padding: 64px;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}
.fwm-hero-eyebrow {
  font-family: var(--font-primary);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #E6D6CF; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.fwm-hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--c-red); border-radius: 50%;
}
.fwm-hero-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.95; margin: 0 0 24px;
  color: #FFFAF8;
  text-wrap: balance;
  max-width: 18ch;
}
.fwm-hero-title em {
  font-style: italic; font-weight: 300;
  color: #E6D6CF;
}
.fwm-hero-lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4; color: #E6D6CF;
  max-width: 56ch; margin: 0 0 36px;
  font-weight: 300;
}
.fwm-hero-meta {
  display: flex; 
  flex-wrap: wrap;
  gap: 48px;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #d7ccc5;
}
.fwm-hero-meta strong {
  display: block; color: #FFFAF8;
  font-family: var(--font-serif);
  font-weight: 700; font-style: italic;
  font-size: 22px; letter-spacing: 0.02em; text-transform: none;
  margin-top: 4px;
}
.fwm-hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  font-family: var(--font-primary);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #FFFAF8;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
.fwm-hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, #FFFAF8, transparent);
  animation: scroll-pulse 2.4s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===========================================================
   Direction A — Mobile (< 600px)
   Collapses the alternating two-column layout to a single
   column: narrow marker strip on the left, card on the right.
   =========================================================== */
@media (max-width: 600px) {
  .tl-editorial {
    padding: 40px 20px 60px;
  }
  .tl-editorial::before {
    display: none;
  }
  .tl-editorial-rule {
    display: none;
  }
  .tl-ed-row {
    grid-template-columns: 56px 1fr;
    margin-bottom: 40px;
  }
  .tl-ed-marker {
    grid-column: 1;
    position: static;
  }
  .tl-ed-year {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .tl-ed-row:nth-child(n) .tl-ed-card {
    grid-column: 2;
    min-width: 0;
    padding: 0 0 0 16px;
    text-align: left;
  }
  .tl-ed-row:nth-child(n) .tl-ed-card .tag-row {
    justify-content: flex-start;
  }
  .tl-ed-row:nth-child(n) .tl-ed-blurb {
    margin-left: 0;
  }
  .tl-ed-title {
    font-size: 22px;
    overflow-wrap: break-word;
  }
}

/* ===========================================================
   Page chrome (light beige TCO header)
   =========================================================== */
.page-strip {
  background: var(--c-beige); padding: 9px 48px;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.page-strip a { color: #000; text-decoration: none; }
.page-nav {
  background: #FFFAF8;
  padding: 14px 48px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #eadfd9;
}
.page-nav-left, .page-nav-right {
  display: flex; gap: 28px; align-items: center;
  font-family: var(--font-primary);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
}
.page-nav-right { justify-content: flex-end; }
.page-nav-brand {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 20px; text-align: center;
}
.page-nav a { color: #000000; text-decoration: none; cursor: pointer; }

/* Direction selector tab bar (sticky, lives below hero) */
.dir-tabs {
  position: sticky; top: 0; z-index: 60;
  background: #FFFAF8;
  border-bottom: 1px solid #eadfd9;
  padding: 14px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.dir-tabs-label {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #757575;
}
.dir-tabs-list {
  display: flex; gap: 6px;
}
.dir-tab {
  background: transparent; border: 1px solid #000000;
  font-family: var(--font-primary); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #000000;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.dir-tab:hover { background: rgba(230, 214, 207, 0.5); }
.dir-tab.is-active { background: #000000; color: #FFFAF8; }
.dir-tab-meta {
  font-family: var(--font-serif); font-style: italic;
  font-size: 12px; color: #757575;
}

/* Section intro card explaining each direction */
.dir-intro {
  background: var(--c-beige);
  padding: 36px 64px;
  display: flex; gap: 48px; align-items: baseline;
}
.dir-intro-num {
  font-family: var(--font-serif); font-weight: 700; font-style: italic;
  font-size: 64px; line-height: 1; color: #000000;
  flex-shrink: 0;
  min-width: 80px;
}
.dir-intro-content { flex: 1; }
.dir-intro-eyebrow {
  font-family: var(--font-primary); font-size: 11px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-red); margin-bottom: 8px;
}
.dir-intro-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 32px; line-height: 1.05; color: #000000;
  margin: 0 0 12px;
}
.dir-intro-desc {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; font-size: 18px; line-height: 1.45;
  color: #000000; max-width: 70ch; margin: 0;
}
