/* —— Newsprint tokens —— */
:root {
  --newsprint: #e7dcc7;
  --newsprint-deep: #d8cdb6;
  --ink: #1a1714;
  --ink-faded: #3a3530;
  --gray: #6a635a;
  --rule: #2a2622;
  --oxblood: #6e1f24;
  --oxblood-soft: rgba(110, 31, 36, 0.16);
  --navy: #243044;
  --navy-soft: rgba(36, 48, 68, 0.18);
  --font-display: "Libre Baskerville", "Times New Roman", Times, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-mono: "Special Elite", "Courier New", Courier, monospace;
  --space: clamp(1.1rem, 3.2vw, 2.5rem);
  --content: 72rem;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --pointer-x: 50%;
  --pointer-y: 40%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--newsprint);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(circle, rgba(26, 23, 20, 0.055) 0.7px, transparent 0.8px),
    linear-gradient(180deg, #efe6d4 0%, var(--newsprint) 28%, var(--newsprint-deep) 100%);
  background-size: auto, 5px 5px, auto;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  color: var(--newsprint);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Pointer-reactive ambient web —— */
.web-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.web-field line {
  stroke: var(--ink);
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
}

.web-field circle {
  fill: var(--oxblood);
  opacity: 0.55;
}

.masthead,
main,
.colophon {
  position: relative;
  z-index: 1;
}

/* —— Shared type labels —— */
.kicker,
.byline,
.section__deck,
.job__dateline,
.notice__label,
.rail-meta,
.scroll-cue__label,
.masthead__eyebrow,
.masthead__tag,
.issue,
.dateline,
.weather {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  color: var(--oxblood);
}

/* —— Spider printer’s mark —— */
.spider-mark {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--oxblood);
  flex-shrink: 0;
}

.spider-mark--sm {
  width: 1.4rem;
  height: 1.4rem;
}

.spider-mark--lg {
  width: 2.6rem;
  height: 2.6rem;
}

/* —— Masthead (full bleed) —— */
.masthead {
  width: 100%;
  border-bottom: 1px solid rgba(42, 38, 34, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.35), transparent),
    rgba(231, 220, 199, 0.92);
  backdrop-filter: blur(6px);
}

.masthead__band {
  width: 100%;
  padding: 0.85rem var(--space) 0.95rem;
}

.masthead__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  color: var(--ink-faded);
}

.masthead__meta p {
  margin: 0;
}

.masthead__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.masthead__titles {
  min-width: 0;
}

.masthead__eyebrow {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.16em;
  color: var(--ink);
}

.masthead__tag {
  margin: 0.25rem 0 0;
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  padding-top: 0.75rem;
  border-top: 3px double var(--rule);
}

.nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-faded);
  padding: 0.2rem 0;
}

.nav a span {
  position: relative;
  z-index: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--oxblood);
  transition: right 0.35s var(--ease);
}

.nav a::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 50%;
  width: 0;
  height: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    opacity 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--oxblood);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  right: 0;
}

.nav a:hover::before,
.nav a:focus-visible::before {
  width: 0.45rem;
  height: 0.45rem;
  opacity: 1;
  border-color: var(--oxblood);
  background:
    linear-gradient(var(--oxblood), var(--oxblood)) center / 1px 60% no-repeat,
    linear-gradient(var(--oxblood), var(--oxblood)) center / 60% 1px no-repeat;
}

.nav a:focus-visible,
.btn:focus-visible,
.contact__line a:focus-visible,
.social a:focus-visible,
.scroll-cue:focus-visible,
.skip-link:focus {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}

/* —— Hero front page —— */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(4.5rem, 8vh, 5.5rem);
  border-bottom: 1px solid rgba(42, 38, 34, 0.28);
  overflow: hidden;
}

.hero__web {
  position: absolute;
  inset: 0;
  color: var(--ink);
  opacity: 0.1;
  pointer-events: none;
  transform: translate3d(
    calc((var(--pointer-x) - 50%) * 0.04),
    calc((var(--pointer-y) - 50%) * 0.04),
    0
  );
  transition: transform 0.45s var(--ease);
}

.hero__web-svg {
  width: 100%;
  height: 100%;
}

.hero__grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 var(--space);
  align-items: start;
}

.hero__center {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  order: 1;
}

.hero__rail--left {
  order: 2;
}

.hero__rail--right {
  order: 3;
}

.hero__rail {
  position: relative;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(42, 38, 34, 0.25);
}

.hero__kicker {
  margin-bottom: 1rem;
}

.hero__insignia {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.stamp {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1.5px solid var(--oxblood);
  transform: rotate(-4deg);
  box-shadow: 1px 1px 0 var(--navy-soft);
}

.hero__name {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 9vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  min-height: 2.2em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.typed-name {
  display: inline;
}

.caret {
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  margin-left: 0.08em;
  background: var(--oxblood);
  vertical-align: -0.05em;
  animation: blink 0.9s steps(1) infinite;
}

.caret.is-done {
  animation-duration: 1.1s;
}

@keyframes blink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero__sub {
  margin: 0 0 1.1rem;
  max-width: 36ch;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-faded);
  min-height: 0;
}

.byline {
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  color: var(--gray);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(42, 38, 34, 0.3);
  max-width: 42rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.rail-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.rail-meta {
  margin: 0.75rem 0 0;
  font-size: 0.65rem;
  color: var(--gray);
}

/* —— Spider-Sense file —— */
.sense__deck {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-faded);
  max-width: 22ch;
}

.sense__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.sense__item {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.05rem;
  cursor: default;
  outline: none;
}

.sense__item + .sense__item {
  border-top: none;
}

.sense__strand {
  position: absolute;
  left: 0.2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(42, 38, 34, 0.35);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sense__strand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.05rem;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid rgba(42, 38, 34, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--newsprint);
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.sense__item:first-child .sense__strand {
  top: 1.05rem;
}

.sense__item:last-child .sense__strand {
  bottom: calc(100% - 1.05rem);
}

.sense__label {
  margin: 0 0 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.sense__value {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--ink);
  transition: opacity 0.35s var(--ease);
}

.sense__value.is-swap {
  opacity: 0;
}

.sense__ripple {
  position: absolute;
  left: 0.2rem;
  top: 1.05rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 1px solid transparent;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}

.sense__item:hover .sense__strand,
.sense__item:focus-visible .sense__strand,
.sense__item.is-active .sense__strand {
  background: var(--oxblood);
  box-shadow: 0 0 0 1px rgba(110, 31, 36, 0.08);
}

.sense__item:hover .sense__strand::before,
.sense__item:focus-visible .sense__strand::before,
.sense__item.is-active .sense__strand::before {
  border-color: var(--oxblood);
  background: var(--oxblood);
  box-shadow: 0 0 0 3px var(--oxblood-soft);
}

.sense__item:hover .sense__label,
.sense__item:focus-visible .sense__label,
.sense__item.is-active .sense__label {
  color: var(--oxblood);
}

.sense__item:hover .sense__ripple,
.sense__item:focus-visible .sense__ripple {
  animation: sense-ripple 0.9s var(--ease);
}

@keyframes sense-ripple {
  0% {
    opacity: 0.55;
    width: 0.42rem;
    height: 0.42rem;
    border-color: var(--oxblood);
  }
  100% {
    opacity: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-color: rgba(110, 31, 36, 0.15);
  }
}

.sense__item:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}

.pull-quote {
  margin: 0 0 1.25rem;
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 2px solid var(--oxblood);
}

.pull-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink-faded);
}

.notice-mini {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(42, 38, 34, 0.4);
  background: rgba(255, 252, 245, 0.35);
}

.notice-mini p:last-child {
  margin: 0;
  color: var(--ink-faded);
  font-size: 0.95rem;
}

.redact__bar {
  display: inline-block;
  width: 5.5rem;
  height: 0.72em;
  margin: 0 0.2rem;
  vertical-align: -0.08em;
  background: repeating-linear-gradient(
    -12deg,
    var(--ink) 0 6px,
    transparent 6px 8px
  );
  opacity: 0.75;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink-faded);
}

.scroll-cue__label {
  font-size: 0.65rem;
}

.scroll-cue__line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(var(--oxblood), transparent);
  transform-origin: top;
  animation: drip 1.6s var(--ease) infinite;
}

@keyframes drip {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--newsprint);
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 1px 1px 0 var(--oxblood-soft);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-1px, -1px);
  background: var(--oxblood);
  border-color: var(--oxblood);
  box-shadow: 2px 2px 0 var(--navy-soft);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: none;
  filter: contrast(1.05);
}

.btn--ghost {
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--oxblood);
  background: transparent;
  border-color: var(--oxblood);
}

/* —— Sections (full bleed) —— */
.section {
  width: 100%;
  padding: clamp(2.75rem, 7vh, 4.5rem) 0;
  border-bottom: 1px solid rgba(42, 38, 34, 0.22);
}

.section--band {
  background:
    linear-gradient(90deg, rgba(36, 48, 68, 0.035), transparent 30%, transparent 70%, rgba(110, 31, 36, 0.04)),
    rgba(216, 205, 182, 0.35);
}

.section__frame {
  width: 100%;
  padding: 0 var(--space);
}

.section__frame--split {
  display: grid;
  gap: 1.5rem;
}

.section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  max-width: var(--content);
}

.section__header h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.015em;
}

.section__deck {
  margin: 0;
  font-size: 0.7rem;
  color: var(--gray);
}

.web-connect {
  height: 1px;
  margin: 0 0 1.75rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 38, 34, 0.45) 8%,
    rgba(110, 31, 36, 0.55) 50%,
    rgba(42, 38, 34, 0.45) 92%,
    transparent
  );
  position: relative;
}

.web-connect::before,
.web-connect::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid rgba(110, 31, 36, 0.65);
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    linear-gradient(rgba(110, 31, 36, 0.8), rgba(110, 31, 36, 0.8)) center /
      1px 55% no-repeat,
    linear-gradient(rgba(110, 31, 36, 0.8), rgba(110, 31, 36, 0.8)) center /
      55% 1px no-repeat;
}

.web-connect::before {
  left: 6%;
}

.web-connect::after {
  right: 6%;
}

/* —— Cards / jobs —— */
.dispatches {
  display: grid;
  gap: 1.15rem;
  max-width: none;
}

.card {
  position: relative;
  background: rgba(255, 252, 245, 0.28);
  border: 1px solid rgba(42, 38, 34, 0.22);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(110, 31, 36, 0.45);
  box-shadow:
    0 8px 20px rgba(26, 23, 20, 0.08),
    2px 0 0 var(--oxblood-soft);
}

.card:hover::after,
.card:focus-within::after {
  opacity: 1;
  border-color: rgba(36, 48, 68, 0.28);
  transform: translate(2px, -1px);
}

.job {
  padding: 1.15rem 1.15rem 1.2rem;
}

.job--solo {
  max-width: 36rem;
}

.job__dateline {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  color: var(--oxblood);
}

.job h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.job__place {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-faded);
}

.job ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-faded);
}

.job li {
  margin-bottom: 0.35rem;
}

.job li::marker {
  color: var(--oxblood);
}

/* —— Skills —— */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--content);
}

.skills li {
  padding: 0.35rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faded);
  border: 1px solid rgba(42, 38, 34, 0.35);
  background: rgba(255, 252, 245, 0.35);
  transition:
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.skills li:hover,
.skills li:focus-visible {
  color: var(--oxblood);
  border-color: var(--oxblood);
  box-shadow: 1px 0 0 var(--navy-soft);
  transform: translateY(-1px);
}

.notice {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  max-width: 40rem;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1.35rem,
      rgba(42, 38, 34, 0.04) 1.35rem,
      rgba(42, 38, 34, 0.04) calc(1.35rem + 1px)
    ),
    rgba(255, 252, 245, 0.28);
}

.notice__label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  color: var(--oxblood);
}

.aside {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-faded);
}

/* —— Contact —— */
.contact__box {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 2px solid var(--ink);
  max-width: 40rem;
  background: rgba(255, 252, 245, 0.42);
}

.contact__stamp {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.22rem 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1.5px solid var(--oxblood);
  transform: rotate(8deg);
  opacity: 0.9;
  pointer-events: none;
  box-shadow: 1px 1px 0 var(--navy-soft);
}

.contact__line {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact__line a {
  text-decoration: none;
  border-bottom: 1.5px solid var(--oxblood);
  transition: color 0.2s var(--ease), text-shadow 0.2s var(--ease);
}

.contact__line a:hover,
.contact__line a:focus-visible {
  color: var(--oxblood);
  text-shadow: 0.7px 0 0 rgba(110, 31, 36, 0.28);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(42, 38, 34, 0.25);
}

.social a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-faded);
}

.social a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.15rem;
  height: 1px;
  background: var(--oxblood);
  transition: right 0.3s var(--ease);
}

.social a:hover,
.social a:focus-visible {
  color: var(--oxblood);
}

.social a:hover::after,
.social a:focus-visible::after {
  right: 0;
}

/* —— Footer —— */
.colophon {
  width: 100%;
  padding: 2rem var(--space) 2.75rem;
  border-top: 4px double var(--rule);
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

.colophon__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.colophon p {
  margin: 0;
}

.colophon__fine {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(0.9rem);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (min-width: 720px) {
  .masthead__meta {
    grid-template-columns: 1fr auto 1fr;
    align-items: baseline;
  }

  .dateline {
    justify-self: start;
  }

  .issue {
    justify-self: center;
    text-align: center;
  }

  .weather {
    justify-self: end;
    text-align: right;
  }

  .dispatches {
    grid-template-columns: 1fr 1fr;
  }

  .dispatches .job:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 36rem;
  }

  .section__frame--split {
    grid-template-columns: 1fr 1.2fr;
    align-items: end;
  }
}

@media (min-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(13rem, 0.85fr) minmax(22rem, 1.5fr) minmax(13rem, 0.9fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
  }

  .hero__center,
  .hero__rail--left,
  .hero__rail--right {
    order: initial;
  }

  .hero__rail {
    border-top: none;
    padding-top: 0;
  }

  .hero__rail--left {
    border-right: 1px solid rgba(42, 38, 34, 0.22);
    padding-right: 1.25rem;
  }

  .hero__rail--right {
    border-left: 1px solid rgba(42, 38, 34, 0.22);
    padding-left: 1.25rem;
  }

  .hero__center {
    max-width: none;
    justify-self: center;
    width: 100%;
  }

  .dispatches {
    grid-template-columns: repeat(3, 1fr);
  }

  .dispatches .job:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact__stamp {
    position: static;
    display: inline-block;
    margin: 0 0 0.85rem;
    transform: rotate(-3deg);
  }

  .masthead__brand {
    align-items: flex-start;
  }

  .hero__name {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .caret {
    animation: none;
    opacity: 1;
  }

  .scroll-cue__line {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .nav a,
  .nav a::after,
  .nav a::before,
  .skills li,
  .card,
  .card::after,
  .social a::after,
  .hero__web,
  .sense__strand,
  .sense__strand::before,
  .sense__value {
    transition: none;
  }

  .sense__item:hover .sense__ripple,
  .sense__item:focus-visible .sense__ripple {
    animation: none;
    opacity: 0.35;
    width: 0.9rem;
    height: 0.9rem;
    border-color: var(--oxblood);
  }

  .btn:hover,
  .btn:focus-visible,
  .card:hover,
  .card:focus-within {
    transform: none;
  }
}
