/* ============================================================
   sections-extra.css
   Isolierte Styles fuer die uebernommenen Story- und Valuation-
   Sections in src/index.html (aus ho-living-site/styles/home.css
   und tokens.css extrahiert). Bewusst NICHT global, damit das
   bestehende Layout der Hauptseite (Hero, Header, Footer) nicht
   kollidiert.
   ============================================================ */

:root {
  --ho-bg:           #f2efea;
  --ho-surface:      #f7f6f4;
  --ho-surface-2:    #edeae6;
  --ho-ink:          #1c1714;
  --ho-ink-muted:    #5a5047;
  --ho-mute:         #7a6f65;
  --ho-line:         #e6e1db;
  --ho-line-strong:  #d5cfc8;
  --ho-accent:       #b48b74;
  --ho-accent-hover: #8a6550;
  --ho-accent-soft:  #f5ede7;
  --ho-white:        #ffffff;

  --ho-fs-xs:   0.75rem;
  --ho-fs-sm:   0.875rem;
  --ho-fs-base: 1rem;

  --ho-pad-x:       clamp(1.25rem, 10vw, 12rem);
  --ho-section-pad: clamp(5rem, 10vw, 10rem);
  --ho-radius:      4px;
  --ho-ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reveal motion (scoped to data-reveal) ─────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ho-ease-out),
    transform 0.9s var(--ho-ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="left"].is-revealed  { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].is-revealed { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Rail (Section-Header) ─────────────────────────────────── */
.rail {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: end;
  gap: 2rem;
  padding: 4rem var(--ho-pad-x) 1.5rem;
  border-top: 1px solid var(--ho-ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.rail--dark {
  background: var(--ho-ink);
  color: var(--ho-white);
  border-top: none;
}
.rail__num {
  font-size: var(--ho-fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ho-accent);
  font-weight: 500;
}
.rail__title {
  font-size: var(--ho-fs-sm);
  color: var(--ho-ink-muted);
  letter-spacing: 0.02em;
}
.rail--dark .rail__title { color: rgba(255, 255, 255, 0.7); }

/* ── Story ─────────────────────────────────────────────────── */
.story {
  background: var(--ho-ink);
  color: var(--ho-white);
  padding: 3rem var(--ho-pad-x) var(--ho-section-pad);
  display: grid;
  grid-template-columns: 5rem 1fr 1fr;
  gap: 3rem;
  align-items: start;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.story__spacer { grid-column: 1; }
.story__media { padding-right: 3rem; }
.story__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--ho-radius);
}
.story__caption {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: var(--ho-fs-sm);
  color: rgba(255, 255, 255, 0.5);
}
.story__body { padding-top: 4rem; }
.story__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 500;
  margin: 0;
}
.story__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2.5rem;
  max-width: 28rem;
}
.story__stats {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.story__stat label {
  font-size: var(--ho-fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 0.5rem;
}
.story__stat .value {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: block;
}
.story__stat .value::after {
  content: attr(data-suffix);
  color: var(--ho-accent);
}
.story__link {
  display: inline-flex;
  margin-top: 3.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: var(--ho-fs-sm);
  font-weight: 500;
  gap: 0.5rem;
  align-items: center;
  color: var(--ho-white);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.story__link:hover {
  border-color: var(--ho-accent);
  background: var(--ho-accent);
  color: var(--ho-ink);
}

/* ── Valuation ─────────────────────────────────────────────── */
.valuation {
  padding: 3rem var(--ho-pad-x) var(--ho-section-pad);
  display: grid;
  grid-template-columns: 5rem 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--ho-bg);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ho-ink);
}
.valuation__copy { padding-top: 1.5rem; }
.valuation__copy h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  font-weight: 500;
}
.valuation__copy p {
  font-size: 1.0625rem;
  color: var(--ho-ink-muted);
  line-height: 1.6;
  margin-top: 2rem;
  max-width: 26rem;
}

.steps { margin-top: 3.5rem; }
.steps__row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ho-line);
}
.steps__row:first-child { border-top: 1px solid var(--ho-line); }
.steps__n { font-size: var(--ho-fs-sm); color: var(--ho-accent); font-weight: 500; }
.steps__text {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.steps__text strong { font-weight: 500; font-size: 1.0625rem; }
.steps__text span  { font-size: var(--ho-fs-sm); color: var(--ho-mute); }

.form-card {
  background: var(--ho-surface);
  padding: 2.25rem;
  border-radius: var(--ho-radius);
}
.form-card__step { font-size: var(--ho-fs-xs); color: var(--ho-mute); margin-bottom: 1rem; }
.form-card h3 {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-chip {
  padding: 1rem;
  border: 1px solid var(--ho-line-strong);
  border-radius: var(--ho-radius);
  background: var(--ho-white);
  font-size: var(--ho-fs-sm);
  font-weight: 400;
  text-align: left;
  font-family: inherit;
  color: var(--ho-ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.form-chip[aria-pressed="true"] {
  background: var(--ho-ink);
  color: var(--ho-white);
  border-color: var(--ho-ink);
  font-weight: 500;
}
.form-fields {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-field {
  background: var(--ho-white);
  border: 1px solid var(--ho-line);
  border-radius: var(--ho-radius);
  padding: 0.65rem 1rem;
  transition: border-color 0.2s ease;
  display: block;
}
.form-field:focus-within {
  border-color: var(--ho-accent);
  box-shadow: 0 0 0 3px var(--ho-accent-soft);
}
.form-field > span {
  display: block;
  font-size: var(--ho-fs-xs);
  color: var(--ho-mute);
  margin-bottom: 0.25rem;
}
.form-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: var(--ho-fs-sm);
  color: var(--ho-ink);
  font-weight: 500;
}
.form-submit {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--ho-ink);
  color: var(--ho-white);
  border: 0;
  border-radius: var(--ho-radius);
  font-size: var(--ho-fs-sm);
  font-weight: 500;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.form-submit:hover { background: var(--ho-accent-hover); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .story,
  .valuation { grid-template-columns: 1fr; gap: 2rem; }
  .story__spacer { display: none; }
  .story__media { padding-right: 0; }
  .story__body { padding-top: 0; }
  .rail { grid-template-columns: 4rem 1fr; padding-top: 3rem; }
}

/* ============================================================
   About Banner (Home)
   Full-bleed Banner: ein großes Foto von Paul & Anna mit Verlaufs-
   Overlay, Text-Block links unten, dünner Stats-Strip darunter.
   Bewusst NICHT die "section"-Standard-Padding, damit der Banner
   zum Storytelling-Moment wird, kein weiteres Card-Raster.
   ============================================================ */
.about-banner {
  position: relative;
  isolation: isolate;
  background: #1c1714;
  color: #f5ede6;
  overflow: hidden;
}

/* ── Triptych: Portrait | Logo+Text | Portrait ─────────────── */
.about-banner__head {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
  max-width: 60rem;
}

.about-banner__triptych {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: clamp(0.5rem, 1.2vw, 1rem);
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 1.5vw, 1.25rem);
}
@media (max-width: 899px) {
  .about-banner__triptych {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-inline: clamp(1rem, 4vw, 1.5rem);
  }
}

.about-banner__portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #14100e;
  border-radius: 4px;
}
.about-banner__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 1100ms var(--ho-ease-out, ease);
  filter: grayscale(0.15) saturate(0.95);
}
.about-banner__portrait:hover img { transform: scale(1.06); }
.about-banner__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 14, 0) 45%, rgba(20, 16, 14, 0.85) 100%);
  pointer-events: none;
}
.about-banner__portrait figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem clamp(1rem, 2vw, 1.75rem) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #f7efe8;
}
.about-banner__role {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d9b9a4;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.about-banner__portrait figcaption strong {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.about-banner__portrait figcaption small {
  font-size: 0.78rem;
  color: rgba(247, 239, 232, 0.7);
}

.about-banner__center {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #1d1612;
  border-radius: 4px;
}
.about-banner__center img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}
.about-banner__center:hover img { transform: scale(1.04); }
.about-banner__center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 11, 9, 0.85) 0%,
    rgba(15, 11, 9, 0.35) 45%,
    rgba(15, 11, 9, 0) 75%
  );
  pointer-events: none;
}
.about-banner__center figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(1rem, 1.6vw, 1.5rem) clamp(1rem, 1.6vw, 1.5rem)
    clamp(1.1rem, 1.8vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #f7efe8;
  text-align: left;
}
.about-banner__center figcaption strong {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.005em;
  color: #e8c8b1;
}
.about-banner__center figcaption small {
  font-size: 0.78rem;
  color: rgba(247, 239, 232, 0.7);
}

.about-banner__foot {
  padding-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(2.25rem, 3.5vw, 3rem);
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-banner__kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d9b9a4;            /* helles Bronze auf Dunkel */
  font-weight: 600;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
}
.about-banner__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.75rem;
  height: 1px;
  background: #b48b74;
}

.about-banner__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #f7efe8;
}
.about-banner__title em {
  font-style: italic;
  font-weight: 400;
  color: #d9b9a4;
}

.about-banner__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
  color: rgba(245, 237, 230, 0.85);
  max-width: 34rem;
}

.about-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.about-banner__ghost {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f7efe8;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 239, 232, 0.4);
  padding: 0.4rem 0 0.45rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.about-banner__ghost:hover {
  border-bottom-color: #d9b9a4;
  color: #d9b9a4;
}
.about-banner__ghost span {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}
.about-banner__ghost:hover span { transform: translateX(4px); }

/* Stats-Strip — eigenes Band unter dem Bild, gleicher dunkler Ton */
.about-banner__stats {
  list-style: none;
  width: 80%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #14100e;
  border-top: 1px solid rgba(180, 139, 116, 0.18);
}
@media (max-width: 720px) {
  .about-banner__stats {
    width: auto;
    margin-inline: clamp(1rem, 5vw, 2rem);
    padding-inline: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }
}
.about-banner__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.5rem;
  border-left: 1px solid rgba(180, 139, 116, 0.18);
}
.about-banner__stats li:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 720px) {
  .about-banner__stats li { padding: 0 0 0 0.75rem; }
  .about-banner__stats li:nth-child(odd) { border-left: 0; padding-left: 0; }
}
.about-banner__stats span {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f7efe8;
  font-feature-settings: "tnum" on, "lnum" on;
}
.about-banner__stats small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217, 185, 164, 0.75);
}

/* Reduced Motion: keine Hover-Zooms */
@media (prefers-reduced-motion: reduce) {
  .about-banner__portrait img,
  .about-banner__portrait:hover img { transform: none; transition: none; }
}
