/* ============================================================
   Praxis Aggi Frantz — Leipzig
   System: „Zwei Orte, ein Telefon"
   Rauchweiß · Tiefseegrau-Ink · Granatapfel · Lora / Karla
   Polaroid-Hero (angewinkeltes Bild mit Rand),
   Zwei-Adressen als Leitmodul, schlank (dünne Beleglage)
   ============================================================ */

:root {
  --smoke: #f3efe9;
  --smoke-2: #eae4da;
  --deep: #2f3e46;
  --deep-2: #3d4f59;
  --garnet: #b04a4a;
  --garnet-2: #c96f6f;
  --grey-g: #6b6f66;
  --hair-g: rgba(47, 62, 70, .18);
  --garnet-hair: rgba(176, 74, 74, .38);
  --pad: clamp(1.25rem, 4.5vw, 3.5rem);
  --luft: clamp(5rem, 10.5vw, 9.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Karla", "Segoe UI", sans-serif;
  background: var(--smoke);
  color: var(--deep);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--garnet-2); color: var(--smoke); }
img { display: block; max-width: 100%; }
a { color: inherit; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='142' height='142'%3E%3Cfilter id='g7'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.79' numOctaves='2' seed='47'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g7)'/%3E%3C/svg%3E");
}

/* ---------- Kopf ---------- */
.twin-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem var(--pad);
  background: rgba(243, 239, 233, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair-g);
}
.twin-head .id {
  font-family: "Lora", Georgia, serif;
  font-size: 1.06rem;
  text-decoration: none;
  white-space: nowrap;
}
.twin-head .id b { color: var(--garnet); font-weight: 600; }
.twin-head nav { display: flex; gap: 1.6rem; }
.twin-head nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-g);
  text-decoration: none;
  transition: color .2s;
}
.twin-head nav a:hover, .twin-head nav a[aria-current="page"] { color: var(--deep); }
.twin-head .call {
  font-weight: 700;
  font-size: .9rem;
  color: var(--smoke);
  background: var(--deep);
  text-decoration: none;
  padding: .5rem 1.05rem;
  white-space: nowrap;
  transition: background .2s;
}
.twin-head .call:hover { background: var(--garnet); }

/* ---------- Polaroid-Hero ---------- */
.polar {
  padding: clamp(8rem, 16vw, 11rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}
.polar .p-kick {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--garnet);
}
.polar h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  line-height: 1.1;
  max-width: 17ch;
  margin: clamp(1rem, 2.5vw, 1.6rem) auto 0;
}
.polar h1 em { font-style: italic; color: var(--deep-2); }
.polar .p-sub {
  max-width: 52ch;
  margin: clamp(1.2rem, 3vw, 1.9rem) auto 0;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--grey-g);
}
.polar .polaroid {
  width: min(560px, 100%);
  margin: clamp(2.2rem, 5vw, 3.4rem) auto 0;
  background: #fffdf8;
  border: 1px solid var(--hair-g);
  padding: .8rem .8rem 2.2rem;
  box-shadow: 0 24px 40px -26px rgba(47, 62, 70, .5);
  transform: rotate(-1.6deg);
}
.polar .polaroid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.polar .polaroid figcaption {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--grey-g);
  padding-top: .9rem;
}
.polar .p-acts { margin-top: clamp(1.7rem, 4vw, 2.5rem); display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.gbtn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: .97rem;
  padding: .95rem 1.6rem;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s;
}
.gbtn.deep { background: var(--deep); color: var(--smoke); }
.gbtn.deep:hover { background: var(--deep-2); }
.gbtn.garnet { background: var(--garnet); color: var(--smoke); }
.gbtn.garnet:hover { background: var(--deep); }
.gbtn.rim { border: 1.5px solid var(--hair-g); color: var(--deep); }
.gbtn.rim:hover { border-color: var(--garnet); color: var(--garnet); }

/* ---------- Adress-Zweiheit ---------- */
.places {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--deep);
}
.places > div { padding: clamp(1.6rem, 3.5vw, 2.6rem); }
.places > div:first-child { border-right: 1.5px solid var(--deep); }
.places .tag {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--garnet);
  display: block;
  margin-bottom: .7rem;
}
.places h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: .4rem;
}
.places p { color: var(--grey-g); font-size: .95rem; }

/* ---------- Standard ---------- */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 var(--pad); }
.sec { padding-block: var(--luft); }
.sec.mid { padding-block: clamp(3.2rem, 7vw, 5.5rem); }
.zone-deep { background: var(--deep); color: var(--smoke); }
.zone-deep .stand, .zone-deep p { color: rgba(243, 239, 233, .78); }
.zone-deep h2 { color: var(--smoke); }

.h-lora {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.9vw, 3rem);
  line-height: 1.18;
  max-width: 23ch;
}
.stand { margin-top: 1rem; font-size: 1.08rem; color: var(--grey-g); max-width: 54ch; }
.prose { max-width: 58ch; }
.prose p + p { margin-top: 1.05rem; }

/* Liste */
.g-list { border-top: 2px solid var(--deep); }
.zone-deep .g-list { border-color: var(--garnet-2); }
.g-list > div {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: .35rem clamp(1.4rem, 4vw, 3.5rem);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hair-g);
  align-items: baseline;
}
.zone-deep .g-list > div { border-color: rgba(243, 239, 233, .22); }
.g-list dt {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--garnet);
}
.zone-deep .g-list dt { color: var(--garnet-2); }
.g-list dd { font-weight: 500; }
.zone-deep .g-list dd { color: var(--smoke); }

/* Offen-Karte */
.g-open {
  border: 2px dashed var(--garnet);
  border-radius: 6px;
  padding: clamp(1.7rem, 4vw, 2.7rem);
}
.g-open .lbl {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--smoke);
  background: var(--deep);
  padding: .35rem .8rem;
  margin-bottom: 1rem;
}
.g-open h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.7vw, 1.75rem);
  margin-bottom: .6rem;
  max-width: 27ch;
}
.g-open p { color: var(--grey-g); max-width: 58ch; }

/* Krise */
.g-crisis {
  background: var(--deep);
  color: var(--smoke);
  border-radius: 6px;
  padding: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(2.8rem, 6vw, 4.4rem);
}
.g-crisis h2 { font-family: "Lora", Georgia, serif; font-weight: 500; font-size: 1.3rem; margin-bottom: .8rem; }
.g-crisis p { color: rgba(243, 239, 233, .8); font-size: .97rem; }
.g-crisis strong { color: #fff; }
.g-crisis a { color: var(--garnet-2); font-weight: 700; text-decoration: none; }
.g-crisis a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.d-foot {
  background: var(--deep-2);
  padding: var(--luft) var(--pad) clamp(2.5rem, 6vw, 4rem);
}
.d-foot .kick { color: var(--garnet-2); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .26em; }
.d-foot .huge {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 5.2vw, 3.9rem);
  line-height: 1.18;
  max-width: 21ch;
  color: var(--smoke);
  margin-top: 1rem;
}
.d-foot .huge a {
  color: var(--garnet-2);
  text-decoration: none;
  border-bottom: 2px solid var(--garnet-hair);
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.d-foot .huge a:hover { color: var(--smoke); border-color: var(--smoke); }

.d-baseline {
  background: var(--deep-2);
  color: rgba(243, 239, 233, .62);
  padding: 0 var(--pad) 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2.2rem;
  justify-content: space-between;
  font-size: .88rem;
}
.d-baseline nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.d-baseline a { color: rgba(243, 239, 233, .62); text-decoration: none; }
.d-baseline a:hover { color: var(--smoke); }

.fnote { font-size: .85rem; color: var(--grey-g); padding: 1.3rem 0; max-width: 70ch; }
.zone-deep .fnote, .d-foot .fnote { color: rgba(243, 239, 233, .62); }
sup.star { color: var(--garnet); font-weight: 700; }
.zone-deep sup.star, .d-foot sup.star { color: var(--garnet-2); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .places { grid-template-columns: 1fr; }
  .places > div:first-child { border-right: 0; border-bottom: 1.5px solid var(--deep); }
  .g-list > div { grid-template-columns: 1fr; gap: .2rem; }
}
@media (max-width: 700px) {
  .twin-head nav { display: none; }
}
/* wrap+prose-Kollision */
.wrap.prose { max-width: none; }
.wrap.prose > * { max-width: 60ch; }
