/* ============================================================
   Zuckerkuss — geteilte Stile
   ============================================================ */

:root {
  --paper:      #FAF8F5;
  --cream:      #F0ECE5;
  --wine:       #8E2424;
  --wine-deep:  #6B1818;
  --ink:        #2A1F1A;
  --ink-soft:   #6B574B;
  --blush:      #E5CFC0;
  --line:       rgba(42, 31, 26, 0.14);

  --f-display:  "Italiana", "Cormorant Garamond", serif;
  --f-serif:    "Cormorant Garamond", serif;
  --f-sans:     "Manrope", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  opacity: 0;
  animation: pageFade 0.9s ease 0.05s forwards;
}
@keyframes pageFade { to { opacity: 1; } }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* selection */
::selection { background: var(--wine); color: var(--paper); }

/* ============ NAV (absolut, scrollt mit) ============ */
.nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 40px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  opacity: 0.96;
  transition: opacity .3s ease;
}
.nav__brand:hover { opacity: 1; }
.nav__brand img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex; gap: 36px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 500;
}
.nav__links a { position: relative; padding: 6px 0; color: var(--paper); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor; transition: right .35s ease;
}
.nav__links a:hover::after,
.nav__links a.is-active::after { right: 0; }

/* ============ HERO (Startseite) ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s ease-out forwards;
  filter: brightness(0.78) saturate(0.92);
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.08) translateY(0); }
  to   { transform: scale(1.16) translateY(-2%); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 24px;
  color: var(--paper);
  text-align: center;
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.6;
}
.hero__logo {
  width: min(720px, 78vw);
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transform: translateY(0);
  animation: heroRise 1.2s cubic-bezier(.2,.7,.2,1) 0.2s both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 0.96; transform: translateY(0); }
}
.hero__tag {
  margin-top: 36px;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  max-width: 640px;
  line-height: 1.45;
  animation: heroRise 1.2s cubic-bezier(.2,.7,.2,1) 0.5s both;
}
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0.85;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 44px;
  background: currentColor;
  animation: pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ============ STATEMENT ============ */
.statement {
  padding: 140px 40px 120px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.statement h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
}
.statement h2 em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: inherit;
}
.statement__rule {
  width: 60px; height: 1px;
  background: var(--wine);
  margin: 48px auto 0;
}

/* ============ MOSAIK-KOLLEKTION ============ */
.collection {
  padding: 0 28px 120px;
}
.collection__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 12px 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.collection__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Zeilenhöhe = Spaltenbreite → quadratische Kacheln (1:1).
     Breite = 100vw − Padding(2×28) − 3 Lücken(3×14). */
  grid-auto-rows: calc((100vw - 56px - 42px) / 4);
  grid-auto-flow: dense;
  gap: 14px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(0.96);
}
.tile:hover img {
  transform: scale(1.03);
  filter: saturate(1.02);
}
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,26,0) 35%, rgba(42,31,26,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.tile__label {
  position: absolute; left: 24px; bottom: 22px; right: 24px;
  z-index: 2;
  color: var(--paper);
  pointer-events: none;
}
.tile__name {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.1vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1;
  transform: translateY(0);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.tile:hover .tile__name { transform: translateY(-2px); }

/* Verspielter Pfeil neben dem Namen — weiß, ohne Hintergrund, nur beim Hover */
.tile__name::after {
  content: "";
  display: inline-block;
  width: 0.66em; height: 0.66em;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
  transform: translateX(-7px);
  transition: opacity .4s ease, transform .55s cubic-bezier(.34,1.56,.64,1), max-width .5s cubic-bezier(.2,.7,.2,1), margin-left .5s cubic-bezier(.2,.7,.2,1);
}
.tile:hover .tile__name::after {
  opacity: 1;
  max-width: 1em;
  margin-left: 0.42em;
  transform: translateX(0);
}

/* mosaic — zwei Formate: Standard (1×1) und Feature (2×2) */
.tile--feature { grid-column: span 2; grid-row: span 2; }

/* ============ EDITORIAL SPLIT ============ */
.editorial {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}
.editorial__media {
  background: #000;
  position: relative;
  overflow: hidden;
}
.editorial__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 9s linear;
}
.editorial__media:hover img { transform: scale(1.06); }
.editorial__text {
  padding: clamp(60px, 8vw, 120px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 28px;
}
.editorial h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.editorial h3 em {
  font-family: inherit;
  font-style: normal;
  color: inherit;
  font-weight: inherit;
}
.editorial p.lede {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
  max-width: 460px;
}
.editorial__cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid rgba(247,241,230,0.4);
  align-self: flex-start;
  margin-top: 8px;
  transition: gap .35s ease, border-color .3s ease;
  cursor: pointer;
}
.editorial__cta:hover { gap: 22px; border-color: var(--paper); }
.editorial__cta svg { width: 18px; height: 8px; }

/* ============ FAVORITEN (Strip) ============ */
.favoriten {
  padding: 130px 0 110px;
  background: var(--paper);
}
.favoriten__head {
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.favoriten__head::before,
.favoriten__head::after {
  content: ""; height: 1px; background: var(--line);
}
.favoriten__head h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
.favoriten__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 28px;
}
.favorit {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
  display: block;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.favorit img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.favorit:hover img { transform: scale(1.04); }
.favorit::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,26,0) 55%, rgba(42,31,26,0.55) 100%);
  pointer-events: none;
}
.favorit__cap {
  position: absolute; left: 20px; bottom: 18px;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  z-index: 1;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.favorit:hover .favorit__cap { transform: translateY(-2px); }

/* ============ ANFRAGE (CTA Block) ============ */
.anfrage {
  background: var(--paper);
  padding: clamp(90px, 12vw, 160px) 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.anfrage__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.anfrage h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.anfrage p {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  margin: 0 0 48px;
  color: var(--ink-soft);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  background: var(--wine);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: background-color .35s ease, transform .35s ease, gap .35s ease, box-shadow .35s ease;
  box-shadow: 0 8px 24px -12px rgba(142, 36, 36, 0.6);
}
.cta-btn:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  gap: 22px;
  box-shadow: 0 14px 32px -14px rgba(107, 24, 24, 0.7);
}
.cta-btn svg { width: 18px; height: 10px; flex-shrink: 0; }
.cta-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: none;
}
.cta-btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

/* ============ UNTERSEITE — Hero ============ */
.page-hero {
  position: relative;
  height: 78vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
}
.page-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: kenburns 22s ease-out forwards;
  filter: brightness(0.7) saturate(0.94);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.page-hero__inner {
  position: relative; z-index: 2;
  height: 100%;
  padding: 110px 40px 80px;
  color: var(--paper);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  max-width: 1300px;
  margin: 0 auto;
}
.page-hero__crumbs {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 24px;
  display: flex; gap: 14px; align-items: center;
}
.page-hero__crumbs a { transition: opacity .3s ease; }
.page-hero__crumbs a:hover { opacity: 0.6; }
.page-hero__crumbs span { opacity: 0.5; }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 130px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
  animation: heroRise 1.1s cubic-bezier(.2,.7,.2,1) 0.2s both;
}
.page-hero__tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  margin: 32px 0 0;
  max-width: 640px;
  line-height: 1.45;
  opacity: 0.92;
  animation: heroRise 1.1s cubic-bezier(.2,.7,.2,1) 0.45s both;
}

/* ============ GALERIE (Subpage masonry) ============ */
.galerie {
  padding: 100px 28px 120px;
  background: var(--paper);
}
.galerie__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 12px 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.galerie__head h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}
.galerie__grid {
  column-count: 3;
  column-gap: 18px;
}
.galerie__cell {
  break-inside: avoid;
  margin: 0 0 18px;
  display: block;
  overflow: hidden;
  background: var(--cream);
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}
.galerie__cell.in {
  opacity: 1;
  transform: none;
}
.galerie__cell img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(0.96);
}
.galerie__cell:hover img {
  transform: scale(1.02);
  filter: saturate(1.02);
}
.galerie__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,31,26,0) 70%, rgba(42,31,26,0.35) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.galerie__cell:hover::after { opacity: 1; }
.galerie__empty {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  padding: 80px 0;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 40px 40px;
}
.foot {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(247,241,230,0.18);
}
.foot__brand-logo {
  width: 240px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 24px;
}
.foot__tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.82;
  max-width: 360px;
  margin: 0 0 32px;
}
.foot h4 {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 22px;
  color: rgba(247, 241, 230, 0.55);
}
.foot__contact p {
  font-family: var(--f-serif);
  font-size: 22px;
  margin: 0 0 14px;
  font-weight: 300;
}
.foot__contact .mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  position: relative;
  transition: color .3s ease;
}
.foot__contact .mail::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--paper); transform-origin: left;
  transform: scaleX(0.18);
  transition: transform .45s ease;
}
.foot__contact .mail:hover { color: var(--paper); }
.foot__contact .mail:hover::after { transform: scaleX(1); }

.foot__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.foot__social a {
  font-family: var(--f-serif);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color .3s ease, gap .3s ease;
  width: max-content;
}
.foot__social a:hover { color: var(--paper); gap: 18px; }
.foot__social a svg { width: 14px; height: 14px; opacity: 0.7; }

.foot__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 22px;
  background: var(--wine);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: background-color .35s ease, gap .35s ease;
}
.foot__cta:hover { background: var(--wine-deep); gap: 20px; }
.foot__cta svg { width: 16px; height: 10px; }

.foot__legal {
  max-width: 1500px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.55);
}
.foot__legal-links a { margin-left: 24px; transition: color .3s ease; }
.foot__legal-links a:hover { color: var(--paper); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Sitemap-Liste im Footer */
.foot__sitemap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__sitemap a {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--paper);
  opacity: 0.82;
  transition: opacity .3s ease, color .3s ease, padding-left .3s ease;
  display: inline-block;
}
.foot__sitemap a:hover {
  opacity: 1;
  color: var(--paper);
  padding-left: 6px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { padding: 22px 24px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial__media { min-height: 60vh; }
  .favoriten__row { grid-template-columns: repeat(2, 1fr); }
  .foot { grid-template-columns: 1fr 1fr; gap: 50px; }
  .galerie__grid { column-count: 2; }
}
@media (max-width: 760px) {
  .hero { min-height: 600px; }
  .nav__links { gap: 18px; font-size: 10px; }
  .statement { padding: 90px 24px 70px; }
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    /* Breite = 100vw − Padding(2×28) − 1 Lücke(10) */
    grid-auto-rows: calc((100vw - 56px - 10px) / 2);
    gap: 10px;
  }
  .tile--feature { grid-column: span 2; grid-row: span 2; }
  .favoriten__head { grid-template-columns: 1fr; }
  .favoriten__head::before, .favoriten__head::after { display: none; }
  .galerie__grid { column-count: 1; }
  .foot { grid-template-columns: 1fr; gap: 50px; }
  .foot__legal { flex-direction: column; gap: 12px; text-align: center; }
  .foot__legal-links a { margin: 0 12px; }
  .page-hero__inner { padding: 90px 24px 60px; }
}
