/* ─── Variables ─── */
:root {
  --g1: #2e5926;
  --g2: #4a8a3a;
  --g3: #6aad56;
  --g4: #8ecc7a;
  --pale: #eef6ea;
  --muted: #c4dbbe;
  --cream: #faf8f3;
  --text: #1a2918;
  --text-2: #3a5033;
  --text-3: #648060;
  --white: #ffffff;
  --nav-h: 68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

/* ── Page intro animation ── */
.page-wrap { animation: fadeUp .4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: height .3s, background .3s, box-shadow .3s;
}
#navbar.solid {
  height: 60px;
  background: rgba(250,248,243,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(100,128,96,.12), 0 4px 24px rgba(46,89,38,.07);
}
#navbar.transparent { background: transparent; }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.nav-logo-icon { width: 36px; height: 36px; transition: transform .4s; flex-shrink: 0; }
.nav-logo:hover .nav-logo-icon { transform: rotate(12deg); }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; letter-spacing: .05em;
  transition: color .3s;
}
#navbar.transparent .nav-logo-text { color: var(--white); }
#navbar.solid .nav-logo-text { color: var(--text); }
.nav-logo-text em { font-style: normal; color: var(--g3); }

.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-link {
  position: relative;
  padding: .5rem .85rem;
  font-size: .85rem; font-weight: 400; letter-spacing: .04em;
  border-radius: .5rem;
  transition: color .2s, background .2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--g3); border-radius: 1px;
  transform: translateX(-50%);
  transition: width .25s;
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 1.7rem); }
#navbar.transparent .nav-link { color: rgba(255,255,255,.88); }
#navbar.transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
#navbar.transparent .nav-link.active { color: var(--white); }
#navbar.solid .nav-link { color: var(--text-2); }
#navbar.solid .nav-link:hover { color: var(--g1); background: var(--pale); }
#navbar.solid .nav-link.active { color: var(--g1); }

.nav-cta {
  margin-left: .6rem;
  padding: .55rem 1.3rem !important;
  border-radius: 3rem !important;
  font-size: .85rem; font-weight: 500;
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.nav-cta::after { display: none !important; }
#navbar.transparent .nav-cta {
  background: rgba(255,255,255,.2);
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,.4);
}
#navbar.transparent .nav-cta:hover { background: rgba(255,255,255,.3); transform: translateY(-1px); }
#navbar.solid .nav-cta {
  background: var(--g2); color: var(--white) !important;
  border: none;
  box-shadow: 0 2px 12px rgba(74,138,58,.28);
}
#navbar.solid .nav-cta:hover { background: var(--g1); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(46,89,38,.32); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; transition: background .3s; }
#navbar.transparent .hamburger span { background: var(--white); }
#navbar.solid .hamburger span { background: var(--text); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white);
  padding: 1rem 1.75rem 1.5rem; gap: .1rem;
  border-bottom: 1px solid var(--muted);
  box-shadow: 0 8px 32px rgba(46,89,38,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .7rem 0; font-size: .95rem; color: var(--text-2); border-bottom: 1px solid var(--pale); }
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--g1); }

/* ════════════════════════════
   SHARED SECTION STYLES
════════════════════════════ */
section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.label {
  display: inline-block; font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--g2); margin-bottom: .9rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; color: var(--text);
}
.body-text { font-size: .95rem; line-height: 1.85; color: var(--text-3); font-weight: 300; }
.divider { width: 40px; height: 3px; background: linear-gradient(90deg, var(--g2), var(--g4)); border-radius: 2px; margin: 1.25rem 0; }
.divider.center { margin: 1.25rem auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4.5rem; }
.section-header .body-text { margin: 0 auto; }

/* Page header */
.page-header {
  background: linear-gradient(150deg, var(--g1), var(--g2));
  padding: calc(var(--nav-h) + 3.5rem) 2.5rem 3.5rem;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; position: relative; }
.page-header p { font-size: .95rem; font-weight: 300; opacity: .8; margin-top: .6rem; position: relative; }

/* Buttons */
.btn { display: inline-block; padding: .875rem 2rem; border-radius: 3rem; font-size: .9rem; font-weight: 500; transition: all .2s; cursor: pointer; }
.btn-solid { background: var(--g2); color: var(--white); }
.btn-solid:hover { background: var(--g1); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,89,38,.25); }
.btn-outline-green { background: transparent; color: var(--g2); border: 1.5px solid var(--g2); }
.btn-outline-green:hover { background: var(--pale); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(150deg, #1f4019 0%, #2e5926 35%, #4a8a3a 65%, #6aad56 100%); }
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='42' rx='14' ry='20' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.5'/%3E%3Cellipse cx='50' cy='44' rx='8' ry='12' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cline x1='50' y1='62' x2='50' y2='78' stroke='rgba(255,255,255,0.07)' stroke-width='1.5'/%3E%3Cellipse cx='50' cy='30' rx='10' ry='6' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}
.hero-orb1 { position: absolute; right: -120px; top: -120px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(106,173,86,.18) 0%, transparent 70%); }
.hero-orb2 { position: absolute; left: -80px; bottom: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(46,89,38,.4) 0%, transparent 70%); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 4rem;
  display: grid; grid-template-columns: 1fr 440px; gap: 4rem; align-items: center; width: 100%;
}
.hero-text .pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9); border-radius: 3rem;
  padding: .4rem 1rem; font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2rem;
}
.hero-text .pill::before { content: '🌿'; font-size: .9rem; }
.hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 1.75rem; }
.hero-text h1 em { font-style: italic; }
.hero-text p { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,.82); font-weight: 300; max-width: 520px; margin-bottom: 2.75rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary { background: var(--white); color: var(--g1); padding: .9rem 2rem; border-radius: 3rem; font-size: .9rem; font-weight: 500; transition: transform .2s, box-shadow .2s; display: inline-block; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.btn-hero-outline { background: transparent; color: var(--white); padding: .9rem 2rem; border-radius: 3rem; font-size: .9rem; font-weight: 400; border: 1.5px solid rgba(255,255,255,.55); transition: background .2s, border-color .2s; display: inline-block; }
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.hero-card { background: rgba(255,255,255,.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.2); border-radius: 1.75rem; padding: 2.75rem; color: var(--white); }
.hero-card-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.hero-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 1.75rem; }
.hero-checklist { display: flex; flex-direction: column; gap: 1rem; }
.hero-checklist li { display: flex; align-items: flex-start; gap: .85rem; font-size: .875rem; font-weight: 300; line-height: 1.5; opacity: .92; }
.hc-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: .7rem; margin-top: 1px; }
.hero-card-sep { height: 1px; background: rgba(255,255,255,.15); margin: 2rem 0; }
.hero-card-footer { display: flex; align-items: center; gap: .75rem; font-size: .825rem; opacity: .75; }
.hero-card-footer strong { opacity: 1; font-weight: 500; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ── Teaser cards ── */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.teaser-card { background: var(--white); border: 1px solid var(--muted); border-radius: 1.25rem; padding: 2rem; transition: transform .2s, box-shadow .2s, border-color .2s; }
.teaser-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(46,89,38,.1); border-color: var(--g3); }
.teaser-icon { width: 50px; height: 50px; background: var(--pale); border-radius: .75rem; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.teaser-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: .6rem; }
.teaser-card p { font-size: .875rem; line-height: 1.7; color: var(--text-3); font-weight: 300; }
.teaser-arrow { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.1rem; font-size: .8rem; font-weight: 500; color: var(--g2); }
.teaser-arrow::after { content: '→'; transition: transform .2s; }
.teaser-card:hover .teaser-arrow::after { transform: translateX(4px); }

/* ── Intro split ── */
.intro-split { background: var(--pale); border-radius: 2rem; padding: 4.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.photo-placeholder { border-radius: 1.5rem; aspect-ratio: 4/5; background: linear-gradient(145deg, var(--muted), var(--pale)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--text-3); font-size: .85rem; text-align: center; }
.photo-placeholder span { font-size: 3.5rem; }

/* ── Schwerpunkte ── */
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sp-card { background: var(--white); border: 1px solid var(--muted); border-radius: 1.25rem; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.sp-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(46,89,38,.1); }
.sp-top { padding: 1.75rem 2rem; color: var(--white); }
.sp-top .icon { font-size: 2.25rem; margin-bottom: .9rem; }
.sp-top h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; }
.sp-body { padding: 1.5rem 2rem; }
.sp-body p { font-size: .875rem; line-height: 1.75; color: var(--text-3); font-weight: 300; }
.sp-body ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .45rem; }
.sp-body ul li { font-size: .825rem; color: var(--text-2); display: flex; align-items: flex-start; gap: .45rem; }
.sp-body ul li::before { content: '▸'; color: var(--g2); flex-shrink: 0; }

/* ── Ablauf ── */
.ablauf-wrap { max-width: 800px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 2rem; position: relative; }
.step::after { content: ''; position: absolute; left: 35px; top: 72px; bottom: -48px; width: 2px; background: linear-gradient(to bottom, var(--g3), var(--muted)); }
.step:last-child::after { display: none; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--g1), var(--g2)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 300; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(46,89,38,.25); }
.step-body { padding: .9rem 0 3.5rem; }
.step-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; margin-bottom: .65rem; }
.step-body p { font-size: .9rem; line-height: 1.85; color: var(--text-3); font-weight: 300; }

/* ── Preise ── */
.preise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.preis-card { background: var(--white); border: 1.5px solid var(--muted); border-radius: 1.5rem; padding: 2.25rem 2rem; position: relative; transition: transform .2s, box-shadow .2s; }
.preis-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(46,89,38,.1); }
.preis-card.featured { border-color: var(--g2); background: linear-gradient(180deg, var(--pale), var(--white)); }
.preis-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--g2); color: var(--white); font-size: .72rem; font-weight: 500; letter-spacing: .08em; padding: .3rem 1rem; border-radius: 2rem; white-space: nowrap; }
.preis-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; text-align: center; margin-bottom: 1.25rem; }
.preis-amount { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; font-weight: 300; color: var(--g1); line-height: 1; }
.preis-unit { text-align: center; font-size: .8rem; color: var(--text-3); margin: .3rem 0 1.75rem; }
.preis-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.75rem; }
.preis-features li { font-size: .875rem; color: var(--text-2); font-weight: 300; display: flex; align-items: flex-start; gap: .6rem; }
.preis-features li::before { content: '✓'; color: var(--g2); font-weight: 500; flex-shrink: 0; }
.preis-note { font-size: .78rem; color: var(--text-3); text-align: center; line-height: 1.6; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--muted); }
.kk-box { margin-top: 3rem; background: var(--pale); border-radius: 1.25rem; padding: 2rem 2.5rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.kk-box .icon { font-size: 2rem; flex-shrink: 0; }
.kk-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: .5rem; }
.kk-box p { font-size: .875rem; line-height: 1.75; color: var(--text-3); font-weight: 300; }

/* ── Über mich ── */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start; }
.about-sticky { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.about-img { border-radius: 1.75rem; overflow: hidden; aspect-ratio: 3/4; background: linear-gradient(145deg, var(--muted), var(--pale)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--text-3); font-size: .85rem; text-align: center; }
.about-img span { font-size: 4rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.tag { background: var(--pale); color: var(--g1); border: 1px solid var(--muted); border-radius: 2rem; padding: .35rem .85rem; font-size: .78rem; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; line-height: 1.15; margin-bottom: 1.25rem; }
.about-text p { font-size: .95rem; line-height: 1.9; color: var(--text-3); font-weight: 300; margin-bottom: 1.25rem; }
.about-values { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.about-value { background: var(--pale); border-radius: 1rem; padding: 1.25rem; }
.about-value h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: .3rem; }
.about-value p { font-size: .825rem; margin: 0; color: var(--text-3); }

/* ── Kontakt ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4.5rem; align-items: start; }
.kontakt-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 400; margin-bottom: 1.25rem; }
.kontakt-info p { font-size: .9rem; line-height: 1.8; color: var(--text-3); font-weight: 300; margin-bottom: 2rem; }
.k-items { display: flex; flex-direction: column; gap: 1.1rem; }
.k-item { display: flex; align-items: center; gap: 1rem; font-size: .875rem; color: var(--text-2); }
.k-icon { width: 42px; height: 42px; background: var(--pale); border-radius: .75rem; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.free-box { margin-top: 2.25rem; padding: 1.5rem; background: var(--pale); border-radius: 1.1rem; }
.free-box p:first-child { font-size: .875rem; font-weight: 500; color: var(--text-2); margin-bottom: .4rem; }
.free-box p:last-child { font-size: .8rem; line-height: 1.65; color: var(--text-3); font-weight: 300; }
.form-card { background: var(--white); border: 1px solid var(--muted); border-radius: 1.5rem; padding: 3rem; }
.form-group { margin-bottom: 1.35rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 500; color: var(--text-2); margin-bottom: .45rem; letter-spacing: .03em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--muted); border-radius: .65rem; font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 300; color: var(--text); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--g2); box-shadow: 0 0 0 3px rgba(74,138,58,.1); }
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: 1.5rem; }
.form-check input { flex-shrink: 0; margin-top: 3px; width: auto; accent-color: var(--g2); }
.form-check label { font-size: .78rem; line-height: 1.6; color: var(--text-3); }
.form-check a { color: var(--g2); text-decoration: underline; }

/* ── Legal ── */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; margin: 2.5rem 0 .85rem; }
.legal p, .legal li { font-size: .9rem; line-height: 1.9; color: var(--text-3); font-weight: 300; }
.legal ul { margin-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }

/* ── Footer ── */
footer { background: var(--text); color: rgba(255,255,255,.75); padding: 4.5rem 2.5rem 2rem; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: .75rem; }
.footer-logo em { font-style: normal; color: var(--g4); }
.footer-brand p { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.45); font-weight: 300; }
.footer-col h4 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.55); font-weight: 300; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); font-weight: 300; }
.footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.3); margin-left: 1.25rem; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Toast ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--g1); color: var(--white); padding: 1rem 1.75rem; border-radius: .75rem; font-size: .875rem; z-index: 999; transform: translateY(80px); opacity: 0; transition: transform .35s, opacity .35s; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .teaser-grid, .sp-grid, .preise-grid { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
  .photo-placeholder { aspect-ratio: 3/2; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.5rem; }
  .hero-content { padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; }
  .page-header { padding: calc(var(--nav-h) + 2.5rem) 1.5rem 2.5rem; }
  .step { grid-template-columns: 56px 1fr; }
  .step-num { width: 56px; height: 56px; font-size: 1.35rem; }
  .step::after { left: 27px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
  .about-values { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
