


:root {
  --ink:        #0d0d0d;
  --paper:      #fafaf7;
  --red:        #d62828;
  --blue:       #1565c0;
  --yellow:     #f5a800;
  --green:      #2e7d32;
  --mid:        #3a3a3a;
  --rule:       #e0ddd6;
  --card-bg:    #ffffff;
  --mono:       'Source Code Pro', 'Courier New', monospace;
  --slab:       'Roboto Slab', Georgia, serif;
  --radius:     4px;
  --radius-lg:  8px;
  --max-w:      1160px;
  --space-xs:   clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:   clamp(0.75rem, 2vw, 1.25rem);
  --space-md:   clamp(1.25rem, 3vw, 2rem);
  --space-lg:   clamp(2rem, 5vw, 3.5rem);
  --space-xl:   clamp(3rem, 7vw, 5.5rem);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--mono);
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(0.875rem, 1.1vw + 0.5rem, 1rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }


.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}


.btn {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65em 1.5em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: #b71c1c; border-color: #b71c1c; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-nav {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  padding: 0.45em 1.1em;
}
.btn-nav:hover { background: #b71c1c; border-color: #b71c1c; }

.btn-lg { padding: 0.85em 2em; font-size: 0.9rem; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.85rem;
}


.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.logo-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.65rem;
  border-radius: 2px;
}
.logo-text {
  font-family: var(--slab);
  font-weight: 700;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: #fff;
  line-height: 1.2;
}
.logo-text em {
  color: var(--red);
  font-style: normal;
}


.site-header nav ul[data-pn-nav="primary"] {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}
.site-header nav a {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: #fff;
  border-color: var(--red);
}
.site-header nav [data-pn-cta] a {
  border-bottom: none;
  padding-bottom: 0;
}


.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: var(--space-xl);
  min-height: 88vh;
  display: flex;
  align-items: center;
}


.hero-grid-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  right: -2%;
  left: auto;
  width: 50%;
  opacity: 0.07;
  pointer-events: none;
  gap: 3px;
  padding: 2rem;
}
@media (max-width: 700px) { .hero-grid-bg { width: 100%; opacity: 0.05; } }

.hg-row {
  display: flex;
  gap: 3px;
}
.hg-cell {
  width: clamp(28px, 5vw, 48px);
  height: clamp(28px, 5vw, 48px);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(0.65rem, 1.5vw, 1rem);
  flex-shrink: 0;
}
.hg-cell.dark { background: rgba(255,255,255,0.8); border-color: transparent; }
.hg-cell.filled { background: var(--red); border-color: var(--red); color: #fff; }


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}
.hero-title {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-md);
}
.hero-title .accent { color: var(--red); }
.hero-sub {
  font-family: var(--mono);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.75;
}
.hero-cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero-stats {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-md);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}


.intro-strip {
  background: var(--paper);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--rule);
}
.intro-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 720px) { .intro-strip-inner { grid-template-columns: 1fr; } }

.intro-photo-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}
.intro-copy h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--ink);
}
.intro-copy p {
  margin-bottom: var(--space-sm);
  color: var(--mid);
}
.intro-copy .btn { margin-top: var(--space-sm); }


.puzzles {
  background: var(--ink);
  padding-block: var(--space-xl);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.section-sub {
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.3vw, 0.97rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-inline: auto;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: var(--space-md);
}

.puzzle-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--ink);
  transition: transform 0.18s, box-shadow 0.18s;
}
.puzzle-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.card-accent-red  { border-top-color: var(--red); }
.card-accent-blue { border-top-color: var(--blue); }
.card-accent-yellow { border-top-color: var(--yellow); }
.card-accent-green  { border-top-color: var(--green); }

.card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0.15em 0.55em;
  margin-bottom: var(--space-xs);
  width: fit-content;
}
.card-body h3 {
  font-family: var(--slab);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: var(--space-xs);
  color: var(--ink);
}
.card-body p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-sm);
}
.card-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.15s;
  width: fit-content;
}
.card-link:hover { border-color: var(--red); }
.card-accent-blue  .card-link { color: var(--blue); }
.card-accent-blue  .card-link:hover { border-color: var(--blue); }
.card-accent-yellow .card-link { color: #8a5e00; }
.card-accent-yellow .card-link:hover { border-color: #8a5e00; }
.card-accent-green  .card-link { color: var(--green); }
.card-accent-green  .card-link:hover { border-color: var(--green); }


.feature-archive {
  background: var(--paper);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--rule);
}
.feature-archive-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 800px) { .feature-archive-inner { grid-template-columns: 1fr; } }

.fa-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-xs);
}
.fa-copy h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.fa-copy > p {
  color: var(--mid);
  margin-bottom: var(--space-md);
}
.archive-list {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.archive-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--rule);
}
.archive-list li:first-child { border-top: 1px solid var(--rule); }
.al-pub {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  min-width: 170px;
  flex-shrink: 0;
}
.al-desc {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--mid);
}


.fa-clue-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: sticky;
  top: calc(60px + var(--space-md));
}
.clue-card {
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: baseline;
}
.clue-card--accent { background: var(--red); }
.clue-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.65;
  flex-shrink: 0;
  width: 2.5rem;
}
.clue-text {
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.5;
}


.fame-strip {
  background: #111;
  color: #fff;
  padding-block: var(--space-xl);
}
.section-header--light h2 { color: #fff; }
.section-header--light .section-sub { color: rgba(255,255,255,0.6); }
.fame-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}
.fame-card {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: border-color 0.18s;
}
.fame-card:hover { border-color: var(--red); }
.fame-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.fame-body {
  padding: var(--space-md);
}
.fame-body h3 {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: var(--space-xs);
}
.fame-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}


.cta-section {
  background: var(--red);
  color: #fff;
  padding-block: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-grid-deco {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.cta-cell {
  font-size: 1.2rem;
  opacity: 0.25;
}
.cta-cell--b { opacity: 0.08; }
.cta-section h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}
.cta-section p {
  font-family: var(--mono);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}
.cta-btn-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.cta-section .btn-primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.cta-section .btn-ghost { border-color: rgba(255,255,255,0.6); }


.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-lg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--slab);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  display: block;
  margin-bottom: var(--space-xs);
  text-decoration: none;
}
.footer-brand p {
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.footer-nav a:hover { color: #fff; border-color: var(--red); }
.footer-bottom {
  padding-block: var(--space-md);
  text-align: center;
}
.footer-bottom small {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}



.about-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: var(--space-xl);
}

.about-hero-grid-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: auto;
  right: -2%;
  width: 46%;
  opacity: 0.06;
  pointer-events: none;
  gap: 3px;
  padding: 2rem;
}
@media (max-width: 700px) {
  .about-hero-grid-bg { width: 100%; opacity: 0.04; }
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .about-hero-inner { grid-template-columns: 1fr; }
}

.about-hero-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--red);
  box-shadow: 10px 10px 0 rgba(214,40,40,0.35);
}
@media (max-width: 720px) {
  .about-hero-photo { aspect-ratio: 16/9; order: -1; }
}

.about-bio {
  background: var(--paper);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--rule);
}

.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 860px) {
  .about-bio-inner { grid-template-columns: 1fr; }
}

.about-sidebar {
  position: sticky;
  top: calc(64px + var(--space-md));
}

.sidebar-clue-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-body-copy h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.about-body-copy h3 {
  font-family: var(--slab);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--ink);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  border-left: 4px solid var(--red);
  padding-left: var(--space-sm);
}

.about-body-copy p {
  color: var(--mid);
  margin-bottom: var(--space-sm);
}

.about-fame {
  background: #111;
  color: #fff;
  padding-block: var(--space-xl);
}

.about-interests {
  background: var(--paper);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--rule);
}

.about-interests-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 720px) {
  .about-interests-inner { grid-template-columns: 1fr; }
}

.interests-img-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

.interests-copy h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.interests-copy p {
  color: var(--mid);
  margin-bottom: var(--space-sm);
}

.interests-copy .btn { margin-top: var(--space-sm); }

.about-credits {
  background: var(--ink);
  padding-block: var(--space-xl);
}

.about-credits .section-header h2 { color: #fff; }
.about-credits .section-sub { color: rgba(255,255,255,0.6); }

.credits-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
}

.credits-table thead {
  background: var(--red);
}

.credits-table th {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.85rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}

.credits-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}

.credits-table tbody tr:last-child { border-bottom: none; }

.credits-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.03); }

.credits-table tbody tr:hover { background: rgba(255,255,255,0.08); }

.credits-table td {
  padding: 0.85rem 1.25rem;
  color: rgba(255,255,255,0.75);
  vertical-align: top;
  line-height: 1.55;
}

.credits-table td:first-child {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
}

.credits-table td:last-child {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  white-space: nowrap;
}




.contact-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: var(--space-xl);
  min-height: 38vh;
  display: flex;
  align-items: center;
}
.contact-hero-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  right: -2%;
  left: auto;
  width: 46%;
  opacity: 0.07;
  pointer-events: none;
  gap: 3px;
  padding: 2rem;
}
@media (max-width: 700px) { .contact-hero-grid { width: 100%; opacity: 0.05; } }
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}


.contact-main {
  background: var(--paper);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--rule);
}
.contact-main-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-main-inner { grid-template-columns: 1fr; }
}


.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-block {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--red);
  padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 4px);
  box-shadow: 4px 4px 0 var(--rule);
}
.contact-block-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-xs);
}
.contact-block h2 {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.contact-block p {
  color: var(--mid);
  font-size: 0.88rem;
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}
.contact-email-link {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  margin-block: var(--space-sm);
  transition: color 0.15s, border-color 0.15s;
  word-break: break-all;
}
.contact-email-link:hover { color: var(--ink); border-color: var(--ink); }
.contact-note {
  font-size: 0.8rem;
  color: var(--mid);
  opacity: 0.8;
  margin-bottom: 0;
}


.contact-topics-heading {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.topic-item {
  padding: var(--space-sm) var(--space-md);
  border-left: 4px solid var(--rule);
  margin-bottom: var(--space-sm);
  background: var(--card-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.topic-item p {
  font-size: 0.83rem;
  color: var(--mid);
  margin-top: 0.3rem;
  line-height: 1.65;
}
.topic-red    { border-left-color: var(--red); }
.topic-blue   { border-left-color: var(--blue); }
.topic-yellow { border-left-color: var(--yellow); }
.topic-green  { border-left-color: var(--green); }

.topic-label {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}


.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(60px + var(--space-md));
}
.sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}
.sidebar-photo-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sidebar-card-body {
  padding: var(--space-md);
}
.sidebar-card-body h3 {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: var(--space-xs);
  line-height: 1.25;
}
.sidebar-card-body p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}
.sidebar-card-body .fa-eyebrow {
  margin-bottom: var(--space-xs);
}
.clue-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}


.contact-faq {
  background: var(--ink);
  padding-block: var(--space-xl);
}
.contact-faq .section-header h2 { color: #fff; }
.contact-faq .section-sub { color: rgba(255,255,255,0.6); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr));
  gap: var(--space-sm);
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.18s;
}
.faq-item:hover { border-color: var(--red); }
.faq-item[open] { border-color: var(--red); }

.faq-q {
  font-family: var(--slab);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  line-height: 1.35;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.18s;
  line-height: 1;
}
.faq-item[open] .faq-q::after {
  content: '\2212';
}

.faq-a {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid #2a2a2a;
  padding-top: var(--space-sm);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
