/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }

/* ─── Tokens ─── */
:root {
  --sg:   'Geist', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Geist Mono', 'Courier New', monospace;

  --fs-label:   14px;
  --fs-body:    16px;
  --fs-heading: 18px;
  --fs-footer:  10px;

  --ls-label:   0.02em;
  --ls-body:    -0.02em;
  --ls-heading: -0.02em;

  --lh-body: 20px;

  --pad-main:  138px;
  --pad-small:  20px;
}

body {
  font-family: var(--sg);
  background: #f2eeeb;
  color: #000;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ════ HERO ════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #2a2e27;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.88;
}
.hero__left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px var(--pad-small);
}
.hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px var(--pad-small);
}
.hero__address {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  color: #fff;
}
.hero__info-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
  text-transform: uppercase;
  color: #fff;
}
.hero__logo {
  width: clamp(180px, 40vw, 470px);
}
.hero__desc {
  color: #fff;
  font-family: var(--sg);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  max-width: 420px;
  text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
}

/* ════ NAV ════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: #f2eeeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-small);
}
.nav__logo { display: block; height: 20px; width: auto; }
.nav__links {
  display: flex; align-items: center;
  gap: 30px; list-style: none;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.4; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span { display: block; width: 20px; height: 1px; background: #000; }

.nav__overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  z-index: 300;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav__overlay.open { display: flex; opacity: 1; }
.nav__overlay a {
  font-family: var(--mono);
  font-size: var(--fs-label); letter-spacing: var(--ls-label);
  text-transform: uppercase; text-decoration: none; color: #000;
}
.nav__close {
  position: absolute; top: 20px; right: 20px;
  font-size: 24px; font-weight: 200;
  background: none; border: none; cursor: pointer; color: #000;
}

/* ════ RENDERING SECTION ════ */
.rendering-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 100px 20px;
  align-items: start;
}
.rendering-section__header {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
.rendering-section__img {
  grid-column: 1 / 9;
  overflow: hidden;
  cursor: zoom-in;
}
.rendering-section__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.rendering-section__img:hover img { transform: scale(1.02); }
.rendering-section__text {
  grid-column: 9 / 13;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 40px;
  align-self: start;
}
.rendering-section__coords {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
}
.rendering-section__heading {
  font-size: clamp(32px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: var(--ls-heading);
  line-height: 1.15;
}
.rendering-section__desc {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: 20px;
}

/* ════ LIGHTBOX ════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  cursor: none;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--sg);
  font-size: 13px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: none;
  cursor: none;
}
.lightbox__close:hover { color: rgba(255,255,255,0.6); }

/* ════ TICKS ════ */
.ticks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px var(--pad-main);
}
.ticks i {
  display: block; width: 1px; height: 25px; background: #000;
}

/* ════ WOHNUNGEN ════ */
.wohnungen {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 100px 20px;
  align-items: start;
}
.wohnungen__header {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
.wohnungen__content {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wohnungen__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.wohnungen__heading {
  font-size: clamp(32px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: var(--ls-heading);
  line-height: 1.1;
}
.wohnungen__text {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: 20px;
}
.wohnungen__images {
  grid-column: 7 / 13;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wohnungen__img-wrap {
  overflow: hidden;
}
.wohnungen__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.wohnungen__img-wrap:hover img { transform: scale(1.04); }

/* ════ WOHNUNGSTYPEN ════ */
.wohnungstypen { padding: 0 20px 100px; }
.wohnungstypen__row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid #1A1A1A;
  gap: 40px;
}
.wohnungstypen__row:last-child { border-bottom: 1px solid #1A1A1A; }
.wohnungstypen__type {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.wohnungstypen__num {
  font-size: 12px;
  color: #888;
}
.wohnungstypen__type-group { display: flex; flex-direction: column; gap: 4px; }
.wohnungstypen__size {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
}
.wohnungstypen__desc {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
}
.wohnungstypen__btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  background: #1A1A1A;
  color: #fff;
  border: 1px solid #1A1A1A;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  align-self: start;
  transition: background 0.25s ease, color 0.25s ease;
}
.wohnungstypen__btn:hover {
  background: transparent;
  color: #1A1A1A;
}

/* ════ HIGHLIGHTS ════ */
.highlights { padding: 100px 20px; }
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
}
.hl-card { grid-column: span 4; display: flex; flex-direction: column; gap: 10px; }
.hl-card__name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.hl-card__img-wrap {
  overflow: hidden;
  height: 480px;
}
.hl-card__img {
  width: 100%; height: 100%;
  object-fit: cover; background: #d0c8be;
  transition: transform 0.6s ease;
}
.hl-card__img-wrap:hover .hl-card__img { transform: scale(1.04); }
.hl-card__text {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
}
.highlights__title {
  font-family: var(--sg);
  font-size: clamp(32px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: var(--ls-heading);
  line-height: 1.1;
  text-align: left;
  margin-bottom: 60px;
}

/* ════ LAGE ════ */
.lage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 100px 20px;
  align-items: start;
}
.lage__heading {
  grid-column: 1 / -1;
  font-family: var(--sg);
  font-size: clamp(32px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: var(--ls-heading);
  line-height: 1.1;
  margin-bottom: 40px;
}
.lage__content {
  grid-column: 1 / 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lage__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.lage__text {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: 20px;
}
.lage__images {
  grid-column: 7 / 13;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}
.lage__umgebung {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.lage__img-wrap {
  overflow: hidden;
  height: 450px;
}
.lage__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; background: #c8c0b4;
  display: block;
  transition: transform 0.6s ease;
}
.lage__img-wrap:hover img { transform: scale(1.04); }

/* ════ LEGAL ════ */
.legal {
  padding: 60px 20px 40px;
  background: #F2FF87;
  color: #000;
}
.legal__disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--ls-label);
  line-height: 1.6;
  color: #000;
  margin-bottom: 40px;
}
.legal__privacy {
  width: 100%;
}
.legal__privacy-inner {
  width: 100%;
}
.legal__privacy h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}
.legal__privacy-section {
  margin-bottom: 20px;
}
.legal__privacy-section h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
}
.legal__privacy-section p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.7;
  color: #000;
}
.legal__privacy-section a { color: #000; }

/* ════ FOOTER ════ */
footer {
  background: #F2FF87;
  padding: 40px var(--pad-small);
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 20px;
  align-items: start;
}
.footer__col {
  font-family: var(--mono);
  font-size: var(--fs-footer);
  font-weight: 400;
  line-height: 14px;
  color: #000;
}
.footer__col a { color: inherit; text-decoration: underline; }

/* ════ INTERESSENTEN-FORMULAR ════ */
.signup {
  padding: 100px 20px 140px;
  border-top: 1px solid #EBEBЕ6;
}
.signup__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 50%;
}
.signup__left {
  width: 100%;
}
.signup__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.signup__heading {
  font-size: var(--fs-heading);
  font-weight: 400;
  letter-spacing: var(--ls-heading);
  line-height: 1.4;
}
.signup__form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.signup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.signup__field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #1A1A1A;
  padding: 14px 0 8px;
}
.signup__field label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.signup__field input {
  font-family: var(--sg);
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: var(--ls-body);
  color: #1A1A1A;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
.signup__field input::placeholder { color: #ccc; }
.signup__zimmer {
  padding: 20px 0 12px;
}
.signup__zimmer-label {
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}
.signup__zimmer-options {
  display: flex;
  gap: 8px;
}
.signup__zimmer-options input[type="radio"] { display: none; }
.signup__zimmer-options label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  border: 1px solid #1A1A1A;
  border-radius: 0;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.signup__typ-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.signup__typ-zimmer {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: #888;
}
.signup__zimmer-options input[type="radio"]:checked + label .signup__typ-zimmer { color: rgba(255,255,255,0.6); }
.signup__zimmer-options input[type="radio"]:checked + label {
  background: #1A1A1A;
  color: #fff;
}
.signup__submit {
  margin-top: 28px;
  align-self: flex-start;
  font-family: var(--sg);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  background: #1A1A1A;
  color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 0;
  padding: 7px 28px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.signup__submit:hover { background: transparent; color: #1A1A1A; }
.signup__success {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  padding-top: 24px;
}

/* ════ VORMERKEN MODAL ════ */
.vmodal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(242, 238, 235, 0.35);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  z-index: 900;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vmodal.open { display: flex; opacity: 1; }
.vmodal__card {
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  position: relative;
}
.vmodal__close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 35px;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.35);
  transition: color 0.2s;
  z-index: 10;
}
.vmodal__close:hover { color: #000; }

.vmodal__info-grid {
  display: flex;
  flex-direction: column;
}
.vmodal__grundriss {
  background: rgba(255, 255, 255, 1);
  overflow: hidden;
  height: 55vh;
}
.vmodal__grundriss img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.vmodal__details {
  padding: 10px 25px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vmodal__type-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.vmodal__type-name {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.05;
}
.vmodal__stats table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body);
}
.vmodal__stats td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  vertical-align: top;
}
.vmodal__stats td:first-child {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: #838383;
  width: 120px;
  padding-right: 16px;
  letter-spacing: 0.02em;
}
.vmodal__desc {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: 20px;
  color: #333;
}
.vmodal__cta {
  align-self: flex-start;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  background: transparent;
  color: #1A1A1A;
  border: 1px solid rgba(0,0,0,0.3);
  padding: 10px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.vmodal__cta:hover { border-color: #1A1A1A; color: #000; }

.vmodal__form-panel { padding: 48px; }
.vmodal__back {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  background: none; border: none;
  cursor: pointer; color: #888;
  margin-bottom: 28px;
  display: block;
  transition: color 0.2s;
}
.vmodal__back:hover { color: #000; }
.vmodal__form-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vmodal__heading {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.vmodal__form { display: flex; flex-direction: column; }
.vmodal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.vmodal__field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 12px 0 8px;
}
.vmodal__field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.vmodal__field input {
  font-family: var(--sg);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  background: none; border: none; outline: none;
  color: #1A1A1A; padding: 0;
}
.vmodal__field input::placeholder { color: #ccc; }
.vmodal__zimmer { padding: 20px 0 12px; border-bottom: 1px solid rgba(0,0,0,0.12); }
.vmodal__zimmer-label { font-size: 11px; text-transform: uppercase; color: #888; margin-bottom: 10px; }
.vmodal__zimmer-options { display: flex; gap: 8px; flex-wrap: wrap; }
.vmodal__zimmer-options input[type="radio"] { display: none; }
.vmodal__zimmer-options label {
  font-family: var(--sg);
  font-size: 13px;
  text-transform: uppercase;
  border: 1px solid #1A1A1A;
  border-radius: 0;
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.vmodal__zimmer-options input[type="radio"]:checked + label { background: #1A1A1A; color: #fff; }
.vmodal__submit {
  margin-top: 24px;
  align-self: flex-start;
  font-family: var(--sg);
  font-size: 13px;
  text-transform: uppercase;
  background: #1A1A1A; color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 0;
  padding: 7px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.vmodal__submit:hover { background: #fff; color: #1A1A1A; }
.vmodal__success { padding-top: 20px; font-size: var(--fs-body); }

/* ════ TABLET (< 1200px) ════ */
@media (max-width: 1200px) {
  .wohnungen__img-wrap { height: 300px; }
  .lage__img-wrap { height: 300px; }
  .hl-card__img-wrap { height: 360px; }
}

/* ════ MOBILE (< 768px) ════ */
@media (max-width: 768px) {
  :root { --fs-heading: 20px; --fs-body: 15px; }

  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 24px 20px 40px; justify-content: center; }
  .hero__logo { width: clamp(200px, 68vw, 325px); }
  .hero__right {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    justify-content: flex-end;
    padding: 0 20px 28px;
    gap: 8px;
  }
  .hero__desc { font-size: 13px; max-width: none; }

  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .rendering-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 24px;
  }
  .rendering-section__header { grid-column: 1 / -1; margin-bottom: 24px; }
  .rendering-section__img { grid-column: 1 / -1; }
  .rendering-section__text { grid-column: 1 / -1; padding-left: 0; }

  .wohnungen { grid-template-columns: 1fr; gap: 24px; padding: 60px 20px; }
  .wohnungen__header { grid-column: 1 / -1; margin-bottom: 24px; }
  .wohnungen__content { grid-column: 1 / -1; }
  .wohnungen__images { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .wohnungen__img-wrap { height: 200px; }

  .wohnungstypen { padding: 0 20px 60px; }
  .wohnungstypen__row { grid-template-columns: 1fr; gap: 12px; }
  .wohnungstypen__btn { align-self: flex-start; width: fit-content; }

  .highlights { padding: 60px 20px; }
  .highlights__grid { display: flex; flex-direction: column; gap: 40px; }
  .highlights__title { text-align: left; }
  .hl-card { gap: 6px; }
  .hl-card__img-wrap { height: 320px; }

  .lage { grid-template-columns: 1fr; gap: 24px; padding: 60px 20px; }
  .lage__content { grid-column: 1 / -1; }
  .lage__images { grid-column: 1 / -1; }
  .lage__img-wrap { height: 200px; }

  .signup { padding: 60px 20px 80px; }
  .signup__inner { width: 100%; }
  .signup__row { grid-template-columns: 1fr; }
  .signup__zimmer-options { flex-direction: column; }
  .signup__zimmer-options label { flex: none; width: 100%; padding: 6px 16px; }

  footer { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 32px 20px; }
}

/* ════ SCROLL ANIMATIONS ════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
