/*
Theme Name:  Lippautz EDV
Theme URI:   https://www.l-edv.at
Author:      Lippautz EDV
Author URI:  https://www.l-edv.at
Description: Modernes One-Page WordPress Theme für Lippautz EDV – IT-Service Vorarlberg
Version:     2.2
License:     GNU General Public License v2 or later
Text Domain: lippautz-edv
*/

/* ======================================================
   CSS CUSTOM PROPERTIES – helles Weißthema
   ====================================================== */
:root {
  --c-bg:         #ffffff;
  --c-surface:    #f4f6f9;
  --c-card:       #ffffff;
  --c-border:     rgba(0,0,0,.09);
  --c-accent:     #0092c4;
  --c-accent-dim: #d4eef8;
  --c-dark:       #1c1f26;
  --c-text:       #3a4157;
  --c-muted:      #7a8399;
  --c-white:      #ffffff;

  --f-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --f-body:    'EB Garamond', 'Cormorant Garamond', Georgia, serif;

  --max-w:    1180px;
  --header-h: 74px;
  --ease:     cubic-bezier(.22,.68,0,1.2);
}

/* ======================================================
   RESET
   ====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ======================================================
   UTILITY
   ====================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 110px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: .9rem;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--c-dark); margin-bottom: 1.2rem;
}
.accent-bar {
  width: 44px; height: 3px;
  background: var(--c-accent); margin-bottom: 3.5rem;
}
.tag {
  display: inline-block;
  padding: .25rem .75rem;
  border: 1px solid #b5d9ec;
  border-radius: 99px;
  font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--c-accent);
  background: var(--c-accent-dim);
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ======================================================
   HEADER
   ====================================================== */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  transition: background .35s, box-shadow .35s;
}
/* Over the hero (dark photo): transparent, white text */
#site-header .brand-name { color: #fff; }
#site-header .brand-sub  { color: rgba(255,255,255,.55); }
#site-header .nav-menu a { color: rgba(255,255,255,.7); }
#site-header .nav-hamburger span { background: #fff; }

/* Once scrolled: white bg, dark text */
#site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 24px rgba(0,0,0,.05);
}
#site-header.scrolled .brand-name { color: var(--c-dark); }
#site-header.scrolled .brand-sub  { color: var(--c-muted); }
#site-header.scrolled .nav-menu a { color: var(--c-muted); }
#site-header.scrolled .nav-hamburger span { background: var(--c-dark); }

.site-branding {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none;
}
.site-branding img { height: 44px; width: auto; }
.site-branding .brand-text { display: flex; flex-direction: column; line-height: 1; }
.site-branding .brand-name {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .3s;
}
.site-branding .brand-sub {
  font-size: .65rem; letter-spacing: .3em;
  text-transform: uppercase; margin-top: .2rem;
  transition: color .3s;
}
.nav-menu { display: flex; align-items: center; gap: 2.8rem; }
.nav-menu a {
  font-family: var(--f-display);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--c-accent);
  transition: width .3s var(--ease);
}
.nav-menu a:hover { color: var(--c-dark) !important; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
#site-header.scrolled .nav-menu a:hover { color: var(--c-dark) !important; }

.nav-cta {
  padding: .55rem 1.4rem;
  border: 1px solid var(--c-accent) !important;
  color: var(--c-accent) !important;
  border-radius: 3px;
  font-size: .78rem !important;
  letter-spacing: .2em !important;
  transition: background .25s, color .25s !important;
}
.nav-cta:hover { background: var(--c-accent) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   HERO – bleibt dunkel (Foto-Hintergrund)
   ====================================================== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/adobestock_93854864.jpg');
  background-size: cover; background-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(130deg,
    rgba(15,18,28,.90) 0%,
    rgba(15,18,28,.68) 55%,
    rgba(0,60,90,.55) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(0,200,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 3;
  padding: calc(var(--header-h) + 60px) 2.5rem 80px;
  max-width: 860px;
}
.hero-tag { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 2rem; }
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #33d4ff; box-shadow: 0 0 10px #33d4ff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.4); }
}
.hero-tag-text {
  font-family: var(--f-display);
  font-size: .72rem; letter-spacing: .35em;
  text-transform: uppercase; color: #33d4ff;
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 700; line-height: .95;
  letter-spacing: .01em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.8rem;
}
.hero-headline span { color: #33d4ff; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 540px; line-height: 1.75; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.btn-primary {
  padding: .9rem 2.4rem;
  background: var(--c-accent); color: #fff;
  font-family: var(--f-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: 3px; transition: background .25s, transform .2s;
}
.btn-primary:hover { background: #007aaa; transform: translateY(-2px); }
.btn-outline {
  padding: .9rem 2.4rem;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-family: var(--f-display);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: 3px; transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: #33d4ff; background: rgba(0,200,255,.08); }

.hero-stats {
  position: absolute; right: 2.5rem; bottom: 4rem; z-index: 3;
  display: flex; flex-direction: column; gap: 1.6rem;
}
.hero-stat {
  text-align: right;
  border-right: 2px solid #33d4ff; padding-right: 1.1rem;
}
.hero-stat-number {
  font-family: var(--f-display);
  font-size: 2rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.hero-stat-label {
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}

/* ======================================================
   SERVICE-STRIP
   ====================================================== */
#service-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 1.6rem 0; overflow: hidden;
}
.strip-inner {
  display: flex; gap: 3.5rem; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-item { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.strip-item-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-accent); flex-shrink: 0;
}
.strip-item-text {
  font-family: var(--f-display);
  font-size: .78rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--c-muted);
}

/* ======================================================
   VORTEILE
   ====================================================== */
#vorteile { background: var(--c-bg); }
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}
.vorteil {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 8px; padding: 2.2rem 1.8rem;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.vorteil::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.vorteil:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,146,196,.10); border-color: #b5d9ec; }
.vorteil:hover::before { opacity: 1; }
.vorteil-icon {
  width: 48px; height: 48px;
  background: var(--c-accent-dim);
  border: 1px solid #b5d9ec;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.3rem;
}
.vorteil h3 {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-dark); line-height: 1.35; margin-bottom: .5rem;
}
.vorteil p { font-size: .85rem; color: var(--c-muted); line-height: 1.65; }

/* ======================================================
   AUFGABEN
   ====================================================== */
#aufgaben { background: var(--c-surface); position: relative; overflow: hidden; }
#aufgaben::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/adobestock_82329911.jpg');
  background-size: cover; background-position: center; opacity: .03;
}
.aufgaben-header { margin-bottom: 4rem; }
.aufgaben-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative; z-index: 1;
}
.aufgaben-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 8px; padding: 2.4rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .3s, border-color .3s;
}
.aufgaben-card:hover { border-color: #b5d9ec; box-shadow: 0 8px 40px rgba(0,146,196,.08); }
.card-number {
  font-family: var(--f-display);
  font-size: .68rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--c-accent);
  margin-bottom: 1rem; opacity: .6;
}
.aufgaben-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-dark); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--c-border);
}
.aufgaben-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .875rem; color: var(--c-muted);
  padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.04);
  transition: color .2s;
}
.aufgaben-list li:last-child { border-bottom: none; }
.aufgaben-list li:hover { color: var(--c-text); }
.list-arrow { color: var(--c-accent); font-size: .75rem; margin-top: .25rem; flex-shrink: 0; }

/* ======================================================
   ÜBER MICH
   ====================================================== */
#ueber-mich { background: var(--c-bg); position: relative; overflow: hidden; }
#ueber-mich::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background-image: url('images/adobestock_93078096.jpg');
  background-size: cover; background-position: center; opacity: .04;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 6rem; align-items: center; position: relative; z-index: 1;
}
.about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.about-body p {
  font-size: .975rem; color: var(--c-muted); line-height: 1.9; margin-bottom: 1.4rem;
}
.about-body p:first-child { font-size: 1.1rem; color: var(--c-text); }
.about-body p:last-child { margin-bottom: 0; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.about-stat {
  padding: 1.4rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 6px;
}
.about-stat-n {
  font-family: var(--f-display);
  font-size: 2rem; font-weight: 700;
  color: var(--c-accent); line-height: 1; margin-bottom: .3rem;
}
.about-stat-l {
  font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--c-muted);
}
.about-photo-wrap { position: relative; }
.about-photo-frame {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.14);
}
.about-photo-frame img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
}
.about-photo-accent {
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid rgba(0,146,196,.25); border-radius: 12px; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--c-accent); color: #fff;
  padding: 1.1rem 1.3rem; border-radius: 8px; text-align: center;
}
.about-badge-n { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.about-badge-l { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; }

/* ======================================================
   KONTAKT
   ====================================================== */
#kontakt { background: var(--c-surface); position: relative; overflow: hidden; }
#kontakt::before {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 50%; height: 100%;
  background-image: url('images/adobestock_85774162.jpg');
  background-size: cover; background-position: center; opacity: .04;
}
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start; position: relative; z-index: 1;
}
.kontakt-info-lead {
  font-size: .95rem; color: var(--c-muted); line-height: 1.85; margin-bottom: 3rem;
}
.kontakt-channels { display: flex; flex-direction: column; gap: 1rem; }
.kontakt-channel {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: border-color .25s, box-shadow .25s;
}
.kontakt-channel:hover { border-color: #b5d9ec; box-shadow: 0 6px 24px rgba(0,146,196,.08); }
.ch-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-accent-dim); border: 1px solid #b5d9ec;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ch-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .15rem; }
.ch-value { font-size: .95rem; color: var(--c-dark); font-weight: 500; }
.ch-value a { color: var(--c-dark); }
.ch-value a:hover { color: var(--c-accent); }

.form-title {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--c-dark); margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 600;
}
.form-group input,
.form-group textarea {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: 6px; padding: .85rem 1.1rem;
  font-size: .9rem; font-family: var(--f-body);
  color: var(--c-dark); outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(0,146,196,.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8cc; }
.form-group textarea { min-height: 135px; resize: vertical; }
.btn-send {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1rem 2.5rem; background: var(--c-accent); color: #fff;
  font-family: var(--f-display); font-size: .82rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: 6px; border: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-send:hover { background: #007aaa; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,146,196,.2); }
.btn-send svg { width: 16px; height: 16px; transition: transform .25s; }
.btn-send:hover svg { transform: translateX(4px); }

.wpcf7-response-output {
  margin-top: 1rem; padding: .8rem 1rem;
  font-size: .85rem; border-radius: 6px;
  border: 1px solid var(--c-accent); color: var(--c-accent);
}

/* ======================================================
   FOOTER
   ====================================================== */
#site-footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid; grid-template-columns: 260px 1fr 1fr;
  gap: 4rem; padding: 5rem 0 4rem;
}
.footer-brand-sub {
  font-size: .82rem; color: rgba(255,255,255,.4);
  line-height: 1.7; margin-top: 1rem;
}
.footer-col-title {
  font-family: var(--f-display);
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--c-accent);
  margin-bottom: 1.4rem;
}
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.4);
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: center; gap: .7rem;
  font-size: .85rem; color: rgba(255,255,255,.4); margin-bottom: .7rem;
}
.footer-contact-icon { color: var(--c-accent); font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); letter-spacing: .08em; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--c-accent); }

/* ======================================================
   STATISCHE SEITEN (Impressum / Datenschutz)
   ====================================================== */
.static-page {
  padding: calc(var(--header-h) + 60px) 0 100px;
  min-height: 100vh; background: var(--c-bg);
}
.static-page .container { max-width: 820px; }
.static-page h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600; color: var(--c-dark);
  letter-spacing: .02em; margin-bottom: .6rem;
}
.static-page .page-lead {
  font-size: 1rem; color: var(--c-muted);
  margin-bottom: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.static-page h2 {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 600; color: var(--c-dark);
  letter-spacing: .02em; margin: 2.8rem 0 .9rem;
  padding-left: 1rem; border-left: 3px solid var(--c-accent);
}
.static-page h3 {
  font-family: var(--f-display);
  font-size: 1.15rem; font-weight: 600; color: var(--c-text);
  margin: 1.8rem 0 .6rem;
}
.static-page p { font-size: .975rem; color: var(--c-muted); line-height: 1.85; margin-bottom: 1rem; }
.static-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.static-page ul li { font-size: .975rem; color: var(--c-muted); line-height: 1.75; margin-bottom: .4rem; }
.static-page a { color: var(--c-accent); }
.static-page a:hover { text-decoration: underline; }
.static-page .info-box {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent); border-radius: 6px;
  padding: 1.6rem 1.8rem; margin: 2rem 0;
  font-size: .9rem; color: var(--c-muted); line-height: 1.8;
}
.static-page .info-box strong { color: var(--c-text); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-h); left: 0;
    width: 100%; background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start;
    padding: 2rem; gap: 0;
    transform: translateY(-110%); opacity: 0;
    transition: transform .35s var(--ease), opacity .35s;
    border-bottom: 1px solid var(--c-border);
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-menu a {
    display: block; width: 100%;
    padding: 1rem 0; font-size: 1rem;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-muted) !important;
  }
  .nav-menu a:hover { color: var(--c-dark) !important; }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-cta { margin-top: .8rem; }
  .hero-stats { display: none; }
  .aufgaben-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 360px; margin: 0 auto; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
