:root {
  --paper: #f4efe4;
  --paper-deep: #eadcc7;
  --paper-light: #fbf8f1;
  --navy: #0d172c;
  --navy-soft: #182846;
  --slate: #506070;
  --blue: #3b82f6;
  --teal: #0d9488;
  --violet: #6366f1;
  --coral: #f06449;
  --line: rgb(13 23 44 / 16%);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.paper-surface {
  background-color: var(--paper-deep);
  background-image:
    radial-gradient(circle at 22% 14%, rgb(255 255 255 / 28%), transparent 24%),
    radial-gradient(circle at 76% 68%, rgb(255 255 255 / 20%), transparent 30%),
    repeating-linear-gradient(17deg, rgb(73 52 30 / 1.8%) 0 1px, transparent 1px 5px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 88px;
  padding: 0 3.75vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  background: rgb(248 244 236 / 94%);
  backdrop-filter: blur(14px);
}

.brand-lockup { display: flex; align-items: baseline; gap: 26px; min-width: 0; }
.brand-name {
  flex: 0 0 auto;
  font: 700 clamp(1.55rem, 2vw, 2rem)/1 var(--serif);
  letter-spacing: .01em;
}
.brand-lockup span {
  color: var(--slate);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 52px); white-space: nowrap; }
.desktop-nav a { position: relative; padding: 33px 0 29px; font-size: .83rem; font-weight: 700; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }
.mobile-nav { display: none; }

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.home-hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  background: transparent;
}
.home-intro, .home-fields { position: relative; min-height: 720px; }
.home-intro {
  padding: 4.5vh 5vw 4.5vh 3.75vw;
  border-right: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.hero-copy { position: relative; z-index: 5; max-width: 780px; }
.hero-copy h1 {
  margin: .45rem 0 .7rem;
  font: 400 clamp(3.4rem, 3.8vw, 4.65rem)/.98 var(--serif);
  letter-spacing: -.045em;
}
.hero-claim {
  margin: 0;
  font: 400 clamp(1.8rem, 2.2vw, 2.65rem)/1.08 var(--serif);
  letter-spacing: -.025em;
}
.hero-promise {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  color: var(--slate);
  font-size: clamp(.92rem, 1.05vw, 1.18rem);
  line-height: 1.55;
}
.hero-promise span { width: 46px; height: 3px; background: var(--teal); }
.hero-promise p { margin: 0; }
.hero-composition {
  position: absolute;
  z-index: 2;
  inset: 260px 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.hero-composition img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}
.hero-contact {
  position: absolute;
  z-index: 6;
  left: 3.75vw;
  bottom: 5.5%;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
}

.home-fields { padding: 4.5vh 4.4vw 4vh 2.5vw; display: flex; flex-direction: column; background: #e9e1d2; }
.home-fields .fields-heading h2 { font-size: clamp(2.4rem, 2.55vw, 3.05rem); }
.fields-heading h2,
.section-heading h2,
.human-department h2,
.profile-bridge h2,
.site-footer h2 {
  margin: .5rem 0 .35rem;
  font: 400 clamp(2rem, 3.1vw, 3.7rem)/1.05 var(--serif);
  letter-spacing: -.03em;
}
.fields-heading > p:last-child,
.section-heading > p:last-child { margin: 0; color: var(--slate); font-size: .96rem; }
.field-list { display: grid; gap: 12px; margin-top: 18px; }
.field-card {
  --field-accent: var(--blue);
  position: relative;
  min-height: 230px;
  padding: 18px 18px 18px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 196px;
  gap: 18px;
  align-items: stretch;
  border-radius: 20px;
  background: rgb(251 248 241 / 96%);
  box-shadow: 0 10px 25px rgb(13 23 44 / 6%);
}
.field-card--02 { --field-accent: var(--teal); }
.field-card--03 { --field-accent: var(--violet); }
.field-card::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 4px;
  height: 44px;
  border-radius: 0 4px 4px 0;
  background: var(--field-accent);
}
.field-copy { min-width: 0; padding: 8px 0 3px; }
.field-label {
  margin: 0;
  color: var(--field-accent);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.field-card h3 { margin: 15px 0 10px; font: 400 clamp(1.55rem, 1.8vw, 2.15rem)/1 var(--serif); }
.field-card p:not(.field-label) { max-width: 420px; margin: 0; color: var(--slate); font-size: .93rem; line-height: 1.5; }
.field-card a,
.post-card span,
.text-link,
.primary-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 800;
}
.field-card a:hover,
.field-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.primary-link:hover,
.primary-link:focus-visible { border-color: var(--teal); }
.field-art {
  min-width: 0;
  border-radius: 16px;
  background-image: url("/assets/pb2026/start-reference.png");
  background-repeat: no-repeat;
  background-size: 1920px 1080px;
}
.field-art--recruiting { background-position: -1619px -260px; }
.field-art--employer { background-position: -1619px -503px; }
.field-art--development { background-position: -1619px -745px; }
.scroll-cue {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--slate);
  font-size: .72rem;
}
.scroll-cue span { color: var(--teal); font-size: 1.2rem; }

.editorial-section { padding: clamp(72px, 10vw, 150px) 6vw; background: var(--paper-light); }
.section-heading { max-width: 820px; }
.post-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.post-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdf8;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover, .post-card:focus-visible { transform: translateY(-4px); box-shadow: 0 22px 52px rgb(13 23 44 / 10%); }
.post-card img { width: 100%; height: 100%; object-fit: cover; }
.post-card > div { padding: clamp(24px, 3vw, 44px); }
.post-card h3 { margin: 15px 0; font: 400 clamp(1.7rem, 2.5vw, 2.75rem)/1.05 var(--serif); }
.post-card > div > p:not(.eyebrow) { color: var(--slate); line-height: 1.65; }

.human-department {
  padding: clamp(70px, 9vw, 140px) 8vw;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.human-department > div:last-child { color: var(--slate); font-size: 1.08rem; line-height: 1.75; }
.profile-bridge { padding: clamp(72px, 10vw, 150px) 8vw; text-align: center; background: var(--navy); color: var(--paper-light); }
.profile-bridge .eyebrow { color: #50c5b7; }
.profile-bridge p:not(.eyebrow) { max-width: 680px; margin: 18px auto 0; color: #cbd1dc; line-height: 1.7; }
.profile-bridge .primary-link { margin-top: 28px; border-color: rgb(255 255 255 / 30%); }

/* Abteilung Mensch & Videoseiten */
.series-page,
.video-story-page { background: var(--paper-light); }
.series-mast {
  padding: clamp(66px, 8vw, 126px) 7vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 7vw;
  align-items: end;
}
.series-mast h1,
.video-story-mast h1 {
  margin: 18px 0 0;
  font: 400 clamp(4.2rem, 8vw, 8.8rem)/.83 var(--serif);
  letter-spacing: -.055em;
}
.series-mast > p:last-child {
  margin: 0;
  max-width: 52ch;
  color: var(--navy-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}
.series-section { padding: clamp(64px, 7vw, 108px) 7vw; }
.series-section .section-heading { max-width: 780px; margin-bottom: 48px; }
.episode-list { display: grid; gap: 28px; }
.episode-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(320px, .85fr) 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgb(13 23 44 / 6%);
}
.episode-media { position: relative; min-height: 320px; overflow: hidden; background: var(--navy); }
.episode-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.episode-media span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-light);
  background: var(--teal);
  font-size: 1.15rem;
  box-shadow: 0 10px 25px rgb(13 23 44 / 22%);
}
.episode-media:hover img,
.episode-media:focus-visible img { transform: scale(1.025); }
.episode-copy { padding: clamp(34px, 4vw, 64px); align-self: center; }
.episode-copy h3 { margin: 18px 0; font: 400 clamp(2.1rem, 3.4vw, 3.8rem)/.96 var(--serif); letter-spacing: -.035em; }
.episode-copy > p:not(.eyebrow) { max-width: 62ch; color: var(--slate); line-height: 1.7; }
.episode-links { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 18px 28px; font-size: .82rem; font-weight: 800; }
.episode-links a { padding-bottom: 4px; border-bottom: 1px solid var(--line); }
.video-library { padding: clamp(64px, 7vw, 108px) 7vw; }
.video-library .section-heading { max-width: 760px; margin-bottom: 44px; }
.video-library-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.video-library-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(251 248 241 / 95%);
}
.video-library-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.video-library-card > div { padding: 26px; }
.video-library-card h3 { margin: 16px 0 12px; font: 400 1.8rem/1.05 var(--serif); }
.video-library-card p:not(.eyebrow) { color: var(--slate); font-size: .9rem; line-height: 1.6; }
.video-library-card span { display: inline-block; margin-top: 12px; padding-bottom: 4px; border-bottom: 1px solid var(--teal); font-size: .8rem; font-weight: 800; }

.video-story-mast { padding: clamp(58px, 7vw, 98px) 7vw clamp(60px, 7vw, 94px); }
.video-story-mast h1 { max-width: 980px; font-size: clamp(3.8rem, 7vw, 7.6rem); }
.video-story-mast > p:last-child { max-width: 70ch; margin: 30px 0 0; color: var(--navy-soft); font-size: 1.05rem; line-height: 1.75; }
.video-viewer-section { padding: clamp(52px, 7vw, 96px) 7vw 110px; }
.video-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #071020;
  box-shadow: 0 22px 64px rgb(13 23 44 / 18%);
}
.video-shell video { width: 100%; max-height: min(72svh, 760px); display: block; background: #071020; object-fit: contain; }
.video-followup-card {
  width: min(100%, 1180px);
  margin: 28px auto 0;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}
.video-followup-card h2 { margin: 10px 0 0; font: 400 clamp(1.7rem, 2.6vw, 2.7rem)/1.05 var(--serif); }
.video-followup-card .primary-link { flex: 0 0 auto; }

.site-footer {
  padding: 72px 7vw 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 80px;
  background: #f7f2e9;
}
.site-footer h2 { max-width: 760px; font-size: clamp(2rem, 3.5vw, 4rem); }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; padding-top: 12px; font-weight: 700; }
.footer-links a { padding-bottom: 4px; border-bottom: 1px solid var(--line); }
.footer-meta {
  grid-column: 1 / -1;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: .78rem;
}

/* Profil: die blaue Spur */
.trail-page {
  min-height: calc(100svh - 88px);
  overflow: visible;
  background-color: var(--paper-deep);
}
.trail-intro {
  position: relative;
  z-index: 5;
  min-height: 220px;
  padding: 52px 3.75vw 24px;
  display: grid;
  grid-template-columns: 1.12fr .92fr .74fr;
  gap: 4vw;
  align-items: start;
}
.trail-title-block { padding-right: 3vw; border-right: 1px solid var(--line); }
.trail-title-block h1 {
  margin: 12px 0 9px;
  font: 400 clamp(3.2rem, 4.4vw, 5.2rem)/.98 var(--serif);
  letter-spacing: -.045em;
}
.trail-title-block > p:last-child,
.trail-cta p {
  margin: 0;
  color: var(--slate);
  font-size: .94rem;
  line-height: 1.55;
}
.trail-quote { margin: -4px 0 0; }
.trail-quote p { margin: 0; font: 400 clamp(1.55rem, 2vw, 2.35rem)/1.12 var(--serif); }
.trail-quote cite { display: block; margin-top: 24px; color: var(--slate); font-size: .78rem; font-style: normal; }
.trail-cta { padding-top: 22px; }
.trail-cta h2 { margin: 0 0 14px; font: 400 clamp(1.45rem, 1.9vw, 2rem)/1.05 var(--serif); }
.trail-cta a {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 800;
}
.trail-cta a:hover,
.trail-cta a:focus-visible { border-color: var(--teal); }

.journey-stage {
  position: relative;
  margin-top: -4px;
}
.journey-stage.has-open-station { padding-bottom: 280px; }
.journey-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 650;
}
.journey-portrait {
  position: absolute;
  z-index: 4;
  left: 3.75vw;
  top: 28px;
  width: clamp(250px, 25vw, 400px);
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgb(251 248 241 / 94%);
  box-shadow: 0 15px 42px rgb(13 23 44 / 8%);
}
.journey-portrait img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: 50% 10%; }
.journey-portrait figcaption { padding: 15px 22px 17px; display: grid; gap: 6px; color: var(--slate); font-size: .78rem; }
.journey-portrait figcaption strong { color: var(--navy); }
.trail-svg { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; overflow: visible; }
.trail-svg > path { fill: none; stroke: #287bd5; stroke-width: 7; stroke-linecap: round; }
.trail-marker { stroke: currentColor; fill: currentColor; }
.trail-marker .marker-ring { fill: var(--paper-deep); stroke-width: 3; }
.trail-marker--blue { color: var(--blue); }
.trail-marker--teal { color: var(--teal); }
.trail-marker--violet { color: var(--violet); }

.stations-list { position: absolute; z-index: 3; inset: 0; margin: 0; padding: 0; list-style: none; }
.trail-station { --station-accent: var(--blue); position: absolute; width: min(330px, 23vw); }
.trail-station--righthead { left: 41.56%; top: 46.15%; transform: translate(-50%, -50%); }
.trail-station--suxxeed { --station-accent: var(--teal); left: 63.44%; top: 62.3%; transform: translate(-50%, -50%); }
.trail-station--sicrystal { --station-accent: var(--violet); left: 84.25%; top: 35.38%; transform: translate(-50%, -50%); }
.trail-station::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  width: 2px;
  height: 30px;
  background: var(--station-accent);
  transform: translateX(-50%);
}
.trail-station--above::after { top: calc(100% - 1px); }
.trail-station--below::after { bottom: calc(100% - 1px); }
.trail-station--above { margin-top: -49px; }
.trail-station--below { margin-top: 58px; }
.station-card {
  position: absolute;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgb(251 248 241 / 97%);
  box-shadow: 0 12px 34px rgb(13 23 44 / 7%);
}
.trail-station--above .station-card { bottom: 0; }
.trail-station--below .station-card { top: 0; }
.trail-station--above.is-open .station-card { top: -116px; bottom: auto; }
.station-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 23px;
  left: 0;
  width: 3px;
  height: 38px;
  border-radius: 0 3px 3px 0;
  background: var(--station-accent);
}
.station-toggle {
  width: 100%;
  min-height: 116px;
  padding: 22px 24px 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.station-toggle:focus-visible { outline: 3px solid color-mix(in srgb, var(--station-accent) 45%, transparent); outline-offset: -5px; }
.station-heading { min-width: 0; display: grid; gap: 17px; }
.station-kicker { color: var(--station-accent); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.station-company { font: 400 clamp(1.5rem, 2vw, 2.2rem)/1 var(--serif); }
.station-symbol {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--station-accent);
  border-radius: 50%;
  color: var(--station-accent);
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
}
.station-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.station-panel > div { overflow: hidden; padding: 0 26px; opacity: 0; transition: opacity .18s ease, padding .3s ease; }
.trail-station.is-open .station-panel { grid-template-rows: 1fr; }
.trail-station.is-open .station-panel > div { padding: 0 26px 26px; opacity: 1; }
.station-panel p { margin: 0 0 14px; color: var(--slate); font-size: .83rem; line-height: 1.55; }
.station-panel .station-meta { color: var(--navy); font-size: .76rem; }
.station-panel a { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid var(--station-accent); font-size: .78rem; font-weight: 800; }

/* Stationserzählungen */
.story-page { --story-accent: var(--blue); background: var(--paper-light); }
.story-mast { padding: clamp(62px, 8vw, 118px) 7vw clamp(64px, 8vw, 108px); border-bottom: 1px solid var(--line); }
.story-mast-inner { max-width: 980px; margin: 0 auto; }
.back-link { display: inline-block; margin-bottom: 42px; color: var(--slate); font-size: .8rem; font-weight: 700; }
.story-kicker { margin: 0; color: var(--story-accent); font-size: .75rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.story-mast h1 { margin: 16px 0 0; font: 400 clamp(4rem, 8vw, 8.5rem)/.85 var(--serif); letter-spacing: -.055em; }
.story-mast h2 { margin: 26px 0 0; color: var(--story-accent); font: 400 clamp(1.8rem, 3vw, 3.4rem)/1 var(--serif); }
.story-role { margin: 28px 0 0; color: var(--slate); line-height: 1.6; }
.story-content { width: min(100% - 48px, 920px); margin: 0 auto; padding: clamp(64px, 8vw, 115px) 0 100px; }
.story-summary { margin: 0 0 80px; padding: 0 0 0 34px; border-left: 4px solid var(--story-accent); color: var(--navy-soft); font: 400 clamp(1.35rem, 2.1vw, 2rem)/1.5 var(--serif); }
.story-body { max-width: 70ch; margin: 0 auto; }
.story-body h2 { margin: 78px 0 24px; font: 400 clamp(1.9rem, 3vw, 2.9rem)/1.08 var(--serif); letter-spacing: -.025em; }
.story-body h2:first-child { margin-top: 0; }
.story-body p, .story-body li { color: var(--navy-soft); font-size: 1.05rem; line-height: 1.78; }
.story-body p { margin: 0 0 25px; }
.story-body ul { margin: 24px 0 34px; padding-left: 24px; }
.story-body li { margin-bottom: 15px; padding-left: 8px; }
.story-body blockquote { margin: 56px -36px; padding: 32px 38px; color: var(--navy); background: var(--paper); font: 400 clamp(1.25rem, 2vw, 1.75rem)/1.55 var(--serif); }
.story-next { display: block; max-width: 70ch; margin: 72px auto 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.18rem; }
.story-contact {
  margin-top: 82px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}
.story-contact--prominent { border: 0; background: var(--navy); color: var(--paper-light); }
.story-contact h2 { margin: 10px 0 0; font: 400 clamp(1.7rem, 2.8vw, 2.7rem)/1.08 var(--serif); }
.story-contact--prominent .eyebrow { color: #58cabd; }
.story-contact-links { display: grid; gap: 14px; justify-items: start; }
.story-contact-links a { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .85rem; font-weight: 800; }

@media (max-width: 1180px) {
  .brand-lockup span { display: none; }
  .desktop-nav { gap: 24px; }
  .home-hero { grid-template-columns: 51% 49%; }
  .home-intro, .home-fields { min-height: 760px; }
  .field-card { min-height: 190px; grid-template-columns: minmax(0, 1fr) 125px; }
  .trail-intro { grid-template-columns: 1fr 1fr; }
  .trail-cta { grid-column: 2; padding-top: 0; }
  .journey-stage,
  .journey-stage.has-open-station { min-height: 0; margin: 0; padding: 12px 26px 72px; }
  .journey-canvas { aspect-ratio: auto; }
  .journey-portrait { position: relative; left: auto; top: auto; width: min(100%, 330px); margin: 0 0 54px; }
  .trail-svg { display: none; }
  .stations-list { position: relative; inset: auto; padding-left: 42px; display: grid; gap: 28px; }
  .stations-list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 9px; width: 4px; border-radius: 4px; background: #287bd5; }
  .trail-station,
  .trail-station--righthead,
  .trail-station--suxxeed,
  .trail-station--sicrystal {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 590px;
    margin: 0;
    transform: none;
  }
  .trail-station::before { content: ""; position: absolute; z-index: 5; left: -42px; top: 48px; width: 17px; height: 17px; border: 4px solid var(--paper-deep); border-radius: 50%; background: var(--station-accent); box-shadow: 0 0 0 2px var(--station-accent); }
  .trail-station::after { left: -24px; top: 56px; bottom: auto; width: 24px; height: 2px; transform: none; }
  .station-card,
  .trail-station--above .station-card,
  .trail-station--below .station-card,
  .trail-station--above.is-open .station-card { position: relative; top: auto; bottom: auto; }
  .station-toggle { min-height: 112px; padding-right: 18px; padding-left: 22px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 72px; padding: 0 22px; }
  .desktop-nav { display: none; }
  .mobile-nav { position: relative; display: block; }
  .mobile-nav summary {
    min-width: 48px;
    min-height: 48px;
    display: grid;
    place-items: center;
    cursor: pointer;
    list-style: none;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav nav {
    position: absolute;
    right: 0;
    top: 55px;
    width: min(82vw, 310px);
    padding: 14px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper-light);
    box-shadow: 0 18px 45px rgb(13 23 44 / 14%);
  }
  .mobile-nav a { min-height: 48px; padding: 14px; font-weight: 700; }
  .home-hero { display: block; }
  .home-intro { min-height: 760px; padding: 52px 26px 35px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-copy h1 { font-size: clamp(3.4rem, 13vw, 5.4rem); }
  .hero-claim { font-size: clamp(1.65rem, 6vw, 2.5rem); }
  .hero-composition {
    inset: 245px 0 40px;
  }
  .hero-contact { left: 26px; bottom: 30px; }
  .home-fields { min-height: auto; padding: 62px 22px 42px; }
  .field-list { margin-top: 28px; }
  .field-card { min-height: 190px; grid-template-columns: minmax(0, 1fr) 150px; }
  .scroll-cue { margin-top: 30px; }
  .post-grid, .human-department, .site-footer { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 38% 62%; }
  .footer-meta { grid-column: 1; }
  .trail-page { overflow: visible; }
  .trail-intro { min-height: 0; padding: 52px 26px 24px; display: block; }
  .trail-title-block { padding: 0 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trail-title-block h1 { font-size: clamp(3.1rem, 12vw, 5.4rem); }
  .trail-quote { padding: 34px 0; }
  .trail-cta { padding: 4px 0 25px; }
  .journey-stage { min-height: 0; margin: 0; padding: 12px 26px 72px; }
  .journey-portrait { position: relative; left: auto; top: auto; width: min(100%, 330px); margin: 0 0 54px; }
  .trail-svg { display: none; }
  .stations-list { position: relative; inset: auto; padding-left: 42px; display: grid; gap: 28px; }
  .stations-list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 9px; width: 4px; border-radius: 4px; background: #287bd5; }
  .trail-station,
  .trail-station--righthead,
  .trail-station--suxxeed,
  .trail-station--sicrystal {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 590px;
    margin: 0;
    transform: none;
  }
  .trail-station::before { content: ""; position: absolute; z-index: 5; left: -42px; top: 48px; width: 17px; height: 17px; border: 4px solid var(--paper-deep); border-radius: 50%; background: var(--station-accent); box-shadow: 0 0 0 2px var(--station-accent); }
  .trail-station::after { left: -24px; top: 56px; bottom: auto; width: 24px; height: 2px; transform: none; }
  .station-card,
  .trail-station--above .station-card,
  .trail-station--below .station-card { position: relative; top: auto; bottom: auto; }
  .station-toggle { min-height: 112px; }
  .story-content { padding-bottom: 72px; }
  .series-mast { grid-template-columns: 1fr; align-items: start; }
  .series-mast > p:last-child { max-width: 62ch; }
  .episode-card { grid-template-columns: 1fr; }
  .episode-media { min-height: 0; aspect-ratio: 16 / 10; }
  .video-library-grid { grid-template-columns: 1fr; }
  .video-followup-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .eyebrow { font-size: .69rem; }
  .home-intro { min-height: 700px; padding-top: 38px; }
  .hero-promise { align-items: flex-start; }
  .hero-promise span { width: 34px; margin-top: 9px; }
  .hero-composition {
    inset: 225px 0 40px;
  }
  .hero-contact { max-width: 220px; line-height: 1.7; }
  .field-card { min-height: 0; grid-template-columns: 1fr; padding: 22px 22px 20px 28px; }
  .field-art { width: 100%; height: 175px; }
  .post-card { display: block; }
  .post-card img { height: 230px; }
  .editorial-section, .human-department, .profile-bridge, .site-footer { padding-right: 24px; padding-left: 24px; }
  .footer-links a { overflow-wrap: anywhere; }
  .trail-intro, .journey-stage { padding-right: 20px; padding-left: 20px; }
  .trail-title-block h1 { font-size: 3.35rem; }
  .trail-quote p { font-size: 1.45rem; }
  .stations-list { padding-left: 34px; }
  .stations-list::before { left: 7px; }
  .trail-station::before { left: -34px; }
  .trail-station::after { left: -18px; width: 18px; }
  .station-toggle { padding: 20px 17px 20px 21px; }
  .station-symbol { flex-basis: 44px; width: 44px; height: 44px; }
  .station-panel > div,
  .trail-station.is-open .station-panel > div { padding-right: 21px; padding-left: 21px; }
  .story-mast { padding-right: 24px; padding-left: 24px; }
  .story-mast h1 { font-size: clamp(3.4rem, 18vw, 5.8rem); }
  .story-content { width: min(100% - 40px, 920px); }
  .story-summary { margin-bottom: 58px; padding-left: 22px; }
  .story-body p, .story-body li { font-size: 1rem; }
  .story-body h2 { margin-top: 60px; }
  .story-body blockquote { margin: 46px 0; padding: 28px 24px; }
  .story-contact { padding: 28px 24px; grid-template-columns: 1fr; align-items: start; }
  .series-mast,
  .series-section,
  .video-library,
  .video-story-mast,
  .video-viewer-section { padding-right: 20px; padding-left: 20px; }
  .series-mast h1 { font-size: 4.3rem; }
  .episode-copy { padding: 28px 24px; }
  .episode-links { display: grid; justify-items: start; }
  .video-story-mast h1 { font-size: clamp(3.3rem, 16vw, 5.2rem); }
  .video-shell { border-radius: 14px; }
  .video-followup-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
