/* ===== Laia Studios — gemeinsames Stylesheet (DE/EN) ===== */
:root {
  --ivory: #F8F4EC;
  --cream: #F0E9DC;
  --sand: #E3D9C6;
  --gold: #B08D57;
  --gold-deep: #96743F;
  --ink: #2E2A26;
  --ink-soft: #6E6459;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --wrap: 72rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4rem); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.site-header.scrolled {
  background: rgba(248, 244, 236, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(46, 42, 38, .07);
  padding-block: .8rem;
}
.wordmark {
  font-weight: 400; font-size: .95rem;
  letter-spacing: .42em; text-transform: uppercase; text-indent: .42em;
  color: var(--ink); text-decoration: none;
}
.lang-switch {
  position: absolute; right: clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: baseline; gap: .55rem;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
}
.lang-link { color: var(--ink-soft); text-decoration: none; transition: color .3s ease; }
.lang-link:hover { color: var(--gold-deep); }
.lang-active { color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: .15rem; }
.lang-sep { color: var(--sand); }

/* ---------- Hero (Text) ---------- */
.hero {
  text-align: center;
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.hero-content { padding-inline: 1.5rem; }
.hero-tagline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.18;
  text-wrap: balance;
}
.hero-tagline em { font-style: italic; color: var(--gold-deep); }
.hero-sub {
  max-width: 34rem; margin: 1.2rem auto 0;
  font-size: 1.02rem; color: var(--ink-soft);
}
.scroll-hint {
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; text-indent: .3em;
  color: var(--ink-soft); text-decoration: none;
}
.scroll-hint svg { animation: drift 2.6s ease-in-out infinite; }
@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Hero-Foto (volle Breite, eigene Section) ---------- */
.hero-photo img { width: 100%; height: auto; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 10vw, 8rem); }
.section--cream { background: var(--cream); }

.label {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: .72rem; font-weight: 400; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep);
}
.label::before, .label::after {
  content: ""; width: 2.6rem; height: 1px; background: var(--gold); opacity: .6;
}

.headline {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; text-align: center;
  margin-top: 1.4rem;
  text-wrap: balance;
}
.headline em { font-style: italic; color: var(--gold-deep); }

.lead {
  max-width: 38rem; margin: 1.6rem auto 0;
  text-align: center; font-size: 1.08rem; color: var(--ink-soft);
}
.lead strong { font-weight: 500; color: var(--ink); }

/* ---------- Kollektion ---------- */
.gallery {
  display: grid; gap: 3.5rem;
  margin-top: 4rem;
}
.card { text-align: center; }
.card-frame {
  overflow: hidden;
  border-radius: 12rem 12rem 1.4rem 1.4rem;
  box-shadow: 0 18px 44px rgba(46, 42, 38, .10);
  background: var(--cream);
}
.card-frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22, .61, .36, 1);
}
.card:hover .card-frame img { transform: scale(1.05); }
.badge {
  display: inline-block; margin-top: 1.6rem;
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; text-indent: .28em;
  color: var(--gold-deep);
  border: 1px solid var(--gold); border-radius: 999px;
  padding: .4rem 1.1rem;
}
.card-name { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin-top: .9rem; }
.card-text { max-width: 22rem; margin: .5rem auto 0; color: var(--ink-soft); font-size: .98rem; }

@media (min-width: 56rem) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: start; }
  .card:nth-child(2) { margin-top: 4rem; }
}

/* ---------- Unikat ---------- */
.unikat { text-align: center; }
.unikat .statement {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.3;
  max-width: 46rem; margin-inline: auto;
  text-wrap: balance;
}
.unikat .statement strong { font-style: normal; font-weight: 600; color: var(--gold-deep); }
.unikat .body { max-width: 36rem; margin: 1.8rem auto 0; color: var(--ink-soft); }
.ornament { display: flex; justify-content: center; margin-top: 2.4rem; color: var(--gold); }

/* ---------- Handwerk ---------- */
.steps { display: grid; gap: 2.5rem; margin-top: 3.5rem; }
.step { border-top: 1px solid var(--sand); padding-top: 1.6rem; }
.step-num { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 2.4rem; color: var(--gold); }
.step-title { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin-top: .4rem; }
.step-text { color: var(--ink-soft); font-size: .98rem; margin-top: .5rem; }

@media (min-width: 56rem) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta-button {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 2.6rem;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--gold); border-radius: 999px;
  color: var(--ink); text-decoration: none;
  font-size: .78rem; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.cta-button:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.cta-button svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--sand);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.35rem; letter-spacing: .3em; text-indent: .3em;
  text-transform: uppercase;
}
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; margin-top: 1.2rem; }
.footer-note { margin-top: .6rem; font-size: .8rem; letter-spacing: .12em; color: var(--ink-soft); }
.footer-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--gold); }
.footer-link:hover { color: var(--gold-deep); }

/* ---------- Motion ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22, .61, .36, 1);
}
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint svg { animation: none; }
}
