@font-face {
  font-family: 'Open Sans';
  src: url('assets/fonts/OpenSans-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pure Heart';
  src: url('assets/fonts/PureHeart-Regular.woff2') format('woff2'),
       url('assets/fonts/PureHeart-Regular.otf') format('opentype'),
       url('assets/fonts/PureHeart-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #343A40;
  --orange: #E58126;
  --white: #FFFFFF;
  --off-white: #F5F3EF;
  --cream: #EDE8E0;
  --mid: #6B655C;
  --border: #D6CFC6;
  --font-head: 'Open Sans', sans-serif;
  --font-brush: 'Pure Heart', cursive;
  --font-body: 'Open Sans', sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

::selection {
  background: var(--orange);
  color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ─── TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  mix-blend-mode: difference;
  transition: mix-blend-mode 0.3s;
}

.nav.solid {
  mix-blend-mode: normal;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.nav.solid .nav-logo {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s, opacity 0.3s;
}

.nav.solid .nav-links a {
  color: var(--dark);
}

.nav-links a:hover {
  opacity: 0.5;
}

.nav-links a.active {
  color: var(--orange);
}

/* ─── SPRACHUMSCHALTER ─── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.4rem;
}
.lang-switch a {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}
.nav.solid .lang-switch a {
  color: var(--dark);
}
.lang-switch a:hover {
  opacity: 0.5;
}
.lang-switch a.active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.solid .nav-toggle span { background: var(--dark); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero h1 .line2 {
  font-family: var(--font-brush);
  color: var(--orange);
  font-weight: normal;
  font-size: 1.2em;
  display: block;
  margin-top: -0.1em;
  margin-left: 0.15em;
}

.hero-sub {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  max-width: 400px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 18%;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(229,129,38,0.25);
  z-index: 0;
}

.hero-right::after {
  content: 'FRMD';
  position: absolute;
  bottom: 12%;
  right: 8%;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.1em;
  z-index: 1;
}

.hero-frame-accent {
  position: absolute;
  z-index: 2;
}

.hero-frame-accent--tl {
  top: calc(15% - 6px);
  left: calc(15% - 6px);
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.hero-frame-accent--br {
  bottom: calc(15% - 6px);
  right: calc(15% - 6px);
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--dark);
  border-right: 3px solid var(--dark);
  filter: brightness(2.5);
}

.hero-placeholder {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 10px solid #23272B;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(0,0,0,0.08);
  color: var(--mid);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: clamp(1rem, 2.5vw, 2rem);
  border: 1px dashed var(--border);
}

.hero-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sobald ein echtes Foto im Hero steckt: gezeichneten Rahmen und Innenlinie ausblenden */
.hero-placeholder:has(img) {
  background: none;
  border: none;
  padding: 0;
}

.hero-placeholder:has(img)::before {
  display: none;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-line {
  padding: 0;
  background: none;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.4rem;
}

.btn-line:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-fill {
  padding: 1.1rem 2.8rem;
  background: var(--orange);
  color: var(--white);
}

.btn-fill:hover {
  background: #cf721b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229,129,38,0.35);
}

.btn-dark {
  padding: 1.1rem 2.8rem;
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #1d2124;
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--dark);
  padding: 1.2rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.4rem;
  color: var(--orange);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

section { padding: clamp(5rem, 10vh, 8rem) 0; }

.label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: block;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.headline .brush {
  font-family: var(--font-brush);
  color: var(--orange);
  font-weight: normal;
  font-size: 1.15em;
}

/* ─── PROCESS / SO FUNKTIONIERT'S ─── */
.process {
  background: var(--off-white);
  position: relative;
}

.process::before {
  content: 'PROCESS';
  position: absolute;
  top: clamp(3rem, 8vh, 6rem);
  right: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  color: var(--dark);
  opacity: 0.03;
  letter-spacing: 0.05em;
  line-height: 1;
}

.process-header {
  max-width: 480px;
  margin-bottom: 4rem;
}

.process-header p {
  color: var(--mid);
  margin-top: 1.5rem;
  line-height: 1.8;
  font-size: 0.9rem;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.process-step {
  background: var(--off-white);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transition: background 0.4s;
}

.process-step:hover {
  background: var(--white);
}

.process-step:hover .step-num {
  color: var(--orange);
}

.step-num {
  font-family: var(--font-brush);
  font-size: 3rem;
  color: var(--border);
  transition: color 0.4s;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--mid);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ─── ABOUT TEASER ─── */
.about-teaser {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual-frame {
  width: 65%;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-visual-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.about-visual-frame::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 50px; height: 50px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  border-right: 2px solid rgba(255,255,255,0.15);
}

.about-visual-frame img {
  width: 50%;
  opacity: 0.08;
}

.about-visual-frame img.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.about-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.about-text-side p {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  max-width: 440px;
}

.about-numbers {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-num strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about-num span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-top: 0.5rem;
  display: block;
}

.about-cta {
  margin-top: 3rem;
}

/* ─── GALLERY PREVIEW ─── */
.gallery-preview {
  background: var(--off-white);
  overflow: hidden;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.gallery-header-right {
  padding-bottom: 0.3rem;
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-top: 0.75rem;
  padding-bottom: 3.5rem;
  scrollbar-width: none;
  margin: 0 calc(clamp(1.5rem, 4vw, 3rem) * -1);
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-card {
  flex: 0 0 clamp(260px, 28vw, 380px);
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}

.gallery-card-img {
  aspect-ratio: 3/4;
  background: var(--white);
  padding: clamp(0.9rem, 1.5vw, 1.4rem);
  border: 7px solid var(--dark);
  box-shadow: 0 14px 35px rgba(52,58,64,0.14);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(52,58,64,0.22);
}

.gallery-card-img-inner {
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
  overflow: hidden;
}

.gallery-card-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img-inner img {
  transform: scale(1.04);
}

.gallery-card-info {
  padding: 1rem 0;
}

.gallery-card-info h3 {
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-card-info p {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.2rem;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  content: 'FRMD';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-band .btn-white {
  padding: 1.1rem 2.8rem;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.cta-band .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--border);
}

.contact-left {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--dark);
  color: var(--white);
}

.contact-left .label { color: var(--orange); }

.contact-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail svg {
  width: 16px; height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-detail a {
  color: var(--orange);
  transition: opacity 0.3s;
}

.contact-detail a:hover { opacity: 0.6; }

.contact-note {
  margin-top: 3rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

.contact-note strong { color: rgba(255,255,255,0.85); }

.contact-right {
  padding: clamp(2.5rem, 5vw, 4rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid var(--border);
  padding: 0.85rem;
  margin-top: 0.25rem;
}

.form-group textarea:focus {
  border-color: var(--orange);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--mid);
  margin: -0.25rem 0 0.5rem;
}

.form-status {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}

.form-status.success { color: #2d6a4f; font-weight: 600; }
.form-status.error { color: #b3261e; font-weight: 600; }

/* ─── RATGEBER ─── */
.ratgeber-section {
  background: var(--off-white);
  padding: clamp(4rem, 10vh, 8rem) 0;
}

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ratgeber-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-decoration: none;
  color: inherit;
  transition: background 0.4s;
}

a.ratgeber-card:hover { background: var(--cream); }

.ratgeber-card--soon { opacity: 0.55; }

.ratgeber-card-num {
  font-family: var(--font-brush);
  font-size: 2rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.ratgeber-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.ratgeber-card p {
  color: var(--mid);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.ratgeber-card-link {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.ratgeber-card--soon .ratgeber-card-link { color: var(--mid); }

@media (max-width: 720px) {
  .ratgeber-grid { grid-template-columns: 1fr; }
}

/* ─── BREADCRUMB & ARTICLE ─── */
.breadcrumb {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  color: var(--mid);
}

.breadcrumb a { color: var(--mid); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 0.4rem; }

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
}

.article-content h2 {
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: -0.01em;
}

/* ─── LEGAL PAGES ─── */
.legal-section {
  background: var(--off-white);
  padding: clamp(4rem, 10vh, 8rem) 0;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--dark);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.58);
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer ul a {
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer ul a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.footer-social svg {
  width: 14px; height: 14px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ─── PAGE HEADER (subpages) ─── */
.page-header {
  padding: calc(var(--nav-h) + clamp(4rem, 10vh, 7rem)) 0 clamp(3rem, 6vh, 5rem);
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: attr(data-watermark);
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: -0.15em;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.05em;
  line-height: 1;
}

.page-header .headline { color: var(--white); }
.page-header .label { color: var(--orange); }

.page-header p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ─── ABOUT PAGE ─── */
.about-full { background: var(--off-white); }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 0;
}

.about-story-text {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-text p {
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.about-story-visual {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.about-story-visual img {
  width: 50%;
  opacity: 0.08;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}

.value-card {
  background: var(--off-white);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background 0.4s;
}

.value-card:hover { background: var(--white); }

.value-num {
  font-family: var(--font-brush);
  font-size: 2.5rem;
  color: var(--border);
  transition: color 0.4s;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.value-card:hover .value-num { color: var(--orange); }

.value-card h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--mid);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ─── GALLERY PAGE ─── */
.gallery-page { background: var(--off-white); }

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-page-item {
  cursor: pointer;
}

.gallery-page-item-image {
  aspect-ratio: 3/4;
  background: var(--white);
  padding: clamp(0.9rem, 1.5vw, 1.4rem);
  border: 7px solid var(--dark);
  box-shadow: 0 14px 35px rgba(52,58,64,0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-page-item:hover .gallery-page-item-image {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(52,58,64,0.22);
}

.gallery-page-item-image svg {
  width: 36px; height: 36px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1;
}

.gallery-page-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page-item-info {
  padding: 1rem 0;
}

.gallery-page-item-info h3 {
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-page-item-info p {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.15rem;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { justify-content: center; min-height: 100vh; min-height: 100dvh; }
  .about-split { grid-template-columns: 1fr; }
  .about-visual { min-height: 50vh; }
  .about-text-side { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-visual { min-height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { color: var(--white) !important; font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }

  .nav-toggle.open span { background: var(--white); }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .process-row, .values-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-band .wrap { flex-direction: column; gap: 2rem; text-align: center; }
  .about-numbers { flex-wrap: wrap; gap: 2rem; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-filters { flex-wrap: wrap; }
}

/* ─── GALLERY FILTER ANIMATION ─── */
@keyframes itemIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.gallery-page-item.filter-in {
  animation: itemIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(29,33,36,0.92);
  padding: clamp(1rem, 4vw, 3rem);
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: min(90vw, 700px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: default;
  animation: itemIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lightbox-content img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: var(--white);
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  border: 8px solid var(--dark);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  margin: 0 auto;
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
}

.lightbox-caption h3 {
  font-size: 1rem;
  font-weight: 700;
}

.lightbox-caption p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px; height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(29,33,36,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
}

.lightbox-prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox-next { right: clamp(0.5rem, 2vw, 1.5rem); }

.lightbox-nav:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lightbox-counter {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  margin-top: 0.6rem;
}

/* ─── SHOP ─── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
}

.shop-item-info {
  padding: 1.1rem 0 0;
}

.shop-item-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-item-info > p {
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 0.2rem;
}

.shop-item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.shop-item-price .preis {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}

.shop-item-price .preis small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.02em;
}

.btn-buy {
  padding: 0.85rem 1.6rem;
  font-size: 0.6rem;
}

.shop-item.sold .gallery-page-item-image {
  position: relative;
}

.shop-item.sold .gallery-page-item-image::after {
  content: 'VERKAUFT';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: var(--dark);
  color: var(--white);
  padding: 0.5rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.shop-item.sold img { opacity: 0.55; filter: grayscale(0.4); }

.sold-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.shop-hinweis {
  margin-top: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 720px;
}

.shop-cta-alt {
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ─── ONE OF ONE ─── */
:root { --font-script: 'Great Vibes', cursive; }

.gallery-page-item-image,
.gallery-card-img { position: relative; }

.oneofone-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--white);
  background: rgba(29,33,36,0.72);
  padding: 0.45rem 0.9rem 0.55rem;
  pointer-events: none;
}

.hero-label {
  display: block;
  margin-bottom: 1.2rem;
}

.hero-label .script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.hero-label .sub {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.marquee-item.script-item {
  font-family: var(--font-script);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--orange);
}

/* ─── FAKTENTABELLE (Shop & Lightbox) ─── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.78rem;
}

.spec-table th {
  text-align: left;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0.9rem 0 0.35rem;
}

.spec-table td {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--mid);
  width: 38%;
  padding-right: 0.75rem;
}

.spec-table td:last-child {
  color: var(--dark);
  font-weight: 600;
}

.lightbox .spec-table { max-width: 420px; margin: 1rem auto 0; }
.lightbox .spec-table th { color: var(--orange); }
.lightbox .spec-table td { border-color: rgba(255,255,255,0.12); }
.lightbox .spec-table td:first-child { color: rgba(255,255,255,0.5); }
.lightbox .spec-table td:last-child { color: var(--white); }

/* ─── PREISKALKULATOR ─── */
.kalkulator {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3.5rem;
}

.kalkulator h2 { font-size: 1.4rem; margin: 0.5rem 0 1.5rem; }

.kalk-gruppe { margin-bottom: 1.4rem; }

.kalk-gruppe > span {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.6rem;
}

.kalk-optionen { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.kalk-opt {
  border: 1px solid var(--border);
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s;
  background: var(--off-white);
}

.kalk-opt small { display: block; font-size: 0.68rem; color: var(--mid); margin-top: 0.15rem; }

.kalk-opt input { display: none; }

.kalk-opt.aktiv {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.kalk-preis {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.kalk-preis strong { font-size: 2rem; font-weight: 800; color: var(--dark); }

.kalk-preis small { font-size: 0.72rem; color: var(--mid); max-width: 320px; line-height: 1.5; }

/* ─── GLAS-INFO (aufklappbar) ─── */
.glas-info {
  margin-top: 1.4rem;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.glas-info summary {
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  list-style: none;
}

.glas-info summary::before { content: 'ⓘ '; color: var(--orange); }

.glas-info[open] summary { border-bottom: 1px solid var(--border); }

.glas-info-inhalt { padding: 1rem 1.2rem; font-size: 0.78rem; line-height: 1.7; color: var(--mid); }

.glas-info-inhalt strong { color: var(--dark); }

.glas-info-inhalt p { margin-bottom: 0.7rem; }

/* ─── ABLAUF (Kontaktseite) ─── */
.ablauf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.ablauf-schritt {
  border-top: 2px solid var(--border);
  padding-top: 0.9rem;
}

.ablauf-schritt .num {
  font-family: var(--font-brush, inherit);
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 800;
}

.ablauf-schritt h3 { font-size: 0.82rem; font-weight: 700; margin: 0.3rem 0; color: var(--white); }

.ablauf-schritt p { font-size: 0.72rem; line-height: 1.6; color: rgba(255,255,255,0.55); }

/* ─── MAKING-OF TIMELINE (About) ─── */
.makingof { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--off-white); }

.timeline { max-width: 720px; margin-top: 3rem; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 17px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}

.timeline-station {
  position: relative;
  padding: 0 0 2.2rem 3.4rem;
}

.timeline-station:last-child { padding-bottom: 0; }

.timeline-station .dot {
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.timeline-station h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }

.timeline-station p { font-size: 0.85rem; line-height: 1.75; color: var(--mid); max-width: 560px; }

/* ─── HIGHLIGHT-BAND „Deine Card" ─── */
.card-highlight {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.card-highlight .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.card-highlight .script-line {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--orange);
  line-height: 1.15;
}

.card-highlight h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 0.4rem 0 1rem; }

.card-highlight p { font-size: 0.92rem; line-height: 1.8; color: var(--mid); max-width: 520px; }

/* ─── FAQ ─── */
.faq-liste { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.5rem; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-antwort { padding: 0 0 1.5rem; font-size: 0.88rem; line-height: 1.8; color: var(--mid); max-width: 680px; }

.faq-antwort p { margin-bottom: 0.7rem; }

.faq-antwort strong { color: var(--dark); }

.faq-antwort a { color: var(--orange); text-decoration: underline; }

@media (max-width: 900px) {
  .ablauf { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ablauf { grid-template-columns: 1fr; }
}

/* ─── INSTAGRAM-BAND ─── */
.insta-band {
  background: var(--dark);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.insta-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.insta-band .script-line {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--orange);
}

.insta-band h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  margin: 0.4rem 0 0.8rem;
}

.insta-band p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.8;
}

/* ─── EDITIONEN ─── */
.edition-gruppe { margin: 3.5rem 0 2rem; }
.edition-gruppe:first-child { margin-top: 0; }

.edition-grid { margin-bottom: 1rem; }

.edition-ph {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0 1rem;
  text-align: center;
}

.edition-info { padding: 1.1rem 0 0; }

.edition-name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.edition-info > p { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }

.edition-preis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.edition-preis strong { font-size: 1rem; font-weight: 800; color: var(--dark); }

/* ─── GRÖSSENVERGLEICH ─── */
.groessen-grafik {
  margin: 1.6rem 0 1.8rem;
}

.groessen-grafik .label { display: block; margin-bottom: 1rem; }

.groessen-grafik img {
  display: block;
  width: 100%;
  max-width: 560px;
}

/* ─── NAV-TAGLINE ─── */
.nav-tagline {
  font-family: var(--font-brush);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin: 0 2rem;
  white-space: nowrap;
  pointer-events: none;
}

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

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .gallery-card:hover .gallery-card-img,
  .gallery-page-item:hover .gallery-page-item-image,
  .btn-fill:hover, .btn-dark:hover, .cta-band .btn-white:hover {
    transform: none;
  }
  .gallery-page-item.filter-in,
  .lightbox-content {
    animation: none;
  }
}
