:root {
  --bg: #fbf8f4;
  --paper: #ffffff;
  --paper-soft: #f6f1eb;

  --text: #111111;
  --muted: #6f6a66;
  --line: rgba(20, 20, 20, 0.10);

  --taupe: #e9e1d8;
  --taupe-soft: #f3eee8;
  --accent: #b9a084;

  --shadow-soft: 0 12px 30px rgba(0,0,0,.055);
  --shadow-card: 0 18px 50px rgba(0,0,0,.075);

  --radius: 22px;

  --font-script: "Brush Script MT", "Segoe Script", "Apple Chancery", cursive;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(185,160,132,.10), transparent 28rem),
    linear-gradient(180deg, #fffdfb, var(--bg));
  color: var(--text);
  font-family: var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.site-header {
  text-align: center;
  margin-bottom: 34px;
}

.brand-monogram {
  font-family: var(--font-script);
  font-size: clamp(54px, 9vw, 100px);
  line-height: 1;
  font-weight: 400;
}

.brand-heart {
  margin-top: 4px;
  font-size: 30px;
  color: var(--text);
}

.main {
  min-height: 60vh;
}

/* Startseite */

.hero {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 34px;
}

.hero-kicker {
  margin: 0;
  font-size: 18px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--text);
  margin: 18px auto 22px;
  opacity: .35;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.mini-heart {
  margin: 18px 0;
  font-size: 28px;
}

.hero-watercolor {
  margin: 0 auto;
  max-width: 760px;
  padding: 54px 20px 30px;
  position: relative;
}

.hero-watercolor::before,
.highlight-watercolor::before {
  content: "";
  position: absolute;
  inset: 34px 40px 0 40px;
  background:
    radial-gradient(circle at 20% 35%, rgba(233,225,216,.85), transparent 38%),
    radial-gradient(circle at 60% 50%, rgba(233,225,216,.9), transparent 46%),
    radial-gradient(circle at 85% 40%, rgba(233,225,216,.7), transparent 34%),
    linear-gradient(180deg, rgba(233,225,216,.78), rgba(243,238,232,.65));
  filter: blur(2px);
  border-radius: 44% 56% 42% 58% / 46% 37% 63% 54%;
  z-index: 0;
}

.hero-watercolor > *,
.highlight-watercolor > * {
  position: relative;
  z-index: 1;
}

.hero-icon {
  font-size: 62px;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-watercolor h1,
.highlight-watercolor h2,
.chat-section-title,
.footer-note p {
  font-family: var(--font-script);
  font-weight: 400;
}

.hero-watercolor h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
}

.hero-watercolor p {
  margin: 14px 0 0;
  font-size: 18px;
}

/* Anleitungskarte */

.intro-card {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 26px;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  padding: 34px;
  margin: 0 auto 44px;
  border: 1px solid rgba(20,20,20,.05);
}

.intro-left h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 18px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-soft);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.step-content {
  display: grid;
  gap: 6px;
}

.step-content strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.step-content span {
  color: var(--muted);
  line-height: 1.6;
}

.intro-right {
  border-left: 1px solid var(--line);
  padding-left: 26px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
}

.scan-me {
  font-family: var(--font-script);
  font-size: 44px;
  line-height: 1;
}

.pinned-highlight-card {
  width: 100%;
  max-width: 280px;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbf8f4);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
}

.highlight-subtitle {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.highlight-cta {
  margin-top: 18px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
}

/* Divider */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 18px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 140px;
  max-width: 22vw;
  height: 1px;
  background: var(--line);
}

.section-divider span {
  font-size: 24px;
}

/* Chatliste */

.chat-section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(40px, 6vw, 64px);
}

.chat-section-subtitle {
  margin: 10px auto 26px;
  text-align: center;
  max-width: 580px;
  color: var(--muted);
  line-height: 1.7;
}

.chat-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.chat-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid rgba(20,20,20,.05);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease;
}

.chat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.chat-card.pinned {
  background: linear-gradient(180deg, #fff, #fcfaf6);
  border-color: rgba(185,160,132,.24);
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--taupe-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 30px;
}

.chat-info {
  display: grid;
  gap: 5px;
}

.chat-info strong {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.chat-info span {
  color: var(--muted);
  font-size: 14px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Detailseiten: Participant + Highlights */

.memory-page-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
  padding-bottom: 22px;
}

.memory-page-head .backlink {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.memory-page-head h1 {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(58px, 9vw, 104px);
  font-weight: 400;
  line-height: .95;
}

.memory-page-head p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.album-intro-card {
  max-width: 850px;
  margin: 0 auto 38px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20,20,20,.05);
}

.album-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--taupe-soft);
  display: grid;
  place-items: center;
  font-size: 34px;
}

.album-intro-card h2 {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.album-intro-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.highlight-intro {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.highlight-watercolor {
  position: relative;
  padding: 50px 22px 36px;
}

.highlight-watercolor::before {
  inset: 18px 70px 0;
}

.highlight-watercolor h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
}

.highlight-watercolor p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

/* WICHTIG: Kacheln */

.memory-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.highlights-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.memory-card,
.media-card {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 16px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20,20,20,.05);
  overflow: hidden;
}

.highlight-card {
  border-color: rgba(185,160,132,.24);
}

.memory-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f4f0ea;
}

.memory-frame img,
.memory-frame video,
.media-card img,
.media-card video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 18px;
  background: #111;
}

.memory-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events: none;
}

.audio-box {
  min-height: 160px;
  background:
    radial-gradient(circle at 50% 35%, rgba(233,225,216,.88), transparent 44%),
    linear-gradient(180deg, #fbf8f4, #f3eee8);
  display: grid;
  place-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
}

.audio-box span {
  color: var(--text);
  font-size: 42px;
}

.audio-box strong {
  font-family: var(--font-script);
  font-size: 42px;
  font-weight: 400;
}

audio {
  width: 100%;
}

.from {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.caption {
  margin: 12px 0 0;
  line-height: 1.6;
}

.memory-meta,
.media-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 13px 0;
}

.memory-meta span,
.media-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--taupe-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Buttons / Forms */

button,
input {
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font: inherit;
}

button {
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background: #2a2a2a;
}

.soft-button {
  width: 100%;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
}

.danger {
  background: #f8ecec;
  color: #9f3f3f;
}

.danger:hover {
  background: #9f3f3f;
  color: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.caption-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

input {
  width: 100%;
  background: #fafafa;
  border: 1px solid rgba(20,20,20,.08);
  color: var(--text);
}

.section-title {
  margin: 36px 0 16px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
}

.pending {
  outline: 1px solid rgba(185,160,132,.20);
}

.approved {
  outline: 1px solid rgba(20,20,20,.06);
}

.empty {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.empty h2 {
  margin-top: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
}

.empty p {
  color: var(--muted);
  line-height: 1.7;
}

.empty-heart {
  font-size: 36px;
  margin-bottom: 8px;
}

.footer-note {
  margin-top: 42px;
  text-align: center;
}

.footer-note p {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

/* Mobile */

@media (max-width: 860px) {
  .intro-card {
    grid-template-columns: 1fr;
  }

  .intro-right {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .album-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .memory-grid,
  .grid,
  .highlights-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 18px, 1080px);
    padding-top: 20px;
  }

  .hero-kicker {
    font-size: 14px;
    letter-spacing: .18em;
  }

  .intro-card {
    padding: 22px;
  }

  .chat-card {
    grid-template-columns: 56px 1fr;
  }

  .badge {
    grid-column: 2;
    justify-self: start;
  }

  .avatar {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .chat-info strong {
    font-size: 24px;
  }

  .memory-grid,
  .grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .memory-page-head h1 {
    font-size: 58px;
  }

  .album-intro-card {
    padding: 24px;
  }

  .footer-note p {
    font-size: 34px;
  }
}
/* -------------------------------------------------
   Dezente rote Akzente + leichte Ornamente
   Grafikdesignerinnen-Friedensangebot
-------------------------------------------------- */

:root {
  --wine: #8f2438;
  --wine-soft: rgba(143, 36, 56, .10);
  --wine-line: rgba(143, 36, 56, .18);
}

/* minimal warmer Hintergrund mit leichtem Rot */
body {
  background:
    radial-gradient(circle at 15% 10%, rgba(143, 36, 56, .055), transparent 24rem),
    radial-gradient(circle at 85% 18%, rgba(185,160,132,.12), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(143, 36, 56, .045), transparent 28rem),
    linear-gradient(180deg, #fffdfb, var(--bg));
}

/* ganz dezente ornamentale Linien im Hintergrund */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .42;
  background-image:
    url("data:image/svg+xml,%3Csvg width='420' height='420' viewBox='0 0 420 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238f2438' stroke-opacity='.16' stroke-width='1.2'%3E%3Cpath d='M46 210c56-64 112-64 168 0s112 64 168 0'/%3E%3Cpath d='M210 46c-64 56-64 112 0 168s64 112 0 168'/%3E%3Cpath d='M92 92c34 18 52 44 54 78-34-2-60-20-78-54'/%3E%3Cpath d='M328 92c-34 18-52 44-54 78 34-2 60-20 78-54'/%3E%3Cpath d='M92 328c34-18 52-44 54-78-34 2-60 20-78 54'/%3E%3Cpath d='M328 328c-34-18-52-44-54-78 34 2 60 20 78 54'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 620px 620px;
  background-position: center top;
  background-repeat: repeat;
}

/* seitliche florale Andeutung, sehr schwach */
.shell::before,
.shell::after {
  content: "❦";
  position: fixed;
  bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 10vw, 130px);
  color: rgba(143, 36, 56, .10);
  pointer-events: none;
  z-index: -1;
}

.shell::before {
  left: 22px;
  transform: rotate(-18deg);
}

.shell::after {
  right: 22px;
  transform: rotate(18deg) scaleX(-1);
}

/* rote Mini-Akzente */
.brand-heart,
.mini-heart,
.section-divider span,
.empty-heart {
  color: var(--wine);
}

.hero-kicker,
.eyebrow {
  color: var(--wine) !important;
}

.hero-divider {
  background: var(--wine);
  opacity: .45;
}

.chat-card.pinned,
.highlight-card,
.media-card.featured {
  border-color: var(--wine-line);
}

.pinned-highlight-card {
  background:
    radial-gradient(circle at top, rgba(143, 36, 56, .055), transparent 55%),
    linear-gradient(180deg, #fff, #fbf8f4);
}

.highlight-cta,
button,
.soft-button {
  background: #111;
}

.highlight-cta:hover,
button:hover,
.soft-button:hover {
  background: var(--wine);
}

/* Badges etwas edler */
.badge {
  background: rgba(143, 36, 56, .055);
  color: #7a2434;
}

/* Upvote-/Meta-Chips leicht rötlich */
.memory-meta span,
.media-meta span {
  background: rgba(143, 36, 56, .055);
  color: #7a2434;
}

/* Aquarellflächen minimal rötlicher */
.hero-watercolor::before,
.highlight-watercolor::before {
  background:
    radial-gradient(circle at 20% 35%, rgba(233,225,216,.86), transparent 38%),
    radial-gradient(circle at 60% 50%, rgba(143,36,56,.075), transparent 48%),
    radial-gradient(circle at 85% 40%, rgba(233,225,216,.72), transparent 34%),
    linear-gradient(180deg, rgba(233,225,216,.76), rgba(243,238,232,.62));
}
/* Gallery Access / Start Page */

.start-card {
  max-width: 920px;
}

.unlock-form {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.unlock-form label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}

.access-error {
  max-width: 420px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8ecec;
  color: #9f3f3f;
  font-weight: 600;
}

.whatsapp-card {
  margin-top: 12px;
}