/* =========================================================
   RESET & BASIS
   ========================================================= */

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

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

body {
  font-family: "Times New Roman", Times, serif;
  background: #f5f5f3;
  color: #111;
  line-height: 1.7;
}

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

/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 0 40px;
  background: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.site-nav .logo img {
  width: 42px;
  height: 42px;
}

.nav-links a {
  margin-left: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

/* =========================================================
   HERO – DESKTOP
   ========================================================= */

.hero {
  position: relative;
  height: 100vh;
  margin-top: 88px; /* Platz für Navigation */
  overflow: hidden;
}

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

/* Verlauf für Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.0) 75%
  );
}

/* Text */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 200px 40px 0;
  color: #f5f5f3;
}

.hero-text h1 {
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 24px;
}

.claim {
  font-size: 22px;
  margin-bottom: 14px;
}

.materials {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #d8d8d8;
}

.sub {
  font-size: 14px;
  color: #cfcfcf;
}

/* =========================================================
   FOOTER (auf Hero)
   ========================================================= */

.site-footer {
  position: absolute;
  bottom: 32px;
  left: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #ddd;
}

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

@media (max-width: 768px) {

  .site-nav {
    height: 72px;
    padding: 0 24px;
  }

  .site-nav .logo img {
    width: 34px;
    height: 34px;
  }

  .nav-links a {
    margin-left: 14px;
    font-size: 11px;
  }

  .hero {
    height: 100svh;
    margin-top: 72px;
  }

  .hero-text {
    padding: 120px 24px 0;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .claim {
    font-size: 18px;
  }

  .materials {
    font-size: 11px;
  }

  .sub {
    font-size: 12px;
  }

  .site-footer {
    left: 24px;
    bottom: 24px;
  }
}
/* =========================================================
   WORK PAGE
   ========================================================= */

.work-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 40px 140px;
}

.work-page h1 {
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 40px;
}

.work-page .intro {
  max-width: 680px;
  font-size: 18px;
  margin-bottom: 120px;
}

/* Serienübersicht */
.work-series {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 100px;
}

.series-block {
  display: block;
}

.series-block img {
  border-radius: 32px;
  margin-bottom: 28px;
}

.series-block h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.series-block p {
  font-size: 16px;
  color: #444;
  max-width: 420px;
}
/* =========================================================
   FADE-IN ANIMATION
   ========================================================= */

.fade-in {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================================
   WORK & DETAIL – SAUBERES GALERIE-LAYOUT (FINAL)
   ========================================================= */

/* ---------- WORK SEITE ---------- */

.work-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 160px;
}

.work-page h1 {
  font-size: 56px;
  margin-bottom: 40px;
}

.work-page .intro {
  max-width: 720px;
  font-size: 19px;
  margin-bottom: 120px;
}

/* 2x2 Grid */
.work-series {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 80px;
}

.series-block img {
  border-radius: 28px;
  margin-bottom: 28px;
  transition: opacity 0.4s ease;
}

.series-block h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.series-block p {
  font-size: 17px;
  max-width: 460px;
  color: #444;
}

/* Ruhiger Hover */
.series-block:hover img {
  opacity: 0.85;
}


/* ---------- DETAILSEITEN (TANNED / CLARITY) ---------- */

.series {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 160px;
}

.series-intro h1 {
  font-size: 56px;
  margin-bottom: 40px;
}

.series-intro p {
  font-size: 19px;
  max-width: 720px;
  margin-bottom: 120px;
}

/* 2x2 Galerie pro Leuchte */
.piece {
  margin-bottom: 160px;
}

.piece h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.piece > p {
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 40px;
}

.piece-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.piece-gallery img {
  border-radius: 24px;
}

/* Details unter Bildern */
.piece-details {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
  font-size: 15px;
  max-width: 520px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

  .work-series,
  .piece-gallery {
    grid-template-columns: 1fr;
  }

  .work-page,
  .series {
    padding: 120px 24px 120px;
  }

  .work-page h1,
  .series-intro h1 {
    font-size: 42px;
  }
}
/* =========================================================
   RESET FÜR CONTENT-SEITEN (STUDIO / PROCESS / CONTACT)
   ========================================================= */

/* Fixe Navigation korrekt ausgleichen */
body {
  padding-top: 96px;
}

/* ===============================
   CONTENT-SEITEN – DESKTOP
================================ */

.content-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 32px 160px;
}

/* Hauptüberschrift */
.content-page h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 56px;
}

/* Intro */
.content-page .intro {
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 80px;
}

/* Abschnittsüberschriften */
.content-page h2 {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 120px;
  margin-bottom: 20px;
  color: #222;
}

/* Fließtext */
.content-page p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Dezente Trennlinie vor Abschnitten */
.content-page h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #bbb;
  margin-bottom: 24px;
}

/* ===============================
   CONTENT-SEITEN – MOBILE
================================ */

@media (max-width: 768px) {

  body {
    padding-top: 80px;
  }

  .content-page {
    padding: 96px 22px 120px;
  }

  .content-page h1 {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .content-page .intro {
    font-size: 18px;
    margin-bottom: 56px;
  }

  .content-page h2 {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-top: 72px;
    margin-bottom: 16px;
  }

  .content-page p {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* =========================================================
   LOGO – FINAL FIX
   ========================================================= */

.site-nav .logo {
  display: flex;
  align-items: center;
}

.site-nav .logo img {
  display: block;
  width: auto;
  height: 42px;
  max-height: 42px;
  opacity: 1;
  visibility: visible;
}
/* =========================================================
   FADE-IN ANIMATION (CONTENT)
   ========================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.25s; }
.fade-in.delay-3 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   CONTACT – MAIL HOVER
   ========================================================= */

.contact-mail {
  font-size: 20px;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}

.contact-mail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.contact-mail:hover::after {
  transform: scaleX(1);
}
/* =========================================================
   FINAL NAV FIX
   ========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 0 40px;
  background: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 13px;
  letter-spacing: 0.22em;
  line-height: 1;
}

/* Content darf NICHT unter die Nav rutschen */
body {
  padding-top: 88px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-nav {
    height: 72px;
    padding: 0 24px;
  }

  body {
    padding-top: 72px;
  }

  .brand-text {
    display: none;
  }
}
/* =========================================================
   FOOTER – NORMAL CONTENT PAGES
   ========================================================= */

.site-footer {
  position: static;        /* WICHTIG */
  margin-top: 120px;
  padding: 40px 40px;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.08em;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 24px;
  }
}
/* =========================================================
   HARD RESET – FOOTER FIX (FINAL)
   ========================================================= */

.site-footer {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;

  width: 100%;
  margin-top: 120px;
  padding: 40px 40px;

  font-size: 12px;
  color: #555;
  letter-spacing: 0.08em;

  clear: both;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 24px;
  }
}
/* ===============================
   WORK – SERIES OVERVIEW
================================ */

.work-series {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
  margin-top: 120px;
}

.series-block {
  display: block;
}

.series-block img {
  width: 100%;
  display: block;
  margin-bottom: 28px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.series-block h2 {
  margin: 0 0 12px 0;
  font-size: 22px;
}

.series-block p {
  font-size: 16px;
  color: #444;
  max-width: 520px;
}

/* Hover – subtil, nicht verspielt */
.series-block:hover img {
  transform: scale(1.02);
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .work-series {
    grid-template-columns: 1fr;
    gap: 72px;
  }
}
/* ===============================
   SERIES GALLERY – FINAL GRID
================================ */

.series-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 120px;
}

.series-gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* ===============================
   SERIES INTRO SPACING
================================ */

.series-intro {
  max-width: 640px;
  margin-bottom: 120px;
}

.series-intro p {
  margin-bottom: 22px;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  .series-gallery {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 72px;
  }

  .series-intro {
    margin-bottom: 72px;
  }
}
/* ===============================
   HOME – FINAL LAYOUT
================================ */

.home {
  padding-top: 0;
}

/* HERO IMAGE */
.home-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 0;
}

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

/* INTRO TEXT */
.home-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px 160px;
}

.home-intro h1 {
  font-size: 64px;
  margin-bottom: 18px;
}

.home-intro .claim {
  font-size: 22px;
  margin-bottom: 12px;
}

.home-intro .materials {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.home-intro .sub {
  font-size: 14px;
  color: #555;
}

/* ===============================
   MOBILE – HOME
================================ */

@media (max-width: 768px) {

  .home-hero {
    padding: 72px 0 0;
  }

  .home-hero img {
    width: 100%;
  }

  .home-intro {
    padding: 48px 24px 96px;
  }

  .home-intro h1 {
    font-size: 42px;
  }

  .home-intro .claim {
    font-size: 18px;
  }

  .home-intro .materials {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .home-intro .sub {
    font-size: 12px;
  }
}
