/* NUR für verkleinerung-test/ und umzug-test/ – lokale Vergleichsversion.
   Ergänzt style.css, ändert nichts an den Live-Klassen.
   Farbschema: Weiß/Hellgrau als Flächen, Anthrazit als Text, Weinrot als einzige Akzentfarbe.
   Navy nur noch sparsam für Überschriften-Text, nie als Flächenfarbe (Footer ist die einzige, bewusste Ausnahme). */

:root {
  --gray-bg: #f5f5f4;
  --ink: #1a1a1a;
  --line-soft: #e6e4e1;
  --r: 14px;
}
/* scroll-behavior bewusst NICHT gesetzt: die Menü-Klicks nutzen einen eigenen, langsameren JS-Scroll (siehe funnel-test.js) */

/* ── Größerer Header mit Navigation (an ainsleygroup angelehnt) ── */
:root { --hdr-h-test: 132px; }
.hdr.hdr-big { height: auto; padding: 24px 0; }
.hdr.hdr-big .hdr-inner { flex-wrap: wrap; row-gap: 16px; }
.hdr.hdr-big .hdr-logo img { height: 42px; width: auto; max-height: 42px; }
.hdr-nav { display: flex; align-items: center; gap: 32px; }
.hdr-nav a { font-size: .88rem; font-weight: 500; color: var(--ink); transition: opacity .2s; }
.hdr-nav a:hover { opacity: .6; }
.hdr.hdr-big .hdr-right { gap: 32px; }
@media (max-width: 900px) {
  .hdr-nav { order: 3; width: 100%; justify-content: center; gap: 22px; flex-wrap: wrap; }
}

/* ── Hero mit Hintergrundfoto + Formular davor (an ainsleygroup angelehnt) ── */
.hero-photo {
  position: relative; text-align: center;
  padding: calc(var(--hdr-h-test) + 56px) 24px 100px;
  background-size: cover; background-position: center;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.4) 45%, rgba(255,255,255,.62) 100%);
}
.hero-photo > * { position: relative; z-index: 1; }
.hero-mini-inner { max-width: 660px; margin: 0 auto 44px; }
.hero-mini-eyebrow {
  display: inline-block; margin-bottom: 14px; padding: 7px 16px;
  background: rgba(255,255,255,.7); border: 1px solid rgba(26,39,68,.15); border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .03em; color: var(--navy);
}
.hero-mini-h1 { font-size: clamp(1.4rem, 3.8vw, 2.1rem); font-weight: 500; letter-spacing: -.01em; color: var(--ink); line-height: 1.35; text-wrap: balance; }

/* Kompakterer, aufrechterer Formular-Container */
.hero-photo .funnel-sec-inner { max-width: 620px; }
.hero-photo .funnel-card { text-align: left; }
.hero-photo .fn-body { padding: 40px 44px; }
.hero-photo .fn-step h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 26px; }
.hero-photo .fn-step-label,
.funnel-sec-inner .fn-step-label {
  font-size: .76rem; font-weight: 500; color: #9a9a9a; margin-bottom: 16px;
}
@media (max-width: 639px) {
  .hero-photo .fn-body { padding: 28px 22px; }
  .hero-photo .fn-step h3 { font-size: 1.15rem; }
}

/* ── Google-Badge als helle Chip auf dem Foto ── */
.hero-google-mini {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; width: fit-content; margin: 20px auto 0;
  background: var(--white); padding: 10px 18px; border-radius: 999px;
  font-size: .9rem; color: var(--ink); box-shadow: 0 6px 20px rgba(0,0,0,.1);
  border: 1px solid var(--line-soft);
}
.hero-google-mini .g-stars { color: #fbbc04; letter-spacing: 1px; }

/* ── Schritt 1: Bildkacheln (Foto oben, Label darunter – wie Vorbild) ── */
.fn-choices.fn-choices-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fn-choice.fn-choice-tile {
  background: var(--white); padding: 0; border-radius: var(--r);
  overflow: hidden; border: 2px solid #cfcbc2;
  display: flex; flex-direction: column; text-align: center; transition: border-color .2s, border-width .2s;
}
.fn-choice-tile-imgwrap { width: 100%; height: 150px; overflow: hidden; background: #eee; }
.fn-choice-tile-imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fn-choice-tile-label {
  color: var(--ink); font-size: .78rem; font-weight: 600; line-height: 1.3; padding: 10px 8px;
}
.fn-choice.fn-choice-tile:hover { border-color: #9a958a; }
.fn-choice.fn-choice-tile.sel { border-width: 3px; border-color: #6b6b6b; }
.fn-choice.fn-choice-tile.sel .fn-choice-tile-label { color: var(--ink); font-weight: 700; }
@media (max-width: 639px) {
  .fn-choices.fn-choices-tiles { grid-template-columns: 1fr; }
  .fn-choice.fn-choice-tile { flex-direction: row; align-items: center; }
  .fn-choice-tile-imgwrap { width: 72px; height: 72px; flex-shrink: 0; }
  .fn-choice-tile-label { text-align: left; }
}

/* ── Schritt 1: helle Radio-Zeilen statt kräftig eingefärbter Buttons ── */
.fn-choice.fn-choice-radio {
  background: var(--gray-bg); color: var(--ink); border: 2px solid #cfcbc2;
  border-radius: var(--r);
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 15px 19px; transition: background .2s, border-color .2s, border-width .2s;
}
.fn-choice.fn-choice-radio:hover { background: #efeeec; border-color: #9a958a; }
.fn-choice-radio-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; position: relative;
  border: 2px solid #b8b3a8; background: var(--white);
}
.fn-choice.fn-choice-radio.sel { background: #f0efec; border-width: 3px; border-color: #6b6b6b; padding: 14px 18px; }
.fn-choice.fn-choice-radio.sel .fn-choice-radio-dot { border-color: #6b6b6b; }
.fn-choice.fn-choice-radio.sel .fn-choice-radio-dot::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%; background: #6b6b6b;
}

/* Schritt "Immobilienart": 3 Kacheln (Haus / Wohnung / Grundstück) */
.fn-choices-tiles.fn-choices-tiles-3 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 639px) {
  .fn-choices-tiles.fn-choices-tiles-3 { grid-template-columns: 1fr; }
  .fn-choices-tiles-3 .fn-choice-tile { flex-direction: row; align-items: center; }
  .fn-choices-tiles-3 .fn-choice-tile-imgwrap { width: 84px; height: 84px; flex-shrink: 0; }
  .fn-choices-tiles-3 .fn-choice-tile-label { text-align: left; }
}

/* ── 3 Vorteile mit weinroten Icons (statt Fließtext) ── */
.advantages { background: var(--gray-bg); padding: 48px 24px; }
.advantages-inner {
  max-width: var(--cw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center;
}
.advantage-icon { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--wine); }
.advantage-icon svg { width: 100%; height: 100%; display: block; }
.advantage-label { font-size: .95rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.advantage-text { font-size: .82rem; color: #5a5a5a; line-height: 1.5; }
@media (max-width: 639px) {
  .advantages-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* ── Über uns: großes, breites Team-Foto links, Text rechts ── */
.about-mini { background: var(--white); padding: 72px 24px; }
.about-mini-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
}
.about-mini-photo {
  width: 380px; height: 280px; border-radius: var(--r); overflow: hidden;
  flex-shrink: 0; box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.about-mini-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-mini-h2 { font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.about-mini-text { font-size: 1rem; color: #444; line-height: 1.65; margin-bottom: 16px; }
.about-mini-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.about-mini-checks li {
  position: relative; padding-left: 26px; font-size: .92rem; color: #333; line-height: 1.5;
}
.about-mini-checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--wine); font-weight: 700;
}
@media (max-width: 767px) {
  .about-mini-inner { flex-direction: column; text-align: left; gap: 28px; }
  .about-mini-photo { width: 100%; max-width: 380px; }
}
@media (max-width: 639px) {
  .about-mini { padding: 56px 24px; }
  .about-mini-photo { width: 100%; height: 220px; }
}

/* ── Button unter den Bewertungen ── */
.gmap-all-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: fit-content; margin: 32px auto 0;
  padding: 13px 26px; border: 2px solid var(--navy); border-radius: var(--r);
  font-size: .88rem; font-weight: 600; color: var(--navy);
  background: var(--white); transition: background .2s, color .2s;
}
.gmap-all-link:hover { background: var(--navy); color: var(--white); }
.gmap-all-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Echte Google-Rezensionen im Rezensions-Karten-Stil ── */
.gmap-reviews { background: var(--white); padding: 48px 24px; }
.gmap-reviews-inner { max-width: var(--cw); margin: 0 auto; }
.gmap-reviews-h2 { text-align: center; font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 28px; }
.gmap-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gmap-card { position: relative; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); }
.gmap-card-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.gmap-avatar,
.gmap-avatar-photo {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
}
.gmap-avatar {
  background: var(--wine); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem;
}
.gmap-avatar-photo { overflow: hidden; position: relative; }
.gmap-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gmap-name-row { display: flex; align-items: center; gap: 5px; }
.gmap-name { font-size: .9rem; font-weight: 600; color: var(--ink); }
.gmap-meta { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.gmap-google-icon { position: absolute; top: 16px; right: 16px; width: 24px; height: 24px; }
.gmap-stars { color: #fbbc04; font-size: .8rem; letter-spacing: 1px; }
.gmap-time { font-size: .72rem; color: #70757a; }
.gmap-text { font-size: .85rem; color: #333; line-height: 1.6; }
.gmap-text.js-clamp {
  max-height: 7.7em; overflow: hidden; transition: max-height .6s ease;
}
.gmap-text.js-clamp.expanded { max-height: 40em; }
.gmap-more {
  display: inline-block; margin-top: 16px; background: none; border: none; padding: 0;
  color: #9a9a9a; font-size: .8rem; font-weight: 400; cursor: pointer; font-family: inherit;
}
.gmap-more:hover { color: #6a6a6a; text-decoration: underline; }
@media (max-width: 767px) {
  .gmap-reviews-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Formular am Seitenende (genau einmal) ── */
.funnel-sec.funnel-sec-repeat { background: var(--gray-bg); }
.funnel-sec-inner .sec-h2 { font-weight: 500; }
.funnel-sec-inner .fn-next,
.funnel-sec-inner .fn-sub { border-radius: var(--r); }

/* Adress-/Kontakt-Schritte an die gleiche Umrandung wie Schritt 1+2 angleichen */
.funnel-sec-inner .fn-inp {
  border: 2px solid #cfcbc2; border-radius: var(--r); padding: 14px 16px;
  transition: border-color .2s, border-width .2s;
}
.funnel-sec-inner .fn-inp:hover { border-color: #9a958a; }
.funnel-sec-inner .fn-inp:focus {
  border-width: 3px; border-color: #6b6b6b; padding: 13px 15px;
}
.funnel-sec-inner .fn-inp.ok { border-color: #2d9d5e; }
.funnel-sec-inner .fn-inp.err { border-color: #cc2222; }

/* ── Standort-Karte (echtes Google-Maps-Embed) ── */
.map-sec { background: var(--white); padding: 48px 24px 60px; }
.map-sec-inner { max-width: var(--cw); margin: 0 auto; text-align: center; }
.map-sec-h2 { font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.map-sec-address { font-size: .9rem; color: #5a5a5a; margin-bottom: 20px; }
.map-embed { border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 320px; }
@media (max-width: 639px) {
  .map-embed iframe { height: 240px; }
}

/* ── Kompakter Footer: Logo+Copyright + Made-by oben, Trennlinie, Links unten (bewusste Ausnahme: navy bleibt) ── */
.footer-mini { background: var(--navy); padding: 32px 24px 24px; }
.footer-mini-top {
  max-width: var(--cw); margin: 0 auto 20px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-mini-logo img { height: 30px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 8px; }
.footer-mini-copy { font-size: .8rem; color: rgba(255,255,255,.6); }
.footer-mini-madeby {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.55);
}
.footer-mini-madeby:hover { color: rgba(255,255,255,.85); }
.footer-mini-madeby img { height: 20px; width: auto; display: block; }
.footer-mini-divider { max-width: var(--cw); margin: 0 auto; height: 1px; background: rgba(255,255,255,.12); }
.footer-mini-bottom {
  max-width: var(--cw); margin: 0 auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: center;
}
.footer-mini-links { display: flex; align-items: center; gap: 18px; }
.footer-mini-links a { font-size: .8rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-mini-links a:hover { color: var(--white); }
@media (max-width: 639px) {
  .footer-mini-top { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .footer-mini-logo img { margin: 0 auto 8px; }
}
