/* ==========================================================================
   VON UND ZU HAUSE – Layoutprototyp
   Die Bereiche 01 Header und 02 Hero entsprechen dem freigegebenen Stand.
   Ab 03 wird die Startseite im gleichen Gestaltungsprinzip weitergeführt.
   ========================================================================== */


/* ==========================================================================
   00 – Fonts / Grundvariablen / Basis
   ========================================================================== */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v30-latin-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-v30-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/mulish-v12-latin-300.woff2') format('woff2');
}

:root {
  --text: #6a6a6a;
  --light: #fff;
  --accent: #73ccda;
  --soft: #e1dcd9;
  --dark: #69625e;
  --sand: #918674;
  --sand-light: #f1eeeb;
  --side: clamp(1.125rem, .8rem + 1vw, 2rem);
  --section: clamp(6.25rem, 4.3rem + 6vw, 12rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #69625e;
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-weight: 300;
}

img {
  max-width: 100%;
}

.wrapper_small,
.wrapper_cont,
.wrapper_med,
.wrapper_hd,
.wrapper_wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--side);
}

.wrapper_small {
  max-width: 800px;
}

.wrapper_cont {
  max-width: 960px;
}

.wrapper_med {
  max-width: 1400px;
}

.wrapper_hd {
  max-width: 1920px;
}

.wrapper_wide {
  max-width: 2560px;
}

.vuzh-skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: #fff;
  color: #6a6a6a;
  padding: .75rem 1rem;
}

.vuzh-skip:focus {
  top: 1rem;
}

.vuzh-kicker {
  margin: 0 0 1.2rem;
  color: var(--sand);
  font-size: .76rem;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.vuzh-kicker--light {
  color: rgba(255, 255, 255, .78);
}

.vuzh-reading {
  font-size: clamp(1rem, .96rem + .18vw, 1.15rem);
  line-height: 1.85;
}

.vuzh-reading p {
  margin: 0 0 1.55em;
}

.vuzh-text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: .2rem;
}

.vuzh-text-link:hover,
.vuzh-text-link:focus-visible {
  color: var(--dark);
}


/* ==========================================================================
   01 – Header
   Unveränderter freigegebener Stand.
   ========================================================================== */

.vuzh-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  transition: box-shadow .25s ease;
}

.vuzh-header.is-compact {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
}

.vuzh-header__inner {
  height: clamp(7.5rem, 6rem + 4vw, 11.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .35s ease;
}

.vuzh-header.is-compact .vuzh-header__inner {
  height: clamp(4.75rem, 4.2rem + 1.4vw, 6rem);
}

.vuzh-header__brand {
  position: relative;
  display: block;
  width: clamp(13rem, 10rem + 8vw, 20rem);
  height: clamp(5.2rem, 4rem + 3vw, 7.8rem);
  transition: width .35s ease, height .35s ease;
}

.vuzh-header__logo {
  position: absolute;
  left: 0;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translateY(-50%);
  transition: opacity .25s ease;
}

.vuzh-header__logo--full {
  opacity: 1;
}

.vuzh-header__logo--compact {
  opacity: 0;
}

.vuzh-header.is-compact .vuzh-header__brand {
  width: clamp(3rem, 2.7rem + .8vw, 4rem);
  height: 3.5rem;
}

.vuzh-header.is-compact .vuzh-header__logo--full {
  opacity: 0;
}

.vuzh-header.is-compact .vuzh-header__logo--compact {
  opacity: 1;
}

.vuzh-header__nav {
  display: flex;
  gap: clamp(1.6rem, 1rem + 1.7vw, 3.6rem);
  align-items: center;
}

.vuzh-header__nav a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: clamp(.82rem, .72rem + .22vw, 1rem);
  padding: .55rem 0;
  border-bottom: 1px solid transparent;
}

.vuzh-header__nav a:hover,
.vuzh-header__nav a:focus-visible,
.vuzh-header__nav a.is-active {
  color: #4d4d4d;
  border-color: var(--accent);
}

.vuzh-header__burger {
  display: none;
  border: 0;
  background: transparent;
  width: 2.5rem;
  padding: .4rem;
  cursor: pointer;
}

.vuzh-header__burger span {
  display: block;
  height: 1px;
  background: #6a6a6a;
  margin: .42rem 0;
}


/* ==========================================================================
   02 – Hero
   Unveränderter freigegebener Stand.
   ========================================================================== */

.vuzh-hero {
  background: #fff;
  padding-top: clamp(7.5rem, 6rem + 4vw, 11.5rem);
}

.vuzh-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  min-height: clamp(42rem, 75vh, 55rem);
  align-items: stretch;
}

.vuzh-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(5rem, 3rem + 5vw, 10rem)
    clamp(3rem, 2rem + 4vw, 7rem)
    clamp(5rem, 3rem + 5vw, 10rem)
    0;
}

.vuzh-hero__eyebrow {
  margin: 0 0 1.75rem;
  font-size: .78rem;
  letter-spacing: .16em;
  color: #918674;
}

.vuzh-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 2.1rem + 3.2vw, 6.1rem);
  line-height: 1.01;
  font-weight: 400;
  letter-spacing: -.025em;
  margin: 0;
  max-width: 10.2ch;
  color: #5f5f5f;
}

.vuzh-hero__claim {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2.35rem);
  line-height: 1.25;
  margin: clamp(2.4rem, 1.7rem + 2vw, 4.5rem) 0 0;
  color: #918674;
}

.vuzh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2.5rem, 2rem + 1.6vw, 4rem);
}

.vuzh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: .85rem 1.5rem;
  border: 1px solid #918674;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  transition: background-color .2s ease, color .2s ease;
}

.vuzh-button:hover,
.vuzh-button:focus-visible {
  background: #918674;
  color: #fff;
}

.vuzh-button--filled {
  background: #918674;
  color: #fff;
}

.vuzh-button--filled:hover,
.vuzh-button--filled:focus-visible {
  background: #69625e;
}

.vuzh-hero__visual {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

.vuzh-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 63% center;
}


/* ==========================================================================
   03 – Maklerinnen / emotionale Vorstellung
   ========================================================================== */

.vuzh-team-visual {
  background: #fff;
  padding: var(--section) 0;
  text-align: center;
}

.vuzh-team-visual h2,
.vuzh-team-copy h2,
.vuzh-philosophy h2,
.vuzh-philosophy-detail h2,
.vuzh-offers h2,
.vuzh-acquisition > .wrapper_med > h2,
.vuzh-references h2,
.vuzh-personal h2,
.vuzh-contact h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.08;
  color: #5f5f5f;
}

.vuzh-team-visual h2 {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(2.8rem, 2rem + 2.5vw, 5.4rem);
}

.vuzh-team-visual__figure {
  width: min(100%, 1120px);
  margin: clamp(3.5rem, 2rem + 3.5vw, 7rem) auto 0;
  overflow: hidden;
}

.vuzh-team-visual__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: center 28%;
}

.vuzh-team-visual__names {
  margin: 1.4rem 0 0;
  color: var(--sand);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1rem + .45vw, 1.55rem);
}


/* ==========================================================================
   04 – Maklerinnen / Über uns
   ========================================================================== */

.vuzh-team-copy {
  background: var(--soft);
  padding: var(--section) 0;
}

.vuzh-team-copy h2 {
  font-size: clamp(2.4rem, 1.9rem + 1.8vw, 4.2rem);
  margin-bottom: clamp(2.5rem, 1.6rem + 2vw, 4.5rem);
}


/* ==========================================================================
   05 – Atmosphärischer Trenner
   ========================================================================== */

.vuzh-panorama {
 background: var(--soft);
}

.vuzh-panorama__figure {
  margin: 0;
  height: clamp(14rem, 13rem + 8vw, 22rem);
  overflow: hidden;
}

.vuzh-panorama__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* ==========================================================================
   06 – Philosophie / visueller Einstieg
   ========================================================================== */

.vuzh-philosophy {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-philosophy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(4rem, 2rem + 5vw, 9rem);
  align-items: center;
}

.vuzh-philosophy__visual {
  margin: 0;
  min-height: clamp(31rem, 27rem + 8vw, 42rem);
}

.vuzh-philosophy__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.vuzh-philosophy__copy h2 {
  font-size: clamp(2.7rem, 2rem + 2vw, 4.6rem);
  margin-bottom: clamp(2.2rem, 1.4rem + 1.6vw, 3.5rem);
}

.vuzh-philosophy__copy > p:not(.vuzh-kicker) {
  margin: 0 0 1.5em;
  font-size: clamp(1rem, .96rem + .18vw, 1.15rem);
  line-height: 1.8;
}


/* ==========================================================================
   07 – Philosophie / Vertiefung
   ========================================================================== */

.vuzh-philosophy-detail {
  background: var(--sand-light);
  padding: var(--section) 0;
}

.vuzh-philosophy-detail h2 {
  font-size: clamp(2.4rem, 1.9rem + 1.8vw, 4.2rem);
  margin-bottom: clamp(2.5rem, 1.6rem + 2vw, 4.5rem);
}


/* ==========================================================================
   08 – Vier Kernwerte / Fixed Background
   ========================================================================== */

.vuzh-values {
  color: #fff;
  background:
    linear-gradient(rgba(57, 55, 53, .62), rgba(57, 55, 53, .62)),
    url('tmppics/pic_slide01_reetdachhaus.jpg') center / cover fixed;
}

.vuzh-values__overlay {
  padding: var(--section) 0;
}

.vuzh-values h2 {
  margin: 0;
  max-width: 14ch;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 2rem + 2.5vw, 5rem);
  font-weight: 400;
  line-height: 1.07;
  color: #fff;
}

.vuzh-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.2vw, 2rem);
  margin-top: clamp(4rem, 2.5rem + 4vw, 7.5rem);
}

.vuzh-values__item {
  min-height: 23rem;
  padding: clamp(2rem, 1.4rem + 1.4vw, 3.25rem);
  background: rgba(255, 255, 255, .92);
  color: var(--text);
}

.vuzh-values__number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.vuzh-values__item h3 {
  margin: 0 0 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 1.3rem + .6vw, 2.05rem);
  font-weight: 400;
  line-height: 1.15;
  color: #5f5f5f;
}

.vuzh-values__item p {
  margin: 0;
  line-height: 1.75;
}


/* ==========================================================================
   09 – Angebote / Startseiten-Teaser
   ========================================================================== */

.vuzh-offers {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, .65fr);
  gap: clamp(3rem, 2rem + 4vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 2rem + 4vw, 7rem);
}

.vuzh-section-head h2 {
  font-size: clamp(2.7rem, 2rem + 2vw, 4.7rem);
  max-width: 15ch;
}

.vuzh-section-head__intro {
  margin: 0;
  line-height: 1.8;
}

.vuzh-offers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 5rem);
}

.vuzh-property-card {
  background: var(--sand-light);
}

.vuzh-property-card__image {
  display: block;
  overflow: hidden;
}

.vuzh-property-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  transition: transform .45s ease;
}

.vuzh-property-card__image:hover img,
.vuzh-property-card__image:focus-visible img {
  transform: scale(1.025);
}

.vuzh-property-card__body {
  padding: clamp(2rem, 1.4rem + 1.4vw, 3.25rem);
}

.vuzh-property-card__meta {
  margin: 0 0 1.2rem;
  color: var(--sand);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vuzh-property-card h3 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 1.4rem + .7vw, 2.35rem);
  line-height: 1.18;
  color: #5f5f5f;
}

.vuzh-property-card__facts {
  margin: 0;
  line-height: 1.7;
}

.vuzh-section-cta {
  margin-top: clamp(3rem, 2rem + 3vw, 6rem);
  text-align: center;
}


/* ==========================================================================
   10 – Gesuche & Tippgeber
   ========================================================================== */

.vuzh-acquisition {
  background: var(--soft);
  padding: var(--section) 0;
}

.vuzh-acquisition > .wrapper_med > h2 {
  max-width: 17ch;
  font-size: clamp(2.7rem, 2rem + 2vw, 4.7rem);
}

.vuzh-acquisition__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(4rem, 2.5rem + 4vw, 7rem);
}

.vuzh-acquisition__item {
  min-height: 30rem;
  padding: clamp(3rem, 2rem + 3vw, 6rem);
  background: #fff;
}

.vuzh-acquisition__item--tip {
  background: var(--dark);
  color: #fff;
}

.vuzh-acquisition__eyebrow {
  margin: 0 0 2rem;
  color: var(--sand);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vuzh-acquisition__item--tip .vuzh-acquisition__eyebrow {
  color: var(--accent);
}

.vuzh-acquisition__item h3 {
  margin: 0 0 2rem;
  max-width: 14ch;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 1.5rem + 1.2vw, 3.1rem);
  line-height: 1.1;
  color: #5f5f5f;
}

.vuzh-acquisition__item--tip h3 {
  color: #fff;
}

.vuzh-acquisition__item p:not(.vuzh-acquisition__eyebrow) {
  line-height: 1.8;
}

.vuzh-acquisition__item--tip .vuzh-text-link {
  color: var(--accent);
}


/* ==========================================================================
   11 – Referenzen / Teaser
   ========================================================================== */

.vuzh-references {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-references__grid {
  display: grid;
  grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr);
  gap: clamp(4rem, 2rem + 5vw, 9rem);
  align-items: center;
}

.vuzh-references h2 {
  font-size: clamp(2.5rem, 1.8rem + 1.8vw, 4.2rem);
  margin-bottom: 2.2rem;
}

.vuzh-references__copy > p:not(.vuzh-kicker) {
  line-height: 1.8;
}

.vuzh-references__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(13rem, .75fr);
  gap: clamp(1.4rem, 1rem + 1.4vw, 2.5rem);
  align-items: end;
}

.vuzh-references__image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.vuzh-references__image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.vuzh-references__image--large img {
  aspect-ratio: 1.4 / 1;
}

.vuzh-references__image--small img {
  aspect-ratio: 1 / 1.12;
}

.vuzh-references__image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .9);
  color: var(--sand);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ==========================================================================
   12 – Persönlich für Sie da
   ========================================================================== */

.vuzh-personal {
  background: var(--sand-light);
  padding: var(--section) 0;
}

.vuzh-personal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(4rem, 2rem + 5vw, 9rem);
  align-items: center;
}

.vuzh-personal__visual {
  margin: 0;
}

.vuzh-personal__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: center 25%;
}

.vuzh-personal h2 {
  font-size: clamp(2.8rem, 2rem + 2vw, 4.8rem);
  margin-bottom: 2.3rem;
}

.vuzh-personal__copy > p:not(.vuzh-kicker) {
  font-size: clamp(1rem, .96rem + .18vw, 1.15rem);
  line-height: 1.8;
}

.vuzh-signatures {
  display: flex;
  gap: clamp(2rem, 1rem + 3vw, 5rem);
  align-items: end;
  margin-top: clamp(2.5rem, 1.8rem + 2vw, 4rem);
}

.vuzh-signatures__item {
  display: grid;
  gap: .6rem;
}

.vuzh-signatures__item img {
  width: auto;
  max-width: 9rem;
  height: 4.4rem;
  object-fit: contain;
  object-position: left bottom;
}

.vuzh-signatures__item span {
  font-size: .8rem;
  color: var(--sand);
}


/* ==========================================================================
   13 – Kontaktformular
   ========================================================================== */

.vuzh-contact {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-contact__head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.vuzh-contact h2 {
  font-size: clamp(2.7rem, 2rem + 2vw, 4.7rem);
  margin-bottom: 2rem;
}

.vuzh-contact__head > p:not(.vuzh-kicker) {
  line-height: 1.8;
}

.vuzh-contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: clamp(3.5rem, 2rem + 4vw, 6rem);
}

.vuzh-field {
  display: grid;
  gap: .55rem;
}

.vuzh-field--message {
  grid-column: 1 / -1;
}

.vuzh-field label {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.vuzh-field input,
.vuzh-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbb4ae;
  border-radius: 0;
  background: transparent;
  padding: .9rem 0;
  color: var(--text);
  font: inherit;
}

.vuzh-field input:focus-visible,
.vuzh-field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.vuzh-checkbox {
  grid-column: 1 / -1;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .85rem;
  line-height: 1.5;
}

.vuzh-checkbox input {
  margin-top: .25rem;
}

.vuzh-contact__submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1.5rem;
}

.vuzh-contact__submit .vuzh-button {
  cursor: pointer;
}


/* ==========================================================================
   14 – Footer
   ========================================================================== */

.vuzh-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .82);
  padding: clamp(4rem, 3rem + 3vw, 7rem) 0;
  font-size: .87rem;
  line-height: 1.75;
}

.vuzh-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  align-items: start;
}

.vuzh-footer__logo {
  width: min(16rem, 100%);
  filter: brightness(0) invert(1);
  opacity: .9;
}

.vuzh-footer__links {
  display: grid;
  gap: .65rem;
}

.vuzh-footer__links a {
  color: #fff;
  text-decoration: none;
}

.vuzh-footer__links a:hover,
.vuzh-footer__links a:focus-visible {
  color: var(--accent);
}


/* ==========================================================================
   Global – vertikaler Tipp-Provision-CTA
   ========================================================================== */

.vuzh-tip-tab {
  position: fixed;
  z-index: 80;
  right: 0;
  top: 58%;
  transform: translateY(-50%) rotate(-90deg) translateY(-100%);
  transform-origin: right top;
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: .65rem 1.1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .7rem;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .vuzh-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vuzh-references__grid,
  .vuzh-personal__grid,
  .vuzh-philosophy__grid {
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .vuzh-header__nav {
    display: none;
  }

  .vuzh-header__burger {
    display: block;
  }

  .vuzh-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vuzh-hero__copy {
    padding-right: 0;
  }

  .vuzh-hero__visual {
    min-height: 24rem;
  }

  .vuzh-hero h1 {
    max-width: 12ch;
  }

  .vuzh-header__brand {
    width: 12rem;
    height: 5rem;
  }

  .vuzh-header.is-compact .vuzh-header__brand {
    width: 3.2rem;
  }

  .vuzh-philosophy__grid,
  .vuzh-personal__grid,
  .vuzh-references__grid {
    grid-template-columns: 1fr;
  }

  .vuzh-section-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vuzh-offers__grid,
  .vuzh-acquisition__grid {
    grid-template-columns: 1fr;
  }

  .vuzh-references__visuals {
    max-width: 760px;
  }

  .vuzh-tip-tab {
    display: none;
  }
}

@media (max-width: 650px) {
  .vuzh-values__grid,
  .vuzh-references__visuals,
  .vuzh-contact__form {
    grid-template-columns: 1fr;
  }

  .vuzh-values__item {
    min-height: auto;
  }

  .vuzh-field--message,
  .vuzh-checkbox,
  .vuzh-contact__submit {
    grid-column: auto;
  }

  .vuzh-signatures {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vuzh-header,
  .vuzh-header__inner,
  .vuzh-header__brand,
  .vuzh-header__logo,
  .vuzh-button,
  .vuzh-property-card__image img {
    transition: none;
  }

  .vuzh-values {
    background-attachment: scroll;
  }
}


/* ==========================================================================
   15 – Gemeinsamer Seiteneinstieg der Unterseiten
   Angebote / Gesuche
   ========================================================================== */

.vuzh-subhero {
  background: #fff;
  padding-top: clamp(7.5rem, 6rem + 4vw, 11.5rem);
}

.vuzh-subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  min-height: clamp(31rem, 60vh, 43rem);
  align-items: stretch;
}

.vuzh-subhero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(4rem, 2.5rem + 4vw, 7rem)
    clamp(3rem, 2rem + 4vw, 7rem)
    clamp(4rem, 2.5rem + 4vw, 7rem)
    0;
}

.vuzh-subhero h1 {
  margin: 0 0 2.3rem;
  max-width: 12ch;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.9rem, 2.1rem + 2.6vw, 5.5rem);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.02em;
  color: #5f5f5f;
}

.vuzh-subhero__copy > p:not(.vuzh-kicker) {
  margin: 0 0 1.35em;
  max-width: 39rem;
  line-height: 1.8;
}

.vuzh-subhero__visual {
  margin: 0;
  overflow: hidden;
}

.vuzh-subhero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   16 – Angebote: vollständige Immobilienübersicht
   ========================================================================== */

.vuzh-listings {
  background: #fff;
  padding: var(--section) 0;
  border-top: 1px solid rgba(145, 134, 116, .18);
}

.vuzh-listings__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 5rem);
}


/* ==========================================================================
   17 – Angebote: Nicht das Richtige dabei?
   ========================================================================== */

.vuzh-search-intro {
  background: var(--soft);
  padding: var(--section) 0;
}

.vuzh-search-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 2rem + 5vw, 9rem);
  align-items: center;
}

.vuzh-search-intro h2,
.vuzh-sell-intro h2,
.vuzh-services h2,
.vuzh-search-profiles h2,
.vuzh-tip-section h2,
.vuzh-direct-contact h2,
.vuzh-location h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.08;
  color: #5f5f5f;
}

.vuzh-search-intro h2 {
  font-size: clamp(2.5rem, 1.8rem + 1.9vw, 4.3rem);
  margin-bottom: 2rem;
}

.vuzh-search-intro__copy > p:not(.vuzh-kicker) {
  line-height: 1.8;
  margin-bottom: 2rem;
}

.vuzh-search-intro__visual {
  margin: 0;
  min-height: clamp(28rem, 25rem + 7vw, 38rem);
}

.vuzh-search-intro__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}


/* ==========================================================================
   18 – Services Käufer / Eigentümer
   ========================================================================== */

.vuzh-services {
  padding: var(--section) 0;
}

.vuzh-services--buyers {
  background: #fff;
}

.vuzh-services--sellers {
  background: var(--sand-light);
}

.vuzh-services h2 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 1.9rem + 2vw, 4.5rem);
}

.vuzh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(4rem, 2.5rem + 4vw, 7rem);
  background: rgba(145, 134, 116, .24);
}

.vuzh-service-card {
  min-height: 21rem;
  padding: clamp(2.2rem, 1.5rem + 1.5vw, 3.5rem);
  background: #fff;
}

.vuzh-services--sellers .vuzh-service-card {
  background: rgba(255, 255, 255, .72);
}

.vuzh-service-card > span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

.vuzh-service-card h3 {
  margin: 0 0 1.3rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 1.25rem + .55vw, 2rem);
  font-weight: 400;
  line-height: 1.18;
  color: #5f5f5f;
}

.vuzh-service-card p {
  margin: 0;
  line-height: 1.75;
}


/* ==========================================================================
   19 – Gemeinsamer CTA-Balken
   Suchprofil / Immobilie anbieten
   ========================================================================== */

.vuzh-action-band {
  background: var(--dark);
  color: #fff;
  padding: clamp(5rem, 4rem + 4vw, 9rem) 0;
  text-align: center;
}

.vuzh-action-band h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 1.9rem + 1.8vw, 4.25rem);
  line-height: 1.08;
  color: #fff;
}

.vuzh-action-band p:not(.vuzh-kicker) {
  max-width: 46rem;
  margin: 2rem auto 0;
  line-height: 1.8;
}

.vuzh-action-band .vuzh-button {
  margin-top: 2.5rem;
}

.vuzh-button--light {
  border-color: #fff;
  color: #fff;
}

.vuzh-button--light:hover,
.vuzh-button--light:focus-visible {
  background: #fff;
  color: var(--dark);
}


/* ==========================================================================
   20 – Gesuche: Eigentümer-Einstieg
   ========================================================================== */

.vuzh-sell-intro {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-sell-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(4rem, 2rem + 5vw, 9rem);
  align-items: center;
}

.vuzh-sell-intro__visual {
  margin: 0;
  min-height: clamp(31rem, 27rem + 8vw, 42rem);
}

.vuzh-sell-intro__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.vuzh-sell-intro h2 {
  font-size: clamp(2.6rem, 1.9rem + 2vw, 4.5rem);
  margin-bottom: 2rem;
}

.vuzh-sell-intro__copy > p:not(.vuzh-kicker) {
  line-height: 1.8;
  margin-bottom: 1.45rem;
}

.vuzh-sell-intro .vuzh-button {
  margin-top: 1.25rem;
}


/* ==========================================================================
   21 – Gesuche: aktuelle Suchprofile
   ========================================================================== */

.vuzh-search-profiles {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-search-profiles h2 {
  font-size: clamp(2.6rem, 1.9rem + 2vw, 4.5rem);
}

.vuzh-search-profiles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(145, 134, 116, .25);
}

.vuzh-search-profile {
  min-height: 20rem;
  padding: clamp(2.5rem, 1.8rem + 2vw, 4rem);
  background: var(--sand-light);
}

.vuzh-search-profile__type {
  margin: 0 0 1.8rem;
  color: var(--sand);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.vuzh-search-profile h3 {
  margin: 0 0 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 1.45rem + .8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #5f5f5f;
}

.vuzh-search-profile p:last-child {
  margin-bottom: 0;
  line-height: 1.75;
}


/* ==========================================================================
   22 – Gesuche: Tipp-Provision
   ========================================================================== */

.vuzh-tip-section {
  background: var(--soft);
  padding: var(--section) 0;
}

.vuzh-tip-section__grid {
  display: grid;
  grid-template-columns: minmax(12rem, .38fr) minmax(0, .62fr);
  gap: clamp(4rem, 2rem + 5vw, 8rem);
  align-items: center;
}

.vuzh-tip-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24rem;
}

.vuzh-tip-section__icon img {
  width: min(15rem, 70%);
  height: auto;
}

.vuzh-tip-section h2 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 1.9rem + 2vw, 4.5rem);
  margin-bottom: 2rem;
}

.vuzh-tip-section__copy > p:not(.vuzh-kicker) {
  max-width: 44rem;
  line-height: 1.8;
}

.vuzh-note {
  font-size: .82rem;
  color: #817972;
}


/* ==========================================================================
   23 – Kontaktseite: Einstieg
   ========================================================================== */

.vuzh-contact-hero {
  background: var(--sand-light);
  padding:
    calc(clamp(7.5rem, 6rem + 4vw, 11.5rem) + clamp(5rem, 3rem + 4vw, 8rem))
    0
    clamp(5rem, 3rem + 5vw, 9rem);
}

.vuzh-contact-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 2.1rem + 3vw, 5.8rem);
  font-weight: 400;
  line-height: 1.04;
  color: #5f5f5f;
}

.vuzh-contact-hero > .wrapper_med > p:not(.vuzh-kicker) {
  max-width: 48rem;
  margin: 2.4rem 0 0;
  font-size: clamp(1rem, .96rem + .2vw, 1.2rem);
  line-height: 1.8;
}


/* ==========================================================================
   24 – Kontaktseite: direkter Kontakt
   ========================================================================== */

.vuzh-direct-contact {
  background: #fff;
  padding: var(--section) 0;
}

.vuzh-direct-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(4rem, 2rem + 5vw, 9rem);
  align-items: center;
}

.vuzh-direct-contact__visual {
  margin: 0;
}

.vuzh-direct-contact__visual img {
  display: block;
  width: 100%;
  max-height: 44rem;
  object-fit: cover;
}

.vuzh-direct-contact h2 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 1.9rem + 2vw, 4.5rem);
}

.vuzh-direct-contact__people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: clamp(3rem, 2rem + 2vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(145, 134, 116, .3);
}

.vuzh-direct-contact__people h3 {
  margin: 0 0 .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #5f5f5f;
}

.vuzh-direct-contact__people p {
  margin: 0;
  font-size: .8rem;
  color: var(--sand);
}

.vuzh-direct-contact__address {
  margin-top: 2.5rem;
  font-style: normal;
  line-height: 1.8;
}

.vuzh-direct-contact__address a {
  color: inherit;
}


/* ==========================================================================
   25 – Kontaktseite: Standort
   ========================================================================== */

.vuzh-location {
  background: var(--soft);
  padding: var(--section) 0;
}

.vuzh-location__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 2rem + 5vw, 8rem);
  align-items: center;
}

.vuzh-location h2 {
  font-size: clamp(2.5rem, 1.8rem + 1.9vw, 4.3rem);
  margin-bottom: 2rem;
}

.vuzh-location__copy > p:not(.vuzh-kicker) {
  line-height: 1.8;
}

.vuzh-location__visual {
  margin: 0;
  min-height: 20rem;
}

.vuzh-location__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.vuzh-anchor-target {
  position: relative;
  top: calc(-1 * clamp(5rem, 4.5rem + 1vw, 6.25rem));
  height: 0;
}


/* ==========================================================================
   26 – Unterseiten / zusätzliche Responsive-Regeln
   ========================================================================== */

@media (max-width: 1000px) {
  .vuzh-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vuzh-subhero__grid,
  .vuzh-search-intro__grid,
  .vuzh-sell-intro__grid,
  .vuzh-tip-section__grid,
  .vuzh-direct-contact__grid,
  .vuzh-location__grid {
    grid-template-columns: 1fr;
  }

  .vuzh-subhero__copy {
    padding-right: 0;
  }

  .vuzh-subhero__visual {
    min-height: 25rem;
  }

  .vuzh-tip-section__icon {
    min-height: 12rem;
    justify-content: flex-start;
  }

  .vuzh-tip-section__icon img {
    width: min(11rem, 40%);
  }
}

@media (max-width: 650px) {
  .vuzh-listings__grid,
  .vuzh-services__grid,
  .vuzh-search-profiles__grid,
  .vuzh-direct-contact__people {
    grid-template-columns: 1fr;
  }

  .vuzh-service-card,
  .vuzh-search-profile {
    min-height: auto;
  }
}


/* ==========================================================================
   27 – Mobile Navigation
   Ergänzung zur bestehenden Headerstruktur.
   ========================================================================== */

@media (max-width: 900px) {
  .vuzh-header__nav {
    position: absolute;
    top: 100%;
    left: var(--side);
    right: var(--side);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  }

  .vuzh-header__nav.is-open {
    display: flex;
  }

  .vuzh-header__nav a {
    padding: .9rem 0;
  }
}
