/* =============================================
   POOL FABRIK – Unterseiten CSS
   Farben: #1C6969 (Haupt) / #61D994 (Akzent)
   ============================================= */

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative; padding: 10rem 0 5rem;
  background: var(--bg-dark); border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(38,124,96,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.4rem; display: block;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem; max-width: 700px;
}
.page-hero p { color: var(--gray-mid); font-size: 1.05rem; line-height: 1.8; max-width: 580px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gray-text); margin-bottom: 1.8rem;
}
.page-hero-breadcrumb a { color: var(--gray-text); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb span { color: var(--border-strong); }

/* ---- CONTENT SECTIONS ---- */
.content-section { padding: 6rem 0; }
.content-section + .content-section { padding-top: 0; }
.content-section--alt { background: var(--bg-section); }

/* ---- TWO COL ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.two-col img { width: 100%; border-radius: var(--radius-lg); display: block; object-fit: cover; filter: brightness(0.88) saturate(1.1); }
.two-col-img-placeholder {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg,#111,#1a1a1a);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.06);
}

/* ---- CARDS GRID ---- */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.4rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: rgba(50,153,112,0.35); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px; background: rgba(38,124,96,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.4rem; transition: background var(--transition);
  color: var(--accent-light);
}
.card:hover .card-icon { background: rgba(38,124,96,0.18); }
.card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.card p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.7; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent-light); font-size: 0.85rem; font-weight: 600;
  margin-top: 1.2rem; transition: gap var(--transition);
}
.card:hover .card-link { gap: 0.7rem; }

/* ---- TEAM ---- */
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; max-width: 360px;
}
.team-img {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg,#111,#1c1c1c);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.08);
}
.team-body { padding: 1.8rem; }
.team-body h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.team-body .role { color: var(--accent-light); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; display: block; }
.team-body p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.65; }
.team-contacts { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.team-contact { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--gray-mid); }
.team-contact span:first-child { color: var(--accent-light); font-size: 0.9rem; }

/* ---- WERTE GRID ---- */
.werte-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 3.5rem;
}
.wert-item { background: var(--bg-card); padding: 2.4rem; transition: background var(--transition); }
.wert-item:hover { background: #2c2c2c; }
.wert-num { font-size: 2.5rem; font-weight: 900; color: rgba(50,153,112,0.15); font-family: var(--font-head); line-height: 1; margin-bottom: 0.8rem; }
.wert-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.wert-item p { color: var(--gray-text); font-size: 0.87rem; line-height: 1.65; }

/* ---- POOLARTEN DETAIL ---- */
.poolart-detail {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.poolart-detail:last-child { border-bottom: none; }
.poolart-detail.rev .pd-img { order: 2; }
.poolart-detail.rev .pd-text { order: 1; }
.pd-img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11;
  background: linear-gradient(135deg,#0a1616,#0d1616);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.06); position: relative;
}
.pd-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); border-radius: var(--radius-lg); }
.pd-number { font-size: 4rem; font-weight: 900; color: rgba(28,105,105,0.18); font-family: var(--font-head); line-height: 1; margin-bottom: 0.5rem; }
.pd-text h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); margin-bottom: 0.4rem; }
.pd-kosten { display: flex; gap: 4px; margin: 1rem 0 1.4rem; }
.pd-dot { width: 22px; height: 7px; border-radius: 3px; background: var(--border-strong); }
.pd-dot.on { background: var(--accent-light); }
.pd-features { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.4rem 0; }
.pd-feat { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--gray-mid); }
.pd-feat::before { content: '✓'; color: var(--accent-light); flex-shrink: 0; font-weight: 700; }
.pd-note {
  background: rgba(97,217,148,0.06); border: 1px solid rgba(97,217,148,0.15);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; margin-top: 1.2rem;
}
.pd-note strong { color: var(--white); }

/* ---- GALLERY GRID ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.gallery-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.gc-img {
  aspect-ratio: 16/11; position: relative; overflow: hidden;
  background: linear-gradient(135deg,#0a1616,#0d1616);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,0.06);
}
.gc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82); transition: transform 0.7s ease; }
.gallery-card:hover .gc-img img { transform: scale(1.05); }
.gc-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(20,31,30,0.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(97,217,148,0.25);
  color: var(--accent-light); font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 50px; letter-spacing: 0.07em; text-transform: uppercase;
}
.gc-body { padding: 1.6rem; }
.gc-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.gc-body p { color: var(--gray-text); font-size: 0.84rem; line-height: 1.6; }
.gc-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.9rem; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 3rem; margin-top: 3.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 1.1rem; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--accent) 0%, rgba(28,105,105,0.08) 100%);
}
.tl-item { position: relative; padding-bottom: 3.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.2rem; top: 0.15rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(28,105,105,0.15);
}
.tl-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.tl-item p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.7; max-width: 540px; }
.tl-item ul { margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.4rem; }
.tl-item ul li { color: var(--gray-mid); font-size: 0.88rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.tl-item ul li::before { content: '–'; color: var(--accent-light); flex-shrink: 0; }

/* ---- KONTAKT ---- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 0; }

/* Info-Zeilen ohne Icon, stattdessen Akzent-Strich */
.ki-item {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 1.4rem 0; border-bottom: 1px solid var(--border);
}
.ki-item:first-child { border-top: 1px solid var(--border); }
.ki-marker {
  width: 3px; height: 36px; flex-shrink: 0; margin-top: 0.15rem;
  background: linear-gradient(to bottom, var(--accent-light), rgba(28,105,105,0.3));
  border-radius: 2px;
}
.ki-body strong {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent-light); font-weight: 700; margin-bottom: 0.3rem;
}
.ki-body a, .ki-body span { color: var(--gray-mid); font-size: 0.94rem; transition: color var(--transition); }
.ki-body a:hover { color: var(--white); }

/* Schritte nach der Anfrage */
.ki-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.ki-step { display: flex; gap: 1.2rem; align-items: flex-start; font-size: 0.88rem; }
.ki-step-num {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid rgba(97,217,148,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: var(--accent-light);
}
.ki-step strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.2rem; }
.ki-step span { color: var(--gray-text); line-height: 1.6; }

/* Formular-Wrapper */
.kontakt-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-lg); padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.kontakt-form-wrap .sec-label { margin-bottom: 0.5rem; }
.kontakt-form-wrap h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.kontakt-form-wrap > p { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 2.2rem; line-height: 1.65; }

/* Felder */
.kf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.kf-field { margin-bottom: 0.4rem; }
.kf-field.full { grid-column: 1 / -1; }
.kf-field label {
  display: block; font-size: 0.7rem; font-weight: 700;
  color: var(--gray-text); margin-bottom: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.kf-field input,
.kf-field textarea,
.kf-field select {
  width: 100%;
  background: rgba(13,22,22,0.9);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--white);
  font-size: 0.9rem; font-family: var(--font-body); outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}
.kf-field input::placeholder,
.kf-field textarea::placeholder { color: rgba(255,255,255,0.18); }
.kf-field input:hover,
.kf-field textarea:hover,
.kf-field select:hover { border-color: rgba(97,217,148,0.22); }
.kf-field input:focus,
.kf-field textarea:focus,
.kf-field select:focus {
  border-color: rgba(97,217,148,0.55);
  background: rgba(28,105,105,0.08);
  box-shadow: 0 0 0 3px rgba(97,217,148,0.06);
}
.kf-field textarea { resize: vertical; min-height: 120px; }
.kf-field select option { background: #1f3230; color: var(--white); }

/* Submit */
.form-submit {
  width: 100%; margin-top: 1.2rem;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius);
  padding: 1rem 2rem; font-size: 0.95rem; font-weight: 700;
  font-family: var(--font-body); letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.form-submit:hover {
  background: #1a7a7a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,105,105,0.4);
}
.form-submit:disabled { opacity: 0.65; cursor: default; transform: none; box-shadow: none; }
.form-note {
  font-size: 0.76rem; color: var(--gray-text); text-align: center;
  margin-top: 1rem; line-height: 1.55;
}

/* Map Section */
.kontakt-map-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kontakt-map-header {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.kontakt-map-info { display: flex; flex-direction: column; gap: 0; }
.kontakt-map-btn {
  display: inline-block; margin-top: 1.2rem;
  background: transparent;
  border: 1px solid rgba(97,217,148,0.3);
  color: var(--accent-light);
  padding: 0.6rem 1.4rem; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.kontakt-map-btn:hover {
  background: rgba(97,217,148,0.08);
  border-color: rgba(97,217,148,0.55);
  color: var(--white);
}
.kontakt-map-embed {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid rgba(28,105,105,0.25);
}
.kontakt-map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  /* Dark-Map via CSS-Filter: invertiert Helligkeit + dreht Farbton zu Teal */
  filter: invert(92%) hue-rotate(180deg) saturate(0.35) brightness(0.82);
  pointer-events: all;
}
/* Pin-Overlay oben links */
.kontakt-map-overlay-pin {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(20,31,30,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(97,217,148,0.2);
  border-radius: 50px; padding: 0.5rem 1.2rem;
  font-size: 0.82rem; color: var(--gray-mid);
  pointer-events: none; white-space: nowrap;
}
.map-pin-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--accent-light); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(97,217,148,0.2);
}
@media (max-width: 700px) {
  .kontakt-map-embed { height: 300px; }
  .kontakt-map-header { flex-direction: column; gap: 0; padding-bottom: 1.8rem; }
}

/* ---- HOME WERTE ---- */
.home-werte-liste { display: flex; flex-direction: column; gap: 0; }
.home-wert {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem 0; border-bottom: 1px solid var(--border);
}
.home-wert:first-child { border-top: 1px solid var(--border); }
.home-wert-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(38,124,96,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); transition: background var(--transition);
}
.home-wert:hover .home-wert-icon { background: rgba(38,124,96,0.18); }
.home-wert strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.home-wert span { color: var(--gray-text); font-size: 0.87rem; line-height: 1.6; }
@media (max-width: 900px) {
  .home-werte-liste { margin-top: 2rem; }
}

/* ---- HOME KONTAKT ---- */
.home-kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.home-kontakt-info { display: flex; flex-direction: column; }
.home-ki-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.home-ki-item:first-of-type { border-top: 1px solid var(--border); }
.home-ki-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(38,124,96,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
}
.home-ki-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent-light); margin-bottom: 0.2rem;
}
.home-ki-val {
  font-size: 0.95rem; color: var(--white);
  transition: color var(--transition);
}
a.home-ki-val:hover { color: var(--accent-light); }

/* Formular auf Homepage – weißer Block */
.home-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.home-form-card .kf-field label {
  color: #3a5a5a;
}
.home-form-card .kf-field input,
.home-form-card .kf-field textarea,
.home-form-card .kf-field select {
  background: #f4f8f7;
  border: 1.5px solid #d0e4e0;
  color: #0f1a17;
  border-radius: var(--radius);
}
.home-form-card .kf-field input::placeholder,
.home-form-card .kf-field textarea::placeholder {
  color: #8aadaa;
}
.home-form-card .kf-field input:focus,
.home-form-card .kf-field textarea:focus,
.home-form-card .kf-field select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(38,124,96,0.1);
  outline: none;
}
.home-form-card .kf-field select option { background: #ffffff; color: #0f1a17; }
.home-form-card .form-submit {
  background: var(--accent); color: #ffffff;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--radius); padding: 1rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.home-form-card .form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38,124,96,0.35);
}
.home-form-card .form-note { color: #7a9e9e; }

@media (max-width: 900px) {
  .home-kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---- ABLAUF ---- */
.ablauf-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.ablauf-cards {
  display: flex; flex-direction: column; gap: 1.5rem; padding-top: 6rem;
}
.ablauf-table {
  margin-top: 1rem; display: flex; flex-direction: column;
}
.ablauf-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.ablauf-row span:first-child { color: var(--gray-text); }
.ablauf-row span:last-child { color: var(--white); font-weight: 600; }
.ablauf-row--last { border-bottom: none; }
.ablauf-contact {
  display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.2rem;
}
.ablauf-contact a {
  color: var(--accent-light); font-weight: 600; font-size: 0.9rem;
  transition: color var(--transition);
}
.ablauf-contact a:hover { color: var(--white); }
@media (max-width: 900px) {
  .ablauf-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ablauf-cards { padding-top: 0; }
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--bg-section);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5.5rem 0; text-align: center;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--gray-mid); font-size: 1rem; margin-bottom: 2.2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .werte-grid { grid-template-columns: 1fr; }
  .poolart-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .poolart-detail.rev .pd-img { order: 0; }
  .poolart-detail.rev .pd-text { order: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 3.5rem; }
  .content-section { padding: 4rem 0; }
  .content-section + .content-section { padding-top: 0; }
  .two-col { gap: 2.5rem; }
  .kontakt-form-wrap { padding: 2rem 1.5rem; }
  .cta-banner { padding: 4rem 0; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .poolart-detail { padding: 2.5rem 0; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .kf-grid { grid-template-columns: 1fr; }
  .kontakt-form-wrap { padding: 1.8rem 1.2rem; }
  .timeline { padding-left: 2.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .home-form-card { padding: 2rem 1.4rem; }
}
