/* ═══════════════════════════════════════════════════════
   altmann24 DESIGN SYSTEM — Emerald & Gold
   Eingebettet in jede HTML-Seite (kein externes Stylesheet nötig)
   Netlify-ready · Vanilla CSS · Zero Dependencies
   ═══════════════════════════════════════════════════════ */

:root {
  --em:        #0D5C42;
  --em-d:      #083D2C;
  --em-m:      #157A58;
  --em-l:      #E6F4EF;
  --em-p:      #F3FAF7;
  --gd:        #C8A84B;
  --gd-l:      #E2C76E;
  --gd-s:      rgba(200,168,75,.13);
  --gd-b:      rgba(200,168,75,.26);
  --cr:        #F5F0E8;
  --cr2:       #E8E2D6;
  --cr3:       #D4CEC2;
  --txt:       #0A2A1C;
  --txt-m:     #2D5A44;
  --txt-mu:    #6B8C7A;
  --wh:        #FFFFFF;
  --bd:        rgba(13,92,66,.11);
  --bd-gd:     rgba(200,168,75,.22);
  --shadow:    0 4px 24px rgba(8,40,28,.09);
  --shadow-gd: 0 3px 16px rgba(200,168,75,.22);
  --fd:        'Playfair Display', Georgia, serif;
  --fb:        'Outfit', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(.4,0,.2,1);
  --r:         8px;
  --rl:        16px;
  --rxl:       28px;
  --max:       1160px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); color: var(--txt); background: var(--wh); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--em); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gd); }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--fd); font-weight: 400; line-height: 1.2; color: var(--em-d); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
p  { line-height: 1.8; color: var(--txt-m); }
.lead { font-size: 1.08rem; color: var(--txt-m); line-height: 1.85; }
.lbl {
  display: block;
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: .9rem;
}

/* LAYOUT */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.sec { padding: 5.5rem 0; }
.sec-em { background: var(--em-l); }
.sec-dark { background: var(--em-d); color: var(--cr); }
.sec-dark h2, .sec-dark h3 { color: var(--cr); }
.sec-dark p { color: var(--cr3); }
.sec-dark .lbl { color: rgba(200,168,75,.85); }

/* DIVIDERS */
.div { width: 54px; height: 2px; background: var(--gd); margin: 1.3rem 0; }
.div-c { margin: 1.3rem auto; }
.div-hr { height: 1px; background: linear-gradient(90deg, transparent, var(--gd), transparent); border: none; margin: 3rem 0; }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 0;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,61,44,.97);
  border-bottom-color: var(--bd-gd);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
}
.nav-logo { font-family: var(--fd); font-size: 1.35rem; color: var(--cr); letter-spacing: .02em; }
.nav-logo span { color: var(--gd); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: .84rem; color: rgba(245,240,232,.8);
  font-family: var(--fb); letter-spacing: .03em;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gd); transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gd); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gd); color: var(--em-d) !important;
  padding: .52rem 1.2rem; border-radius: var(--r);
  font-weight: 600 !important; font-size: .78rem !important;
  letter-spacing: .06em !important; transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gd-l) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--cr); transition: .25s; }
.mob-nav {
  display: none; position: fixed; inset: 0;
  background: var(--em-d); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-family: var(--fd); font-size: 2rem; color: var(--cr); transition: color .2s; }
.mob-nav a:hover { color: var(--gd); }
.mob-close { position: absolute; top: 1.4rem; right: 1.8rem; font-size: 2rem; color: var(--cr3); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 5rem; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--em-d) 0%, var(--em) 60%, #1A7A58 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(200,168,75,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { color: var(--cr); }
.hero p { color: rgba(245,240,232,.85); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.8rem; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gd); flex-shrink: 0; }
.hero-sub { font-size: 1.08rem; max-width: 540px; margin: 1.4rem 0 2.2rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(200,168,75,.2); flex-wrap: wrap; }
.stat-n { font-family: var(--fd); font-size: 2.2rem; color: var(--gd); line-height: 1; }
.stat-l { font-size: .72rem; color: rgba(245,240,232,.6); letter-spacing: .06em; text-transform: uppercase; margin-top: .2rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .8rem 1.9rem; border-radius: var(--r);
  font-family: var(--fb); font-size: .86rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .25s var(--ease); border: none;
  text-decoration: none !important;
}
.btn-gd { background: var(--gd); color: var(--em-d); box-shadow: var(--shadow-gd); }
.btn-gd:hover { background: var(--gd-l); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,168,75,.35); color: var(--em-d); }
.btn-em { background: var(--em); color: var(--wh); }
.btn-em:hover { background: var(--em-m); transform: translateY(-2px); color: var(--wh); }
.btn-wh { background: rgba(255,255,255,.12); color: var(--cr); border: 1.5px solid rgba(255,255,255,.32); }
.btn-wh:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); color: var(--cr); }
.btn-out { background: transparent; color: var(--em); border: 1.5px solid var(--em); }
.btn-out:hover { background: var(--em-l); transform: translateY(-2px); color: var(--em); }

/* CARDS */
.card {
  background: var(--wh); border: 1px solid var(--bd);
  border-radius: var(--rl); padding: 1.8rem;
  transition: all .28s var(--ease); box-shadow: var(--shadow);
}
.card:hover { border-color: var(--gd); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(8,40,28,.14); }
.card-em { background: var(--em-l); border-color: rgba(13,92,66,.15); }
.card-em:hover { border-color: var(--em); }
.card-gd { background: linear-gradient(135deg, #FFFDF5, #FFF8E0); border-color: var(--bd-gd); }
.card-dark { background: rgba(255,255,255,.06); border-color: rgba(200,168,75,.2); }
.card-dark:hover { border-color: var(--gd); }
.card-top-gd { border-top: 3px solid var(--gd); }
.card-top-em { border-top: 3px solid var(--em); }

/* ICON */
.icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--gd-s); border: 1px solid var(--gd-b);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.1rem; flex-shrink: 0;
}

/* BADGE */
.bdg {
  display: inline-block; padding: .28rem .85rem;
  border-radius: 20px; font-size: .7rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
}
.bdg-gd { background: var(--gd-s); color: #7A5C10; border: 1px solid var(--bd-gd); }
.bdg-em { background: var(--em-l); color: var(--em); border: 1px solid rgba(13,92,66,.2); }
.bdg-hot { background: var(--gd); color: var(--em-d); }

/* CHECK LIST */
.chk { display: flex; flex-direction: column; gap: .75rem; }
.chk-i { display: flex; gap: .8rem; align-items: flex-start; }
.chk-ic {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gd); color: var(--em-d);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.chk-t { font-size: .9rem; color: var(--txt-m); line-height: 1.6; }
.chk-t strong { color: var(--em-d); }

/* PRODUCT CARD */
.prod {
  background: var(--wh); border: 1px solid var(--bd);
  border-radius: var(--rl); padding: 2rem 1.6rem;
  text-align: center; position: relative; overflow: hidden;
  transition: all .28s var(--ease); box-shadow: var(--shadow);
}
.prod::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--em), var(--gd)); }
.prod:hover { border-color: var(--gd); transform: translateY(-5px); box-shadow: 0 10px 36px rgba(8,40,28,.15); }
.prod-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.prod-name { font-family: var(--fd); font-size: 1.3rem; color: var(--em-d); margin-bottom: .35rem; }
.prod-sub { font-size: .82rem; color: var(--txt-mu); line-height: 1.5; margin-bottom: 1.3rem; }

/* QUOTE */
.qt {
  border-left: 3px solid var(--gd);
  padding: 1rem 0 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--em-p); border-radius: 0 var(--r) var(--r) 0;
}
.qt p { font-family: var(--fd); font-size: 1.05rem; font-style: italic; color: var(--em-d); line-height: 1.7; margin: 0; }
.qt cite { font-size: .77rem; color: var(--txt-mu); font-style: normal; margin-top: .4rem; display: block; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-n {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gd-s); border: 1.5px solid var(--bd-gd);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 600; color: #7A5C10;
  flex-shrink: 0; margin-top: 2px;
}
.step-t { font-size: .9rem; color: var(--em-d); font-weight: 500; margin-bottom: .15rem; }
.step-d { font-size: .82rem; color: var(--txt-mu); line-height: 1.55; }

/* CTA BOX */
.cta-box {
  background: linear-gradient(145deg, var(--em-d), #0A4A35);
  border-radius: var(--rxl); padding: 4.5rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { color: var(--cr); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-box p { color: rgba(245,240,232,.8); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* GRIDS */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.g-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* TRUST */
.trust { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.trust-i { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: var(--txt-mu); }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gd); flex-shrink: 0; }

/* TEAM CARD */
.team-card { background: var(--wh); border: 1px solid var(--bd); border-radius: var(--rxl); padding: 2.5rem 2rem; position: relative; box-shadow: var(--shadow); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--em), var(--em-m)); border: 3px solid var(--gd); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 1.6rem; color: var(--gd); margin-bottom: 1.2rem; }
.team-name { font-family: var(--fd); font-size: 1.6rem; color: var(--em-d); margin-bottom: .25rem; }
.team-role { font-size: .72rem; color: var(--gd); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.2rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }

/* FOOTER */
.footer { background: var(--em-d); color: var(--cr3); padding: 4rem 0 2rem; border-top: 1px solid rgba(200,168,75,.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--fd); font-size: 1.3rem; color: var(--cr); margin-bottom: .8rem; }
.footer-brand span { color: var(--gd); }
.footer-desc { font-size: .83rem; color: rgba(212,206,194,.7); line-height: 1.7; }
.footer-h { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gd); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .83rem; color: rgba(212,206,194,.65); transition: color .2s; }
.footer-links a:hover { color: var(--cr); }
.footer-bottom { border-top: 1px solid rgba(200,168,75,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .77rem; color: rgba(212,206,194,.45); }

/* SECTION INTRO */
.si { max-width: 660px; }
.si-c { margin: 0 auto; text-align: center; }
.si-c .div { margin-left: auto; margin-right: auto; }

/* UTIL */
.tc { text-align: center; }
.tg { color: var(--gd); }
.mb2 { margin-bottom: 1rem; } .mb3 { margin-bottom: 1.5rem; } .mb4 { margin-bottom: 2rem; } .mb6 { margin-bottom: 3rem; }
.mt4 { margin-top: 2rem; }
.notice { background: #FFFBF0; border: 1px solid var(--bd-gd); border-radius: var(--r); padding: 1rem 1.4rem; display: flex; gap: .8rem; align-items: flex-start; margin: 1.5rem 0; }
.notice p { font-size: .82rem; color: #7A5C10; margin: 0; line-height: 1.6; }
.notice p strong { color: #5A4008; }

/* SCROLL REVEAL */
@keyframes fadeUp { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
.au { animation: fadeUp .65s var(--ease) both; }
.d1{animation-delay:.1s} .d2{animation-delay:.2s} .d3{animation-delay:.3s} .d4{animation-delay:.4s}

/* RESPONSIVE */
@media(max-width: 960px) {
  .g-split { grid-template-columns: 1fr; gap: 2rem; }
  .g2 { grid-template-columns: 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width: 768px) {
  .wrap { padding: 0 1.2rem; }
  .sec { padding: 4rem 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { padding-top: 6.5rem; min-height: auto; padding-bottom: 4rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .g3 { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .cta-box { padding: 3rem 1.5rem; border-radius: var(--rl); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .trust { gap: 1rem; }
}
@media(max-width: 480px) {
  .g4 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
}
