:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #111;
  --white: #f5f5f0;
  --muted: #a8a8a0;
  --line: rgba(245, 245, 240, 0.16);
  --line-dark: rgba(5, 5, 5, 0.12);
  --accent: #c8c8be;
  --red: #d71920;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 92px;
}

.brand-mark img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: contain;
}

.docet-gate {
  display: inline-grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 8px 0 8px 18px;
  border-left: 1px solid rgba(245, 245, 240, 0.32);
  color: rgba(245, 245, 240, 0.88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-shadow: 0 0 18px rgba(245, 245, 240, 0.2);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease, text-shadow 160ms ease;
  white-space: nowrap;
}

.docet-gate span:first-child {
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
}

.docet-gate span:last-child {
  padding-top: 3px;
  border-top: 2px solid currentColor;
}

.docet-gate:hover {
  border-color: rgba(245, 245, 240, 0.82);
  color: var(--white);
  text-shadow: 0 0 26px rgba(245, 245, 240, 0.42);
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 13px;
  font-weight: 700;
  color: rgba(245, 245, 240, 0.72);
}

.nav-links a,
.header-action {
  transition: color 160ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--white);
}

.header-action {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  padding: 154px clamp(20px, 5vw, 70px) 38px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, var(--black), transparent);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.34;
  z-index: -2;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.34) 48%, rgba(5, 5, 5, 0.9)),
    radial-gradient(circle at 52% 54%, transparent 0 16%, rgba(5, 5, 5, 0.86) 52%);
}

.hero-media img {
  width: min(74vw, 900px);
  opacity: 0.9;
  filter: contrast(1.18);
}

.hero-content {
  align-self: center;
  max-width: 900px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.92;
}

h1 {
  max-width: 10ch;
  font-size: clamp(70px, 13vw, 178px);
}

h2 {
  font-size: clamp(38px, 6vw, 86px);
}

.hero-line {
  margin: 22px 0 0;
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(245, 245, 240, 0.78);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button.secondary {
  color: var(--white);
  border-color: var(--line);
}

.button.secondary.dark {
  color: var(--black);
  border-color: rgba(5, 5, 5, 0.35);
}

.button.light {
  background: var(--white);
  color: var(--black);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  gap: 1px;
  width: min(100%, 760px);
  margin-top: 54px;
  border: 1px solid var(--line);
  color: rgba(245, 245, 240, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.hero-meta span {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.hero-meta span:last-child {
  border-right: 0;
}

.reference-marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.075), transparent 28%),
    #080808;
}

.reference-marquee-heading {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 42px) 0;
}

.reference-marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0 28px;
}

.reference-marquee::before,
.reference-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 180px);
  pointer-events: none;
  content: "";
}

.reference-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #080808, rgba(8, 8, 8, 0));
}

.reference-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #080808, rgba(8, 8, 8, 0));
}

.reference-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 44s linear infinite;
  will-change: transform;
}

.reference-marquee:hover .reference-marquee-track,
.reference-marquee:focus-within .reference-marquee-track {
  animation-play-state: paused;
}

.reference-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
}

.reference-marquee-item {
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid rgba(245, 245, 240, 0.15);
  background: rgba(245, 245, 240, 0.035);
  color: rgba(245, 245, 240, 0.76);
  padding: 13px 18px;
  font: inherit;
  font-size: clamp(13px, 1.45vw, 18px);
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.reference-marquee-item:hover,
.reference-marquee-item:focus-visible {
  border-color: rgba(215, 25, 32, 0.78);
  background: rgba(215, 25, 32, 0.1);
  color: var(--white);
  transform: scale(1.035);
  outline: none;
}

.reference-marquee-item:active {
  transform: scale(0.99);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 42px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.body-copy {
  color: rgba(245, 245, 240, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.body-copy p,
.statement-grid p,
.route-content p,
.community-copy p {
  margin: 0;
}

.body-copy p + p,
.statement-grid p + p {
  margin-top: 22px;
}

.statement-section {
  max-width: none;
  padding-right: clamp(20px, 5vw, 70px);
  padding-left: clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
}

.statement-grid article {
  padding: clamp(26px, 5vw, 58px);
}

.statement-grid article:first-child {
  border-right: 1px solid var(--line);
}

.statement-grid h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.statement-grid p:not(.eyebrow) {
  color: rgba(245, 245, 240, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.manifesto-section {
  max-width: none;
  padding: clamp(76px, 11vw, 146px) clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 245, 240, 0.065), transparent 34%),
    #080808;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 7vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: end;
}

.manifesto-inner .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.manifesto-inner h2 {
  font-size: clamp(44px, 7vw, 104px);
}

.manifesto-copy {
  display: grid;
  gap: 22px;
  color: rgba(245, 245, 240, 0.74);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.manifesto-copy p {
  margin: 0;
}

.city-image-section {
  position: relative;
  min-height: 64svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 70px);
  isolation: isolate;
}

.city-image-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.28) 48%, rgba(5, 5, 5, 0.74)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), transparent 46%, rgba(5, 5, 5, 0.28));
}

.city-image-section img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06);
}

.city-image-section div {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.city-image-section h2 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 96px);
}

.code-section {
  border-bottom: 1px solid var(--line);
}

.code-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.code-layout h2 {
  position: sticky;
  top: 130px;
  font-size: clamp(40px, 6vw, 84px);
}

.code-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.code-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  background: #080808;
}

.code-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.code-grid h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.code-grid p {
  grid-column: 2;
  margin: 14px 0 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 16px;
  line-height: 1.58;
}

.signature-routes {
  max-width: none;
  padding-right: clamp(20px, 5vw, 70px);
  padding-left: clamp(20px, 5vw, 70px);
}

.poster-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(280px, 0.48fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 42px);
}

.poster-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0b;
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 420ms ease;
}

.poster-section:hover .poster-frame img {
  transform: scale(1.018);
}

.poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-left: 0;
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.06), transparent 42%),
    #080808;
}

.poster-copy h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.poster-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(245, 245, 240, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.journal-section {
  max-width: none;
  padding: clamp(82px, 12vw, 154px) clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.1), transparent 34%),
    linear-gradient(180deg, #080808, #050505);
}

.journal-hero {
  max-width: var(--max);
  margin: 0 auto clamp(54px, 8vw, 92px);
}

.journal-hero .section-kicker,
.journal-cta .section-kicker {
  color: var(--red);
}

.journal-hero h2 {
  max-width: 960px;
  font-size: clamp(54px, 10vw, 142px);
}

.journal-subtitle {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}

.journal-deck {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 18px;
  line-height: 1.62;
}

.journal-article {
  max-width: 720px;
  margin: 0 auto clamp(72px, 10vw, 128px);
  color: rgba(245, 245, 240, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.journal-article p {
  margin: 0 0 28px;
}

.journal-article p:first-child {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 1;
}

.journal-signoff {
  margin-top: 44px !important;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.visual-story-grid {
  display: grid;
  gap: clamp(44px, 8vw, 92px);
  max-width: 930px;
  margin: 0 auto;
}

.visual-story-card {
  display: grid;
  gap: 22px;
}

.visual-story-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 240, 0.14);
  background: #0b0b0b;
}

.visual-story-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.visual-story-card:hover img {
  transform: scale(1.014);
  filter: contrast(1.08);
}

.visual-story-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.visual-story-card > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  max-width: 760px;
}

.visual-story-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.visual-story-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 4vw, 44px);
  line-height: 0.98;
}

.visual-story-card p {
  grid-column: 2;
  margin: 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 16px;
  line-height: 1.5;
}

.journal-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  max-width: var(--max);
  margin: clamp(82px, 12vw, 150px) auto 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent 46%),
    #090909;
}

.journal-cta h2 {
  font-size: clamp(42px, 7vw, 90px);
}

.journal-cta p:not(.section-kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(245, 245, 240, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.journal-actions {
  display: grid;
  gap: 12px;
}

.route-intro {
  max-width: 420px;
  margin: 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 17px;
  line-height: 1.58;
}

.signature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.signature-list article {
  min-height: 290px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.055), transparent 42%),
    #080808;
}

.signature-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.signature-list h3 {
  margin: 88px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
}

.signature-list p {
  margin: 18px 0 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 15px;
  line-height: 1.56;
}

.route-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.route-header h2 {
  max-width: 840px;
}

.route-slogan {
  margin: 18px 0 0;
  color: rgba(245, 245, 240, 0.76);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.route-badge {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.78fr);
  min-height: 560px;
  border: 1px solid var(--line);
}

.route-map {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
}

.route-map-image {
  display: grid;
  place-items: center;
  margin: 0;
  background: #f1f0ec;
}

.route-map-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.route-map::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(245, 245, 240, 0.12);
  content: "";
}

.node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(245, 245, 240, 0.1);
  z-index: 2;
}

.node-a {
  left: 13%;
  top: 68%;
}

.node-b {
  left: 30%;
  top: 48%;
}

.node-c {
  left: 48%;
  top: 62%;
}

.node-d {
  left: 63%;
  top: 34%;
}

.node-e {
  left: 78%;
  top: 52%;
}

.node-f {
  right: 9%;
  top: 28%;
}

.route-line {
  position: absolute;
  height: 2px;
  background: rgba(245, 245, 240, 0.84);
  transform-origin: left center;
}

.line-one {
  left: 14%;
  top: 68%;
  width: 25%;
  transform: rotate(-42deg);
}

.line-two {
  left: 31%;
  top: 49%;
  width: 23%;
  transform: rotate(31deg);
}

.line-three {
  left: 49%;
  top: 61%;
  width: 22%;
  transform: rotate(-54deg);
}

.line-four {
  left: 64%;
  top: 35%;
  width: 22%;
  transform: rotate(34deg);
}

.line-five {
  left: 79%;
  top: 52%;
  width: 18%;
  transform: rotate(-58deg);
}

.map-label {
  position: absolute;
  color: rgba(245, 245, 240, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.start {
  left: 8%;
  top: 76%;
}

.stop-one {
  left: 22%;
  top: 39%;
}

.stop-two {
  left: 39%;
  top: 70%;
}

.stop-three {
  left: 56%;
  top: 24%;
}

.stop-four {
  right: 10%;
  top: 59%;
}

.finish {
  right: 5%;
  top: 18%;
}

.route-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 5vw, 54px);
  color: rgba(245, 245, 240, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.route-copy {
  display: grid;
  gap: 18px;
}

.collab-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.route-stops {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.route-stops li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  background: var(--black);
  color: rgba(245, 245, 240, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.route-stops span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.route-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.route-details div {
  padding: 18px;
  background: var(--black);
}

.route-details dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.route-details dd {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.route-pass-section {
  max-width: none;
  padding: clamp(76px, 11vw, 146px) clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 245, 240, 0.06), transparent 40%),
    #070707;
}

.route-pass-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.5fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 44px;
}

.route-pass-hero h2 {
  font-size: clamp(46px, 8vw, 112px);
}

.route-pass-hero p:not(.section-kicker) {
  margin: 0;
  color: rgba(245, 245, 240, 0.72);
  font-size: 18px;
  line-height: 1.64;
}

.pass-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.pass-steps article {
  min-height: 260px;
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.055), transparent 46%),
    #080808;
}

.pass-steps span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.pass-steps h3 {
  margin: 72px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 0.98;
}

.pass-steps p {
  margin: 18px 0 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 15px;
  line-height: 1.56;
}

.route-pass-actions {
  max-width: var(--max);
  margin: 34px auto 0;
}

.pass-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 42px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.pass-info-grid article {
  padding: clamp(24px, 4vw, 38px);
  background: #0b0b0b;
}

.pass-info-grid p:not(.section-kicker) {
  margin: 0;
  color: rgba(245, 245, 240, 0.7);
  font-size: 16px;
  line-height: 1.62;
}

.pass-info-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pass-info-grid li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.application-dialog,
.kvkk-dialog {
  width: min(1120px, calc(100% - 28px));
  max-height: min(90svh, 940px);
  padding: 0;
  border: 1px solid var(--line);
  background: #070707;
  color: var(--white);
}

.kvkk-dialog {
  width: min(720px, calc(100% - 28px));
}

.application-dialog::backdrop,
.kvkk-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-shell,
.kvkk-shell {
  position: relative;
  padding: clamp(24px, 5vw, 54px);
}

.dialog-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
  color: var(--white);
  padding: 10px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.application-intro {
  max-width: 820px;
  margin-bottom: 36px;
}

.application-intro h2,
.application-success h2,
.kvkk-shell h2 {
  font-size: clamp(38px, 6vw, 78px);
}

.application-intro p:not(.section-kicker),
.application-success p,
.kvkk-shell p:not(.section-kicker) {
  color: rgba(245, 245, 240, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.route-pass-form {
  display: grid;
  gap: 24px;
}

.hidden {
  display: none !important;
}

.route-pass-form fieldset {
  margin: 0;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.035), transparent 50%),
    #0a0a0a;
}

.route-pass-form legend {
  padding: 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-wide {
  grid-column: 1 / -1;
}

.route-pass-form label,
.radio-group p {
  display: grid;
  gap: 8px;
  color: rgba(245, 245, 240, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.route-pass-form input,
.route-pass-form select,
.route-pass-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 245, 240, 0.2);
  border-radius: 0;
  background: #111;
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.route-pass-form textarea {
  resize: vertical;
}

.route-pass-form input:focus,
.route-pass-form select:focus,
.route-pass-form textarea:focus {
  border-color: rgba(245, 245, 240, 0.72);
  background: #151515;
  box-shadow: 0 0 0 3px rgba(245, 245, 240, 0.08);
}

.radio-group {
  display: grid;
  gap: 12px;
}

.radio-group label,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(245, 245, 240, 0.12);
  padding: 13px 14px;
  background: #101010;
  color: rgba(245, 245, 240, 0.76);
  line-height: 1.45;
}

.radio-group input,
.check-row input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--white);
}

.event-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 245, 240, 0.14);
  padding: 16px;
  background: #101010;
}

.event-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.event-summary strong {
  font-size: 18px;
}

.inline-link {
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.submit-application {
  justify-self: start;
  cursor: pointer;
}

.application-success {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.application-success[hidden] {
  display: none;
}

.application-success > div,
.pass-preview {
  padding: clamp(24px, 5vw, 44px);
  background: #0a0a0a;
}

.application-success small {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 900;
}

.pass-preview {
  display: grid;
  gap: 18px;
}

.pass-preview > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pass-preview h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.pass-preview dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.pass-preview dl div {
  padding: 12px;
  background: var(--black);
}

.pass-preview dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.pass-preview dd {
  margin: 5px 0 0;
  color: var(--white);
  font-weight: 900;
}

.mail-pass-placeholder {
  display: grid;
  gap: 1px;
  width: min(100%, 190px);
  border: 1px solid rgba(245, 245, 240, 0.3);
  background: var(--line);
}

.mail-pass-placeholder span {
  padding: 13px 14px;
  background: #111;
  color: rgba(245, 245, 240, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pass-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.collection-section {
  max-width: none;
  padding-right: clamp(20px, 5vw, 70px);
  padding-left: clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 245, 240, 0.055), transparent 36%),
    var(--black);
}

.collection-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.44fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 42px;
}

.collection-header h2 {
  max-width: 920px;
  font-size: clamp(38px, 6vw, 82px);
}

.collection-header p:not(.section-kicker) {
  margin: 0;
  color: rgba(245, 245, 240, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.collection-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.44fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.collection-visual-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.collection-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #ece8df;
}

.collection-visual-secondary {
  min-height: 360px;
  background: #111;
}

.collection-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(5, 5, 5, 0.1));
}

.collection-visual img {
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 400ms ease;
}

.collection-showcase:hover .collection-visual img {
  transform: scale(1.018);
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 5vw, 50px);
  background: #0b0b0b;
}

.collection-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.98;
}

.collection-copy p:not(.collab-label) {
  margin: 0;
  color: rgba(245, 245, 240, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.collection-tags {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.collection-tags span {
  padding: 14px 16px;
  background: var(--black);
  color: rgba(245, 245, 240, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.community-section {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  max-width: none;
  padding-right: clamp(20px, 5vw, 70px);
  padding-left: clamp(20px, 5vw, 70px);
  background: var(--white);
  color: var(--black);
}

.community-copy {
  max-width: 850px;
}

.community-section .section-kicker {
  color: rgba(5, 5, 5, 0.54);
}

.community-copy h2 {
  color: var(--black);
}

.community-copy p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(5, 5, 5, 0.66);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 180px 180px;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gallery-grid span {
  display: grid;
  place-items: center;
  background: #0b0b0b;
  color: rgba(245, 245, 240, 0.56);
  font-size: 12px;
  font-weight: 900;
}

.gallery-grid span:first-child {
  grid-row: 1 / 3;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  text-transform: none;
}

.partnership-section {
  max-width: none;
  background: var(--white);
  color: var(--black);
}

.partnership-section .split-layout {
  max-width: var(--max);
  margin: 0 auto;
}

.partnership-section .section-kicker {
  color: rgba(5, 5, 5, 0.54);
}

.partnership-section .body-copy {
  color: rgba(5, 5, 5, 0.68);
}

.partnership-section .button {
  margin-top: 30px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.6fr) auto;
  gap: 32px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 4vw, 42px);
}

.contact-section h2 {
  font-size: clamp(42px, 6vw, 92px);
}

address {
  display: grid;
  gap: 12px;
  color: rgba(245, 245, 240, 0.72);
  font-style: normal;
  font-size: 16px;
}

address a:hover {
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: rgba(245, 245, 240, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.closing-note {
  max-width: none;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 245, 240, 0.055), transparent 50%),
    #070707;
}

.closing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.closing-grid article {
  padding: clamp(28px, 5vw, 56px);
  background: var(--black);
}

.closing-grid h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.closing-grid p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(245, 245, 240, 0.72);
  font-size: 18px;
  line-height: 1.62;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-mark,
  .brand-mark img {
    width: 74px;
  }

  .docet-gate {
    justify-self: end;
    padding-left: 14px;
    font-size: 11px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-top: 132px;
  }

  .hero-media {
    place-items: end center;
  }

  .hero-media img {
    width: min(110vw, 680px);
  }

  .hero-meta,
  .manifesto-inner,
  .code-layout,
  .poster-section,
  .route-pass-hero,
  .pass-steps,
  .pass-info-grid,
  .journal-cta,
  .form-grid,
  .application-success,
  .statement-grid,
  .split-layout,
  .route-panel,
  .signature-list,
  .collection-header,
  .collection-showcase,
  .gallery-section,
  .contact-section,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .code-layout h2 {
    position: static;
  }

  .form-wide {
    grid-column: auto;
  }

  .pass-steps article {
    min-height: 220px;
  }

  .pass-steps h3 {
    margin-top: 46px;
  }

  .hero-meta {
    font-size: 11px;
  }

  .hero-meta span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-meta span:last-child {
    border-bottom: 0;
  }

  .statement-grid article:first-child,
  .route-map,
  .poster-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .poster-copy {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .route-header,
  .community-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .signature-list article {
    min-height: 220px;
  }

  .signature-list h3 {
    margin-top: 54px;
  }

  .collection-visual {
    min-height: 360px;
  }

  .visual-story-card > div {
    grid-template-columns: 1fr;
  }

  .visual-story-card p {
    grid-column: auto;
  }

  .route-details {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: 150px 150px;
  }

  .contact-section {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .header-action {
    padding: 10px 12px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .hero-line {
    font-size: 24px;
  }

  .reference-marquee-track {
    animation-duration: 58s;
  }

  .reference-marquee::before,
  .reference-marquee::after {
    width: 72px;
  }

  .button {
    width: 100%;
  }

  .submit-application {
    justify-self: stretch;
  }

  .application-dialog,
  .kvkk-dialog {
    width: calc(100% - 18px);
    max-height: 92svh;
  }

  .radio-group label,
  .check-row {
    align-items: flex-start;
  }

  .code-grid article {
    grid-template-columns: 1fr;
  }

  .code-grid p {
    grid-column: auto;
  }

  .collection-visual {
    min-height: 280px;
  }

  .journal-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .visual-story-card img {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 132px);
  }

  .gallery-grid span:first-child {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-marquee-track {
    animation-duration: 1ms;
    animation-play-state: paused;
  }
}

/* ── GALERI (Star Running) ── */
.sr-galeri-section {
  padding: 6rem 2rem;
  background: #000;
}
.sr-galeri-section .section-kicker { color: #888; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.sr-galeri-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,6vw,4rem); color: #fff; margin-bottom: 3rem; letter-spacing: .05em; }
.sr-galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.sr-galeri-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.sr-galeri-card:hover { transform: translateY(-4px); border-color: #333; }
.sr-galeri-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.sr-galeri-card-body { padding: 1.25rem; }
.sr-galeri-card-body h3 { color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.sr-galeri-card-body p { color: #666; font-size: .8rem; line-height: 1.5; }
.sr-galeri-card-body time { display: block; color: #444; font-size: .7rem; margin-top: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.sr-galeri-empty { text-align: center; color: #333; padding: 3rem; grid-column: 1/-1; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── INSTAGRAM FEED ── */
.instagram-feed-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.instagram-feed-section .section-kicker {
  color: #555;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
  text-align: center;
}
behold-widget {
  display: block;
  width: 100%;
}

/* ============================================================
   STAR RUNNING — Animation Styles
   ============================================================ */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Custom cursor kaldırıldı (kullanıcı isteği) — normal sistem imleci kullanılır */

/* Scroll reveal */
.sr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.sr-reveal.sr-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
.eyebrow,
#hero-title,
.hero-line,
.hero-copy,
.hero-actions,
.hero-meta {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr-hero-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Header compact */
.site-header {
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.sr-header--compact {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(12px);
}

/* Image fade in */
.sr-img-loading {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.sr-img-loaded {
  opacity: 1;
}

/* Parallax overflow fix */
.hero,
.city-image-section,
.poster-section {
  overflow: hidden;
}

/* Section transitions */
section {
  transition: opacity 0.3s ease;
}
