/* Local-to-the-kit styles. Tokens come from ../../colors_and_type.css */

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; }
body { background: var(--paper); color: var(--ink); overflow-x: hidden; }

/* ---------- TopBar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--ink);
  background: rgba(244, 236, 221, 0);
  transition: background 240ms var(--ease-stamp), backdrop-filter 240ms var(--ease-stamp);
}
.topbar.scrolled {
  background: rgba(244, 236, 221, 0.82);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}
.topbar .wm {
  font-family: var(--font-display); font-weight: normal;
  font-size: 28px; letter-spacing: -0.005em;
  text-transform: uppercase; color: var(--ink);
  text-decoration: none;
}
@media (max-width: 540px) {
  .topbar .wm { font-size: 22px; }
}
.topbar nav { display: flex; gap: clamp(14px, 2vw, 28px); }
.topbar nav a {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; padding: 6px 0; border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--ease-stamp), color 180ms var(--ease-stamp);
}
.topbar nav a:hover { border-color: var(--ink); color: var(--container-deep); }
.topbar .ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--paper); padding: 9px 14px;
  border-radius: 999px; text-decoration: none;
  transition: background 180ms var(--ease-stamp);
}
.topbar .ig:hover { background: var(--container-deep); }

@media (max-width: 760px) {
  .topbar nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 48px) clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.hero .hero-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(12px, 1.8vw, 20px);
}

.hero .eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--container); display: inline-block; }

/* Lockup: berg sits BEHIND the wordmark, left-aligned poster lockup */
.hero .hero-lockup {
  position: relative;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  margin: clamp(8px, 2vw, 16px) 0 0;
}
.hero .hero-berg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 36vw, 480px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  filter: contrast(1.1);
  z-index: 0;
}
.hero .wordmark-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: clamp(320px, 50vw, 600px);
  height: auto;
  /* red sticker offset — risograph misprint vibe */
  filter: drop-shadow(4px 4px 0 var(--container));
}
@media (max-width: 720px) {
  .hero .hero-lockup { justify-content: center; }
  .hero .hero-berg { left: 50%; transform: translate(-50%, -50%); }
  .hero .wordmark-img {
    max-width: 100%;
    filter: drop-shadow(3px 3px 0 var(--container));
  }
}
.hero .tag {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--container); margin: 0;
}
.hero .dateline {
  width: 100%;
  display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 32px);
  align-items: baseline; justify-content: center;
  margin-top: clamp(20px, 3vw, 40px);
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--ink);
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.hero .dateline span.sep { color: var(--steel-2); }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em;
  padding: 14px 22px; border: 1px solid var(--ink); cursor: pointer;
  text-decoration: none; transition:
    transform 120ms var(--ease-stamp),
    box-shadow 120ms var(--ease-stamp),
    background 180ms var(--ease-stamp),
    color 180ms var(--ease-stamp);
}
.btn.primary { background: var(--container); color: var(--paper); box-shadow: 6px 6px 0 var(--ink); }
.btn.primary:hover { background: var(--container-deep); }
.btn.primary:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
.btn.secondary { background: var(--paper); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.btn.secondary:hover { background: var(--ink); color: var(--paper); }
.btn.secondary:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
.btn .arrow { display: inline-block; transition: transform 180ms var(--ease-stamp); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- InfoStrip ---------- */
.infostrip {
  background: var(--night); color: var(--paper);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: 0;
}
.infostrip .top {
  background-image: url('../../assets/corrugated.svg');
  background-repeat: repeat;
  background-color: var(--night);
  height: 28px; border-bottom: 1px solid var(--paper);
}
.infostrip .row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 48px);
  gap: clamp(20px, 3vw, 36px);
}
.infostrip .cell .k {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-2);
}
.infostrip .cell .v {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  line-height: 1; text-transform: uppercase; color: var(--paper);
  margin-top: 8px;
}
.infostrip .cell .sub {
  font-family: var(--font-body); font-size: 14px; color: var(--steel-2);
  margin-top: 6px;
}
@media (max-width: 760px) {
  .infostrip .row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Lineup ---------- */
.lineup {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
}
.lineup .section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--ink); padding-bottom: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.lineup .section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 6vw, 80px); line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em; margin: 0;
}
.lineup .section-head .meta {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel);
}
.lineup .grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.lineup .grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .lineup .grid.grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .lineup .grid { grid-template-columns: 1fr; }
}

.night-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--ink);
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--paper-2);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 180ms var(--ease-stamp), box-shadow 180ms var(--ease-stamp);
  cursor: default;
}
.night-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.night-card.paper { background: var(--paper-2); }
.night-card.day {
  background: var(--hopfen); color: var(--paper);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.night-card.day:hover { box-shadow: 9px 9px 0 var(--ink); }
.night-card.day .num { color: var(--paper); }
.night-card.day .eb { color: var(--hopfen-soft); }
.night-card.day .sub { color: var(--hopfen-soft); }
.night-card.night {
  background: var(--night); color: var(--paper);
  border-color: var(--paper);
  box-shadow: 6px 6px 0 var(--container);
}
.night-card.night:hover { box-shadow: 9px 9px 0 var(--container); }
.night-card .eb {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
}
.night-card.night .eb { color: var(--steel-2); }
.night-card .num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(80px, 11vw, 140px);
  line-height: 0.82; letter-spacing: -0.04em; color: var(--container);
  margin: 8px 0 6px;
}
.night-card .title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 0.95; text-transform: uppercase; margin: 0;
}
.night-card .sub {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--steel); margin-top: 6px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.night-card.night .sub { color: var(--steel-2); }
.night-card .footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid currentColor;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---------- Anfahrt ---------- */
.anfahrt {
  background: var(--paper-2);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
}
.anfahrt .wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px); align-items: start;
}
@media (max-width: 820px) {
  .anfahrt .wrap { grid-template-columns: 1fr; }
}
.anfahrt h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em; margin: 0 0 20px;
}
.anfahrt .coords {
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px); letter-spacing: 0.04em;
  color: var(--ink); padding: 12px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.anfahrt p { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink); }
.anfahrt p.muted { color: var(--steel); }
.anfahrt .btn { margin-top: 20px; }

.mapcard {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink);
  background: var(--night);
  color: var(--paper);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
}
.mapcard iframe {
  display: block; width: 100%; height: 100%; border: 0;
  filter: saturate(0.85) contrast(1.05);
}
.mapcard svg { display: block; width: 100%; height: 100%; }
.mapcard .pin {
  position: absolute; left: 56%; top: 48%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.mapcard .pin .dot {
  width: 18px; height: 18px; background: var(--container);
  border: 3px solid var(--paper); border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(139, 30, 45, 0.18);
}
.mapcard .pin .lbl {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--container); color: var(--paper);
  padding: 4px 8px; white-space: nowrap;
}
.mapcard .legend {
  position: absolute; left: 12px; bottom: 12px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-2);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink); color: var(--paper);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px) 32px;
}
.footer .footer-mark {
  display: block;
  width: clamp(160px, 24vw, 280px);
  height: auto;
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.footer .row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid var(--steel); padding-top: 24px;
}
.footer .col { display: flex; flex-direction: column; gap: 8px; }
.footer .col .k {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-2);
}
.footer .col .v {
  font-family: var(--font-body); font-size: 15px; color: var(--paper);
}
.footer .col a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.footer .col a:hover { color: var(--container); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  background: var(--container); color: var(--paper);
  padding: 12px 0;
}
.marquee .track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px); text-transform: uppercase;
  letter-spacing: -0.01em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Bergomarks ---------- */
.bergomarks {
  position: relative;
  background: var(--container); color: var(--paper);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
  overflow: hidden;
}
.bergomarks .wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 80px); align-items: center;
  max-width: var(--container-max); margin: 0 auto;
}
@media (max-width: 900px) {
  .bergomarks .wrap { grid-template-columns: 1fr; }
}
.bergomarks .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.bergomarks .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--paper);
}
.bergomarks h2 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(48px, 7vw, 104px); line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin: 14px 0 18px;
}
.bergomarks .ink-on-orange { background: var(--ink); color: var(--paper); padding: 0 12px; }
.bergomarks p {
  font-family: var(--font-body); font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6; max-width: 52ch;
}
.bergomarks p strong { color: var(--paper); }
.bergomarks .steps {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.bergomarks .steps li {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(20px, 2vw, 28px); text-transform: uppercase;
  letter-spacing: 0.005em;
}
.bergomarks .steps .n {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); color: var(--container);
  font-family: var(--font-mono); font-weight: 700; font-size: 15px;
}
.bergomarks .tokens {
  position: relative; display: flex; justify-content: center;
  align-items: center; min-height: 280px;
}
.bergomarks .tokens .t10,
.bergomarks .tokens .t20 {
  width: clamp(160px, 22vw, 240px); aspect-ratio: 1;
  transition: transform 320ms var(--ease-stamp);
}
.bergomarks .tokens .t10 {
  color: var(--container-deep);
  transform: rotate(-10deg) translate(-22%, 0);
  filter: drop-shadow(4px 4px 0 var(--ink));
}
.bergomarks .tokens .t20 {
  color: var(--ink);
  transform: rotate(8deg) translate(22%, 0);
  filter: drop-shadow(4px 4px 0 var(--ink));
}
.bergomarks .tokens .t10:hover { transform: rotate(-4deg) translate(-22%, -8px); }
.bergomarks .tokens .t20:hover { transform: rotate(2deg) translate(22%, -8px); }
.bergo-token { display: block; width: 100%; height: 100%; }

/* ---------- Bars & Grill ---------- */
.bars {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
  background: var(--paper);
}
.bars .section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--ink); padding-bottom: 16px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  max-width: var(--container-max);
}
.bars .section-head h2 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.005em; margin: 0;
}
.bars .section-head .meta {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel);
}
.bars .bar-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bars .bar-item {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  padding: 14px 16px;
  min-height: 88px;
  display: flex; align-items: flex-end;
  transition: transform 180ms var(--ease-stamp), box-shadow 180ms var(--ease-stamp);
}
.bars .bar-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.bars .bar-item.wide {
  grid-column: 1 / -1;
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
  min-height: 100px;
}
.bars .bar-item.wide h3 { color: var(--paper); }
.bars .bar-tag {
  position: absolute; top: -1px; right: -1px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; padding: 4px 8px;
}
.bars .bar-item.wide .bar-tag { background: var(--paper); color: var(--ink); }
.bars .bar-item h3 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(22px, 2vw, 28px); text-transform: uppercase;
  letter-spacing: -0.005em; margin: 0; color: var(--ink);
}
@media (max-width: 720px) {
  .bars .bar-grid { grid-template-columns: repeat(2, 1fr); }
  .bars .bar-item.wide { grid-column: 1 / -1; }
}

/* ---------- Anfahrt shuttle block ---------- */
.anfahrt .shuttle {
  display: flex; align-items: flex-start; gap: 16px;
  margin: 24px 0 8px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.anfahrt .shuttle-icon { color: var(--container); flex: none; }
.anfahrt .shuttle .k {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel);
}
.anfahrt .shuttle .v {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(22px, 2.4vw, 28px); text-transform: uppercase;
  letter-spacing: -0.005em; line-height: 1.05; margin-top: 4px;
}
.anfahrt .shuttle .muted {
  font-family: var(--font-body); font-size: 13px; color: var(--steel);
  margin-top: 6px;
}
.anfahrt .coords { margin-bottom: 16px; }

/* mapcard legend stays; removed old .pin since pin is now inside MapIllustration */
.mapcard .legend { z-index: 2; }


/* ---------- Versorgung (kurz) ---------- */
.versorgung {
  background: var(--ink); color: var(--paper);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.versorgung .wrap {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 56px); align-items: end;
}
@media (max-width: 820px) {
  .versorgung .wrap { grid-template-columns: 1fr; }
}
.versorgung .eb {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-2);
}
.versorgung h2 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin: 8px 0 0; color: var(--paper);
}
.versorgung p {
  font-family: var(--font-body); font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6; color: var(--steel-2); margin: 0;
  max-width: 52ch;
}


/* ---------- Impressionen (Galerie) ---------- */
.impressionen {
  background: var(--paper);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--ink);
}
.impressionen .section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  max-width: var(--container-max); margin: 0 auto clamp(28px, 4vw, 44px);
}
.impressionen .section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 6vw, 80px); line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em; margin: 0;
}
.impressionen .section-head .meta {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel);
}
.impressionen .gallery {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}
.impressionen .shot {
  margin: 0; position: relative;
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--ink);
  overflow: hidden;
  transition: transform 180ms var(--ease-stamp), box-shadow 180ms var(--ease-stamp);
}
.impressionen .shot:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.impressionen .shot img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
}
.impressionen .shot figcaption {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper);
  padding: 8px 12px; background: var(--ink);
  border-top: 1px solid var(--ink); border-right: 1px solid var(--ink);
}
.impressionen .shot-crowd    { grid-column: span 6; aspect-ratio: 3 / 2; }
.impressionen .shot-lichtung { grid-column: span 6; aspect-ratio: 3 / 2; }
.impressionen .shot-team     { grid-column: span 12; aspect-ratio: 24 / 9; }
@media (max-width: 760px) {
  .impressionen .shot-crowd,
  .impressionen .shot-lichtung,
  .impressionen .shot-team { grid-column: span 12; }
  .impressionen .shot-crowd    { aspect-ratio: 16 / 10; }
  .impressionen .shot-lichtung { aspect-ratio: 16 / 10; }
  .impressionen .shot-team     { aspect-ratio: 16 / 9; }
}
.impressionen .ig-hint {
  max-width: var(--container-max); margin: clamp(28px, 4vw, 44px) auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  border-top: 1px solid var(--ink); padding-top: clamp(24px, 3vw, 36px);
}
.impressionen .ig-hint p {
  font-family: var(--font-body); font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5; color: var(--ink); margin: 0; max-width: 36ch;
}
.impressionen .ig-hint p strong { color: var(--container-deep); }

/* ---------- About ---------- */
.about {
  background: var(--paper-2);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--ink);
}
.about .wrap {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 64px); align-items: start;
}
@media (max-width: 820px) {
  .about .wrap { grid-template-columns: 1fr; }
}
.about .col-left {
  display: flex; flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
.about .eb {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel);
}
.about h2 {
  font-family: var(--font-display); font-weight: normal;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin: 10px 0 0; color: var(--ink);
}
.about .copy {
  display: flex; flex-direction: column; gap: 14px;
}
.about .copy p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65; color: var(--ink);
  max-width: 60ch; margin: 0;
}
.about .copy p strong { color: var(--container); font-weight: 700; }
