:root {
  --ink: #071014;
  --ink-2: #0b171b;
  --panel: rgba(8, 17, 20, 0.78);
  --panel-2: rgba(20, 23, 21, 0.78);
  --bone: #e6dfcf;
  --muted: #c5b9a5;
  --gold: #b88738;
  --gold-2: #d0a85a;
  --line: rgba(198, 155, 78, 0.34);
  --line-soft: rgba(230, 223, 207, 0.13);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 55, 63, 0.45), transparent 38rem),
    linear-gradient(180deg, #071014 0%, #071014 52%, #0a0c0d 100%);
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
}

body.is-locked {
  overflow: hidden;
}

body.is-locked > header,
body.is-locked > main,
body.is-locked > footer,
body.is-locked > .audio-player {
  display: none;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(6, 16, 20, 0.96), rgba(6, 16, 20, 0.72)),
    url("assets/images/project-hero.jpg") center/cover;
}

.password-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(208, 168, 90, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(7, 16, 20, 0.2), rgba(7, 16, 20, 0.92));
}

.password-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(184, 135, 56, 0.11), rgba(7, 16, 20, 0.86)),
    rgba(7, 16, 20, 0.9);
  border: 1px solid rgba(184, 135, 56, 0.44);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
  text-align: center;
}

.password-card img {
  width: 72px;
  height: 90px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.password-card h1 {
  color: var(--gold-2);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.password-card p {
  margin-top: 14px;
  color: rgba(230, 223, 207, 0.86);
  font-size: 16px;
  line-height: 1.62;
}

.password-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 26px;
  border: 1px solid var(--gold);
}

.password-form input,
.password-form button {
  min-height: 54px;
  border: 0;
  font: 15px Georgia, "Times New Roman", serif;
}

.password-form input {
  min-width: 0;
  padding: 0 18px;
  background: rgba(8, 17, 20, 0.76);
  color: var(--bone);
}

.password-form button {
  padding: 0 20px;
  background: rgba(184, 135, 56, 0.94);
  color: #071014;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.password-error {
  min-height: 22px;
  margin-top: 14px;
  color: #e9b2a0;
  font-size: 14px;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px clamp(20px, 3.4vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
}

.brand img {
  width: 48px;
  height: 64px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 0.84;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--bone);
  font-size: 14px;
  letter-spacing: 0.11em;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  color: rgba(230, 223, 207, 0.92);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--gold-2);
}

.site-nav a.is-active {
  position: relative;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(6, 13, 16, 0.72);
  color: var(--bone);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 150px clamp(26px, 4vw, 44px) 92px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.94) 0%, rgba(7, 16, 20, 0.73) 30%, rgba(7, 16, 20, 0.22) 68%),
    linear-gradient(180deg, rgba(7, 16, 20, 0.4) 0%, rgba(7, 16, 20, 0.18) 60%, #071014 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
}

.kicker {
  margin: 0 0 24px;
  color: var(--gold-2);
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(68px, 9vw, 140px);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: #f2eee4;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.78);
}

.hero h2 {
  margin-top: 18px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: 0.09em;
  color: #f4ead7;
}

.ornament {
  width: min(360px, 72vw);
  height: 1px;
  margin: 28px 0;
  background: linear-gradient(90deg, var(--gold), rgba(184, 135, 56, 0));
  position: relative;
}

.ornament::after {
  content: "✧";
  position: absolute;
  left: 46%;
  top: 50%;
  translate: -50% -50%;
  color: var(--gold-2);
  background: rgba(7, 16, 20, 0.92);
  padding: 0 10px;
  font-size: 16px;
}

.hero-text {
  max-width: 420px;
  color: rgba(244, 234, 215, 0.95);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 42px;
  padding: 0 30px;
  border: 1px solid var(--gold);
  background: rgba(7, 16, 20, 0.48);
  color: var(--gold-2);
  font: 700 15px Georgia, "Times New Roman", serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  color: #091115;
  transform: translateY(-2px);
}

.button.slim {
  min-height: 48px;
  margin-top: 24px;
  padding-inline: 24px;
}

.intro-panel,
.route-section,
.project-strip,
.experience,
.partner-band {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.intro-panel {
  text-align: center;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(230, 223, 207, 0.14);
}

.intro-panel h2,
.route-section > h2,
.experience h2,
.partner-band h2 {
  color: var(--gold-2);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro-panel > p {
  max-width: 720px;
  margin: 14px auto 28px;
  color: rgba(230, 223, 207, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(184, 135, 56, 0.32);
  background: rgba(9, 18, 21, 0.68);
  box-shadow: var(--shadow);
}

.myth-grid article {
  min-height: 218px;
  padding: 30px 20px 24px;
  border-right: 1px solid rgba(184, 135, 56, 0.22);
}

.myth-grid article:last-child {
  border-right: 0;
}

.myth-grid svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.myth-grid h3 {
  color: var(--gold-2);
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.myth-grid p {
  margin-top: 12px;
  color: rgba(230, 223, 207, 0.9);
  font-size: 15px;
  line-height: 1.55;
}

.route-section {
  padding: 30px 0 26px;
  text-align: center;
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
  margin: 28px 0 28px;
}

.route-map::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 53px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.route-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font: inherit;
}

.route-node span {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(7, 16, 20, 0.25), rgba(7, 16, 20, 0.52)),
    var(--route-img) center/cover;
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 6px rgba(7, 16, 20, 0.72), 0 0 0 1px rgba(208, 168, 90, 0.28);
}

.route-node[aria-selected="true"] span {
  box-shadow: inset 0 0 0 6px rgba(7, 16, 20, 0.5), 0 0 32px rgba(208, 168, 90, 0.34);
}

.route-node strong {
  min-height: 38px;
  color: #f3e9d5;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-transform: uppercase;
}

.route-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  background: rgba(10, 19, 22, 0.76);
  border: 1px solid rgba(184, 135, 56, 0.28);
  box-shadow: var(--shadow);
}

.route-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.route-card div {
  padding: clamp(24px, 4vw, 42px);
}

.route-card span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-top: 10px;
  color: var(--bone);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.route-card p,
.route-card li {
  color: rgba(230, 223, 207, 0.88);
  font-size: 16px;
  line-height: 1.62;
}

.route-card p {
  margin-top: 18px;
}

.route-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.route-cta {
  margin-top: 24px;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(184, 135, 56, 0.25);
  background: rgba(184, 135, 56, 0.25);
}

.project-strip div {
  padding: 24px;
  background: rgba(9, 18, 21, 0.82);
}

.project-strip span {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--bone);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
}

.project-strip p {
  margin-top: 12px;
  color: rgba(230, 223, 207, 0.78);
  font-size: 14px;
  line-height: 1.54;
}

.experience {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 30px;
  padding: 42px 0 44px;
}

.experience article,
.experience aside {
  min-height: 280px;
  background: rgba(18, 20, 18, 0.74);
  border: 1px solid rgba(184, 135, 56, 0.28);
  box-shadow: var(--shadow);
}

.experience article {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  overflow: hidden;
}

.experience article img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.experience article div,
.experience aside {
  padding: clamp(24px, 3.3vw, 42px);
}

.experience p,
.partner-band p {
  margin-top: 14px;
  color: rgba(230, 223, 207, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.experience form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 24px;
  border: 1px solid var(--gold);
}

.experience input,
.experience button {
  min-height: 52px;
  border: 0;
  font: 15px Georgia, "Times New Roman", serif;
}

.experience input {
  min-width: 0;
  padding: 0 18px;
  background: rgba(8, 17, 20, 0.72);
  color: var(--bone);
}

.experience button {
  padding: 0 18px;
  background: rgba(184, 135, 56, 0.92);
  color: #071014;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.social {
  font-size: 15px !important;
  color: rgba(230, 223, 207, 0.72) !important;
}

.partner-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 50px 0 70px;
  border-top: 1px solid rgba(184, 135, 56, 0.22);
}

.partner-band .button {
  white-space: nowrap;
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(184, 135, 56, 0.32);
  color: rgba(230, 223, 207, 0.68);
  font-size: 13px;
}

.site-footer span:nth-child(2) {
  text-align: center;
}

.site-footer span:last-child {
  text-align: right;
}

.project-page {
  background:
    radial-gradient(circle at 72% 8%, rgba(40, 55, 59, 0.52), transparent 36rem),
    linear-gradient(180deg, #061014 0%, #071014 54%, #080b0c 100%);
}

.page-header {
  border-bottom: 1px solid rgba(184, 135, 56, 0.18);
  background: linear-gradient(180deg, rgba(4, 12, 15, 0.72), transparent);
}

.project-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 148px clamp(26px, 4vw, 44px) 78px;
  border-bottom: 1px solid rgba(184, 135, 56, 0.28);
}

.project-hero-bg,
.project-hero-shade {
  position: absolute;
  inset: 0;
}

.project-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 58%;
}

.project-hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 16, 20, 0.96) 0%, rgba(6, 16, 20, 0.72) 34%, rgba(6, 16, 20, 0.16) 78%),
    linear-gradient(180deg, rgba(6, 16, 20, 0.16) 0%, rgba(6, 16, 20, 0.1) 60%, #071014 100%);
}

.project-hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(230, 223, 207, 0.68);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb span::before {
  content: ">";
  margin-right: 10px;
  color: var(--gold);
}

.project-hero h1 {
  color: #f2eee4;
  font-size: clamp(60px, 7.6vw, 104px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.78);
}

.project-hero p:not(.kicker) {
  max-width: 520px;
  margin-top: 26px;
  color: rgba(244, 234, 215, 0.93);
  font-size: 18px;
  line-height: 1.72;
}

.project-overview,
.project-route,
.project-grid,
.lower-panels,
.closing-quote {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.project-overview {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 380px);
  gap: 28px;
  align-items: stretch;
  padding: 0 0 18px;
}

.project-story,
.saga-scroll,
.expect-card,
.immersion-card,
.facts-card,
.guardian-card,
.join-card,
.oberhaimer-card,
.newsletter-card {
  border: 1px solid rgba(184, 135, 56, 0.28);
  background: rgba(9, 18, 21, 0.72);
  box-shadow: var(--shadow);
}

.project-story {
  padding: clamp(26px, 3vw, 38px) 0 0;
  border-top: 0;
}

.project-story > h2,
.project-route > h2,
.project-grid h2,
.lower-panels h2,
.saga-scroll h2 {
  color: var(--gold-2);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-transform: uppercase;
}

.project-story > h2,
.project-story > p {
  padding-inline: clamp(22px, 3vw, 34px);
}

.project-story > p,
.saga-scroll p,
.project-grid p,
.lower-panels p {
  color: rgba(230, 223, 207, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.project-story > p {
  max-width: 760px;
  margin-top: 16px;
}

.project-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(184, 135, 56, 0.24);
}

.project-pillars article {
  min-height: 196px;
  padding: 24px 18px 22px;
  text-align: center;
  border-right: 1px solid rgba(184, 135, 56, 0.2);
}

.project-pillars article:last-child {
  border-right: 0;
}

.project-pillars svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-pillars h3 {
  color: var(--gold-2);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-pillars p {
  margin-top: 10px;
  color: rgba(230, 223, 207, 0.88);
  font-size: 14px;
  line-height: 1.52;
}

.saga-scroll {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #c6ad82;
}

.saga-scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(214, 190, 146, 0.96) 0%, rgba(214, 190, 146, 0.86) 55%, rgba(214, 190, 146, 0.18) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 248, 217, 0.4), transparent 15rem);
}

.saga-scroll img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  filter: saturate(0.8) contrast(1.02);
}

.saga-scroll div {
  position: relative;
  z-index: 1;
  padding: 34px 30px;
  color: #21170f;
}

.saga-scroll h2 {
  color: #22160e;
}

.saga-scroll p {
  margin-top: 16px;
  color: rgba(29, 19, 12, 0.94);
}

.saga-scroll a,
.facts-card a {
  display: inline-flex;
  margin-top: 20px;
  color: #2c1b0d;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-route {
  padding: 26px 0 30px;
  text-align: center;
}

.route-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 26px 0 4px;
}

.route-timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 55px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.route-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.route-timeline span {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(7, 16, 20, 0.25), rgba(7, 16, 20, 0.58)),
    var(--route-img) center/cover;
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 6px rgba(7, 16, 20, 0.72), 0 0 0 1px rgba(208, 168, 90, 0.28);
}

.route-timeline h3 {
  min-height: 36px;
  margin-top: 12px;
  color: #f3e9d5;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.route-timeline p {
  margin-top: 3px;
  color: rgba(230, 223, 207, 0.74);
  font-size: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.22fr 0.78fr 0.72fr;
  gap: 0;
  border: 1px solid rgba(184, 135, 56, 0.25);
  background: rgba(184, 135, 56, 0.2);
}

.expect-card,
.immersion-card,
.facts-card,
.guardian-card {
  border: 0;
  border-right: 1px solid rgba(184, 135, 56, 0.25);
  box-shadow: none;
}

.guardian-card {
  border-right: 0;
}

.expect-card,
.facts-card {
  padding: 28px 24px;
}

.icon-list {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(230, 223, 207, 0.88);
  font-size: 15px;
  line-height: 1.35;
}

.icon-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-2);
}

.immersion-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.immersion-card img,
.guardian-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersion-card img {
  min-height: 380px;
}

.immersion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 20, 0.08), rgba(7, 16, 20, 0.9));
}

.immersion-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.facts-card h2 span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.facts-card dl {
  display: grid;
  gap: 15px;
  margin: 20px 0 0;
}

.facts-card div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: start;
}

.facts-card dt {
  color: var(--gold-2);
  font-size: 22px;
  line-height: 1;
}

.facts-card dd {
  margin: 0;
  color: rgba(230, 223, 207, 0.84);
  font-size: 14px;
  line-height: 1.35;
}

.facts-card a {
  color: var(--gold-2);
}

.guardian-card {
  min-height: 380px;
  overflow: hidden;
}

.lower-panels {
  display: grid;
  grid-template-columns: 0.86fr 1.7fr 0.96fr;
  gap: 14px;
  padding: 20px 0 26px;
}

.join-card,
.newsletter-card {
  padding: 28px 24px;
}

.oberhaimer-card {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  overflow: hidden;
  background: rgba(29, 23, 17, 0.82);
}

.oberhaimer-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 50% 22%;
}

.oberhaimer-card div {
  padding: 30px 28px;
}

.newsletter-card form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 20px;
  border: 1px solid var(--gold);
}

.newsletter-card input,
.newsletter-card button {
  min-height: 50px;
  border: 0;
  font: 15px Georgia, "Times New Roman", serif;
}

.newsletter-card input {
  min-width: 0;
  padding: 0 16px;
  background: rgba(8, 17, 20, 0.72);
  color: var(--bone);
}

.newsletter-card button {
  padding: 0 16px;
  background: rgba(184, 135, 56, 0.92);
  color: #071014;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.closing-quote {
  padding: 16px 0 28px;
  color: var(--gold-2);
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.saga-page {
  background:
    radial-gradient(circle at 70% 2%, rgba(44, 61, 67, 0.48), transparent 38rem),
    linear-gradient(180deg, #061014 0%, #061014 54%, #080b0c 100%);
}

.saga-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 148px clamp(26px, 4vw, 44px) 74px;
  border-bottom: 1px solid rgba(184, 135, 56, 0.28);
}

.saga-hero-bg,
.saga-hero-shade {
  position: absolute;
  inset: 0;
}

.saga-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}

.saga-hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 16, 20, 0.96) 0%, rgba(6, 16, 20, 0.72) 36%, rgba(6, 16, 20, 0.18) 78%),
    linear-gradient(180deg, rgba(6, 16, 20, 0.1) 0%, rgba(6, 16, 20, 0.1) 58%, #071014 100%);
}

.saga-hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.saga-hero h1 {
  color: #f2eee4;
  font-size: clamp(56px, 7.2vw, 98px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.78);
}

.saga-hero p:not(.kicker) {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(244, 234, 215, 0.94);
  font-size: 18px;
  line-height: 1.72;
}

.saga-opening,
.saga-timeline,
.saga-lore-grid,
.saga-quote-panel,
.saga-footer-cards {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.saga-opening {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 360px);
  gap: 24px;
  padding: 0 0 20px;
}

.saga-origin,
.saga-summary,
.saga-timeline,
.danube-being,
.sacred-places,
.tross-beings,
.saga-footer-cards article,
.saga-footer-cards nav {
  border: 1px solid rgba(184, 135, 56, 0.28);
  background: rgba(9, 18, 21, 0.74);
  box-shadow: var(--shadow);
}

.saga-origin {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 390px;
  overflow: hidden;
}

.saga-origin div,
.saga-summary,
.sacred-places,
.tross-beings,
.saga-footer-cards article {
  padding: clamp(24px, 3vw, 34px);
}

.saga-origin img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 58% 50%;
}

.saga-origin h2,
.saga-summary h2,
.saga-timeline h2,
.saga-lore-grid h2,
.saga-footer-cards h2 {
  color: var(--gold-2);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-transform: uppercase;
}

.saga-origin p,
.saga-summary dd,
.saga-lore-grid p,
.saga-footer-cards p {
  color: rgba(230, 223, 207, 0.88);
  font-size: 16px;
  line-height: 1.62;
}

.saga-origin p {
  margin-top: 18px;
}

.saga-summary dl {
  display: grid;
  gap: 20px;
  margin: 22px 0 0;
}

.saga-summary div {
  position: relative;
  padding-left: 58px;
}

.saga-summary div::before {
  content: "✧";
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(184, 135, 56, 0.4);
}

.saga-summary dt {
  color: var(--gold-2);
  font-size: 16px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.saga-summary dd {
  margin: 6px 0 0;
  font-size: 15px;
}

.saga-timeline {
  padding: 24px;
  text-align: center;
}

.saga-timeline > div {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.saga-timeline > div::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.saga-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.saga-timeline span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(7, 16, 20, 0.92);
  color: var(--gold-2);
  font-size: 28px;
}

.saga-timeline h3,
.place-list h3,
.tross-beings h3 {
  margin-top: 14px;
  color: var(--gold-2);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.saga-timeline p {
  margin-top: 8px;
  color: rgba(230, 223, 207, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.saga-lore-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.78fr 0.82fr;
  gap: 16px;
  padding: 20px 0 18px;
}

.danube-being {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.danube-being div {
  padding: 32px 30px 26px;
}

.danube-being p {
  margin-top: 16px;
}

.danube-being img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.place-list,
.tross-beings > div {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.place-list article,
.tross-beings article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
}

.place-list img,
.tross-beings img {
  width: 112px;
  height: 70px;
  object-fit: cover;
  border: 1px solid rgba(184, 135, 56, 0.34);
}

.tross-beings img {
  width: 78px;
  height: 78px;
}

.tross-beings article {
  grid-template-columns: 78px 1fr;
}

.place-list h3,
.tross-beings h3 {
  margin-top: 0;
}

.place-list p,
.tross-beings p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.42;
}

.tross-beings .button {
  width: 100%;
  margin-top: 22px;
}

.saga-quote-panel {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: end;
}

.saga-quote-panel img {
  align-self: end;
  width: 300px;
  height: 260px;
  object-fit: cover;
  object-position: 50% 18%;
  mask-image: linear-gradient(180deg, #000 75%, transparent 100%);
}

.saga-quote-panel blockquote {
  margin: 0 0 28px;
  padding: 0 28px;
  text-align: center;
}

.saga-quote-panel p {
  color: var(--gold-2);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  line-height: 1.55;
}

.saga-quote-panel cite {
  display: block;
  margin-top: 10px;
  color: rgba(230, 223, 207, 0.74);
  font-size: 15px;
  font-style: normal;
}

.saga-footer-cards {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding-bottom: 28px;
}

.saga-footer-cards article {
  display: grid;
  align-content: center;
}

.saga-footer-cards nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 26px 22px;
  text-align: center;
}

.saga-footer-cards nav a {
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-player {
  position: fixed;
  right: clamp(14px, 2.4vw, 34px);
  bottom: clamp(14px, 2.4vw, 30px);
  z-index: 30;
  width: min(320px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(184, 135, 56, 0.13), rgba(7, 16, 20, 0.84)),
    rgba(7, 16, 20, 0.86);
  border: 1px solid rgba(184, 135, 56, 0.42);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
}

.project-page .audio-player,
.saga-page .audio-player {
  position: static;
  width: min(360px, calc(100% - 32px));
  margin: 0 auto 24px;
}

.audio-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  text-align: left;
  cursor: pointer;
}

.audio-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
}

.audio-icon i {
  width: 4px;
  height: 12px;
  background: currentColor;
  opacity: 0.82;
  transform-origin: bottom;
}

.audio-player.is-playing .audio-icon i {
  animation: audioPulse 820ms ease-in-out infinite;
}

.audio-player.is-playing .audio-icon i:nth-child(2) {
  animation-delay: 130ms;
}

.audio-player.is-playing .audio-icon i:nth-child(3) {
  animation-delay: 260ms;
}

.audio-copy strong {
  display: block;
  color: var(--gold-2);
  font-size: 16px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audio-copy small {
  display: block;
  margin-top: 3px;
  color: rgba(230, 223, 207, 0.75);
  font-size: 13px;
}

.volume-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(230, 223, 207, 0.66);
  font-size: 12px;
}

.volume-control input {
  accent-color: var(--gold);
}

@keyframes audioPulse {
  0%, 100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1.45);
  }
}

.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;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    grid-template-columns: auto auto;
    background: rgba(7, 16, 20, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 135, 56, 0.28);
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(7, 16, 20, 0.96);
    border: 1px solid rgba(184, 135, 56, 0.3);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 760px;
    padding-top: 120px;
  }

  .myth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .myth-grid article:nth-child(even) {
    border-right: 0;
  }

  .route-map {
    grid-template-columns: repeat(5, minmax(96px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .route-map::before {
    display: none;
  }

  .project-strip,
  .experience,
  .partner-band,
  .site-footer,
  .project-overview,
  .project-grid,
  .lower-panels,
  .saga-opening,
  .saga-lore-grid,
  .saga-footer-cards {
    grid-template-columns: 1fr;
  }

  .saga-hero {
    min-height: 660px;
    padding-top: 128px;
  }

  .saga-origin {
    grid-template-columns: 1fr;
  }

  .saga-origin img {
    min-height: 320px;
  }

  .saga-timeline > div {
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .saga-timeline > div::before {
    display: none;
  }

  .saga-lore-grid {
    padding-top: 20px;
  }

  .saga-quote-panel {
    grid-template-columns: 220px 1fr;
  }

  .saga-quote-panel img {
    width: 220px;
  }

  .project-hero {
    min-height: 660px;
    padding-top: 128px;
  }

  .project-hero-bg {
    object-position: 68% 52%;
  }

  .project-overview {
    padding-top: 0;
  }

  .project-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-pillars article:nth-child(even) {
    border-right: 0;
  }

  .project-pillars article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(184, 135, 56, 0.2);
  }

  .route-timeline {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .route-timeline::before {
    display: none;
  }

  .expect-card,
  .immersion-card,
  .facts-card,
  .guardian-card {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 135, 56, 0.25);
  }

  .guardian-card {
    border-bottom: 0;
    max-height: 460px;
  }

  .oberhaimer-card {
    grid-template-columns: 0.82fr 1fr;
  }

  .site-footer,
  .site-footer span:last-child {
    text-align: center;
  }

  .audio-player {
    position: static;
    width: min(420px, calc(100% - 32px));
    margin: 12px auto 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 34px;
    height: 45px;
  }

  .hero {
    min-height: 760px;
    padding: 114px 20px 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.4vw, 48px);
    line-height: 0.9;
  }

  .hero h2 {
    max-width: 340px;
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.16;
  }

  .intro-panel,
  .route-section,
  .project-strip,
  .experience,
  .partner-band,
  .project-overview,
  .project-route,
  .project-grid,
  .lower-panels,
  .closing-quote,
  .saga-opening,
  .saga-timeline,
  .saga-lore-grid,
  .saga-quote-panel,
  .saga-footer-cards {
    width: calc(100% - 32px);
  }

  .saga-hero {
    min-height: 690px;
    padding: 116px 20px 52px;
  }

  .saga-hero-bg {
    object-position: 66% 50%;
  }

  .saga-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .saga-hero p:not(.kicker) {
    font-size: 16px;
  }

  .project-hero {
    min-height: 650px;
    padding: 116px 20px 52px;
  }

  .project-hero-bg {
    object-position: 68% 50%;
  }

  .project-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .project-hero p:not(.kicker) {
    font-size: 16px;
  }

  .myth-grid,
  .route-card,
  .experience article,
  .project-pillars,
  .oberhaimer-card,
  .newsletter-card form,
  .saga-origin,
  .saga-quote-panel,
  .saga-footer-cards,
  .saga-footer-cards nav {
    grid-template-columns: 1fr;
  }

  .saga-summary div {
    padding-left: 48px;
  }

  .saga-timeline > div {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .saga-timeline article {
    text-align: center;
  }

  .danube-being img {
    height: 260px;
  }

  .place-list article,
  .tross-beings article {
    grid-template-columns: 82px 1fr;
  }

  .place-list img,
  .tross-beings img {
    width: 82px;
    height: 68px;
  }

  .saga-quote-panel {
    text-align: center;
  }

  .saga-quote-panel img {
    width: 100%;
    height: 300px;
  }

  .saga-quote-panel blockquote {
    padding: 0;
  }

  .saga-footer-cards nav {
    gap: 16px;
  }

  .project-pillars article,
  .project-pillars article:nth-child(even),
  .project-pillars article:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(184, 135, 56, 0.22);
  }

  .project-pillars article:last-child {
    border-bottom: 0;
  }

  .saga-scroll {
    min-height: 500px;
  }

  .saga-scroll::after {
    background:
      linear-gradient(180deg, rgba(214, 190, 146, 0.96) 0%, rgba(214, 190, 146, 0.82) 62%, rgba(214, 190, 146, 0.18) 100%),
      radial-gradient(circle at 20% 20%, rgba(255, 248, 217, 0.36), transparent 14rem);
  }

  .route-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    row-gap: 22px;
  }

  .route-timeline span {
    width: 92px;
    height: 92px;
  }

  .route-timeline h3 {
    font-size: 13px;
  }

  .facts-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .immersion-card div {
    padding: 22px;
  }

  .guardian-card {
    max-height: 520px;
  }

  .myth-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 135, 56, 0.22);
  }

  .myth-grid article:last-child {
    border-bottom: 0;
  }

  .route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    row-gap: 22px;
  }

  .route-node span {
    width: 92px;
    height: 92px;
  }

  .route-node strong {
    font-size: 14px;
  }

  .experience form {
    grid-template-columns: 1fr;
  }

  .partner-band .button,
  .button,
  .password-form button {
    width: 100%;
  }

  .password-form {
    grid-template-columns: 1fr;
  }
}
