/* ─────────────────────────────────────────────────────────
   Candy & Serve — Modern Theme
   Editorial, warm, elegant. No generic SaaS vibes.
───────────────────────────────────────────────────────── */

:root {
  /* palette */
  --cream:       #FAF4EC;
  --cream-deep:  #F2E9DC;
  --paper:       #FFFBF5;
  --wine:        #5A1024;
  --wine-deep:   #3D0A18;
  --burgundy:    #7A1733;
  --gold:        #B8894A;
  --gold-soft:   #D9B783;
  --blush:       #F2CFBB;
  --blush-deep:  #E5A489;
  --ink:         #1A1410;
  --ink-soft:    #4A3E34;
  --line:        rgba(26, 20, 16, 0.12);
  --line-soft:   rgba(26, 20, 16, 0.06);

  /* type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --script:"Caveat", cursive;

  /* layout */
  --container: 1280px;
  --radius-sm: 10px;
  --radius:    20px;
  --radius-lg: 32px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: clamp(15px, 1.1vw, 17px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: italic; }

/* ─── GRAIN OVERLAY ─── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.1, 0 0 0 0 0.1, 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ─── UTILITIES ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.eyebrow--light { color: var(--blush); }
.eyebrow--light::before { background: var(--blush); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.02;
}
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); letter-spacing: -0.01em; line-height: 1.15; }
h2 em, h1 em { font-style: italic; color: var(--wine); font-family: var(--serif); }

.section-head {
  max-width: 720px;
  margin: 0 auto 60px 0;
}
.section-head--center { text-align: center; margin: 0 auto 60px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--wine);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(90, 16, 36, 0.5);
}
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover {
  background: var(--wine);
}
.btn--wide { width: 100%; justify-content: center; padding: 18px 28px; }

.linkline {
  display: inline-flex; gap: 4px;
  font-weight: 500;
  color: var(--wine);
  font-size: 0.95rem;
  position: relative;
}
.linkline::after {
  content: ""; position: absolute; left: 0; right: 24px; bottom: -2px;
  height: 1px; background: currentColor;
  transform-origin: left; transform: scaleX(1);
  transition: transform 0.4s var(--ease);
}
.linkline:hover::after { transform: scaleX(0); transform-origin: right; }

/* ─── NAVBAR ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 22px clamp(24px, 4vw, 56px);
  transition: all 0.5s var(--ease);
}
.nav::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(250, 244, 236, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}
.nav.is-scrolled::before { opacity: 1; }
.nav.is-scrolled { padding: 14px clamp(24px, 4vw, 56px); }

.nav__brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--serif);
}
.nav__brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--sans);
}
.nav__brand-name {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.nav__brand-name em {
  color: var(--wine);
  font-weight: 300;
  padding: 0 2px;
}

.nav__links {
  display: flex; gap: 34px;
  justify-self: center;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__links a::before {
  content: "✦"; position: absolute; left: -16px; top: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  color: var(--wine);
  font-size: 10px;
  transition: all 0.3s var(--ease);
}
.nav__links a:hover { color: var(--wine); }
.nav__links a:hover::before { opacity: 1; transform: translateY(-50%) scale(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--wine);
  gap: 12px;
}

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  position: absolute; left: 9px;
  transition: transform 0.4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 160px clamp(24px, 4vw, 56px) 80px;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

.hero__marquee {
  position: absolute;
  top: 100px; left: 0; right: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.08;
}
.hero__marquee-track {
  display: flex; gap: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  color: var(--wine);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}

.hero__copy { max-width: 620px; }
.hero__copy .eyebrow { margin-bottom: 32px; }

.hero__title {
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.hero__line { display: block; }
.hero__line:nth-child(2) { padding-left: clamp(20px, 4vw, 60px); }
.hero__line:nth-child(3) { padding-left: clamp(40px, 8vw, 120px); }
.hero__line em {
  font-family: var(--script);
  color: var(--wine);
  font-weight: 500;
  font-style: normal;
  font-size: 1.1em;
  letter-spacing: -0.02em;
}
.hero__line--outline {
  -webkit-text-stroke: 1.5px var(--wine);
  color: transparent;
  font-style: italic;
  font-weight: 500;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__lead strong { color: var(--ink); font-weight: 500; }

.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 500px;
}
.hero__stats > div {
  display: flex; flex-direction: column; gap: 2px;
}
.hero__stats dt {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__stats dd {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero__stats span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}
.hero__card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  transition: transform 0.6s var(--ease);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card figcaption {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,251,245,0.92);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}

.hero__card--main {
  top: 0; right: 0;
  width: 76%; height: 78%;
  z-index: 2;
}
.hero__card--a {
  bottom: 0; left: 0;
  width: 45%; height: 42%;
  z-index: 3;
  transform: rotate(-3deg);
}
.hero__card--b {
  top: 58%; right: -4%;
  width: 38%; height: 36%;
  z-index: 1;
  transform: rotate(5deg);
}
.hero__card--main:hover { transform: scale(1.02); }
.hero__card--a:hover { transform: rotate(-1deg) scale(1.04); }
.hero__card--b:hover { transform: rotate(2deg) scale(1.04); }

.hero__sticker {
  position: absolute;
  top: -28px; left: -28px;
  width: 120px; height: 120px;
  z-index: 4;
  animation: spin 18s linear infinite;
}
.hero__sticker svg {
  width: 100%; height: 100%;
}
.hero__sticker text {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  fill: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
}
.hero__sticker-core {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--wine);
  font-size: 24px;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── STATEMENT ─── */
.statement {
  padding: 80px clamp(24px, 4vw, 56px) 100px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.statement p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.statement em { color: var(--wine); font-style: italic; }
.statement__quote {
  font-family: var(--serif);
  font-size: 3em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
}
.statement__quote--close { margin-right: 0; margin-left: 0.1em; }

/* ─── LEISTUNGEN ─── */
.leistungen {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.service {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  position: relative;
  grid-column: span 2;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(26,20,16,0.2);
}
.service--large { grid-column: span 6; flex-direction: row; }
.service--large .service__media {
  width: 50%; aspect-ratio: auto;
}
.service--large .service__body {
  width: 50%;
  padding: 48px 44px;
  justify-content: center;
}

.service__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service:hover .service__media img { transform: scale(1.05); }

.service__body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}

.service__tag {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--blush);
  margin-bottom: 8px;
}
.service h3 { margin: 0; }
.service p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service__lead { font-size: 1rem !important; }

.service__foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--line-soft);
}
.price {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.price strong {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--wine);
}

/* ─── ÜBER LANA ─── */
.ueber {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}

.ueber__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ueber__portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.ueber__portrait::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(90,16,36,0.3));
  z-index: 1;
}
.ueber__sig {
  position: absolute;
  bottom: 30px; right: 36px;
  font-family: var(--script);
  font-size: 3.5rem;
  color: var(--cream);
  z-index: 2;
  transform: rotate(-6deg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.ueber__text .eyebrow { margin-bottom: 18px; }
.ueber__text h2 { margin-bottom: 20px; }
.ueber__text .lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--wine);
  margin-bottom: 24px;
  font-style: italic;
}
.ueber__text p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}

.ueber__ziel {
  position: relative;
  background: var(--paper);
  border-left: 3px solid var(--wine);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  max-width: 520px;
}
.ueber__ziel-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 8px;
}
.ueber__ziel p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.45;
}

/* ─── GALERIE ─── */
.galerie {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.galerie__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.galerie__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.galerie__item:hover img { transform: scale(1.06); }
.galerie__item--tall { grid-row: span 2; }
.galerie__item--wide { grid-column: span 2; }

/* ─── PREISE ─── */
.preise {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}
.preise__table {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.preise__row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.8fr;
  gap: 24px;
  padding: 24px 32px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease);
}
.preise__row:last-child { border-bottom: none; }
.preise__row:hover { background: var(--cream-deep); }

.preise__row--head {
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.preise__row--head:hover { background: var(--ink); }

.preise__name {
  font-family: var(--serif);
  font-size: 1.15rem;
}
.preise__name em {
  color: var(--wine);
  font-style: italic;
}
.preise__row span:nth-child(2) {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.preise__price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wine);
  text-align: right;
  letter-spacing: -0.01em;
}

/* ─── PROZESS ─── */
.prozess {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}
.prozess__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.prozess__steps li {
  position: relative;
  padding: 40px 32px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  transition: all 0.5s var(--ease);
}
.prozess__steps li:hover {
  transform: translateY(-4px);
  border-color: var(--wine);
  box-shadow: 0 20px 40px -20px rgba(90,16,36,0.15);
}
.prozess__steps li:hover .prozess__num {
  opacity: 1;
  transform: translateX(4px);
}
.prozess__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.prozess__steps h3 { margin-bottom: 10px; }
.prozess__steps p { color: var(--ink-soft); font-size: 0.95rem; }

/* ─── KONTAKT ─── */
.kontakt {
  margin: 60px clamp(24px, 4vw, 56px);
  background: var(--wine);
  color: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
}
.kontakt::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,74,0.25), transparent 60%);
  pointer-events: none;
}
.kontakt__inner {
  padding: 80px clamp(32px, 5vw, 80px);
  position: relative; z-index: 2;
}
.kontakt__inner h2 {
  color: var(--cream);
  margin: 18px 0 20px;
}
.kontakt__inner h2 em {
  color: var(--blush);
  font-family: var(--script);
  font-weight: 500;
  font-style: normal;
}
.kontakt__inner > p {
  color: var(--blush);
  max-width: 46ch;
  margin-bottom: 40px;
  line-height: 1.6;
}

.kontakt__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: rgba(250,244,236,0.08);
  border: 1px solid rgba(250,244,236,0.2);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 12px;
  font: inherit;
  transition: all 0.3s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(242, 207, 187, 0.5);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blush);
  background: rgba(250,244,236,0.12);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field select option { background: var(--wine-deep); color: var(--cream); }
.kontakt .btn--primary {
  background: var(--cream);
  color: var(--wine);
  margin-top: 10px;
  grid-column: span 2;
}
.kontakt .btn--primary:hover {
  background: var(--blush);
  color: var(--wine-deep);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
}

.kontakt__micro {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(242, 207, 187, 0.7);
  max-width: 48ch;
}

.kontakt__side {
  position: relative;
  overflow: hidden;
}
.kontakt__side img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.kontakt__side::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--wine) 0%, transparent 30%);
}

/* ─── FOOTER ─── */
.foot {
  padding: 80px clamp(24px, 4vw, 56px) 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.foot__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.foot__brand p {
  color: var(--ink-soft);
  max-width: 28ch;
  margin-top: 12px;
}
.foot__logo {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.foot__logo em { color: var(--wine); font-weight: 300; padding: 0 4px; }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.foot__cols h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
  margin-bottom: 18px;
}
.foot__cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot__cols a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.foot__cols a:hover { color: var(--wine); }

.foot__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.foot__top-link {
  font-weight: 500; color: var(--wine);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SHOWREEL (VIDEO) ─── */
.showreel {
  padding: 60px clamp(24px, 4vw, 56px) 100px;
  max-width: var(--container);
  margin: 0 auto;
}
.showreel .section-head { margin-bottom: 40px; }

.showreel__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 80px -40px rgba(90,16,36,0.35);
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 496 / 368;
}
.showreel__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showreel__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(250,244,236,0.08);
  z-index: 3;
}

.showreel__controls {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 4;
}
.showreel__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(250,244,236,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--cream);
  border: 1px solid rgba(250,244,236,0.25);
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
}
.showreel__btn:hover {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--cream);
}
.showreel__btn .icon-sound-on  { display: none; }
.showreel__btn.is-on .icon-sound-off { display: none; }
.showreel__btn.is-on .icon-sound-on  { display: inline; }

.showreel__badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(10,6,4,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  border: 1px solid rgba(250,244,236,0.15);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.showreel__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 0 rgba(242, 207, 187, 0.7);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242, 207, 187, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(242, 207, 187, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 207, 187, 0); }
}

/* ─── SHOWCASE (Real Setup Fotos) ─── */
.showcase {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.showcase__head { position: sticky; top: 120px; }
.showcase__head .eyebrow { margin-bottom: 18px; }
.showcase__head h2 { margin-bottom: 20px; }
.showcase__head p {
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.7;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.showcase__tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper);
  transition: transform 0.5s var(--ease);
}
.showcase__tile:hover { transform: translateY(-4px); }
.showcase__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.showcase__tile:hover img { transform: scale(1.04); }

.showcase__tile figcaption {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  padding: 10px 14px;
  background: rgba(255,251,245,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--ink);
  font-style: italic;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}
.showcase__tile:hover figcaption {
  opacity: 1; transform: translateY(0);
}

.showcase__tile--hero { grid-column: span 2; aspect-ratio: 16 / 10; }
.showcase__tile--wide { grid-column: span 2; aspect-ratio: 16 / 9; }

/* ─── SKIP-LINK ─── */
.skip {
  position: fixed;
  top: -100px; left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: top 0.3s var(--ease);
}
.skip:focus-visible { top: 16px; outline: 2px solid var(--wine); outline-offset: 2px; }

/* ─── SCROLL-PROGRESS ─── */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 101;
  background: transparent;
}
.progress span {
  display: block; height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transition: width 0.1s linear;
}

/* ─── FOCUS STATES ─── */
:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav__cta:focus-visible {
  outline-offset: 4px;
}

/* ─── HERO SCROLL INDICATOR ─── */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}
.hero__scroll:hover { opacity: 1; color: var(--wine); }
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--ink-soft) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--wine);
  animation: scrollDown 2.2s var(--ease) infinite;
}
@keyframes scrollDown {
  0%   { top: -40%; }
  100% { top: 100%; }
}

/* ─── ANLÄSSE ─── */
.anlaesse {
  padding: 100px clamp(24px, 4vw, 56px) 40px;
  max-width: var(--container);
  margin: 0 auto;
}
.anlaesse__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.anlass {
  padding: 40px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.anlass::before {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.anlass:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(90,16,36,0.18);
  border-color: transparent;
}
.anlass:hover::before { transform: scaleX(1); }

.anlass__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--wine);
  display: grid; place-items: center;
}
.anlass__icon svg { width: 100%; height: 100%; }
.anlass h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.anlass p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── FAQ ─── */
.faq {
  padding: 100px clamp(24px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 120px; }
.faq__head .eyebrow { margin-bottom: 18px; }
.faq__head h2 { margin-bottom: 20px; }
.faq__head p {
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq__item[open] {
  background: var(--cream-deep);
  border-color: var(--wine);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--wine); }
.faq__plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq__plus::before { width: 12px; height: 1.2px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1.2px; height: 12px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__plus {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__answer {
  padding: 0 28px 28px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 60ch;
}
.faq__answer p { margin: 0; }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  z-index: 90;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--wine);
  transform: translateY(-2px) scale(1.05);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 6, 4, 0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__figure {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lightbox__figure figcaption {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--blush);
  font-style: italic;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250,244,236,0.1);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  border: 1px solid rgba(250,244,236,0.2);
  transition: all 0.3s var(--ease);
}
.lightbox__close:hover { background: var(--cream); color: var(--ink); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(250,244,236,0.1);
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  border: 1px solid rgba(250,244,236,0.2);
  transition: all 0.3s var(--ease);
}
.lightbox__nav:hover { background: var(--cream); color: var(--ink); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* Gallery cursor hint */
.galerie__item { cursor: zoom-in; }
.galerie__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.galerie__item:hover::after { opacity: 1; }

/* ─── FORM EXTRAS ─── */
.field__hint {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 8px;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--blush-deep);
  background: rgba(229,164,137,0.1);
}
.form-success {
  grid-column: span 2;
  display: none;
  align-items: center; gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(250,244,236,0.15);
  border: 1px solid var(--blush);
  color: var(--cream);
  font-size: 0.95rem;
  animation: fadeIn 0.5s var(--ease);
}
.form-success.is-visible { display: flex; }
.form-success svg { flex-shrink: 0; color: var(--blush); }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__marquee-track,
  .hero__sticker,
  .hero__scroll-line::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 80px; }
  .hero__visual { justify-self: center; max-width: 480px; }
  .hero__title { font-size: clamp(3rem, 10vw, 5rem); }
  .hero__scroll { display: none; }

  .anlaesse__grid { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .showcase__head { position: static; }

  .leistungen__grid { grid-template-columns: repeat(2, 1fr); }
  .service { grid-column: span 1; }
  .service--large { grid-column: span 2; flex-direction: column; }
  .service--large .service__media,
  .service--large .service__body { width: 100%; }
  .service--large .service__body { padding: 32px; }

  .ueber { grid-template-columns: 1fr; gap: 48px; }
  .kontakt { grid-template-columns: 1fr; }
  .kontakt__side { display: none; }

  .galerie__grid { grid-template-columns: repeat(2, 1fr); }
  .galerie__item--wide { grid-column: span 2; }

  .prozess__steps { grid-template-columns: 1fr; }

  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__tile,
  .showcase__tile--hero,
  .showcase__tile--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .showcase__tile figcaption { opacity: 1; transform: none; }
  .showreel__controls { bottom: 12px; right: 12px; }
  .showreel__badge { top: 12px; left: 12px; padding: 6px 10px; }

  .anlaesse__grid { grid-template-columns: 1fr; }
  .faq__item summary { padding: 20px 22px; font-size: 1rem; }
  .faq__answer { padding: 0 22px 22px; }
  .back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .lightbox { padding: 20px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }

  .nav__links { display: none; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px 14px; }
  .nav__burger { display: grid; }

  .hero { padding-top: 120px; }
  .hero__stats { grid-template-columns: 1fr; gap: 18px; }
  .hero__stats > div { flex-direction: row; align-items: baseline; gap: 10px; flex-wrap: wrap; }

  .leistungen__grid { grid-template-columns: 1fr; }
  .service--large { grid-column: span 1; }

  .preise__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
  .preise__row--head { display: none; }
  .preise__price { text-align: left; font-size: 1.1rem; }

  .kontakt__form { grid-template-columns: 1fr; }
  .field--full, .kontakt .btn--primary { grid-column: span 1; }

  .galerie__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .galerie__item--wide, .galerie__item--tall { grid-column: span 1; grid-row: span 1; }

  .foot__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__bottom { flex-direction: column; gap: 12px; }

  .hero__sticker { width: 88px; height: 88px; top: -20px; left: -12px; }
}
