/* 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;
  --cream: #FAF6F0;

  --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%; }
.has-sub { position: relative; }
.has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav__sub { position: absolute; top: calc(100% + 12px); left: -14px; min-width: 234px; margin: 0;
  list-style: none; background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; display: flex; flex-direction: column; gap: 2px; z-index: 60;
  box-shadow: 0 20px 44px -22px rgba(58,28,22,.45);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease); }
.has-sub:hover .nav__sub, .has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 13.5px;
  color: var(--ink); opacity: .9; white-space: nowrap; }
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: var(--pink); opacity: 1; }
.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 */
/* Mobile menu — kompaktes Panel unter dem Header (überdeckt nicht den ganzen Hintergrund) */
.menu { position: fixed; top: calc(var(--header-h) + 8px); left: 12px; right: 12px; bottom: auto; height: auto; z-index: 90;
  background: var(--coral); color: var(--pink-text); border-radius: 18px;
  padding: 14px 20px 20px; max-height: calc(100dvh - var(--header-h) - 20px); overflow-y: auto;
  box-shadow: 0 30px 60px -22px rgba(58, 28, 22, .55);
  opacity: 0; transform: translateY(-10px); transform-origin: top right; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease); visibility: hidden; }
.menu.open { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.menu a { text-decoration: none; color: var(--pink-text); }
.menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.menu__list li { border-bottom: 1px solid color-mix(in srgb, var(--pink-text) 26%, transparent); }
.menu__list li:last-child { border-bottom: 0; }
.menu__list a { display: flex; align-items: baseline; justify-content: space-between; padding: 13px 0;
  font-family: var(--font-display); font-size: clamp(22px, 6.4vw, 30px); }
.menu__list a span { font-family: var(--font-mono); font-size: 12px; opacity: .55; }
.menu__cta { margin-top: 18px; }
.menu__more { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.menu__more a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  border: 1px solid color-mix(in srgb, var(--pink-text) 40%, transparent); border-radius: 999px;
  padding: 8px 13px; color: var(--pink-text); text-decoration: none; }
.menu__more a:hover { background: color-mix(in srgb, var(--pink-text) 14%, transparent); }

/* ---------- Bibliothek-Feature ---------- */
.libfeature { background: var(--cream); }
.libfeature__head { display: flex; flex-wrap: wrap; gap: 18px 32px; align-items: flex-end; justify-content: space-between; }
.libfeature h2 { font-size: clamp(28px, 4.4vw, 46px); max-width: 20ch; margin: 10px 0 14px; color: var(--ink); }
.libfeature__text { max-width: 56ch; color: var(--ink-soft); }
.libfeature__cta { flex-shrink: 0; }
.libfeature__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
@media (min-width: 760px) { .libfeature__strip { grid-template-columns: repeat(6, 1fr); } }
.libfeature__strip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px;
  border: 1px solid var(--line); background: var(--white); transition: border-color .2s var(--ease); }
.libfeature__strip:hover img { border-color: var(--coral); }

/* ---------- 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; }

/* ---------- Photo bands ---------- */
.photoband { position: relative; height: clamp(260px, 40vw, 500px); overflow: hidden; background: var(--pink); }
.photoband img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photoband__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: 768px) { .photoband__tag { left: 22px; bottom: 22px; } }

/* ---------- 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 h3 { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 26px); margin-bottom: 8px; }
.step:not(:last-child) .step__n::after { content: ""; position: absolute; top: 40px; bottom: -30px; width: 1px; background: var(--line); }
.step__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.step__head h3 { margin-bottom: 0; }
.step__icon { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; }
.step__icon svg { width: 100%; height: 100%; display: block; }
.step p { color: var(--ink-soft); font-size: 15px; max-width: 60ch; }
@media (min-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, auto); grid-auto-flow: column; column-gap: 64px; }
  /* Spaltenfluss: 01/02/03 links, 04/05 rechts — Linie nur innerhalb der Spalte */
  .steps .step:nth-child(3) .step__n::after { display: none; }
}

/* ---------- 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: 28px 1fr; gap: 14px; }
.why__item .n { font-family: var(--font-mono); font-size: 11px; opacity: .6; padding-top: 5px; }
.why__icon { width: 24px; height: 24px; color: var(--pink-text); flex-shrink: 0; margin-top: 2px; }
.why__icon svg { width: 100%; height: 100%; display: block; }
.form__error { flex-basis: 100%; margin-top: 10px; font-size: 14px; color: var(--coral); }
.form__error a { color: var(--coral); text-decoration: underline; font-weight: 500; }
.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; } }

/* ---------- Investment / Orientierung ---------- */
.invest h2 { font-size: clamp(30px, 5vw, 54px); margin-bottom: 16px; color: var(--ink); }
.invest__promise { max-width: 30ch; font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 3vw, 30px); line-height: 1.25; color: var(--coral); margin-bottom: 22px; text-wrap: balance; }
.invest__lead { max-width: 60ch; color: var(--ink-soft); font-size: clamp(16px, 1.9vw, 19px); margin-bottom: 36px; }
.invest__grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .invest__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.invest__card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; }
.invest__card--accent { background: var(--coral); border-color: var(--coral); color: var(--pink-text); }
.invest__from { font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px; }
.invest__card--accent .invest__from { color: var(--pink-text); opacity: .9; }
.invest__card h3 { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 27px); margin-bottom: 10px; color: var(--ink); }
.invest__card--accent h3 { color: #fff; }
.invest__card p:not(.invest__from) { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.invest__card--accent p:not(.invest__from) { color: var(--pink-text); opacity: .92; }
.invest__note { margin-top: 26px; max-width: 70ch; font-size: 13.5px; color: var(--ink-soft); opacity: .85; }
.invest__cta { margin-top: 28px; }

/* ---------- Auf Empfehlung ---------- */
.reco__headline { font-size: clamp(28px, 4.6vw, 48px); color: var(--ink); margin-bottom: 16px; max-width: 20ch; }
.reco__lead { max-width: 64ch; color: var(--ink-soft); font-size: clamp(16px, 1.9vw, 19px); margin-bottom: 38px; }
.reco__grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .reco__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.reco__point { background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(22px, 2.6vw, 30px); }
.reco__point h3 { font-family: var(--font-display); font-size: clamp(19px, 2.3vw, 24px);
  color: var(--ink); margin-bottom: 10px; }
.reco__point p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; }

/* ---------- FAQ ---------- */
.faq h2 { font-size: clamp(30px, 5vw, 54px); color: var(--ink); margin-bottom: 28px; }
.faq__list { display: grid; gap: 0; max-width: 820px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 23px); color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 4px; top: 20px; font-size: 26px;
  color: var(--coral); line-height: 1; }
.faq__item[open] summary::after { content: '–'; }
.faq__item p { margin: 0 0 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* ---------- Persönlich / Founder ---------- */
.about { background: var(--surface); }
.about__grid { display: grid; gap: 30px; align-items: center; }
.about__portrait { position: relative; width: 100%; height: 380px; margin: 0; 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; flex-wrap: wrap; 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; }

/* ---- Auth & Admin (site-weiter Login + Admin-Bereich) ---- */
.hidden { display: none; }
.muted { color: var(--ink-soft); font-size: 14px; }

/* Header-Login-Element */
.auth-ctl { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.auth-ctl a { color: var(--ink); text-decoration: none; }
.auth-ctl a:hover { color: var(--coral-deep); }
.auth-ctl__chip { color: var(--coral); font-size: 9px; }
.auth-ctl__admin { font-weight: 600; }

/* Auth/Admin Seiten-Layout (lib-hero-Muster) */
.apg-hero { padding-top: calc(var(--header-h) + 52px); padding-bottom: 30px; background: var(--pink); }
.apg-hero .eyebrow { margin-bottom: 14px; }
.apg-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 7vw, 74px); line-height: 1.0; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.apg-hero p { color: var(--ink-soft); max-width: 56ch; margin-top: 16px; font-size: clamp(15px, 1.6vw, 18px); }
.apg-body { padding-block: 40px 90px; }
.apg-back { display: inline-block; margin-bottom: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; }
.apg-back:hover { color: var(--coral-deep); }

/* Login-Form */
.auth-form { max-width: 440px; }
.auth-form .eyebrow { display: block; margin-bottom: 8px; }
.auth-input { width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; outline: none; transition: border-color .2s var(--ease); }
.auth-input:focus { border-color: var(--coral); }
.auth-msg { margin-top: 14px; font-size: 14px; color: var(--ink-soft); min-height: 1.2em; }

/* Admin-Kacheln */
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 6px; }
.admin-card { display: block; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); color: inherit; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
a.admin-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -20px rgba(58,28,22,.55); }
.admin-card h2 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0 0 10px; color: var(--ink); }
.admin-card p, .admin-card div { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.admin-card b { color: var(--ink); }
.admin-card__icon { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: var(--pink); color: var(--coral-deep); margin-bottom: 16px; transition: background .25s var(--ease), color .25s var(--ease); }
.admin-card__icon svg { width: 24px; height: 24px; }
a.admin-card:hover .admin-card__icon { background: var(--coral); color: #fff; }

/* Floating WhatsApp-Button (öffentliche Seiten) */
#wa-fab { position: fixed; right: 18px; bottom: 18px; z-index: 50; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.35); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
#wa-fab svg { width: 30px; height: 30px; }
#wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 30px -8px rgba(0,0,0,.45); }
@media (max-width: 600px) { #wa-fab { right: 14px; bottom: 14px; width: 52px; height: 52px; } }

.apg-teamnote { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 20px; }

/* Admin-Galerie Verwaltung */
.media-toolbar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 4px 0 28px; }
.media-row { display: flex; gap: 24px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.media-thumb { position: relative; flex-shrink: 0; width: 360px; max-width: 42vw; }
.media-thumb img { width: 100%; height: 270px; object-fit: cover; border-radius: 12px; background: var(--sand); display: block; }
.media-badge { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); background: var(--coral); padding: 6px 10px; border-radius: 7px; box-shadow: 0 3px 10px rgba(58,28,22,.35); }
.media-count { position: absolute; bottom: 12px; right: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--white); background: rgba(58,28,22,.62); padding: 5px 9px; border-radius: 7px; }
.media-dupbadge { position: absolute; top: 12px; right: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); background: var(--coral-deep); padding: 6px 10px; border-radius: 7px; box-shadow: 0 3px 10px rgba(58,28,22,.4); }
.media-keepbadge { position: absolute; top: 12px; right: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); background: #2e9e5b; padding: 6px 10px; border-radius: 7px; box-shadow: 0 3px 10px rgba(58,28,22,.4); }
.g-filter-lbl { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.g-filter-reset { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-deep); background: none; border: none; cursor: pointer; padding: 4px 2px; }
.g-filter-reset:hover { text-decoration: underline; }

/* Traffic-KPI-Kacheln */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 8px; }
.stat { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1; color: var(--ink); }
.stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }
.stat__sub { font-family: var(--font-body); font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.traffic-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.traffic-row__path { color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.traffic-row__n { font-family: var(--font-mono); color: var(--ink-soft); }

/* Newsletter-Block (CleverReach Double-Opt-In) */
.newsletter__inner { max-width: 640px; }
.newsletter__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 4vw, 40px); color: var(--ink); margin: 8px 0 0; line-height: 1.05; }
.newsletter__text { color: var(--ink-soft); margin: 14px 0 22px; font-size: 16px; line-height: 1.6; max-width: 52ch; }
.newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.newsletter__input { flex: 1; min-width: 220px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 13px 18px; outline: none; }
.newsletter__input:focus { border-color: var(--coral); }
.newsletter__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.newsletter__note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; max-width: 52ch; line-height: 1.6; }
.newsletter__note a { color: var(--coral-deep); }
@media (max-width: 560px) { .newsletter__form { flex-direction: column; align-items: stretch; } .newsletter__input { min-width: 0; } }
.g-dup-lbl input:checked + * , .g-dup-lbl:has(input:checked) { color: var(--coral-deep); }
.media-thumb--btn { cursor: zoom-in; }
.media-dims { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-soft); }
.media-dims--low { color: var(--coral-deep); font-weight: 600; }

/* Admin-Lightbox (Bild groß ansehen) */
.g-lb { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(58,28,22,.82); padding: 32px; }
.g-lb.open { display: flex; }
.g-lb__img { max-width: 96vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.g-lb__close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 999px; border: none; background: var(--white); color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; }
.media-fields { display: flex; flex-direction: column; gap: 10px; flex: 1; max-width: 540px; min-width: 0; }
.media-titlefield { display: flex; align-items: center; gap: 10px; max-width: 300px; }
.media-titlefield .lang-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-soft); width: 26px; flex-shrink: 0; text-align: right; }
.media-titlefield .media-in--title { flex: 1; width: auto; }
.media-slot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 2px; padding: 12px 16px; background: color-mix(in srgb, var(--coral) 7%, var(--cream)); border: 1px solid color-mix(in srgb, var(--coral) 35%, var(--line)); border-radius: 12px; }
.media-slot__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-deep); font-weight: 600; }
.media-slot__sel { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink); background: var(--white); border: 1.5px solid var(--coral); border-radius: 10px; padding: 11px 16px; cursor: pointer; outline: none; min-width: 190px; }
.media-slot__overlay { flex: 1; min-width: 160px; }
.media-slot__sel:focus { border-color: var(--coral-deep); }
.media-fields__row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.media-in { font-family: var(--font-body); font-size: 14px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; outline: none; }
.media-in:focus, .media-row select:focus { border-color: var(--coral); }
.media-in--title { width: 100%; }
.media-in--ord { width: 90px; }
.media-row select { font-family: var(--font-body); font-size: 14px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; outline: none; cursor: pointer; }
.media-row label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.media-del { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-deep); background: none; border: 1px solid var(--line); border-radius: 8px; padding: 9px 14px; cursor: pointer; margin-left: auto; transition: border-color .2s var(--ease), background .2s var(--ease); }
.media-del:hover { border-color: var(--coral-deep); background: color-mix(in srgb, var(--coral) 8%, transparent); }
@media (max-width: 640px) {
  .media-row { flex-direction: column; gap: 12px; align-items: stretch; }
  .media-thumb { width: 100%; max-width: 100%; }
  .media-thumb img { height: 200px; }
  .media-fields { max-width: 100%; }
  .media-titlefield { max-width: 100%; }
  .media-slot { width: 100%; }
  .media-slot__sel { flex: 1; min-width: 0; }
  .media-fields__row { gap: 10px; row-gap: 12px; }
  .media-row select { flex: 1; min-width: 130px; }
  .media-del { margin-left: 0; width: 100%; text-align: center; padding: 11px 14px; }
  .apg-body { padding-block: 28px 70px; }
}
