/* ============================================================
   Fellgeliebt /portrait/ — Konfigurator (Öl-Ära)
   Aufbau nach bewährtem SecretPortrait-Gerüst:
   links Vorschau + Trust, rechts Motiv → Foto → Vorschau → Bestellen.
   Tokens aus ../styles.css (Blaue Stunde), Zierebene: Federn + Goldornament.
   ============================================================ */

.seite-portrait { background: var(--papier); }

/* ---------- Dunkle Kopfleiste ---------- */
.kopfleiste {
  background: var(--abend);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem var(--pad-x);
}
.kopfleiste .wortmarke { color: var(--papier); }
.kopfleiste__links { display: flex; gap: 1.6rem; }
.kopfleiste__links a {
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  color: rgba(242,236,225,0.82); border-bottom: 1px dashed rgba(242,236,225,0.35);
  padding-bottom: 1px;
}
.kopfleiste__links a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Konfigurator-Grid ---------- */
.konfigurator { padding-top: clamp(2rem, 3.5vw, 3rem); }
.konfigurator__grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start;
}

/* Links: Vorschau */
.vorschau__h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1;
  letter-spacing: -0.01em; margin: 0.5rem 0 0.6rem; text-wrap: balance;
}
.vorschau__h1 em { font-style: italic; color: var(--gold-tief); }

.bewertung { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.6rem; }
.sterne-zeile { display: inline-flex; gap: 2px; }
.sterne-zeile svg { width: 15px; height: 14px; fill: var(--gold); }
.sterne-zeile--gross svg { width: 18px; height: 17px; }
.bewertung__text { font-size: 0.88rem; color: rgba(35,42,47,0.7); }
.bewertung__text strong { color: var(--tinte); }

.vorschau__haft { position: sticky; top: 1.5rem; }
.vorschau__figur { max-width: 460px; margin: 0; }
.vorschau__caption {
  margin-top: 0.85rem; font-size: 0.82rem; line-height: 1.55;
  color: rgba(35,42,47,0.6);
}

/* Messing-Plakette (Signature) */
.plakette {
  width: fit-content; min-width: 180px; max-width: 82%;
  margin: -1.4rem auto 0; position: relative; z-index: 2;
  padding: 0.5rem 1.4rem 0.55rem; text-align: center;
  background: linear-gradient(165deg, #D4A76C, #9A6C3C 55%, #C79B62);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.25),
    0 4px 14px rgba(35,42,47,0.35);
}
.plakette__name {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1.15rem; line-height: 1.25; color: #2E2415;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
}
.plakette__jahre {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(46,36,21,0.78);
  text-shadow: 0 1px 0 rgba(255,255,255,0.22);
}
.plakette__jahre:empty { display: none; }

/* Trust-Badges */
.trust {
  list-style: none; margin: 1.8rem 0 0; max-width: 460px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem;
}
.trust li { display: flex; gap: 0.7rem; align-items: flex-start; }
.trust svg { width: 1.5rem; height: 1.5rem; flex: none; fill: var(--gold-tief); color: var(--gold-tief); margin-top: 0.1rem; }
.trust span { font-size: 0.8rem; line-height: 1.45; color: rgba(35,42,47,0.66); }
.trust strong { color: var(--tinte); font-size: 0.84rem; }

/* ---------- Rechts: Konfiguration ---------- */
.abschnitt { margin-bottom: clamp(2.2rem, 4vw, 3rem); }
.schrittkopf { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.schrittkopf .schritt__nr { flex: none; width: 2.2rem; height: 2.2rem; font-size: 1.2rem; }
.schrittkopf__titel {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.55rem); line-height: 1.2;
}
.abschnitt__hinweis { font-size: 0.8rem; color: rgba(35,42,47,0.6); margin-top: 0.9rem; }

/* Gemeinsame Kachel-Basis: warm, weich, mit Tiefe */
.stil, .paket, .material-opt, .groesse {
  cursor: pointer; font-family: var(--body); color: var(--tinte);
  background: linear-gradient(175deg, #FFFDF7, #F6EFDF);
  border: 1px solid rgba(154,108,60,0.22);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(35,42,47,0.06), 0 6px 18px rgba(35,42,47,0.07);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s, border-color 0.25s;
}
.stil:hover, .paket:hover, .material-opt:hover, .groesse:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(35,42,47,0.06), 0 12px 28px rgba(35,42,47,0.13);
  border-color: rgba(200,143,68,0.5);
}
.stil--aktiv, .paket--aktiv, .material-opt--aktiv, .groesse--aktiv {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 10px 26px rgba(223,167,92,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  background: linear-gradient(175deg, #FFFDF6, #F9EFD9);
}

/* Motiv-Karten */
.stile {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1rem);
}
.stil { display: block; width: 100%; text-align: center; padding: 0.45rem 0.45rem 0.6rem; }
.stil img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; border-radius: 8px; }
.stil__name {
  display: block; font-family: var(--display); font-weight: 500;
  font-size: 0.94rem; line-height: 1.25; margin-top: 0.5rem;
}

/* Foto & Felder */
.foto-zeile { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.1rem; align-items: stretch; }
.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; text-align: center; cursor: pointer;
  border: 1.5px dashed rgba(154,108,60,0.45); border-radius: 12px;
  background: rgba(255,253,247,0.6); padding: 1.5rem 1.2rem;
  transition: border-color 0.25s, background 0.25s;
  color: var(--tinte);
}
.dropzone:hover, .dropzone--drag { border-color: var(--gold-tief); background: rgba(255,253,247,0.95); }
.dropzone__icon { width: 2.2rem; height: 2.2rem; color: var(--gold-tief); margin-bottom: 0.15rem; }
.dropzone__text { font-size: 0.95rem; }
.dropzone__text strong { color: var(--gold-tief); }
.dropzone__hint { font-size: 0.78rem; color: rgba(35,42,47,0.6); max-width: 20rem; }

.foto-polaroid {
  width: 118px; margin: 0; align-self: center;
  background: #fff; padding: 6px 6px 8px; border-radius: 3px;
  box-shadow: 0 10px 26px rgba(35,42,47,0.3); transform: rotate(3deg);
}
.foto-polaroid img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; border-radius: 2px; }
.foto-polaroid figcaption { font-size: 0.7rem; text-align: center; margin-top: 6px; color: rgba(35,42,47,0.65); }
.foto-ersetzen {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--body); font-size: 0.7rem; font-weight: 600;
  color: var(--gold-tief); border-bottom: 1px dashed rgba(200,143,68,0.6);
}

.felder { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.2rem; }
.feld label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 0.35rem; color: rgba(35,42,47,0.8);
}
.feld__optional { font-weight: 400; color: rgba(35,42,47,0.55); }
.feld input {
  width: 100%; padding: 0.7rem 0.9rem;
  font-family: var(--body); font-size: 1rem; color: var(--tinte);
  background: rgba(255,253,247,0.8); border: 1px solid rgba(154,108,60,0.3); border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feld input:focus {
  outline: none; border-color: var(--gold-tief);
  box-shadow: 0 0 0 3px rgba(223,167,92,0.25);
}

/* Vorschau erstellen */
.abschnitt--generieren { text-align: center; }
.generieren__cta { width: 100%; text-align: center; border-radius: 12px; }
.generieren__cta[disabled] { opacity: 0.65; cursor: wait; }
.microcopy--dunkel { color: rgba(35,42,47,0.62); }

/* ---------- Bestellbereich ---------- */
.bestellbereich {
  border-top: 1px solid rgba(154,108,60,0.25);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
}
.paket-block { margin-bottom: 0.6rem; }
.paket-block__titel {
  font-family: var(--display); font-weight: 500; font-size: 1.15rem;
  margin-bottom: 1rem;
}
.paket-block__hinweis { font-size: 0.8rem; color: rgba(35,42,47,0.6); margin: 0.8rem 0 1rem; }

.pakete { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; }
.paket { position: relative; display: block; text-align: center; padding: 1.1rem 0.5rem 0.9rem; }
.paket__badge {
  position: absolute; top: -0.65rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--tinte); white-space: nowrap;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.18rem 0.55rem; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(154,108,60,0.3);
}
.paket__badge--spare { background: #EFE5D0; }
.paket__menge { display: block; font-size: 0.82rem; font-weight: 600; }
.paket__preis { display: block; font-family: var(--display); font-weight: 500; font-size: 1.35rem; color: var(--gold-tief); margin: 0.15rem 0 0.1rem; }
.paket__einheit { display: block; font-size: 0.68rem; line-height: 1.35; color: rgba(35,42,47,0.6); }

.btn--breit { display: block; width: 100%; text-align: center; border-radius: 12px; }

.oder {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.6rem 0; color: rgba(35,42,47,0.5);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.oder::before, .oder::after { content: ""; flex: 1; height: 1px; background: rgba(154,108,60,0.3); }

/* Material + Größen */
.material { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 0.7rem; }
.material-opt { display: block; text-align: left; padding: 0.85rem 1rem; }
.material-opt__name { display: block; font-family: var(--display); font-weight: 500; font-size: 1.08rem; }
.material-opt__desc { display: block; font-size: 0.74rem; line-height: 1.4; color: rgba(35,42,47,0.62); margin-top: 0.15rem; }

.groessen { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; }
.groesse { position: relative; display: block; text-align: center; padding: 0.85rem 0.4rem 0.7rem; }
.groesse__badge {
  position: absolute; top: -0.65rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--tinte); white-space: nowrap;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.18rem 0.55rem; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(154,108,60,0.3);
}
.groesse__mass { display: block; font-size: 0.86rem; font-weight: 600; }
.groesse__preis { display: block; font-size: 0.78rem; color: rgba(35,42,47,0.65); margin-top: 0.1rem; }

/* Experten-Check */
.expertencheck {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: rgba(143,168,200,0.13); border-left: 3px solid var(--blume);
  border-radius: 0 10px 10px 0; padding: 0.85rem 1rem; margin: 1rem 0;
  font-size: 0.82rem; line-height: 1.5; color: rgba(35,42,47,0.85);
}
.expertencheck svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--gold-tief); margin-top: 0.05rem; }
.expertencheck s { color: rgba(35,42,47,0.5); }
.expertencheck em { font-style: normal; font-weight: 700; color: #3F7A4E; }

/* Preisbox — Messing-Anmutung, große ruhige Zahl */
.preisbox {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  row-gap: 0.1rem; margin: 1.1rem 0 1rem;
  background: linear-gradient(170deg, #FBF4E4, #F1E4C8);
  border: 1px solid rgba(154,108,60,0.35); border-radius: 12px;
  padding: 1.05rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 6px 18px rgba(35,42,47,0.08);
}
.preisbox__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-tief);
}
.preisbox__inkl { grid-row: 2; font-size: 0.78rem; color: rgba(35,42,47,0.6); }
.preisbox__preis {
  grid-column: 2; grid-row: 1 / span 2; align-self: center;
  font-family: var(--display); font-weight: 500; font-size: 2.5rem;
  letter-spacing: -0.01em; color: var(--tinte);
}

.bestellen__demo {
  margin-top: 1.2rem; padding: 1rem 1.2rem;
  background: rgba(143,168,200,0.14); border-left: 3px solid var(--blume);
  border-radius: 0 10px 10px 0; font-size: 0.88rem; color: rgba(35,42,47,0.85);
}

/* ---------- Reviews (dunkles Band) ---------- */
.reviews { position: relative; background: var(--abend); color: var(--papier); padding-top: clamp(4rem, 7vw, 6rem); }
.reviews__kopf { max-width: 640px; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.reviews__rating { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.8rem; font-size: 0.92rem; color: rgba(242,236,225,0.75); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.review--foto {
  background: rgba(242,236,225,0.05); border: 1px solid rgba(223,167,92,0.25);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,0,0,0.3);
}
.review--foto img { width: 100%; aspect-ratio: 3 / 3.4; object-fit: cover; object-position: top; }
.review__text { padding: 1.1rem 1.2rem 1.3rem; }
.review__text p { font-size: 0.92rem; line-height: 1.6; color: rgba(242,236,225,0.9); }
.review__von { margin-top: 0.7rem; font-size: 0.78rem; color: var(--gold); }
.reviews__texte {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews__texte blockquote {
  font-size: 0.94rem; line-height: 1.65; color: rgba(242,236,225,0.85);
  border-left: 2px solid rgba(223,167,92,0.5); padding-left: 1.1rem;
}
.reviews__texte footer { margin-top: 0.5rem; font-size: 0.78rem; color: rgba(242,236,225,0.55); }

/* ---------- Zierebene: Ornament + Federn ---------- */
.ornament {
  display: block; width: min(320px, 60%); height: auto;
  margin: 0 auto 0.4rem; opacity: 0.9;
}
.h2--mitte { text-align: center; }

.feder { position: absolute; pointer-events: none; z-index: 0; opacity: 0.5; }
.feder img { width: 100%; height: auto; }
.feder--1 { width: clamp(70px, 8vw, 120px); left: 4%; top: 10%; transform: rotate(-18deg); }
.feder--2 { width: clamp(60px, 6.5vw, 100px); right: 6%; top: 46%; transform: rotate(24deg) scaleX(-1); }
.feder--3 { width: clamp(60px, 7vw, 110px); right: 4%; top: 8%; transform: rotate(14deg); }

/* ---------- Langtext ---------- */
.langtext { position: relative; overflow: hidden; }
.langtext .inner { position: relative; z-index: 1; padding-bottom: calc(var(--pad-sektion) * 0.2); }
.langtext__block { max-width: 38rem; display: grid; gap: 1rem; margin-bottom: 2.4rem; }
.langtext__block--mitte { margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 3rem; }
.langtext__block h3 {
  font-family: var(--display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.4rem;
}

/* Bogenfenster-Karten */
.bogen-karten {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3.5vw, 3rem); margin-bottom: 3.2rem;
}
.bogen { margin: 0; text-align: center; }
.bogen__bild {
  border-radius: 999px 999px 14px 14px; overflow: hidden;
  border: 1px solid rgba(154,108,60,0.35);
  box-shadow: inset 0 0 0 6px var(--papier), inset 0 0 0 7px rgba(154,108,60,0.4),
    0 18px 44px rgba(35,42,47,0.18);
  aspect-ratio: 3 / 3.6;
}
.bogen__bild img { width: 100%; height: 100%; object-fit: cover; }
.bogen figcaption { padding: 1.2rem 0.6rem 0; }
.bogen h3 { font-family: var(--display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.4rem; }
.bogen p { font-size: 0.94rem; color: rgba(35,42,47,0.8); text-align: left; }

.langtext__untertitel {
  font-family: var(--display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.6rem;
}
.schritte--kompakt { margin-top: 1.4rem; margin-bottom: 2.8rem; }
.schritte--kompakt .schritt { padding-bottom: 1.8rem; }
.schritte--kompakt h4 { font-family: var(--display); font-weight: 500; font-size: 1.15rem; margin-bottom: 0.25rem; }
.schritte--kompakt p { font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.fragen--portrait { position: relative; overflow: hidden; padding-top: clamp(2.5rem, 4vw, 3.5rem); }
.fragen--portrait .inner { position: relative; z-index: 1; }
.fragen--portrait .frage {
  border: 1px solid rgba(154,108,60,0.25); border-bottom: 1px solid rgba(154,108,60,0.25);
  border-radius: 12px; background: linear-gradient(175deg, #FBF7EC, #F5EDDB);
  margin-bottom: 0.8rem; padding: 0 1.3rem;
  box-shadow: 0 4px 14px rgba(35,42,47,0.06);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.fragen--portrait .frage[open] {
  border-color: rgba(200,143,68,0.55);
  box-shadow: 0 10px 28px rgba(35,42,47,0.1);
}
.fragen--portrait .frage summary { font-size: 1.12rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .konfigurator__grid { grid-template-columns: 1fr; }
  .vorschau__haft { position: static; }
  .vorschau__figur { margin: 0 auto; }
  .trust { max-width: 460px; margin-left: auto; margin-right: auto; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .reviews__texte { grid-template-columns: 1fr; }
  .bogen-karten { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .stile { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foto-zeile { grid-template-columns: 1fr; }
  .foto-polaroid { justify-self: center; }
  .felder { grid-template-columns: 1fr; }
  .pakete { grid-template-columns: 1fr; gap: 0.9rem; }
  .paket { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 0 0.7rem; text-align: left; padding: 0.9rem 1rem; }
  .paket__einheit { grid-column: 1 / -1; }
  .material { grid-template-columns: 1fr; }
  .groessen { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
  .trust { grid-template-columns: 1fr; }
  .preisbox__preis { font-size: 2.1rem; }
  .kopfleiste__links { gap: 1rem; }
  .kopfleiste__links a { font-size: 0.8rem; }
}
