:root {
  --noir-black: #0b0a0c;
  --noir-charcoal: #17151a;
  --paper: #e9dfc4;
  --paper-dim: #c9bc98;
  --blood: #8a1c1c;
  --blood-bright: #b3281f;
  --amber: #c8902f;
  --amber-glow: #e6b25c;
  --fog: #8a8a92;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Text', Georgia, serif;
  --font-type: 'Special Elite', 'Courier New', monospace;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
body {
  background: var(--noir-black);
  color: var(--paper);
  font-family: var(--font-body);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
::selection {
  background: var(--blood);
  color: var(--paper);
}
section,
header.hero,
footer.credits {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}
/* film grain + vignette overlay, fixed across whole page */
#grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27140%27 height=%27140%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.85%27 numOctaves=%272%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27100%25%27 height=%27100%25%27 filter=%27url%28%23n%29%27/%3E%3C/svg%3E");
}
#vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 59;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}
/* ===================== Case board nav ===================== */
#case-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#case-nav .thread {
  width: 1px;
  flex: 1;
  background: rgba(138, 28, 28, 0.5);
  min-height: 14px;
}
#case-nav button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(233, 223, 196, 0.5);
  background: var(--noir-black);
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
#case-nav button.active {
  background: var(--blood-bright);
  border-color: var(--blood-bright);
  box-shadow: 0 0 8px rgba(179, 40, 31, 0.7);
}
#case-nav button .tip {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-type);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.2s ease;
  background: rgba(23, 21, 26, 0.9);
  padding: 4px 9px;
  border: 1px solid rgba(233, 223, 196, 0.2);
}
#case-nav button:hover .tip {
  opacity: 1;
}
@media (max-width: 900px) {
  #case-nav {
    display: none;
  }
}
/* ===================== Reveal-on-scroll ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.in-view .reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.22s;
}
.reveal.d3 {
  transition-delay: 0.34s;
}
/* redacted-bar reveal for key lines */
.redact {
  position: relative;
  display: inline;
}
.redact::before {
  content: '';
  position: absolute;
  inset: -2px -4px;
  background: var(--noir-black);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.7, 0, 0.2, 1) 0.3s;
  z-index: 2;
}
.in-view .redact::before {
  transform: scaleX(0);
}
/* ===================== Shared layout ===================== */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6vw;
}
.case-tag {
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-glow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.case-tag .line {
  width: 26px;
  height: 1px;
  background: var(--amber);
}
h2.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--paper);
}
.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--amber-glow);
  margin-bottom: 16px;
}
.body-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--paper-dim);
}
.body-text p + p {
  margin-top: 14px;
}
.body-text strong {
  color: var(--paper);
  font-weight: 600;
}
blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--blood-bright);
  background: rgba(138, 28, 28, 0.08);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper);
}
blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-type);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fog);
}
/* evidence photo placeholder */
.exhibit {
  position: relative;
  background: linear-gradient(160deg, #201c1f, #141215);
  border: 1px solid rgba(233, 223, 196, 0.14);
  padding: 14px 14px 40px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  transform: rotate(var(--tilt, -1.2deg));
}
.exhibit::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 56px;
  height: 20px;
  background: rgba(200, 144, 47, 0.28);
  border: 1px solid rgba(200, 144, 47, 0.4);
}
.exhibit-frame {
  aspect-ratio: 4/5;
  border: 1px dashed rgba(233, 223, 196, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(135deg, rgba(233, 223, 196, 0.02) 0 2px, transparent 2px 10px), radial-gradient(circle at 50% 40%, #2a262b, #100e11 75%);
  padding: 20px;
}
.exhibit-frame span {
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fog);
  line-height: 1.6;
}
.exhibit-cap {
  margin-top: 12px;
  font-family: var(--font-type);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
  text-align: center;
}
/* ===================== Hero ===================== */
header.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 6vw;
  background: radial-gradient(ellipse at 50% 20%, rgba(138, 28, 28, 0.14), transparent 60%), linear-gradient(180deg, #0e0c0f 0%, #0b0a0c 60%, #050405 100%);
}
.hero-eyebrow {
  font-family: var(--font-type);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 26px;
}
.hero-sub {
  margin-top: 20px;
  font-family: var(--font-type);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
}
.hero-lede {
  margin-top: 36px;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--paper-dim);
}
.hero-stamp {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(179, 40, 31, 0.6);
  color: var(--blood-bright);
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  transform: rotate(-2deg);
}
.scroll-cue {
  margin-top: 60px;
  font-family: var(--font-type);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
}
.scroll-cue svg {
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
/* ===================== Sections ===================== */
.case-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.case-section.tint-a {
  background: linear-gradient(180deg, #0b0a0c, #131014);
}
.case-section.tint-b {
  background: linear-gradient(180deg, #131014, #17121a);
}
.grid2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.grid2.reverse {
  direction: rtl;
}
.grid2.reverse > * {
  direction: ltr;
}
@media (max-width: 920px) {
  .grid2,
  .grid2.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .exhibit {
    max-width: 320px;
    margin: 0 auto;
  }
}
.stat-strip {
  display: flex;
  gap: 30px;
  margin-top: 26px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(233, 223, 196, 0.12);
}
.stat-strip .mini {
  font-family: var(--font-type);
}
.stat-strip .mini .n {
  font-size: 17px;
  color: var(--amber-glow);
  display: block;
}
.stat-strip .mini .l {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}
/* ===================== Pinned scroll-path ("The Walk") ===================== */
.pin-section {
  padding: 0;
}
.pin-wrapper {
  position: relative;
  height: 300vh;
}
.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #131014, #17121a);
}
.walk-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.walk-text .cue {
  margin-top: 22px;
  font-family: var(--font-type);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  opacity: 0.75;
}
.walk-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 960/769;
}
.walk-stage svg {
  width: 100%;
  height: 100%;
  display: block;
}
.walk-progress {
  position: absolute;
  bottom: -30px;
  left: 0;
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-transform: uppercase;
}
#walkGlow,
#walkCore {
  transform-box: fill-box;
  transform-origin: center;
}
#walkGlow {
  animation: walkPulseGlow 1.6s ease-out infinite;
}
#walkCore {
  animation: walkPulseCore 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(179, 40, 31, 0.85));
}
@keyframes walkPulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(2.6);
    opacity: 0;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@keyframes walkPulseCore {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
@media (max-width: 920px) {
  .walk-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .walk-stage {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* ===================== Intro / prologue pages ===================== */
.intro-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
}
.intro-section.tint-a {
  background: linear-gradient(180deg, #0b0a0c, #131014);
}
.intro-section .intro-text p {
  font-size: 18px;
}
.intro-section .intro-text p.intro-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: var(--amber-glow);
  line-height: 1.6;
}
.intro-section .beat {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--blood-bright);
  text-align: center;
  margin: 30px auto;
  max-width: 640px;
  line-height: 1.4;
}
.intro-image {
  width: 100%;
  padding: 0 6vw;
  margin: 44px 0;
}
.intro-photo {
  position: relative;
  width: 100%;
  max-width: 1024px;
  aspect-ratio: 512/355;
  margin: 0 auto;
  background: repeating-linear-gradient(135deg, rgba(233, 223, 196, 0.02) 0 2px, transparent 2px 10px), radial-gradient(circle at 50% 40%, #2a262b, #100e11 75%);
  border: 1px dashed rgba(233, 223, 196, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}
.intro-photo span {
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fog);
  line-height: 1.6;
  padding: 20px;
}
.intro-photo-cap {
  margin-top: 12px;
  font-family: var(--font-type);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
  text-align: center;
}
/* map / closing */
.closing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6vw;
  background: linear-gradient(180deg, #17121a 0%, #0b0a0c 100%);
}
.map-svg {
  width: min(560px, 90vw);
  margin: 34px auto;
}
.closing blockquote {
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: left;
}
.status-stamp {
  display: inline-block;
  border: 2px solid var(--blood-bright);
  color: var(--blood-bright);
  font-family: var(--font-type);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  transform: rotate(-3deg);
  margin-top: 10px;
}
.disclaimer {
  margin-top: 34px;
  max-width: 560px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--fog);
  font-family: var(--font-body);
}
footer.credits {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 6vw;
  font-family: var(--font-type);
  font-size: 10px;
  color: var(--fog);
  opacity: 0.6;
  background: #0b0a0c;
}
/* ===================== Exhibit 007 — scrubbed distance map ===================== */
.exhibit-scroll-track {
  position: relative;
  height: 280vh;
  margin-top: 8px;
}
.exhibit-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8vh;
}
.map-exhibit {
  width: min(920px, 94vw, 122vh);
}
.map-frame {
  position: relative;
  aspect-ratio: 900/620;
  padding: 0;
  display: block;
}
.map-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-frame .street-grid line {
  stroke: rgba(233, 223, 196, 0.08);
  stroke-width: 1;
}
.map-body-dot {
  fill: #d926a5;
}
.map-pulse-ring {
  fill: none;
  stroke: #d926a5;
  stroke-width: 2;
  opacity: 0;
}
.map-pulse-ring.active {
  animation: map-pulse 2.2s ease-out infinite;
}
@keyframes map-pulse {
  0% {
    r: 9;
    opacity: 0.75;
    stroke-width: 2.5;
  }
  100% {
    r: 34;
    opacity: 0;
    stroke-width: 0.5;
  }
}
.map-house-fill {
  fill: var(--paper-dim);
  opacity: 0.5;
}
.map-house-rect {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.5;
}
.map-distance-line {
  fill: none;
  stroke: var(--blood-bright);
  stroke-width: 1.6;
  stroke-dasharray: 6 5;
}
.map-distance-cap {
  fill: var(--blood-bright);
}
.map-text {
  position: absolute;
  max-width: 220px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper-dim);
  font-family: var(--font-body);
}
.map-text .who {
  display: block;
  font-family: var(--font-type);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 6px;
}
.map-body-text {
  top: 5%;
  left: 4%;
  text-align: left;
}
.map-house-text {
  bottom: 8%;
  right: 4%;
  text-align: right;
}
.map-tag {
  position: absolute;
  font-family: var(--font-type);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--paper);
  background: var(--blood);
  padding: 5px 12px 6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.map-tag::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  width: 1px;
  height: 13px;
  background: var(--blood-bright);
}
@media (max-width: 640px) {
  .exhibit-scroll-track {
    height: 240vh;
  }
  .map-text {
    max-width: 130px;
    font-size: 11.5px;
  }
}
/* ===================== Suspects / background / timeline chapter ===================== */
.chapter-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  color: var(--paper);
  margin-bottom: 26px;
  text-shadow: 0 0 40px rgba(138, 28, 28, 0.2);
}
.body-text a {
  color: var(--amber-glow);
  text-decoration: underline;
  text-decoration-color: rgba(230, 178, 92, 0.4);
  text-underline-offset: 3px;
}
.body-text a:hover {
  text-decoration-color: var(--amber-glow);
}
.body-text mark {
  background: rgba(179, 40, 31, 0.28);
  color: var(--paper);
  padding: 0 3px;
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border: 1px solid rgba(230, 178, 92, 0.5);
  color: var(--amber-glow);
  background: transparent;
  font-family: var(--font-type);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 22px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.ghost-btn:hover {
  background: rgba(230, 178, 92, 0.1);
  border-color: var(--amber-glow);
}
.ghost-btn svg {
  width: 12px;
  height: 12px;
}
.fbi-exhibits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.fbi-exhibits a {
  display: block;
  width: min(250px, 42vw);
  text-decoration: none;
}
.fbi-exhibits img {
  width: 100%;
  border: 1px solid rgba(233, 223, 196, 0.2);
  filter: sepia(0.25) contrast(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}
.fbi-exhibits .caption {
  margin-top: 9px;
  font-family: var(--font-type);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--fog);
  line-height: 1.5;
}
.stub-text {
  font-style: italic;
  color: var(--fog) !important;
  opacity: 0.7;
}
.narrative-photo {
  margin: 28px 0;
}
.narrative-photo img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid rgba(233, 223, 196, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
  display: block;
}
.narrative-photo.small img {
  max-width: 360px;
}
.narrative-photo figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-type);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--fog);
}
.photo-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 0;
  justify-content: center;
}
.photo-row img {
  flex: 1 1 260px;
  max-width: 360px;
  border: 1px solid rgba(233, 223, 196, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}
.date-tag {
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blood-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.date-tag .line {
  width: 26px;
  height: 1px;
  background: var(--blood-bright);
}
.timeline-hero {
  text-align: center;
}
.timeline-hero .narrative-photo {
  margin-left: auto;
  margin-right: auto;
}
.timeline-hero .narrative-photo img {
  max-width: 280px;
  margin: 0 auto;
}
.placeholder-image {
  aspect-ratio: 4/3;
  border: 1px dashed rgba(233, 223, 196, 0.3);
  margin: 28px 0;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(135deg, rgba(233, 223, 196, 0.02) 0 2px, transparent 2px 10px), radial-gradient(circle at 50% 40%, #2a262b, #100e11 75%);
}
.placeholder-image span {
  font-family: var(--font-type);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fog);
  padding: 20px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .redact::before {
    display: none;
  }
  .scroll-cue svg {
    animation: none;
  }
  .map-pulse-ring.active {
    animation: none;
    opacity: 0.5;
  }
}
.hero-title {
  display: grid;
  text-transform: uppercase;
  font-family: "Old Typewriter", "Old Typewriter TTF", "Old Typewriter OTF", sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 10vw, 120px);
  color: var(--paper);
  text-shadow: 0 0 40px rgba(138, 28, 28, 0.25);
}
.hero-title > div {
  grid-area: 1 / 1 / -1 / -1;
  transform: rotate(-0.75deg);
}
.hero-title .top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
}
.hero-title .bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: linear-gradient(177deg, rgba(10, 10, 10, 0.2) 53%, var(--blood) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-0.02em);
}
@font-face {
  src: url(fonts/CrimsonText-Bold.ttf) format("truetype");
  font-family: "Crimson Text", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url(fonts/CrimsonText-Regular.ttf) format("truetype");
  font-family: "Crimson Text", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url(fonts/CrimsonText-BoldItalic.ttf) format("truetype");
  font-family: "Crimson Text", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}
@font-face {
  src: url(fonts/CrimsonText-SemiBold.ttf) format("truetype");
  font-family: "Crimson Text", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  src: url(fonts/CrimsonText-Italic.ttf) format("truetype");
  font-family: "Crimson Text", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  src: url(fonts/CrimsonText-SemiBoldItalic.ttf) format("truetype");
  font-family: "oswald";
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
@font-face {
  src: url("fonts/Old%20Typewriter.ttf") format("truetype");
  font-family: "Old Typewriter TTF", Georgia, serif;
  font-family: "Old Typewriter", "Old Typewriter TTF", "Old Typewriter OTF", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
/*
	@font-face {
	src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
	font-family: "Playfair Display", Georgia, serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: italic;
}
*/
@font-face {
  src: url(fonts/PlayfairDisplay-VariableFont_wght.ttf) format("truetype");
  font-family: "Playfair Display", Georgia, serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@font-face {
  src: url(fonts/SpecialElite-Regular.ttf) format("truetype");
  font-family: "Special Elite", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

