/*
Theme Name: Beate Schulte — HR, Beratung & Coaching
Theme URI: https://beateschulte.de
Author: Beate Schulte
Description: Individuelles WordPress-Theme für die Website von Beate Schulte (HR-Beratung, Employer Branding, Organisationsentwicklung, Coaching). Nachgebaut aus dem ursprünglichen Lovable-Projekt.
Version: 1.0
Text Domain: beate-schulte
*/

/* ============ Design Tokens (aus dem Lovable-Projekt übernommen) ============ */
:root {
  --radius: 0.5rem;
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --brand: #4dc3c5;
  --brand-deep: #2f9092;
  --coral: #e5674f;
  --coral-foreground: #ffffff;
  --mustard: #f2d303;

  --background: #fbfcfc;
  --foreground: #2b3435;
  --card: #f3f8f8;
  --primary: #2f9092;
  --primary-foreground: #ffffff;
  --secondary: #eaf4f4;
  --secondary-foreground: #22403f;
  --muted: #eef5f5;
  --muted-foreground: #5d6f70;
  --accent: #dff2f2;
  --border: #dde9e9;

  --ink: #f2fafa;
  --ink-foreground: #16383a;
  --ink-muted: #547071;

  --gradient-hero: radial-gradient(120% 90% at 50% 115%, rgba(77,195,197,0.55) 0%, rgba(77,195,197,0.22) 38%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #eaf6f6 100%);
}

/* ============ Reset & Base ============ */
* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--primary); color: #fff; }

.wrap { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .wrap { padding: 0 2.5rem; } }

.eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  line-height: 1.25; text-transform: uppercase; color: var(--primary);
  position: relative; display: inline-block; padding-bottom: .4rem;
}
.eyebrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 2rem; height: 3px;
  background: var(--mustard);
}
.display-xl {
  font-family: var(--font-sans); font-weight: 500; letter-spacing: -0.035em;
  line-height: 1.05; margin: 0;
}
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.surface-ink { background: var(--ink); color: var(--ink-foreground); }
.surface-ink .eyebrow { color: var(--primary); }
.surface-card { background: var(--card); }

.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--primary); color: #fff; padding: 0.85rem 1.6rem;
  font-size: 0.9rem; font-weight: 500; border: none; transition: opacity .2s;
}
.btn:hover { opacity: .85; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.65rem;
  border: 1px solid rgba(22,56,58,.25); color: inherit; padding: 0.85rem 1.6rem;
  font-size: 0.9rem; font-weight: 500; background: transparent; transition: background .2s;
}
.btn-outline:hover { background: rgba(22,56,58,.08); }
.btn-coral { background: var(--coral); color: #fff; font-weight: 700; border: none; padding: 0.85rem 1.4rem; }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(251,252,252,.95);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: .75rem; padding-bottom: .75rem; }
.main-nav { margin-left: auto; }
.site-logo img { height: 56px; width: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { font-size: .9rem; font-weight: 500; border-bottom: 2px solid transparent; padding-bottom: .25rem; }
.main-nav a:hover { color: var(--primary); border-color: var(--primary); }
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: block; } }
.mobile-menu-btn { background: none; border: none; padding: .5rem; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--background);
  display: none; flex-direction: column; padding: 2rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.mobile-menu a { font-size: 1.15rem; font-weight: 500; }
.mobile-menu-close { align-self: flex-end; background: none; border: none; font-size: 1.5rem; }
.services-dropdown { position: relative; }
.services-dropdown-panel {
  display: none; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  width: 14rem; background: var(--background); border: 1px solid var(--border); padding: .5rem 0; margin-top: .5rem; box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
}
.services-dropdown:hover .services-dropdown-panel,
.services-dropdown.open .services-dropdown-panel { display: block; }
.services-dropdown-panel a { display: block; padding: .5rem 1rem; font-size: .9rem; font-weight: 500; }
.services-dropdown-panel a:hover { background: var(--secondary); color: var(--primary); }

/* ============ Hero (Startseite) ============ */
.hero-grid { display: grid; grid-template-columns: 1fr; min-height: 60vh; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; min-height: 70vh; } }
.hero-copy { background-image: var(--gradient-hero); padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .hero-copy { padding: 6rem 3.5rem; } }
.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.75rem); max-width: 42rem; margin-top: 1.5rem; }
.hero-copy p.lead { margin-top: 1.75rem; max-width: 32rem; font-size: 1.125rem; line-height: 1.7; color: var(--ink-muted); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-photo img { width: 100%; height: 100%; min-height: 42vh; object-fit: cover; object-position: 50% 20%; }

/* ============ Stat counters ============ */
.stat-grid { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { border: 1px solid var(--border); background: var(--card); padding: 1.5rem; }
.stat-card .stat-value { font-size: clamp(1.75rem, 2.4vw, 2rem); font-weight: 600; color: var(--primary); }
.stat-card .stat-title { margin-top: .5rem; font-weight: 700; }
.stat-card .stat-desc { margin-top: .25rem; font-size: .875rem; color: var(--muted-foreground); }

/* ============ Services cards ============ */
.services-grid { display: grid; gap: 2.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { display: flex; flex-direction: column; }
.service-card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.service-card .body-wrap { flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-top: .75rem; font-size: 1.5rem; font-weight: 500; }
.service-card p { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.7; }
.service-card .btn { margin-top: 1.5rem; justify-content: center; }
@media (min-width: 640px) { .service-card .btn { width: fit-content; justify-content: flex-start; } }

/* ============ Generic grids ============ */
.grid-3 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.principle { border-top: 1px solid rgba(22,56,58,.2); padding-top: 1.5rem; }
.principle h3 { font-size: 1.25rem; font-weight: 500; }
.principle p { margin-top: .75rem; color: var(--ink-muted); line-height: 1.7; }

/* ============ Buch ============ */
.book-card {
  margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 2rem;
  background: var(--card); padding: 2rem; box-shadow: 0 12px 40px -20px rgba(47,144,146,.18);
}
@media (min-width: 768px) { .book-card { flex-direction: row; } }
.book-card .cover { flex-shrink: 0; text-align: center; }
.book-card .cover img { width: 170px; margin: 0 auto; box-shadow: 0 20px 50px -15px rgba(0,0,0,.28); }
.book-card .cover p { margin-top: 1rem; font-size: .75rem; color: var(--muted-foreground); }
.book-card .text { flex: 1; text-align: center; }
@media (min-width: 768px) { .book-card .text { text-align: left; } }
.book-card h3 { margin-top: .75rem; font-size: clamp(1.5rem,3vw,2.25rem); }
.book-card p.desc { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.7; }
.book-card .btn { margin-top: 2rem; }

/* ============ Press cards ============ */
.press-card {
  display: flex; align-items: flex-start; gap: 1rem; background: var(--card);
  padding: 1rem; transition: box-shadow .2s;
}
.press-card:hover { box-shadow: 0 8px 30px -12px rgba(0,0,0,.12); }
.press-card .icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background: var(--secondary); color: var(--primary); }
.press-card h4 { font-weight: 500; }
.press-card .source { margin-top: .25rem; font-size: .75rem; font-weight: 500; color: var(--primary); }
.press-card .desc { margin-top: .5rem; font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; }
.press-columns { display: grid; gap: 2.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .press-columns { grid-template-columns: 1fr 1fr; } }
.press-col { display: flex; flex-direction: column; gap: 1rem; }
.press-col h3 { font-size: 1.125rem; font-weight: 500; }

/* ============ Newsletter ============ */
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; background: var(--card); padding: 1.5rem; }
.newsletter-form input[type=email] { padding: .85rem 1rem; border: 1px solid var(--border); background: #fff; font-size: .9rem; }

/* ============ About / Career timeline ============ */
.career-grid { display: grid; gap: 0 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .career-grid { grid-template-columns: 1fr 1fr; } }
.career-item { position: relative; display: flex; align-items: flex-start; gap: .75rem; padding-bottom: 1.75rem; }
.career-item .icon-box { flex-shrink: 0; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; }
.career-item .line { position: absolute; left: 1rem; top: 2rem; width: 1px; height: calc(100% - .5rem); background: rgba(47,144,146,.3); transform: translateX(-50%); }
.qualif-cloud { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.qualif-badge { border: 1px solid var(--border); background: var(--card); padding: .4rem .9rem; font-size: .8rem; transition: all .2s; }
.qualif-badge:hover { border-color: var(--mustard); background: var(--secondary); }

/* ============ Testimonials ============ */
.testimonial-track { margin-top: 3rem; display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.testimonial-card { flex: 0 0 85vw; scroll-snap-align: center; background: var(--card); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); display: flex; flex-direction: column; }
@media (min-width: 768px) { .testimonial-card { flex: 0 0 calc(33.333% - 1rem); padding: 2rem; } }
.testimonial-card .quote-icon { display: inline-flex; color: var(--primary); }
.testimonial-card .quote-icon svg { width: 2.25rem; height: 2.25rem; }
.testimonial-card p.text { margin-top: 1.25rem; line-height: 1.7; }
.testimonial-card p.text.clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.testimonial-card .more-btn { margin-top: .5rem; align-self: flex-start; background: none; border: none; color: var(--primary); font-size: .875rem; font-weight: 500; }
.testimonial-card .who { margin-top: auto; padding-top: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.testimonial-card .initials { width: 2.5rem; height: 2.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-size: .875rem; font-weight: 500; }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--border); background: var(--card); padding: 3.5rem 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; font-size: .875rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ============ Cookie banner ============ */
.cookie-launcher {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 40; width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border);
  color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.cookie-overlay { position: fixed; inset: 0; z-index: 50; background: rgba(43,52,53,.4); display: none; align-items: center; justify-content: center; padding: 1rem; }
.cookie-overlay.open { display: flex; }
.cookie-dialog { max-height: 88vh; overflow-y: auto; width: 100%; max-width: 40rem; background: #fff; padding: 2rem; }
.cookie-dialog h2 { font-size: 1.25rem; font-weight: 600; }
.cookie-dialog p { margin-top: .75rem; font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; }
.cookie-cat { border: 1px solid var(--border); background: var(--card); padding: 1rem; margin-top: .75rem; }
.cookie-cat label { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; }
.cookie-actions { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (min-width: 640px) { .cookie-actions { display: flex; flex-wrap: wrap; } }
.cookie-actions button { flex: 1; padding: .85rem 1rem; font-size: .875rem; font-weight: 500; border: 1px solid var(--border); background: #fff; }
.cookie-actions .accept-all { background: var(--coral); color: #fff; font-weight: 700; border: none; }
.cookie-actions .save-btn, .cookie-actions .essential-btn { background: #fff; }
.cookie-actions .details-btn { background: var(--primary); color: #fff; border: none; }
.cookie-links { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; font-size: .75rem; color: var(--muted-foreground); }
.cookie-links a, .cookie-links button { text-decoration: underline; background: none; border: none; color: inherit; font-size: inherit; padding: 0; }

/* ============ Sub-page hero (Coaching/Talentgewinnung/Organisationsentwicklung) ============ */
.subpage-hero { background-image: var(--gradient-hero); position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 2.5rem 1.5rem; color: var(--ink-foreground); }
@media (min-width: 768px) { .subpage-hero { padding: 3.5rem 3rem; } }
.subpage-hero .top-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; }
.subpage-hero .top-row img { height: 48px; width: auto; }
.subpage-hero .top-row .tag { text-align: right; font-size: .95rem; max-width: 15rem; }
.subpage-hero h1 { margin-top: 1.5rem; font-size: clamp(2.2rem, 6.5vw, 5rem); max-width: 60rem; }
.subpage-hero .bottom-row { margin-top: 4rem; display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1.5rem; }
@media (min-width: 768px) { .subpage-hero .bottom-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.subpage-hero .bottom-row p { max-width: 34rem; color: var(--ink-muted); }
.subpage-hero .actions { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .subpage-hero .actions { flex-direction: row; align-items: center; } }

.floating-nav { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 50; max-width: 92vw; overflow-x: auto; display: flex; gap: .25rem; background: rgba(243,248,248,.9); backdrop-filter: blur(6px); border: 1px solid var(--border); padding: .5rem; box-shadow: 0 12px 40px -12px rgba(0,0,0,.35); }
.floating-nav a { white-space: nowrap; padding: .5rem 1rem; font-size: .875rem; color: var(--muted-foreground); }
.floating-nav a:hover { background: var(--secondary); color: var(--foreground); }

.overview-grid { display: grid; gap: 3.5rem; }
@media (min-width: 768px) { .overview-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.overview-grid img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.overview-grid .stats-row { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width: 640px) { .overview-grid .stats-row { grid-template-columns: repeat(4,1fr); } }
.overview-grid .stats-row .val { display: block; font-size: clamp(1.6rem,3vw,2.25rem); color: var(--primary); }
.overview-grid .stats-row .lbl { margin-top: .25rem; display: block; font-size: .875rem; color: var(--muted-foreground); }

.leistung-card { background: var(--card); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.leistung-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px -8px rgba(0,0,0,.15); }
.leistung-card .icon { display: inline-flex; background: rgba(234,244,244,.8); color: var(--primary); padding: .6rem; margin-bottom: 1rem; }
.leistung-card h3 { font-size: 1.1rem; font-weight: 500; }
.leistung-card p { margin-top: .5rem; font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; }

.vorgehen-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .vorgehen-grid { grid-template-columns: repeat(4,1fr); } }
.vorgehen-grid .step-num { font-size: .875rem; color: var(--primary); }
.vorgehen-grid h3 { margin-top: .75rem; font-size: 1.1rem; font-weight: 500; }
.vorgehen-grid p { margin-top: .5rem; font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; }

.beispiele-box { background: rgba(234,244,244,.5); padding: 2rem; }
@media (min-width: 768px) { .beispiele-box { padding: 3rem; } }
.beispiele-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .beispiele-grid { grid-template-columns: repeat(3,1fr); } }
.beispiel-placeholder { border: 1px dashed var(--border); background: var(--card); padding: 1.5rem; }

.subpage-contact { background-image: var(--gradient-hero); position: relative; overflow: hidden; padding: 6rem 1.5rem; color: var(--ink-foreground); }
@media (min-width: 768px) { .subpage-contact { padding: 8rem 3rem; } }
.subpage-contact .grid-end { margin-top: 3.5rem; display: grid; gap: 2.5rem; padding-top: 2.5rem; }
@media (min-width: 768px) { .subpage-contact .grid-end { grid-template-columns: repeat(12,1fr); align-items: flex-end; } }
.subpage-contact .left-col { grid-column: span 5; }
.subpage-contact .right-col { grid-column: 9 / span 4; }
.subpage-contact .right-col img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.link-inline { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink-muted); }
.link-inline:hover { color: var(--ink-foreground); }

.subfooter { background: var(--ink); color: var(--ink-muted); border-top: 1px solid rgba(22,56,58,.1); padding: 2.5rem 1.5rem 7rem; font-size: .875rem; }
@media (min-width: 768px) { .subfooter { padding-left: 3rem; padding-right: 3rem; } }
.subfooter .row { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .subfooter .row { flex-direction: row; align-items: center; justify-content: space-between; } }
.subfooter a:hover { color: var(--ink-foreground); }

/* ============ Coaching-Prozess Stepper ============ */
.process-dots { display: flex; align-items: center; justify-content: center; gap: .4rem; flex-wrap: wrap; }
.process-dots .dot { width: .75rem; height: .75rem; background: var(--border); border: none; padding: 0; transition: all .3s; cursor: pointer; }
.process-dots .dot.active { width: 1rem; height: 1rem; background: var(--primary); }
.process-dots .dot.visited { background: rgba(47,144,146,.55); }
.process-dots .connector { width: 1.5rem; height: 1px; background: var(--border); }
.process-card { margin-top: 3rem; background: var(--card); padding: 2rem; }
@media (min-width: 768px) { .process-card { padding: 3rem; } }
.process-card .step-label { font-size: .8rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .05em; }
.process-card h3 { margin-top: .75rem; font-size: clamp(1.5rem,3vw,2.25rem); }
.process-card p { margin-top: 1.5rem; color: var(--muted-foreground); line-height: 1.7; }
.process-nav { margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; }
.process-nav button { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--border); padding: .6rem 1.25rem; font-size: .875rem; font-weight: 500; background: #fff; }
.process-nav button.next { background: var(--primary); color: #fff; border: none; }
.process-nav button:disabled { opacity: 0; pointer-events: none; }

.icon-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .icon-grid { grid-template-columns: repeat(2,1fr); } }
.icon-grid .item { background: var(--card); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.icon-grid .item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px -8px rgba(0,0,0,.15); }
.icon-grid .item .ic { display: inline-flex; background: rgba(234,244,244,.8); color: var(--primary); padding: .6rem; margin-bottom: 1rem; }

.rahmen-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 1024px) { .rahmen-grid { grid-template-columns: repeat(4,1fr); } }

.wofuer-grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 1024px) { .wofuer-grid { grid-template-columns: repeat(2,1fr); } }
.wofuer-card { background: var(--card); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
@media (min-width: 768px) { .wofuer-card { padding: 2rem; } }
.wofuer-card ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.wofuer-card li { display: flex; align-items: flex-start; gap: .75rem; }
.wofuer-card .ic { flex-shrink: 0; background: rgba(234,244,244,.8); color: var(--primary); padding: .4rem; }
.wofuer-photo img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }

.veraenderung-list { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .veraenderung-list { grid-template-columns: repeat(2,1fr); } }
.veraenderung-list li { border-bottom: 1px solid rgba(22,56,58,.1); padding-bottom: 1.25rem; font-size: clamp(1.1rem,2vw,1.5rem); line-height: 1.3; }

/* ============ Kontakt-Formular ============ */
.contact-grid { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 4fr; } }
.form-field label { display: block; font-size: .875rem; font-weight: 500; }
.form-field input, .form-field textarea {
  width: 100%; margin-top: .5rem; padding: .85rem 1rem; border: 1px solid var(--border);
  background: var(--background); font-size: .9rem; font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); }
.form-row-2 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.consent-row { display: flex; align-items: flex-start; gap: .75rem; margin-top: .5rem; }
.contact-sidebar { background: var(--card); padding: 2rem; }
.contact-sidebar li { display: flex; align-items: flex-start; gap: .75rem; margin-top: 1rem; font-size: .9rem; }
.form-success { display: flex; align-items: flex-start; gap: .75rem; background: var(--secondary); padding: 1.5rem; }

/* ============ Legal pages ============ */
.legal-page main { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.legal-page h1 { font-size: 2rem; font-weight: 600; }
.legal-page section { margin-top: 3rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 600; }
.legal-page p { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.7; }
.legal-page a { text-decoration: underline; text-underline-offset: 3px; }
.legal-header { border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.legal-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.legal-header img { height: 40px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: .75rem 1.25rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============ Scroll-Reveal Animationen ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
