/* Coming soon: Bild links, Inhalt rechts */
body.cs { background: var(--ivory); }

.cs__layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; }

/* Bild */
.cs__media { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--greige); }
.cs__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: cs-zoom 18s var(--ease) forwards; }
.cs__media figcaption { position: absolute; left: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 40px); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.cs__mark { position: absolute; right: clamp(20px, 3vw, 40px); top: clamp(20px, 3vw, 40px); width: clamp(34px, 3.2vw, 52px); }
.cs__mark svg { fill: var(--ivory); filter: drop-shadow(0 1px 10px rgba(0,0,0,0.35)); }
@keyframes cs-zoom { to { transform: scale(1); } }

/* Inhaltsspalte */
.cs__content { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: clamp(20px, 3vw, 44px) clamp(28px, 5vw, 88px); min-height: 100svh; }
.cs__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.cs__top .brand svg { height: clamp(52px, 5vw, 76px); width: auto; fill: var(--olive); }
.cs__top .label { font-size: 0.62rem; letter-spacing: 0.2em; padding-top: 6px; }

.cs__body { padding: 16px 0; max-width: 50ch; }

/* Stufe 1: Headline */
.cs__body .display-2 { font-size: clamp(1.5rem, 2.25vw, 2.3rem); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 18px; }

/* Stufe 3: Fliesstext */
.cs__text { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin-bottom: 22px; }

/* Stufe 2: Claim, durch Farbe und Akzentlinie abgesetzt, nicht durch Groesse */
.cs__claim { color: var(--ink); font-size: 1.12rem; line-height: 1.35; letter-spacing: -0.01em; margin: 0 0 26px; padding-top: 16px; position: relative; }
.cs__claim::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 1px; background: var(--terra); }

/* Stufe 3: Fakten */
.cs__facts { display: grid; gap: 6px; margin-bottom: 28px; }
.cs__facts li { padding-left: 17px; font-size: 0.88rem; line-height: 1.5; color: var(--ink-soft); position: relative; }
.cs__facts li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 1px; background: var(--terra); }

/* Stufe 4: Labels */
.cs__sales .label, .cs__contact .label { display: block; font-size: 0.62rem; letter-spacing: 0.2em; margin-bottom: 14px; }

/* Vertriebslogos: eines links, eines rechts, optisch auf gleiche Versalhoehe gebracht */
.cs__sales { margin-bottom: 28px; }
.cs__logos { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 340px; }
.cs__logo { display: inline-flex; align-items: center; transition: opacity 0.4s var(--ease); }
.cs__logo:hover { opacity: 0.65; }
.cs__logo img { display: block; width: auto; height: 28px; }
.cs__logo img[alt="Pia Estate"] { height: 13px; }

.cs__contact { display: grid; gap: 5px; font-size: 0.9rem; }
.cs__contact a { color: var(--ink); transition: color 0.3s; }
.cs__contact a:hover { color: var(--terra); }

.cs__foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.cs__foot a { margin-left: 22px; }

/* Einblendung rein ueber CSS, damit die Inhalte auch ohne JavaScript sichtbar sind */
[data-in] { opacity: 0; transform: translateY(20px); animation: cs-in 0.9s var(--ease) forwards; }
.cs__body > [data-in]:nth-child(1) { animation-delay: 0.15s; }
.cs__body > [data-in]:nth-child(2) { animation-delay: 0.27s; }
.cs__body > [data-in]:nth-child(3) { animation-delay: 0.39s; }
.cs__body > [data-in]:nth-child(4) { animation-delay: 0.51s; }
.cs__body > [data-in]:nth-child(5) { animation-delay: 0.63s; }
.cs__body > [data-in]:nth-child(6) { animation-delay: 0.75s; }
@keyframes cs-in { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .cs__layout { grid-template-columns: 1fr; min-height: auto; }
  .cs__media { position: relative; height: 52vh; }
  .cs__content { min-height: auto; padding-top: 26px; }
  .cs__body { padding: 32px 0 40px; max-width: none; }
  .cs__logos { max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) { .cs__media img { animation: none; transform: none; } [data-in] { opacity: 1; transform: none; animation: none; } }
