/* ================= FONTS ================= */

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ================= RESET ================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ================= GLOBAL ================= */

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ================= TYPO ================= */

.section-title {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: #777;
}

/* ================= ACCESSIBILITY ================= */

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

/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/edition/elbbruecken-station-2026/elbbruecken-station-2026.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.65), 0 0px 6px rgba(0,0,0,0.45);
}

.hero-h1 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.75), 0 0px 8px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-shadow: 0 2px 20px rgba(0,0,0,0.75), 0 0px 8px rgba(0,0,0,0.5);
}


/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  transform: translateY(-100%);
}

.header.visible {
  transform: translateY(0);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo a {
  text-decoration: none;
  color: #111;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
}

.logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 3px;
}

.nav {
  display: flex;
}

.nav a {
  margin-left: 36px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.6;
}

/* ================= MOBILE MENU ================= */

.burger {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  -webkit-appearance: none;
}

.mobile-menu {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 260px;
  height: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 40px 48px;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
  background:
    linear-gradient(#aaa, #aaa) top left    / 1px 28px no-repeat,
    linear-gradient(#aaa, #aaa) top left    / 28px 1px no-repeat,
    linear-gradient(#aaa, #aaa) top right   / 1px 28px no-repeat,
    linear-gradient(#aaa, #aaa) top right   / 28px 1px no-repeat,
    linear-gradient(#aaa, #aaa) bottom left / 1px 28px no-repeat,
    linear-gradient(#aaa, #aaa) bottom left / 28px 1px no-repeat,
    linear-gradient(#aaa, #aaa) bottom right/ 1px 28px no-repeat,
    linear-gradient(#aaa, #aaa) bottom right/ 28px 1px no-repeat,
    rgba(250, 250, 250, 0.75);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  margin-bottom: 24px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.mobile-menu .close {
  font-size: 22px;
  background: none;
  border: none;
  margin-bottom: 40px;
  cursor: pointer;
  color: #111;
}


/* ================= INTRO ================= */

.intro {
  text-align: center;
  margin: 120px 0 160px;
}

.intro h1 {
  font-size: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.intro p {
  font-size: 15px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}

/* ================= STATEMENT ================= */

.statement {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.statement-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

.statement-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ================= KUNSTFOTOGRAFIE ================= */

.kunst {
  text-align: center;
  max-width: 560px;
  margin: 104px auto 0;
}

.kunst h2 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
}

.kunst p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.kunst p:last-child {
  margin-bottom: 0;
}

/* ================= MATERIAL UND FERTIGUNG ================= */

.material {
  text-align: center;
  max-width: 680px;
  margin: 96px auto 0;
}

.material h2 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
}

.material p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.material p:last-child {
  margin-bottom: 0;
}

/* ================= ZINE ================= */

.zine {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.zine-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.zine-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.zine-slide.active {
  opacity: 1;
}

.zine-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
}

.zine-arrow.left { left: 10px; }
.zine-arrow.right { right: 10px; }

.zine-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
  display: block;
}

.zine-text h3 {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.zine-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 26px;
}

/* ================= GRID ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 48px;
  margin-bottom: 0;
}

.work {
  text-align: center;
}

.work img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  transition: transform 0.8s ease;
}

.work:hover img {
  transform: scale(1.03);
}

.work-meta h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.work-meta span {
  font-size: 13px;
  color: #777;
}

/* ================= BUTTON ================= */

.btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.btn:hover {
  opacity: 0.6;
}

.btn.small {
  font-size: 11px;
  padding: 6px 14px;
  margin-top: 14px;
}

/* ================= EDITION ================= */

.section-white {
  background: #ffffff;
  padding: 60px 0;
}

.edition {
  max-width: 640px;
  margin: 56px auto;
  scroll-margin-top: 120px;
  text-align: center;
  padding: 36px 44px;
  background:
    linear-gradient(#aaa, #aaa) top left    / 1px 36px no-repeat,
    linear-gradient(#aaa, #aaa) top left    / 36px 1px no-repeat,
    linear-gradient(#aaa, #aaa) top right   / 1px 36px no-repeat,
    linear-gradient(#aaa, #aaa) top right   / 36px 1px no-repeat,
    linear-gradient(#aaa, #aaa) bottom left / 1px 36px no-repeat,
    linear-gradient(#aaa, #aaa) bottom left / 36px 1px no-repeat,
    linear-gradient(#aaa, #aaa) bottom right/ 1px 36px no-repeat,
    linear-gradient(#aaa, #aaa) bottom right/ 36px 1px no-repeat;
}

.edition h2 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.edition p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

/* ================= ABOUT ================= */


.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

.about-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 28px;
}

.about-contact p {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.about-name {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}

.about-email {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}

.about-contact .btn {
  margin-top: 0;
}

.about-instagram {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about-instagram:hover {
  opacity: 0.6;
}

/* ================= WERKSEITE ================= */

.werk-hero {
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 48px 32px;
}

.werk-hero-img {
  max-width: 1000px;
  width: 100%;
}

.werk-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.werk-hero-caption {
  max-width: 1000px;
  width: 100%;
  padding-top: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
}

.werk-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e6e6e6;
}

.werk-size-accordion {
  margin-bottom: 16px;
  width: fit-content;
  min-width: 260px;
}

.werk-size-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background: none;
  border: 1px solid #ddd;
  padding: 10px 16px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #111;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.werk-size-trigger:hover {
  border-color: #999;
}

.werk-size-icon {
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.werk-size-accordion.open .werk-size-icon {
  transform: rotate(45deg);
}

.werk-size-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.werk-size-accordion.open .werk-size-options {
  max-height: 200px;
  border-bottom: 1px solid #ddd;
}

.werk-size-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #f0f0f0;
  padding: 10px 16px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #555;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.werk-size-option:hover {
  background: #f5f5f5;
  color: #111;
}

.werk-buy-btn {
  display: inline-block;
  margin-bottom: 12px;
}

.werk-buy-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.werk-buy-hint,
.zine-buy-hint {
  font-size: 11px !important;
  color: #bbb !important;
  letter-spacing: 0.06em;
  margin-top: 12px;
  margin-bottom: 0;
}

.werk-title {
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 6px;
}

.werk-year {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.1em;
}

.werk-text {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-bottom: 1px solid #e6e6e6;
}

.werk-text-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  padding-top: 4px;
}

.werk-text-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 600px;
}

.werk-details {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-bottom: 1px solid #e6e6e6;
}

.werk-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.werk-details-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #f0f0f0;
}

.werk-details-single img {
  width: 80%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
}

.werk-details-slider {
  position: relative;
}

.werk-details-slide {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f0f0f0;
  cursor: pointer;
}

.werk-details-slide.active {
  display: block;
}

.werk-details-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 2;
  color: #111;
  line-height: 1;
  transition: background 0.2s ease;
}

.werk-details-arrow:hover {
  background: rgba(255,255,255,0.95);
}

.werk-details-arrow.left {
  left: 12px;
}

.werk-details-arrow.right {
  right: 12px;
}

.werk-print {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-bottom: 1px solid #e6e6e6;
}

.werk-print-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  grid-auto-flow: column;
  column-gap: 32px;
  row-gap: 0;
}

.werk-print-block {
  display: contents;
}

.werk-print-heading {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
}

.werk-print-block p:not(.werk-print-heading) {
  font-size: 13px;
  color: #555;
  line-height: 2;
}

.werk-preistabelle {
  border-collapse: collapse;
  margin-bottom: 16px;
}

.werk-preistabelle td {
  font-size: 13px;
  color: #555;
  padding: 8px 48px 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.werk-preistabelle td:first-child {
  color: #111;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.werk-print-body p {
  font-size: 13px;
  color: #555;
  line-height: 2;
  max-width: 600px;
  margin-bottom: 16px;
}

.werk-print-disclaimer {
  grid-column: 1 / -1;
  font-size: 11px;
  color: #aaa;
  line-height: 1.8;
  margin-top: 32px;
  max-width: 600px;
}

.werk-material-sub {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.werk-material-mt {
  margin-top: 32px;
}

.werk-shop-cta {
  margin-top: 36px;
}

/* ================= AKKORDEON (Werkseite) ================= */

.werk-akkordeon {
  padding-top: 48px;
  padding-bottom: 48px;
}

.akkordeon-item {
  border-bottom: 1px solid #e6e6e6;
}

.akkordeon-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  text-align: left;
  transition: opacity 0.2s ease;
}

.akkordeon-trigger:hover {
  opacity: 0.6;
}

.akkordeon-icon {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}

.akkordeon-item.open .akkordeon-icon {
  transform: rotate(45deg);
}

.akkordeon-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.akkordeon-item.open .akkordeon-content {
  max-height: 600px;
}

.akkordeon-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 16px;
}

.akkordeon-content p:last-child {
  margin-bottom: 0;
  padding-bottom: 28px;
}

.akkordeon-content a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.werk-entstehung {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-bottom: 1px solid #e6e6e6;
}

.werk-entstehung-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 20px;
}

.werk-entstehung-body p:last-child {
  margin-bottom: 0;
}

.werk-formate {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-bottom: 1px solid #e6e6e6;
}

.werk-hinweise {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid #e6e6e6;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.werk-hinweise p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  max-width: 640px;
}

.werk-hinweise a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.werk-contact {
  padding-top: 80px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 48px;
  row-gap: 48px;
  align-items: start;
  justify-items: start;
}

.werk-contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.werk-contact-body .werk-back {
  display: inline-block;
  margin-top: 32px;
}

.werk-weitere {
  padding-top: 56px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-top: 1px solid #e6e6e6;
}

.werk-weitere-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  max-width: none;
}

.werk-weitere-link img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}

.werk-weitere-link:hover img {
  opacity: 0.75;
  transform: none;
}

.werk-weitere-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  transition: color 0.2s ease;
}

.werk-weitere-link:hover .werk-weitere-title {
  color: #111;
}

.btn-primary {
  background: #111;
  color: #fff;
  padding: 12px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.btn-primary:hover {
  opacity: 0.7;
}

.werk-back {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.werk-back:hover {
  opacity: 0.6;
}

/* Tablet */
@media (max-width: 900px) {
  .werk-hero {
    padding: 100px 32px 32px;
  }

  .werk-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .werk-text,
  .werk-details,
  .werk-print,
  .werk-entstehung,
  .werk-formate,
  .werk-hinweise,
  .werk-weitere {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .werk-weitere-link img {
    width: 96px;
    height: 64px;
  }

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

  .werk-details-single img {
    width: 100%;
  }

  .werk-print-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }

  .werk-print-block + .werk-print-block .werk-print-heading {
    margin-top: 40px;
  }

  .werk-contact {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .werk-size-accordion {
    min-width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .werk-hero {
    padding: 90px 20px 40px;
  }

  .werk-intro {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 28px;
  }

  .werk-title {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .werk-text,
  .werk-details,
  .werk-print,
  .werk-entstehung,
  .werk-formate,
  .werk-hinweise {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 28px;
  }

  .werk-text-label {
    font-size: 10px;
    padding-top: 0;
  }

  .werk-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .werk-entstehung-body p {
    font-size: 15px;
    line-height: 1.9;
  }

  .werk-akkordeon {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .akkordeon-trigger {
    padding: 24px 0;
    font-size: 10px;
  }

  .akkordeon-content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .werk-size-trigger {
    width: 100%;
    font-size: 13px;
    padding: 14px 16px;
  }

  .werk-buy-btn {
    display: block;
    text-align: center;
  }

  .werk-contact {
    padding-top: 48px;
    padding-bottom: 72px;
    gap: 20px;
  }

  .werk-hinweise p {
    font-size: 13px;
    line-height: 1.9;
  }
}

/* ================= PAGE CONTENT (Unterseiten) ================= */

.page-content {
  padding-top: 120px;
  padding-bottom: 120px;
}

.page-section h1,
.page-section h2 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 48px;
}

.page-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  max-width: 640px;
  line-height: 1.8;
}

.page-section ul {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  max-width: 640px;
  padding-left: 20px;
  line-height: 2;
}

.page-section a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}

.page-section a:hover {
  opacity: 0.6;
}

.page-section em {
  font-size: 12px;
  color: #aaa;
  font-style: normal;
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid #e6e6e6;
  text-align: center;
  padding: 50px 0;
  font-size: 12px;
  color: #777;
  background: #fff;
}

.footer a {
  color: #777;
  text-decoration: none;
}

/* ================= COOKIE BANNER ================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2000;
  font-size: 12px;
  color: #555;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn.small {
  margin-top: 0;
}

.cookie-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  text-decoration: none;
}

.cookie-link:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
  }
}

/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 80%;
  max-height: 88%;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #aaa;
  font-size: 48px;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-arrow:hover {
  color: #fff;
}

.lightbox-arrow.left {
  left: 24px;
}

.lightbox-arrow.right {
  right: 24px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .edition {
    margin: 60px auto;
  }

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

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

  .intro h1 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {

  .page-content {
    padding-top: 100px;
  }

  .kunst {
    margin-top: 64px;
  }

  .material {
    margin-top: 64px;
  }

  .section-white {
    padding: 40px 0;
  }

  .edition {
    margin: 48px 20px;
    padding: 28px 24px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Werkseite Mobile */
  .werk-hero {
    padding: 110px 20px 40px;
  }

  .werk-hero-caption span {
    font-size: 10px;
  }

  .werk-intro {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .werk-title {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .werk-text,
  .werk-details,
  .werk-entstehung,
  .werk-formate,
  .werk-hinweise {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .werk-weitere {
    padding-top: 40px;
    padding-bottom: 72px;
    gap: 24px;
  }

  .werk-text-label {
    font-size: 10px;
  }

  .werk-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .werk-entstehung-body p,
  .werk-hinweise p {
    font-size: 14px;
    line-height: 1.85;
  }

  .werk-akkordeon {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .akkordeon-trigger {
    font-size: 10px;
    padding: 22px 0;
  }

  .akkordeon-content p {
    font-size: 13px;
    line-height: 1.85;
  }

  .werk-size-trigger {
    width: 100%;
    font-size: 12px;
    padding: 14px 16px;
  }

  .werk-size-options {
    width: 100%;
  }

  .werk-buy-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .werk-buy-hint {
    margin-top: 16px;
    margin-bottom: 0;
  }

  .werk-contact {
    padding-top: 40px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

@media (min-width: 1600px) and (max-width: 2559px) {

  .edition {
    margin: 72px auto;
  }
}

@media (min-width: 2560px) {

  .container {
    max-width: 1920px;
  }

  body {
    font-size: 18px;
  }

  .intro h1 {
    font-size: 44px;
  }

  .intro p {
    font-size: 18px;
    max-width: 720px;
  }

  .edition h2,
  .about-contact p {
    font-size: 14px;
  }

  .edition p,
  .about-text p,
  .zine-text p {
    font-size: 17px;
  }

  .about-lead {
    font-size: 22px;
  }

  .zine-text h3 {
    font-size: 24px;
  }

  .kunst p {
    font-size: 18px;
  }

  .footer {
    font-size: 14px;
  }
}