/* Lovely Day Flowers — production site
   Mobile-first, responsive. Brand: coral + pink + warm serif. */

/* ---------- Tokens ---------- */
:root {
  --coral: #E8552C;
  --coral-deep: #C53811;
  --pink: #F1D9D1;
  --pink-soft: #EAC9BE;
  --pink-text: #F4B3B6;
  --surface: #F7E6DF;
  --ink: #3A1C16;
  --ink-soft: #8A5044;
  --line: #DDBBAF;
  --sand: #E6C7BB;
  --white: #FBF4F0;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --pad: 22px;
  --radius: 999px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --header-h: 64px;
}

@media (min-width: 768px)  { :root { --pad: 48px; } }
@media (min-width: 1100px) { :root { --pad: 64px; --header-h: 80px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.02; }
p { margin: 0; text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--coral-deep); outline-offset: 3px; }

/* ---------- Utility ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section { padding-block: clamp(56px, 9vw, 120px); border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent); }
.section--pink { background: var(--pink); }
.section--soft { background: var(--pink-soft); }
.section--coral { background: var(--coral); color: var(--pink-text); border-bottom: none; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 26px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .2s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:active { transform: scale(.98); }
.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-deep); }
.btn--pink { background: var(--pink-text); color: var(--coral-deep); }
.btn--pink:hover { background: #fff; }
.btn--outline { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--pink); }
.btn--outline-pink { background: transparent; border-color: var(--pink-text); color: var(--pink-text); }
.btn--outline-pink:hover { background: var(--pink-text); color: var(--coral-deep); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--block { width: 100%; }
@media (min-width: 620px) { .btn--block { width: auto; } }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 8px 26px rgba(24,12,9,.12); }
.header__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brandmark { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em;
  color: currentColor; text-decoration: none; white-space: nowrap; }
.nav { display: none; }
.nav__list { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__list a { text-decoration: none; font-size: 14px; letter-spacing: 0.01em; color: currentColor; opacity: .85; position: relative; }
.nav__list a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: currentColor; transition: width .25s var(--ease); }
.nav__list a:hover { opacity: 1; }
.nav__list a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; align-items: center; gap: 2px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; }
.lang button { background: none; border: none; color: currentColor; opacity: .5; padding: 4px 2px; }
.lang button.active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.lang span { opacity: .35; }
.header .btn { display: none; padding: 10px 18px; }
@media (min-width: 920px) {
  .nav { display: block; }
  .header .btn { display: inline-flex; }
}
/* Burger */
.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: none; border: none; }
.burger span { width: 24px; height: 1.6px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }
@media (min-width: 920px) { .burger { display: none; } }

/* Mobile menu */
.menu { position: fixed; inset: 0; z-index: 90; background: var(--coral); color: var(--pink-text);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden; }
.menu.open { transform: none; visibility: visible; }
.menu a { text-decoration: none; color: var(--pink-text); }
.menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.menu__list li { border-bottom: 1px solid color-mix(in srgb, var(--pink-text) 30%, transparent); }
.menu__list a { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 0;
  font-family: var(--font-display); font-size: clamp(34px, 11vw, 54px); }
.menu__list a span { font-family: var(--font-mono); font-size: 13px; opacity: .6; }
.menu__cta { margin-top: 34px; }

/* ---------- Hero ---------- */
.hero { background: var(--coral); color: var(--pink-text); }
.hero__panel { padding-top: calc(var(--header-h) + 38px); padding-bottom: 44px;
  display: flex; flex-direction: column; min-height: 86svh; }
.hero__top { display: flex; justify-content: space-between; align-items: baseline; color: var(--pink-text); opacity: .9; }
.hero__top .eyebrow { color: inherit; }
.hero__spacer { flex: 1; min-height: 30px; }
.hero__wordmark { font-size: clamp(60px, 19vw, 132px); line-height: 0.9; color: var(--pink-text); }
.hero__sub { margin-top: 24px; max-width: 34ch; font-size: clamp(15px, 1.6vw, 18px); color: var(--pink-text); opacity: .95; }
.hero__cta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.hero__photo { position: relative; }
.hero__photo img { width: 100%; height: clamp(360px, 60vw, 620px); object-fit: cover; }
.hero__tag { position: absolute; left: 16px; bottom: 16px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: #F6EFE0;
  background: rgba(0,0,0,.35); padding: 6px 10px; backdrop-filter: blur(4px); }

@media (min-width: 620px) { .hero__cta { flex-direction: row; } }
@media (min-width: 980px) {
  .hero { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100svh; }
  .hero__panel { min-height: 100svh; padding-right: 56px; }
  .hero__photo img { height: 100svh; }
  .hero__tag { left: 22px; bottom: 22px; }
}

/* ---------- Intro ---------- */
.intro__grid { display: grid; gap: 32px; }
.intro h2 { font-size: clamp(30px, 5vw, 54px); }
.intro__lead { font-size: clamp(16px, 1.7vw, 19px); color: color-mix(in srgb, var(--ink) 85%, transparent); max-width: 60ch; }
.quote { display: flex; gap: 14px; align-items: flex-start; padding-top: 26px; border-top: 1px solid var(--line); }
.quote .mark { font-family: var(--font-display); font-size: 48px; line-height: .7; color: var(--coral); }
.quote p { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(19px, 2.4vw, 28px); line-height: 1.35; }
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .intro__head { position: sticky; top: calc(var(--header-h) + 24px); }
}

/* ---------- Moment ---------- */
.moment { position: relative; height: clamp(440px, 78vw, 720px); display: flex; align-items: flex-end; color: #F6EFE0; }
.moment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.moment__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,10,8,.2), rgba(15,10,8,.12) 40%, rgba(15,10,8,.82)); }
.moment__inner { position: relative; padding-bottom: clamp(34px, 6vw, 80px); }
.moment blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 4.4vw, 52px); line-height: 1.16; max-width: 18ch; text-wrap: balance; }
.moment cite { display: block; margin-top: 16px; font-family: var(--font-mono); font-style: normal;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .85; }

/* ---------- Services ---------- */
.services__head { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: end; margin-bottom: 40px; }
.services h2 { font-size: clamp(32px, 5.5vw, 60px); }
.services__list { display: grid; gap: 0; }
.svc { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 0; border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent); }
.svc:last-child { border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); }
.svc__icon { width: 32px; height: 32px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.svc__icon svg { width: 100%; height: 100%; display: block; }
.svc__head { display: flex; align-items: baseline; gap: 11px; }
.svc__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--coral); }
.svc__title { font-family: var(--font-display); font-size: clamp(21px, 3vw, 30px); line-height: 1.1; }
.svc__desc { color: var(--ink-soft); font-size: 15px; max-width: 56ch; margin-top: 7px; }
@media (min-width: 780px) {
  .services__list { grid-template-columns: 1fr 1fr; column-gap: 56px; }
}

/* ---------- Clients marquee ---------- */
.clients { padding-block: clamp(36px, 5vw, 60px); overflow: hidden; }
.clients .eyebrow { margin-bottom: 20px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 44px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(26px, 4vw, 44px); color: var(--ink); opacity: .7; white-space: nowrap; }
.marquee__track span::after { content: "·"; margin-left: 44px; color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Gallery ---------- */
.gallery__head { display: grid; gap: 16px; margin-bottom: 36px; }
.gallery h2 { font-size: clamp(32px, 5.5vw, 60px); }
.gallery__sub { color: var(--ink-soft); max-width: 52ch; }
@media (min-width: 900px) {
  .gallery__head { grid-template-columns: 1fr auto; align-items: end; column-gap: 40px; }
  .gallery__sub { text-align: right; max-width: 40ch; }
}
/* mobile: scroll-snap rail */
.gallery__rail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); scrollbar-width: none; }
.gallery__rail::-webkit-scrollbar { display: none; }
.proj { flex: 0 0 82%; scroll-snap-align: start; }
.proj__img { aspect-ratio: 3/4; overflow: hidden; background: var(--ink); }
.proj__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.proj:hover .proj__img img { transform: scale(1.04); }
.proj__meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; margin-top: 12px; }
.proj__meta .client { color: var(--coral); }
.proj__meta .year { color: var(--ink-soft); }
.proj__title { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); margin-top: 4px; }
.proj__cap { color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
.gallery__foot { margin-top: 30px; }
@media (min-width: 760px) {
  .gallery__rail { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; overflow: visible; margin-inline: 0; padding-inline: 0; }
  .proj { flex: none; }
  .proj:nth-child(1) { grid-column: span 4; }
  .proj:nth-child(1) .proj__img { aspect-ratio: 16/10; }
  .proj:nth-child(2) { grid-column: span 2; }
  .proj:nth-child(3) { grid-column: span 2; }
  .proj:nth-child(4) { grid-column: span 2; }
  .proj:nth-child(5) { grid-column: span 2; }
  .proj:nth-child(6) { grid-column: span 6; }
  .proj:nth-child(6) .proj__img { aspect-ratio: 21/9; }
}

/* ---------- Process ---------- */
.process__promise { background: var(--coral); color: var(--pink-text); padding: clamp(22px,3vw,32px);
  border-radius: 18px; margin-block: 26px 44px; max-width: 760px; }
.process__promise .eyebrow { color: inherit; opacity: .7; margin-bottom: 10px; }
.process__promise p { font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 3vw, 30px); line-height: 1.25; }
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; position: relative; padding-bottom: 30px; }
.step__n { position: relative; display: flex; justify-content: center; }
.step__dot { width: 40px; height: 40px; border-radius: 50%; background: var(--pink); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; z-index: 2; }
.step:not(:last-child) .step__n::after { content: ""; position: absolute; top: 40px; bottom: -30px; width: 1px; background: var(--line); }
.step h3 { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 26px); margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; max-width: 60ch; }
@media (min-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; column-gap: 64px; }
}

/* ---------- Why ---------- */
.why h2 { font-size: clamp(32px, 5.5vw, 60px); margin-bottom: 40px; color: var(--pink-text); }
.why__grid { display: grid; gap: 0; }
.why__item { padding: 24px 0; border-top: 1px solid color-mix(in srgb, var(--pink-text) 26%, transparent);
  display: grid; grid-template-columns: 30px 1fr; gap: 14px; }
.why__item .n { font-family: var(--font-mono); font-size: 11px; opacity: .6; padding-top: 5px; }
.why__item h3 { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); margin-bottom: 6px; color: var(--pink-text); }
.why__item p { font-size: 14px; opacity: .8; }
@media (min-width: 760px) { .why__grid { grid-template-columns: 1fr 1fr; column-gap: 56px; } }

/* ---------- Persönlich / Founder ---------- */
.about { background: var(--surface); }
.about__grid { display: grid; gap: 30px; align-items: center; }
.about__portrait { position: relative; width: 100%; height: 380px; justify-self: start; overflow: hidden; border-radius: 4px; }
.about__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about__portrait figcaption { position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #F6EFE0;
  background: rgba(0,0,0,.4); padding: 6px 10px; backdrop-filter: blur(4px); }
.about__body .eyebrow { margin-bottom: 16px; }
.about__quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.2; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 22px; text-wrap: balance; }
.about__text { color: var(--ink-soft); font-size: clamp(15px, 1.6vw, 17px); max-width: 56ch; }
.about__sign { margin-top: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.about__name { font-family: var(--font-display); font-size: 22px; color: var(--ink); }
.about__role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); }
.about__cta { margin-top: 26px; }
@media (min-width: 860px) {
  .about__grid { grid-template-columns: 5fr 7fr; gap: 56px; align-items: stretch; }
  .about__portrait { height: 100%; min-height: 420px; }
}

/* ---------- Form ---------- */
.form-sec h2 { font-size: clamp(32px, 5.5vw, 60px); }
.form-sec__sub { color: var(--ink-soft); max-width: 52ch; margin-top: 14px; margin-bottom: 40px; }
.form { display: grid; gap: 26px; max-width: 820px; }
.form__row { display: grid; gap: 26px; }
@media (min-width: 680px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink); background: transparent;
  border: none; border-bottom: 1px solid var(--line); padding: 13px 0; border-radius: 0;
  -webkit-appearance: none; }
.field textarea { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 14px; min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--coral); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 10px 15px; font-size: 13px; border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: var(--radius); transition: all .2s; }
.chip[aria-pressed="true"] { background: var(--coral); color: var(--white); border-color: var(--coral); }
.dropzone { border: 1px dashed var(--line); border-radius: 8px; padding: 22px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.form__submit { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.form__note { font-size: 13px; color: var(--ink-soft); }
.form__success { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px,5vw,44px); text-align: center; }
.form__success .eyebrow { color: var(--coral); margin-bottom: 14px; }
.form__success h3 { font-family: var(--font-display); font-size: clamp(24px,4vw,34px); margin-bottom: 12px; }
.form__success p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.hidden { display: none !important; }

/* ---------- Instagram ---------- */
.ig__head { display: grid; gap: 12px; margin-bottom: 14px; }
.ig h2 { font-size: clamp(30px, 5vw, 52px); }
.ig__sub { color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
@media (min-width: 700px) { .ig__head { grid-template-columns: 1fr auto; align-items: end; } }
.ig__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ig__cell { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ink); }
.ig__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig__cell:hover img { transform: scale(1.05); }
.ig__cell .tag { position: absolute; left: 8px; bottom: 8px; font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.16em; text-transform: uppercase; color: #F6EFE0; background: rgba(0,0,0,.4); padding: 4px 7px; }
.ig__follow { text-decoration: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
@media (min-width: 680px) { .ig__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .ig__grid { grid-template-columns: repeat(6, 1fr); } }

/* ---------- Footer ---------- */
.footer { background: var(--coral); color: var(--pink-text); padding-block: clamp(48px, 7vw, 88px) 120px; }
.footer__grid { display: grid; gap: 40px; }
.footer__brand { font-family: var(--font-display); font-size: clamp(34px, 6vw, 56px); line-height: .95; color: var(--pink-text); }
.footer__tag { margin-top: 16px; max-width: 30ch; }
.footer__contact a, .footer__contact span { display: block; text-decoration: none; color: var(--pink-text); }
.footer__contact .name { font-weight: 500; margin-bottom: 8px; }
.footer__contact .big { font-size: 18px; margin-bottom: 4px; }
.footer__contact .addr { font-size: 14px; margin-top: 10px; }
.footer__social { display: flex; gap: 18px; margin-top: 18px; }
.footer__social a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; }
.footer__bar { margin-top: 48px; padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--pink-text) 26%, transparent);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { text-decoration: none; font-size: 13px; }
.footer__copy { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; }
@media (min-width: 820px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  transform: translateY(140%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: none; }
.sticky-cta a { display: flex; align-items: center; justify-content: space-between;
  background: var(--coral); color: var(--white); text-decoration: none;
  padding: 15px 18px; border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.3); font-weight: 500; }
.sticky-cta .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--white); color: var(--coral);
  display: flex; align-items: center; justify-content: center; }
@media (min-width: 920px) { .sticky-cta { display: none; } }

/* lazy img fade */
img.lazy { opacity: 0; transition: opacity .7s ease; }
img.lazy.loaded { opacity: 1; }

/* ---------- Floral Library (galerie.html) ---------- */
.lib-hero { padding-top: calc(var(--header-h) + 52px); padding-bottom: 26px; background: var(--pink); }
.lib-hero .eyebrow { margin-bottom: 16px; }
.lib-hero h1 { font-size: clamp(40px, 8vw, 92px); line-height: .98; letter-spacing: -0.02em; color: var(--ink); }
.lib-hero p { color: var(--ink-soft); max-width: 60ch; margin-top: 18px; font-size: clamp(15px,1.6vw,18px); }
.lib-filters { position: sticky; top: var(--header-h); z-index: 40;
  background: color-mix(in srgb, var(--pink) 92%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb,var(--line) 55%, transparent); }
.lib-filters__row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 14px 0; }
.lib-filters__row::-webkit-scrollbar { display: none; }
.lib-chip { white-space: nowrap; border: 1px solid var(--line); background: transparent; color: var(--ink);
  padding: 9px 16px; border-radius: 999px; font-size: 13px; cursor: pointer; transition: all .2s; flex: 0 0 auto; }
.lib-chip[aria-pressed=true] { background: var(--coral); color: #fff; border-color: var(--coral); }
.lib-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding: 8px 0 0; }
.lib-grid { columns: 2; column-gap: 14px; padding-block: 26px 90px; }
@media (min-width: 700px){ .lib-grid { columns: 3; } }
@media (min-width: 1100px){ .lib-grid { columns: 4; column-gap: 18px; } }
.lib-card { break-inside: avoid; margin-bottom: 14px; cursor: pointer; position: relative; border-radius: 4px; overflow: hidden; background: var(--ink); display: block; }
.lib-card img { width: 100%; display: block; transition: transform .6s var(--ease); }
.lib-card:hover img { transform: scale(1.04); }
.lib-card__cap { position: absolute; inset: auto 0 0 0; padding: 34px 13px 13px;
  background: linear-gradient(transparent, rgba(20,12,9,.85)); color: #F6EFE0; opacity: 0; transition: opacity .3s; }
.lib-card:hover .lib-card__cap { opacity: 1; }
.lib-card__title { font-family: var(--font-display); font-size: 17px; line-height: 1.1; }
.lib-card__flowers { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; margin-top: 5px; opacity: .9; line-height: 1.6; }
@media (max-width: 699px){ .lib-card__cap { opacity: 1; } }
/* lightbox */
.lb { position: fixed; inset: 0; z-index: 300; background: rgba(18,10,8,.94); display: none; align-items: center; justify-content: center; padding: 20px; }
.lb.open { display: flex; }
.lb__stage { position: relative; max-width: min(94vw, 860px); display: flex; flex-direction: column; align-items: center; }
.lb__img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 4px; }
.lb__title { font-family: var(--font-display); font-size: clamp(22px,3vw,32px); color: #F6EFE0; margin-top: 18px; text-align: center; }
.lb__flowers { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-top: 10px; opacity: .85; color: #F6EFE0; text-align: center; max-width: 60ch; line-height: 1.7; }
.lb__close { position: fixed; top: 18px; right: 22px; background: none; border: none; color: #F6EFE0; font-size: 34px; cursor: pointer; line-height: 1; }
.lb__nav { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: none; color: #F6EFE0; font-size: 42px; cursor: pointer; padding: 10px 16px; opacity: .65; transition: opacity .2s; }
.lb__nav:hover { opacity: 1; }
.lb__prev { left: 6px; } .lb__next { right: 6px; }

/* ---------- Legal pages (impressum / datenschutz) ---------- */
.legal { padding-top: calc(var(--header-h) + 52px); padding-bottom: 90px; background: var(--pink); }
.legal__inner { max-width: 760px; }
.legal .eyebrow { margin-bottom: 16px; }
.legal h1 { font-size: clamp(34px, 6vw, 60px); color: var(--ink); line-height: 1.05; margin-bottom: 24px; overflow-wrap: break-word; hyphens: auto; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); margin: 40px 0 12px; }
.legal p, .legal address { font-style: normal; color: var(--ink); font-size: 16px; line-height: 1.7; margin-bottom: 12px; max-width: 64ch; }
.legal address { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
.legal a { color: var(--coral-deep); }
.legal strong { font-weight: 600; }
.legal .muted { color: var(--ink-soft); font-size: 14px; }
