/* ============================================================
   SLM Ledermanufaktur – Stylesheet
   Design: Luxury / Refined Minimalism
   Color Palette (from Color_Scheme_Leder.png):
     --slate:   #8EA4A4  (muted sage blue)
     --olive:   #6E6A49  (dark olive)
     --sand:    #C9A87B  (warm sand / tan)
     --tan:     #9B7B55  (mid tan brown)
     --charcoal:#5A5A5A  (dark grey)
     --cream:   #F5EFE4  (off-white background)
     --dark:    #1A1614  (near black)
     --gold:    #C8A84B  (logo gold accent)
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.bunny.net/css?family=cormorant-garamond:300,300i,400,400i,500,500i,600,600i|montserrat:300,400,500,600&display=swap');

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --slate:    #8EA4A4;
  --olive:    #6E6A49;
  --sand:     #C9A87B;
  --tan:      #9B7B55;
  --charcoal: #5A5A5A;
  --cream:    #F5EFE4;
  --cream-dk: #EDE4D4;
  --dark:     #1A1614;
  --gold:     #C8A84B;
  --gold-lt:  #D4B96A;
  --white:    #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

  --nav-h: 160px;
  --section-pad: clamp(80px, 10vw, 140px);
  --max-w: 1280px;
  --radius: 2px;

  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 12px 48px rgba(26, 22, 20, 0.12);
  --shadow-deep: 0 24px 80px rgba(26, 22, 20, 0.22);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 160px;
}

@media (max-width: 768px) {
  html { scroll-padding-top: 100px; }
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ── Focus Styles (Accessibility) ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Utility ────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--tan);
}

.section-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.9;
  max-width: 55ch;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.75rem 0;
}

/* ── Scroll Animations ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px);  }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.45s; }
[data-delay="5"] { transition-delay: 0.6s; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(26, 22, 20, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0.75rem 0;
}

.nav.scrolled {
  background: rgba(26, 22, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 0.4rem 0;
}

.nav.scrolled .nav__logo img {
  height: 50px;
}

.nav__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 100px;
  width: auto;
  transition: height var(--transition), transform var(--transition);
}

.nav__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.nav__logo-tagline {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #c9a84c;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  border-top: 1px solid rgba(201,168,76,0.4);
  padding-top: 0.3rem;
}



/* Logo-Crop: Zoomt auf den Logo-Bereich im Bild */
.logo-crop {
  width: 171px;
  height: 120px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  mix-blend-mode: screen;
}
.logo-crop img {
  position: absolute;
  height: 374px;
  width: auto;
  top: -117px;
  left: -245px;
  max-width: none;
  transition: transform var(--transition);
}
.nav__logo:hover img { transform: scale(1.04); }

.nav__links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  transition: background var(--transition), color var(--transition);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}
.nav__cta::after { display: none !important; }

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  aria-label: "Menü öffnen";
}
.nav__toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  display: block;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 22, 20, 0.88) 0%,
    rgba(26, 22, 20, 0.45) 50%,
    rgba(26, 22, 20, 0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  width: 100%;
}

.hero__content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero__title em {
  display: block;
  font-style: italic;
  color: var(--sand);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(245, 239, 228, 0.75);
  max-width: 44ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 75, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 239, 228, 0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 239, 228, 0.5);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(245, 239, 228, 0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%;  }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Über die Manufaktur ─────────────────────────────────── */
.about {
  padding-block: var(--section-pad);
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about__images {
  position: relative;
  height: 560px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 80%;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
}

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
  border: 5px solid var(--cream);
}

/* Bild-Animation & Zoom-Cursor */
.about__img-zoom {
  cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  filter: brightness(0.95);
}

.about__img-zoom:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  filter: brightness(1.05);
  z-index: 2;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lightboxFadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: lightboxZoomIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

@keyframes lightboxZoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(201,168,76,0.5);
  color: #c9a84c;
  font-size: 1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.lightbox__close:hover {
  background: #c9a84c;
  color: var(--dark);
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.about__stat {
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ── Produkte ────────────────────────────────────────────── */
.products {
  padding-block: var(--section-pad);
  background: var(--dark);
}

.products .section-label { color: var(--gold); }
.products .section-title { color: var(--cream); }
.products .section-body  { color: rgba(245, 239, 228, 0.65); }
.products .divider        { background: var(--gold); }

.products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  flex-wrap: wrap;
  gap: 2rem;
}

.products__header-right .section-body {
  color: rgba(245, 239, 228, 0.55);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--olive);
}

.product-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.product-card:hover img { transform: scale(1.06); }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.85) 0%, transparent 55%);
  transition: opacity var(--transition);
}

.product-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.product-card:hover .product-card__body { transform: translateY(0); }

.product-card__cat {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.product-card__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245,239,228,0.7);
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-weight: 300;
}
.product-card:hover .product-card__desc { max-height: 80px; }

/* ── Made in Germany ─────────────────────────────────────── */
.made-in-germany {
  padding-block: var(--section-pad);
  background: var(--dark);
}

.made-in-germany .section-label { color: var(--gold); }
.made-in-germany .section-title { color: var(--cream); }
.made-in-germany .section-body  { color: rgba(245, 239, 228, 0.65); margin-bottom: 1.25rem; }
.made-in-germany .divider       { background: var(--gold); }
.made-in-germany strong         { color: var(--cream); }

.mig__header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.mig__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.mig__features {
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mig__features li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.mig__feature-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.mig__features strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.mig__features p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245, 239, 228, 0.55);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.mig__images {
  position: relative;
  aspect-ratio: 4/5;
}

.mig__img-main {
  width: 100%;
  height: 85%;
  object-fit: cover;
  display: block;
}

.mig__img-accent {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--dark);
}

@media (max-width: 768px) {
  .mig__grid { grid-template-columns: 1fr; }
  .mig__images { display: none; }
}

/* ── Maschinenpark ───────────────────────────────────────── */
.machines {
  padding-block: var(--section-pad);
  background: var(--cream-dk);
}

.machines .section-label { color: var(--gold); }
.machines .section-title { color: var(--dark); }
.machines .section-body  { color: rgba(26, 22, 20, 0.65); }
.machines .divider        { background: var(--gold); }

.machines__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  flex-wrap: wrap;
  gap: 2rem;
}

.machines__header-right {
  max-width: 480px;
}

.machines__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.machines__images {
  position: relative;
  aspect-ratio: 4/5;
}

.machines__img-main {
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
}

.machines__img-accent {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 55%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 4px solid var(--cream-dk);
}

.machines__list-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.machines__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.machines__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.1);
}

.machines__item:first-child {
  border-top: 1px solid rgba(26, 22, 20, 0.1);
}

.machines__item-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.machines__item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.machines__item p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(26, 22, 20, 0.55);
  font-weight: 300;
  margin: 0;
}

@media (max-width: 768px) {
  .machines__grid { grid-template-columns: 1fr; }
  .machines__images { aspect-ratio: 16/9; }
  .machines__img-accent { display: none; }
}

/* ── Handwerksprozess ────────────────────────────────────── */
.craft {
  padding-block: var(--section-pad);
  background: var(--cream-dk);
  position: relative;
  overflow: hidden;
}

.craft::before {
  content: 'HANDWERK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 600;
  color: rgba(155, 123, 85, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.craft__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.craft__steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.craft__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.craft__step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sand);
  opacity: 0.5;
  line-height: 1;
  min-width: 2rem;
}

.craft__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.craft__step-content p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
}

.craft__image {
  position: relative;
}

.craft__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
}

.craft__image-tag {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--dark);
  padding: 1.5rem 2rem;
  max-width: 240px;
}

.craft__image-tag p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
}

/* ── Galerie ─────────────────────────────────────────────── */
.gallery {
  padding-block: var(--section-pad);
  background: var(--cream);
}

.gallery__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.gallery__header .divider { margin-inline: auto; }

.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}

/* Mosaik-Layout für 10 Bilder */
.gallery-item:nth-child(1)  { grid-column: span 2; grid-row: span 2; } /* Aktentasche – groß */
.gallery-item:nth-child(4)  { grid-column: span 2; }                    /* Filztasche – breit */
.gallery-item:nth-child(8)  { grid-column: span 2; }                    /* Bauchtasche – breit */

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--cream-dk);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

/* Hover-Overlay */
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  background: rgba(26,22,20,0);
  transition: background 0.3s ease;
  pointer-events: none;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
  background: rgba(26,22,20,0.25);
}

/* Galerie-Lightbox mit Navigation */
#lightbox-gallery {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lightboxFadeIn 0.3s ease;
}
#lightbox-gallery.active { display: flex; }

#lightbox-gallery .lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: lightboxZoomIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: #c9a84c;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
  line-height: 1;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: #c9a84c; color: var(--dark); }

@media (max-width: 768px) {
  .gallery__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(8) { grid-column: span 1; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}


/* ── Werte / Versprechen ─────────────────────────────────── */
.values {
  padding-block: var(--section-pad);
  background: var(--olive);
  position: relative;
  overflow: hidden;
}

.values::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(110, 106, 73, 0.3);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.values .section-label { color: var(--sand); }
.values .section-title { color: var(--cream); }
.values .divider        { background: var(--sand); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.value-item {
  border-top: 1px solid rgba(201, 168, 123, 0.3);
  padding-top: 2rem;
}

.value-item__icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--sand);
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.value-item p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.65);
  line-height: 1.85;
}

/* ── Kontakt ─────────────────────────────────────────────── */
.contact {
  padding-block: var(--section-pad);
  background: var(--dark);
}

.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--cream); }
.contact .divider       { background: var(--gold); }

.contact__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  flex-wrap: wrap;
  gap: 2rem;
}

.contact__intro {
  max-width: 420px;
  color: rgba(245, 239, 228, 0.6);
}

/* Karten */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.contact__card {
  background: rgba(245, 239, 228, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact__card:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
}

.contact__card-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.contact__card-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact__card-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-style: normal;
  transition: color var(--transition);
}

a.contact__card-value:hover { color: var(--gold); }

.contact__card-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.4);
  margin: 0;
}

/* CTA */
.contact__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 239, 228, 0.08);
  flex-wrap: wrap;
}

.contact__cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(245, 239, 228, 0.6);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

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

@media (max-width: 540px) {
  .contact__cards { grid-template-columns: 1fr; }
  .contact__header { flex-direction: column; align-items: flex-start; }
}

/* ── Impressum & Datenschutz ─────────────────────────────── */
.legal-section {
  padding-block: var(--section-pad);
  background: var(--cream-dk);
  border-top: 1px solid rgba(155, 123, 85, 0.2);
}

.legal-section .section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 72ch;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content address {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.85;
  font-style: normal;
  margin-bottom: 0.5rem;
}

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

.legal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(155, 123, 85, 0.25);
}

.legal-tab {
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}
.legal-tab.active,
.legal-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.legal-pane { display: none; }
.legal-pane.active { display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 239, 228, 0.08);
}

.footer__brand img {
  height: 150px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.footer__logo-wrap img {
  height: 150px;
  width: auto;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.footer__logo-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #c9a84c;
  text-transform: uppercase;
  line-height: 1.6;
  border-top: 1px solid rgba(201,168,76,0.4);
  padding-top: 0.6rem;
  display: inline-block;
  width: auto;
}

.footer__brand p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.45);
  line-height: 1.8;
  max-width: 28ch;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul li a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.5);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--sand); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.3);
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245, 239, 228, 0.35);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--sand); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card:first-child { grid-row: span 1; aspect-ratio: 3/4; }
  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(60px, 12vw, 90px); }

  .nav {
    padding: 0.5rem 0;
  }

  .nav__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
  }

  .nav__logo img {
    height: 55px;
  }

  .nav__logo-tagline {
    display: none;
  }

  /* Alle Links als Vollbild-Overlay */
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 22, 20, 1);
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    padding: 6rem 2rem 3rem;
  }

  .nav__links.open { display: flex; }

  .nav__links li {
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-bottom: 1px solid rgba(245, 239, 228, 0.08);
  }

  .nav__links li:first-child {
    border-top: 1px solid rgba(245, 239, 228, 0.08);
  }

  .nav__links a {
    display: block;
    padding: 1.1rem 0;
    font-size: 0.85rem !important;
    color: var(--cream) !important;
    white-space: nowrap;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav__links a::after { display: none; }

  /* Kontakt golden hervorheben */
  .nav__cta {
    display: block !important;
    background: transparent !important;
    border: none !important;
    padding: 1.1rem 0 !important;
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.18em !important;
  }

  /* Toggle immer sichtbar, über dem Overlay */
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .about__grid,
  .craft__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .about__images { height: 380px; }
  .about__stats  { grid-template-columns: 1fr 1fr; }

  .products__grid { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: 4/3; }
  .product-card:first-child { aspect-ratio: 4/3; }

  .values__grid { grid-template-columns: 1fr; gap: 2rem; }

  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(5) { grid-column: span 1; }

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

  .footer__top { grid-template-columns: 1fr; }
  .products__header { flex-direction: column; align-items: flex-start; }

  .craft__image-tag { left: 0; bottom: -1rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .about__stats { grid-template-columns: 1fr; }
  .gallery__mosaic { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__bg img { animation: none; }
}
