/* =============================================
   PRAXIS – Stylesheet
   Farbpalette: Weiß, Warmweiß, Grüntöne
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---------- CSS-Variablen ---------- */
:root {
  --white:        #FFFFFF;
  --warmwhite:    #F8F5EF;
  --cream:        #F2EDE3;
  --green-deep:   #2D5740;
  --green-mid:    #4A7A5C;
  --green-light:  #7FAF8E;
  --green-pale:   #C8DFD0;
  --green-blush:  #E6F2EB;
  --text-dark:    #1E2E25;
  --text-mid:     #4A5E52;
  --text-light:   #7A9082;
  --border:       #D8E8DC;
  --shadow:       0 4px 24px rgba(45, 87, 64, 0.08);
  --shadow-hover: 0 8px 40px rgba(45, 87, 64, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --trans:     0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section--cream { background: var(--warmwhite); }
.section--green { background: var(--green-blush); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
  display: block;
}
.section-intro {
  max-width: 620px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--green-light);
  margin: 1.5rem 0;
}
.text-center { text-align: center; }
.text-center .divider { margin: 1.5rem auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: var(--trans);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,87,64,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--green-deep);
}
.btn-light:hover {
  background: var(--green-blush);
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(45,87,64,0.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.1;
}
.navbar__logo-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--trans);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--green-deep);
  background: var(--green-blush);
}
.navbar__cta {
  margin-left: 0.75rem;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--trans);
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 820px) {
  .navbar__burger { display: flex; }
  .navbar__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav a {
    width: 100%;
    padding: 0.65rem 1rem;
  }
  .navbar__cta { margin-left: 0; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--warmwhite) 0%, var(--green-blush) 100%);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127,175,142,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200,223,208,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__title {
  margin-bottom: 0.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--green-mid);
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--green-mid);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.hero__text {
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.hero__card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-blush);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.hero__card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.hero__card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.hero__card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.hero__card-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--green-blush);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 420px; }
}

/* =============================================
   ANGEBOTE (Services Grid)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--green-pale);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-blush);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; }

/* =============================================
   ÜBER MICH Preview
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-split__visual {
  position: relative;
}
.about-split__image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--green-blush) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.about-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(74,122,92,0.12) 0%, transparent 60%);
}
.about-split__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-split__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.about-split__badge span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}
.about-split__content { padding-right: 1rem; }
.qual-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.qual-list li .dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--green-mid);
  border-radius: 50%;
  margin-top: 0.5rem;
}

@media (max-width: 820px) {
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-split__visual { max-width: 360px; }
  .about-split__content { padding-right: 0; }
}

/* =============================================
   APPROACH / VALUES
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-item__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.value-item p { font-size: 0.9rem; }

/* =============================================
   PROCESS STEPS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 auto 1.25rem;
}
.step h4 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--green-deep);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127,175,142,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.contact-info-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-list li .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-list li .info strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.15rem;
}
.contact-info-list li .info span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.opening-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.opening-hours h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.95rem; opacity: 0.8; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-row:last-child { border-bottom: none; }

/* ---------- Contact Form ---------- */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--trans);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,122,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.form-check input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--green-mid); cursor: pointer; }
.form-check a { color: var(--green-mid); text-decoration: underline; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   LEGAL PAGES (Impressum, Datenschutz, Cookies)
   ============================================= */
.legal-hero {
  background: linear-gradient(135deg, var(--warmwhite), var(--green-blush));
  padding: 4rem 0 3rem;
  margin-bottom: 0;
}
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal-content {
  padding: 4rem 0;
}
.legal-body {
  max-width: 780px;
}
.legal-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--green-deep);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--green-mid);
}
.legal-body p { margin-bottom: 0.9rem; font-size: 0.95rem; }
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body ul li { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.35rem; }
.legal-body a { color: var(--green-mid); text-decoration: underline; }
.legal-body a:hover { color: var(--green-deep); }
.legal-box {
  background: var(--green-blush);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.legal-box p { margin: 0; font-size: 0.9rem; }

/* ---------- Cookie Tables ---------- */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.88rem;
}
.cookie-table th {
  background: var(--green-pale);
  color: var(--green-deep);
  font-weight: 500;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
}
.cookie-table td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
.cookie-table tr:nth-child(even) td { background: var(--warmwhite); }

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 30px rgba(45,87,64,0.12);
  padding: 1.5rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}
.cookie-banner__text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0;
}
.cookie-banner__text a { color: var(--green-mid); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner__actions .btn { font-size: 0.85rem; padding: 0.7rem 1.4rem; }
.cookie-details {
  display: none;
  background: var(--warmwhite);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
  width: 100%;
}
.cookie-details.open { display: block; }
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.cookie-toggle-row:last-child { border-bottom: none; }
.cookie-toggle-row label { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.cookie-toggle-row span { font-size: 0.8rem; color: var(--text-light); }
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  min-width: 44px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: var(--trans);
}
.toggle-switch .slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--trans);
}
.toggle-switch input:checked + .slider { background: var(--green-mid); }
.toggle-switch input:checked + .slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .slider { opacity: 0.7; cursor: not-allowed; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.footer__brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255,255,255,0.6);
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--trans);
}
.footer__col ul a:hover { color: var(--green-light); }
.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.82rem; margin: 0; color: rgba(255,255,255,0.4); }
.footer__bottom a { color: var(--green-light); }
.footer__bottom a:hover { color: var(--white); }

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--warmwhite), var(--green-blush));
  padding: 4.5rem 0 3.5rem;
}
.page-hero__breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-hero__breadcrumb a { color: var(--green-mid); }
.page-hero__breadcrumb span { color: var(--text-light); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* =============================================
   NOTICE / ALERT
   ============================================= */
.notice {
  background: var(--green-blush);
  border: 1px solid var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.notice a { color: var(--green-mid); text-decoration: underline; }

/* =============================================
   LEISTUNGEN PAGE
   ============================================= */
.leistung-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.leistung-detail:last-child { border-bottom: none; }
.leistung-detail:nth-child(even) .leistung-detail__content { order: -1; }
.leistung-detail__icon {
  width: 64px;
  height: 64px;
  background: var(--green-blush);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.leistung-detail h3 { margin-bottom: 1rem; }
.leistung-detail ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.leistung-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.leistung-detail ul li::before {
  content: '→';
  color: var(--green-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}
.leistung-detail__visual {
  background: linear-gradient(145deg, var(--green-pale), var(--green-blush));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

@media (max-width: 820px) {
  .leistung-detail { grid-template-columns: 1fr; }
  .leistung-detail:nth-child(even) .leistung-detail__content { order: 0; }
}

/* =============================================
   ÜBER MICH PAGE
   ============================================= */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--green-pale);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--green-mid);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-mid);
}
.timeline-item__year {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  margin-bottom: 0.25rem;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.9rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* =============================================
   UTILITY
   ============================================= */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 1.5rem; }

@media (max-width: 520px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0; }
}
