/* =========================================================================
   SOLDINER SEE — Components & Sections
   ========================================================================= */

/* —— Trust strip (below hero) ———————————————————————————— */
.trust-strip {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-paper);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--s-4) 0;
}
@media (min-width: 700px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 12px 0;
  font-size: 13px;
  color: var(--c-fg-soft);
}
.trust-item__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--c-lake);
  line-height: 1;
}
.trust-item__label { line-height: 1.3; }
.trust-item__label strong { color: var(--c-ink); font-weight: 600; display: block; font-size: 14px; }

/* —— Preise / Lageplan ——————————————————————————————————— */
.lageplan {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-stone-2);
  aspect-ratio: 16 / 10;
  box-shadow: 0 0 0 1px var(--c-line);
}
.lageplan__img {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, #6892b0 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, #4c7a99 0%, transparent 60%),
    linear-gradient(160deg, #7a6e54 0%, #8b7a5e 30%, #6c5f48 70%);
}
.lageplan__img::before {
  /* fake field grid */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.lageplan__lake {
  position: absolute;
  top: 0; left: -5%; right: 30%;
  height: 38%;
  background: linear-gradient(180deg, #5e8caf 0%, #2f6b95 100%);
  filter: blur(0.5px);
  border-bottom-right-radius: 60% 80%;
  border-bottom-left-radius: 40% 60%;
}
.lageplan__lake::after {
  content: 'SOLDINER SEE';
  position: absolute;
  top: 40%; left: 30%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.lageplan__label {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  background: rgba(2,31,51,0.55);
  padding: 6px 10px;
  border-radius: var(--r-sm);
}

.plot-hotspot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  color: var(--c-lake);
  border: 1.5px solid var(--c-lake);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 4px 10px rgba(2,31,51,0.25);
}
.plot-hotspot:hover { transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 6px 16px rgba(2,31,51,0.35); }
.plot-hotspot.is-active { background: var(--c-lake); color: #fff; transform: translate(-50%, -50%) scale(1.18); }
.plot-hotspot.is-sold { background: var(--c-red); color: #fff; border-color: var(--c-red); opacity: 0.85; }
.plot-hotspot.is-sold::after {
  content: '';
  position: absolute;
  width: 28px; height: 1.5px;
  background: #fff;
  transform: rotate(-30deg);
}

/* Plot grid */
.plot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (min-width: 700px) { .plot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .plot-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }

.plot-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  position: relative;
}
.plot-card:hover {
  border-color: var(--c-lake-line);
  box-shadow: var(--sh-2);
}
.plot-card.is-active {
  border-color: var(--c-lake);
  box-shadow: 0 0 0 1px var(--c-lake), var(--sh-2);
}
.plot-card.is-sold {
  background: var(--c-bg-alt);
  opacity: 0.78;
}
.plot-card.is-sold:hover { box-shadow: none; }

.plot-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
}
.plot-card__id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-fg-mute);
  margin-bottom: 4px;
}
.plot-card__num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.plot-card__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  border: 1px solid currentColor;
  align-self: flex-start;
}
.plot-card__status--avail { color: var(--c-lake); background: var(--c-lake-soft); border-color: var(--c-lake-line); }
.plot-card__status--sold { color: var(--c-red); background: rgba(192,57,43,0.07); border-color: rgba(192,57,43,0.2); }

.plot-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  margin-top: var(--s-2);
}
.plot-card__price-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
.plot-card__price-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-fg-mute);
  letter-spacing: 0.04em;
}

.plot-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
}
.plot-card__spec dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--c-fg-mute);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.plot-card__spec dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  margin: 0;
}
.plot-card__cta {
  margin-top: var(--s-3);
  display: flex;
  gap: var(--s-2);
}

/* Plot table (alt display) */
.plot-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
}
.plot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.plot-table thead th {
  background: var(--c-stone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-fg-soft);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-line);
  font-weight: 500;
  white-space: nowrap;
}
.plot-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-line-soft);
  vertical-align: middle;
}
.plot-table tbody tr:last-child td { border-bottom: none; }
.plot-table tbody tr:hover { background: var(--c-stone); }
.plot-table tbody tr.is-sold { background: rgba(192,57,43,0.04); color: var(--c-fg-mute); }
.plot-table tbody tr.is-sold .plot-table__num { text-decoration: line-through; }
.plot-table__num { font-family: var(--font-mono); font-weight: 500; }
.plot-table__price { font-family: var(--font-display); font-size: 18px; }
.plot-table__cta { white-space: nowrap; text-align: right; }
.plot-table__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  background: var(--c-lake-soft); color: var(--c-lake);
}
.plot-table__badge--sold { background: rgba(192,57,43,0.1); color: var(--c-red); }

/* Toggle display mode */
.display-toggle {
  display: inline-flex;
  background: var(--c-stone);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.display-toggle button {
  background: transparent;
  border: 0;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  color: var(--c-fg-soft);
  transition: background .15s ease, color .15s ease;
}
.display-toggle button.is-active { background: #fff; color: var(--c-ink); box-shadow: var(--sh-1); }

/* Body class toggles for price display */
body.price-cards .plot-table-section { display: none; }
body.price-table .plot-grid-section { display: none; }
body.price-hybrid .plot-table-section { display: none; }
@media (min-width: 1000px) {
  body.price-hybrid .plot-table-section { display: block; }
  body.price-hybrid .plot-grid-section { display: none; }
}

/* —— Vorteile —————————————————————————————————————————————— */
.vorteile {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 600px) { .vorteile { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vorteile { grid-template-columns: repeat(4, 1fr); } }

.vorteil {
  padding: var(--s-5);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.section--alt .vorteil { background: #fff; }
.vorteil__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-lake-soft);
  color: var(--c-lake);
  display: grid; place-items: center;
  margin-bottom: var(--s-2);
}
.vorteil__num {
  display: none;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-sand-deep);
  margin-bottom: var(--s-2);
}
body.vorteile-numbers .vorteil__icon { display: none; }
body.vorteile-numbers .vorteil__num { display: block; }
body.vorteile-photos .vorteil__icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  background:
    repeating-linear-gradient(45deg, var(--c-stone) 0 6px, var(--c-stone-2) 6px 12px);
  color: var(--c-fg-mute);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  border-radius: var(--r-sm);
}
body.vorteile-photos .vorteil__icon svg { display: none; }
body.vorteile-photos .vorteil__icon::after {
  content: 'PHOTO';
  display: block;
}
.vorteil__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.vorteil__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-fg-soft);
  margin: 0;
}

/* —— "Ihr Traum am See" + carousel ——————————————————————— */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 900px) {
  .story { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--s-8); }
}
.story__copy { display: flex; flex-direction: column; gap: var(--s-4); }
.story__copy p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-fg-soft);
  margin: 0;
  text-wrap: pretty;
}
.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--c-ink);
  margin: var(--s-3) 0;
  padding-left: var(--s-4);
  border-left: 2px solid var(--c-sand-deep);
}
.story__media {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-3);
}
.story__media .ph { border-radius: var(--r-md); }
.story__media .ph:first-child { grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.story__media .ph:nth-child(2) { aspect-ratio: 1 / 1; }
.story__media .ph:nth-child(3) { aspect-ratio: 1 / 1; }

/* —— Placeholder helper ———————————————————————————————— */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, #e8e3da 0 8px, #d8d2c4 8px 16px);
  color: var(--c-fg-mute);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
}
.ph--lake {
  background:
    radial-gradient(ellipse at 30% 30%, #6892b0 0%, transparent 55%),
    linear-gradient(180deg, #2c5876 0%, #08446c 100%);
  color: rgba(255,255,255,0.5);
}
.ph--forest {
  background:
    linear-gradient(180deg, #44604a 0%, #2d4732 100%);
  color: rgba(255,255,255,0.4);
}
.ph--sand {
  background:
    repeating-linear-gradient(45deg, #d4c7ac 0 6px, #c1b395 6px 12px);
}
.ph__label {
  background: rgba(2,31,51,0.65);
  color: rgba(255,255,255,0.8);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* —— Standort / Map ————————————————————————————————————— */
.map-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .map-wrap { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: var(--s-6); }
}
.map-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background:
    radial-gradient(ellipse at 35% 30%, #6892b0 0%, transparent 35%),
    linear-gradient(160deg, #d4c7ac 0%, #b8a785 100%);
  position: relative;
}
.map-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.map-frame::after {
  content: 'OPENSTREETMAP · cookie-frei';
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(2,31,51,0.5);
  background: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: var(--r-sm);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 28px; height: 28px;
  background: var(--c-lake);
  border-radius: 50% 50% 50% 0;
  transform-origin: center;
  rotate: -45deg;
  box-shadow: 0 4px 12px rgba(2,31,51,0.4);
}
.map-pin::after {
  content: '';
  position: absolute; inset: 6px;
  background: #fff;
  border-radius: 50%;
}
.location-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.location-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--c-line);
}
.location-row__label { font-size: 14px; color: var(--c-fg-soft); }
.location-row__val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-ink);
  font-weight: 500;
}

/* —— Der Weg / Steps —————————————————————————————————————— */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-5); row-gap: 0; }
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-line);
}
.steps .step:nth-last-child(-n+1) { border-bottom: 1px solid var(--c-line); }
@media (min-width: 800px) {
  .steps .step:nth-last-child(2) { border-bottom: 1px solid var(--c-line); }
}
.step__num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: var(--c-sand-deep);
  letter-spacing: -0.02em;
  min-width: 56px;
}
.step__num small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--c-fg-mute);
  margin-top: 4px;
  font-weight: 400;
}
.step__body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 var(--s-2);
  color: var(--c-ink);
}
.step__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-fg-soft);
  margin: 0;
}

/* —— Kaufnebenkosten ————————————————————————————————————— */
.kn-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
@media (min-width: 700px) { .kn-stats { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }
.kn-stat {
  padding: var(--s-5);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.kn-stat__val {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--c-lake);
}
.kn-stat__val small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-fg-mute);
  margin-left: 4px;
  letter-spacing: 0;
}
.kn-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-fg-soft);
}
.kn-stat__body {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-fg-soft);
  margin: 0;
}
.kn-stat--zero .kn-stat__val { color: var(--c-reed); }

.kn-table {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.kn-table__head {
  background: var(--c-lake);
  color: #fff;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.kn-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 9px 18px;
  border-bottom: 1px solid var(--c-line-soft);
  align-items: baseline;
  gap: var(--s-3);
}
.kn-table__row:last-child { border-bottom: none; border-top: 1px solid var(--c-line); font-weight: 600; }
.kn-table__row--free { background: rgba(217,119,6,.07); }
.kn-table__row--free dt { color: #92400e; }
.kn-table__row--free dd { color: #92400e; }
.kn-table__row dt {
  font-size: 14px;
  color: var(--c-fg-soft);
}
.kn-table__row:last-child dt { color: var(--c-ink); font-weight: 600; }
.kn-table__row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-ink);
  font-weight: 500;
}
.kn-disclaimer {
  margin-top: var(--s-3);
  font-size: 12px;
  color: var(--c-fg-mute);
  font-style: italic;
}

/* —— Kontakt / Formular ————————————————————————————————— */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 900px) {
  .contact { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--s-8); }
}
.contact__intro h2 { margin-bottom: var(--s-4); }
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.contact__channel {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--c-line);
}
.contact__channel:last-child { border-bottom: 1px solid var(--c-line); }
.contact__channel-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: oklch(0.62 0.08 65 / 0.12);
  color: var(--c-accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact__channel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-fg-mute);
  margin-bottom: 2px;
}
.contact__channel-val {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--c-ink);
}

form.lead-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.field { display: flex; flex-direction: column; gap: 4px; grid-column: span 2; }
.field--half { grid-column: span 1; }
@media (max-width: 600px) { .field--half { grid-column: span 2; } }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-fg-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 8px 11px;
  font: inherit;
  font-size: 14px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-ink);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-lake);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8,68,108,0.10);
}
.field textarea { min-height: 52px; resize: vertical; }
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field--check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 3px;
  accent-color: var(--c-lake);
}
.field--check label {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--c-fg-soft);
}
.form-submit {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: 2px;
  flex-wrap: wrap;
}
.form-submit__meta {
  font-size: 12px;
  color: var(--c-fg-mute);
}

/* —— FAQ ———————————————————————————————————————————————— */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--c-line);
}
.faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.faq-item__btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: var(--s-5) var(--s-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  letter-spacing: 0;
}
.faq-item__btn:hover { color: var(--c-lake); }
.faq-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  transition: transform .25s ease, background .15s ease;
  color: var(--c-lake);
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); background: var(--c-lake-soft); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-item__body { max-height: 500px; }
.faq-item__inner {
  padding: 0 var(--s-2) var(--s-5);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-fg-soft);
  max-width: 70ch;
}
.faq-item__inner p { margin: 0 0 12px; }
.faq-item__inner p:last-child { margin-bottom: 0; }

/* —— Sprachumschalter (DE / EN) ————————————————————————— */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.lang-switch a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 5px;
  line-height: 1;
  transition: color .15s ease, background-color .15s ease;
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.is-active { color: #fff; background: rgba(255,255,255,0.16); }
.lang-switch > span { color: rgba(255,255,255,0.3); }
/* full language name on desktop, compact code on mobile */
.lang-switch .ls-full { display: none; }
.lang-switch .ls-ab { display: inline; }
@media (min-width: 900px) {
  .lang-switch .ls-full { display: inline; }
  .lang-switch .ls-ab { display: none; }
}

/* Polish hero title is longer — on MOBILE it uses the full default size like
   DE/EN (no overflow, since the nowrap was removed); only trim on larger
   screens so the longer title doesn't tower. */
@media (min-width: 768px)  { html[lang="pl"] .hero__title { font-size: 64px; } }
@media (min-width: 1100px) { html[lang="pl"] .hero__title { font-size: 72px; } }

/* DE/EN hero title: shrink a touch on desktop so it sits on TWO lines
   (line 1 = "Ihr Baugrundstück"/"Your building plot", line 2 = the lake line)
   instead of three. Lang-scoped to beat the inline .hero__title clamp. */
@media (min-width: 900px) {
  html[lang="de"] .hero__title,
  html[lang="en"] .hero__title { font-size: clamp(44px, 4.9vw, 68px); }
}

/* —— Floating WhatsApp ————————————————————————————————— */
.wa-fab {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 40;
  transition: transform .15s ease;
}
.wa-fab:hover { transform: scale(1.05); }

/* —— Footer ——————————————————————————————————————————————— */
.site-footer {
  background: var(--c-lake-ink);
  color: rgba(255,255,255,0.75);
  padding: 10px 0 max(8px, env(safe-area-inset-bottom, 0px));
  font-size: 12px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-3);
  margin-bottom: var(--s-2);
}
/* Brand + Navigation über beide Spalten auf Mobile */
.site-footer__grid > div:first-child,
.site-footer__grid > div:nth-child(2) {
  grid-column: 1 / -1;
}
@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-3);
  }
  .site-footer__grid > div:first-child,
  .site-footer__grid > div:nth-child(2) { grid-column: auto; }
}
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 4px;
  font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 3px 12px; }
.site-footer ul.single-col { grid-template-columns: 1fr; }
.site-footer a:hover { color: #fff; }
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--s-2);
  margin-top: 0;
}

/* —— Section rhythm variants ————————————————————————————— */
body.rhythm-quiet .section--alt { background: var(--c-bg); }
body.rhythm-quiet .section { border-top: 1px solid var(--c-line); }
body.rhythm-quiet .section:first-of-type { border-top: 0; }

body.rhythm-bold .section--alt { background: var(--c-stone-2); }
body.rhythm-bold .section:nth-of-type(odd) { background: var(--c-stone); }
body.rhythm-bold .section--dark { background: var(--c-lake-deep); }

/* —— Carousel ——————————————————————————————————————————— */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  gap: var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--s-3);
  scrollbar-width: thin;
}
@media (min-width: 700px) { .carousel__track { grid-auto-columns: 48%; } }
@media (min-width: 1000px) { .carousel__track { grid-auto-columns: 32%; } }
.carousel__item {
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* —— Utility ————————————————————————————————————————————— */
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.stack > * + * { margin-top: var(--s-4); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.text-center { text-align: center; }
.divider {
  height: 1px;
  background: var(--c-line);
  border: 0;
  margin: var(--s-6) 0;
}
.divider--soft { background: var(--c-line-soft); }

/* —— Design rationale panel ——————————————————————————————— */
.rationale {
  background: var(--c-stone);
  border-left: 3px solid var(--c-sand-deep);
  padding: var(--s-5) var(--s-6);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: var(--s-6);
  font-size: 14px;
  color: var(--c-fg-soft);
  line-height: 1.6;
}
.rationale h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-fg);
  margin: 0 0 8px;
}

/* —— Accessibility helpers ——————————————————————————————— */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--c-lake);
  outline-offset: 2px;
  border-radius: 4px;
}

/* —— Mobile Sticky-Bar (Schnellaktionen) —————————————————————————————
   Zentral, damit alle Seiten (Start, Region, Impressum, Datenschutz, EN/PL)
   dieselbe Bar erhalten. Werte identisch zur Inline-Variante in index.html. */
@media (min-width: 900px) {
  .mobile-cta { display: none; }
}
@media (max-width: 899px) {
  .mobile-cta { display: flex; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 46; padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px)); background: #fdf8f2; border-top: 1px solid var(--c-line); box-shadow: 0 -6px 20px rgba(2,31,51,0.10); }
  .mobile-cta__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 46px; border-radius: var(--r-pill); font-family: var(--font-body); font-size: 13.5px; font-weight: 600; text-decoration: none; border: 1px solid transparent; white-space: nowrap; }
  .mobile-cta__btn svg { width: 15px; height: 15px; flex: 0 0 auto; }
  .mobile-cta__btn--call { background: #fff; color: #0e5c8a; border-color: rgba(14,92,138,0.40); }
  .mobile-cta__btn--wa { background: #fff; color: var(--c-green-deep); border-color: rgba(30,168,84,0.45); }
  .mobile-cta__btn--primary { background: #fff; color: #0e5c8a; border-color: rgba(14,92,138,0.40); }
  .mobile-cta__btn:active { transform: translateY(1px); }
  .site-footer { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* —— Galerie-Lightbox (Bild vergrößern bei Klick) ————————————————————————
   Geteilt über alle Seiten (Start DE/EN/PL). Lightbox-DOM + Lupe-Hinweis
   werden in page.js erzeugt — hier nur das Styling. Mobile-first. */

/* Klick-Affordance auf den Galeriebildern */
.carousel__item { position: relative; cursor: zoom-in; }
.story__media--single { cursor: zoom-in; }

/* dezentes Lupe-Badge oben rechts (per JS injiziert), Stil wie Lageplan-Lupe */
.gal-zoom-hint {
  position: absolute; top: 8px; right: 8px; z-index: 4;
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.82); color: #08446c;
  box-shadow: 0 1px 4px rgba(8,68,108,.28);
  pointer-events: none; opacity: .85;
  transition: opacity .15s ease, transform .15s ease;
}
.gal-zoom-hint svg { width: 13px; height: 13px; }
@media (hover: hover) {
  .gal-zoom-hint { opacity: 0; }
  .carousel__item:hover .gal-zoom-hint { opacity: 1; transform: scale(1.06); }
}

/* Overlay */
.gal-lb {
  position: fixed; inset: 0; z-index: 1100;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.gal-lb.is-open { display: flex; }
.gal-lb__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,31,51,.92);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.gal-lb__fig {
  position: relative; z-index: 1; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  max-width: 96vw; max-height: 92vh;
}
.gal-lb__img {
  max-width: 96vw; max-height: 80vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #0a1f33;
}
.gal-lb__cap {
  display: flex; align-items: center; gap: 12px;
  margin: 0; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .06em; color: rgba(255,255,255,.92); text-align: center;
}
.gal-lb__counter { color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; }

/* Steuer-Buttons */
.gal-lb__close, .gal-lb__nav {
  position: absolute; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; color: #08446c;
  background: rgba(255,255,255,.92);
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  -webkit-tap-highlight-color: transparent;
  transition: background-color .15s ease, transform .15s ease;
}
.gal-lb__close:hover, .gal-lb__nav:hover { background: #fff; }
.gal-lb__close {
  top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 50%; font-size: 22px; line-height: 1;
}
.gal-lb__nav {
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 27px; line-height: 1; padding-bottom: 3px;
}
.gal-lb__nav:hover { transform: translateY(-50%) scale(1.06); }
.gal-lb__nav--prev { left: 12px; }
.gal-lb__nav--next { right: 12px; }

@media (min-width: 700px) {
  .gal-lb { padding: 32px; }
  .gal-lb__img { max-width: 92vw; max-height: 82vh; }
  .gal-lb__close { width: 44px; height: 44px; top: 20px; right: 24px; }
  .gal-lb__nav { width: 52px; height: 52px; font-size: 31px; }
  .gal-lb__nav--prev { left: 24px; }
  .gal-lb__nav--next { right: 24px; }
  .gal-lb__cap { font-size: 13px; }
}
