/* ============================================================
   FOODLOCKER – styles.css
   Frisch · Modern · Clean
   ============================================================ */

/* --- TOKENS ------------------------------------------------ */
:root {
  --green:      #2a7d50;
  --green-mid:  #36a068;
  --green-lt:   #4dbf80;
  --green-pale: rgba(42,125,80,0.08);
  --green-dim:  rgba(42,125,80,0.18);
  --orange:     #e8851a;
  --orange-lt:  #f49e3a;
  --orange-pale:rgba(232,133,26,0.1);
  --dark:       #121c14;
  --text:       #1a2e1e;
  --text-mid:   #4a5e50;
  --text-lt:    #8a9e90;
  --white:      #ffffff;
  --cream:      #f7faf8;
  --tinted:     #f0f6f2;
  --line:       rgba(26,46,30,0.1);
  --shadow-sm:  0 2px 12px rgba(26,46,30,0.08);
  --shadow-md:  0 8px 36px rgba(26,46,30,0.13);
  --radius:     8px;
  --radius-lg:  16px;
  --trans:      0.22s ease;
  --header-h:   68px;
  --max-w:      1140px;
  --font-h:     'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b:     'Inter', system-ui, sans-serif;
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--text); line-height: 1.7; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* --- HEADER ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 16px rgba(26,46,30,0.06);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; background: var(--green);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-h); font-weight: 800;
  font-size: 0.9rem; color: var(--white); letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-h); font-size: 1.15rem; font-weight: 800;
  color: var(--dark); letter-spacing: -0.03em; line-height: 1.1;
}
.logo-sub {
  display: block; font-family: var(--font-b); font-size: 0.62rem;
  font-weight: 400; letter-spacing: 0.08em; color: var(--text-lt);
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  padding: 0.4rem 0.85rem; font-size: 0.83rem; font-weight: 500;
  color: var(--text-mid); border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--green); background: var(--green-pale);
}
.header-cta {
  margin-left: 0.75rem; padding: 0.5rem 1.2rem;
  background: var(--green); color: var(--white);
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 700;
  border-radius: var(--radius); transition: background var(--trans);
  white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: var(--green-mid); color: var(--white); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text-mid); border-radius: 2px; transition: var(--trans); }

/* --- HERO -------------------------------------------------- */
.hero { background: var(--cream); padding: calc(var(--header-h) + 3.5rem) 0 0; overflow: hidden; }
.hero-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding-bottom: 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-pale); border: 1px solid var(--green-dim);
  padding: 0.35rem 0.85rem; border-radius: 99px; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--dark); line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.hero-accent { color: var(--green); }
.hero-sub {
  font-size: 1.02rem; font-weight: 300; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 2.25rem; max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary {
  padding: 0.8rem 1.8rem; background: var(--green); color: var(--white);
  font-family: var(--font-h); font-weight: 700; font-size: 0.88rem;
  border-radius: var(--radius); transition: background var(--trans);
}
.btn-primary:hover { background: var(--green-mid); color: var(--white); }
.btn-ghost {
  padding: 0.8rem 1.8rem; border: 1.5px solid var(--line);
  color: var(--text-mid); font-size: 0.88rem; font-weight: 500;
  border-radius: var(--radius); transition: border-color var(--trans), color var(--trans);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-full { display: block; text-align: center; width: 100%; margin-top: 1rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-badges li {
  font-size: 0.78rem; font-weight: 500; color: var(--text-mid);
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-badges i { color: var(--green); }
.hero-visual { position: relative; align-self: flex-end; }
.hero-img-frame {
  height: 520px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    var(--hero-img, none),
    linear-gradient(160deg, #2a7d50 0%, #4dbf80 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero-pill {
  position: absolute; background: var(--white);
  border-radius: var(--radius-lg); padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
}
.hero-pill--a { bottom: 2.5rem; left: -1.5rem; }
.hero-pill--b { top: 3rem; right: -1.5rem; }
.pill-num {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 800;
  color: var(--green); letter-spacing: -0.04em; line-height: 1;
}
.pill-label { font-size: 0.72rem; font-weight: 500; color: var(--text-lt); margin-top: 0.2rem; }

/* --- KPI STRIP -------------------------------------------- */
.kpi-strip { background: var(--green); padding: 2.5rem 0; }
.kpi-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.kpi-item { text-align: center; padding: 0 3.5rem; }
.kpi-num {
  display: block; font-family: var(--font-h); font-size: 2.4rem;
  font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.kpi-label {
  display: block; font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem;
}
.kpi-div { width: 1px; height: 44px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* --- SECTIONS COMMON -------------------------------------- */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-tinted { background: var(--tinted); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--green);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--dark); letter-spacing: -0.03em;
  line-height: 1.2; margin-bottom: 0.75rem;
}
.section-sub { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; }

/* --- LEISTUNGEN ------------------------------------------- */
.leistung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.leistung-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
  display: flex; flex-direction: column;
}
.leistung-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.leistung-photo {
  height: 200px; position: relative;
  background:
    linear-gradient(180deg, transparent 40%, rgba(26,46,30,0.55) 100%),
    var(--l-img, none),
    var(--tinted);
  background-size: cover; background-position: center;
}
.leistung-badge {
  position: absolute; bottom: 1rem; left: 1.25rem;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--white); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.leistung-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.leistung-body h3 {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.leistung-body > p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.1rem; flex: 1; }
.leistung-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
.leistung-list li {
  font-size: 0.8rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.5rem;
}
.leistung-list i { color: var(--green); width: 12px; margin-top: 0.24rem; flex-shrink: 0; }
.leistung-link {
  align-self: flex-start; font-size: 0.82rem; font-weight: 600;
  color: var(--green); display: flex; align-items: center; gap: 0.4rem;
  transition: gap var(--trans), color var(--trans); margin-top: auto;
}
.leistung-link:hover { gap: 0.7rem; color: var(--green-mid); }

/* --- KONZEPTE --------------------------------------------- */
.konzept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.konzept-card {
  padding: 1.75rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
}
.konzept-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.konzept-icon {
  width: 48px; height: 48px; background: var(--green-pale);
  border: 1px solid var(--green-dim); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem; margin-bottom: 1.1rem;
}
.konzept-card h3 {
  font-family: var(--font-h); font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.6rem; letter-spacing: -0.02em;
}
.konzept-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; }

/* --- GALERIE ---------------------------------------------- */
.galerie-section { overflow: hidden; height: 480px; }
.galerie-grid {
  display: grid; height: 100%;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.g-item {
  position: relative; overflow: hidden;
  background:
    linear-gradient(rgba(12,18,12,0.35), rgba(12,18,12,0.55)),
    var(--g-img, none),
    var(--tinted);
  background-size: cover; background-position: center;
  cursor: pointer;
}
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,125,80,0.15);
  opacity: 0; transition: opacity var(--trans);
}
.g-item:hover::after { opacity: 1; }
.g-caption {
  position: absolute; bottom: 1rem; left: 1.25rem;
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  letter-spacing: 0.02em; z-index: 2;
}

/* --- ABLAUF ----------------------------------------------- */
.ablauf-steps { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.ablauf-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 1.75rem; padding: 1.75rem 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.ablauf-step:last-child { border-bottom: none; }
.ablauf-connector { display: none; }
.step-num {
  font-family: var(--font-h); font-size: 2.4rem; font-weight: 800;
  color: var(--green); opacity: 0.2; letter-spacing: -0.06em;
  line-height: 1; padding-top: 0.1rem;
}
.step-body h3 {
  font-family: var(--font-h); font-size: 1.02rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.step-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* --- REFERENZEN ------------------------------------------- */
.referenz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.ref-card {
  padding: 1.5rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans);
}
.ref-card:hover { box-shadow: var(--shadow-md); }
.ref-icon {
  width: 44px; height: 44px; background: var(--orange-pale);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--orange); font-size: 1.05rem; margin-bottom: 0.9rem;
}
.ref-card h4 {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.ref-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }
.testimonial {
  background: var(--green-pale); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 2.5rem; max-width: 780px; margin: 0 auto;
}
.testimonial p {
  font-size: 1.05rem; font-style: italic; color: var(--text);
  line-height: 1.75; margin-bottom: 0.75rem;
}
.testimonial footer { font-size: 0.82rem; font-weight: 600; color: var(--green); }

/* --- NACHHALTIGKEIT --------------------------------------- */
.nachhaltig-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.nw-items { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.nw-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.nw-item:last-child { border-bottom: none; }
.nw-num {
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 800;
  color: var(--green); letter-spacing: -0.04em; line-height: 1; white-space: nowrap;
  flex-shrink: 0; min-width: 80px;
}
.nw-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; padding-top: 0.2rem; }
.nachhaltig-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nwc-card {
  padding: 1.4rem; background: var(--tinted); border: 1px solid var(--line);
  border-radius: var(--radius-lg); transition: box-shadow var(--trans);
}
.nwc-card:hover { box-shadow: var(--shadow-md); }
.nwc-icon {
  width: 40px; height: 40px; background: var(--green-pale); border: 1px solid var(--green-dim);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.95rem; margin-bottom: 0.9rem;
}
.nwc-card h4 {
  font-family: var(--font-h); font-size: 0.88rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.nwc-card p { font-size: 0.81rem; color: var(--text-mid); line-height: 1.7; }

/* --- KONTAKT ---------------------------------------------- */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.kinfo-blocks { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.kinfo-row { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.9rem; }
.kinfo-row i { color: var(--green); width: 16px; text-align: center; flex-shrink: 0; margin-top: 0.18rem; }
.kinfo-row strong { display: block; font-weight: 600; color: var(--dark); }
.kinfo-row a { color: var(--green); }
.kinfo-row a:hover { color: var(--green-mid); }
.kinfo-row span { color: var(--text-lt); font-size: 0.82rem; }
.hygiene-badge {
  display: flex; gap: 0.9rem; align-items: flex-start;
  margin-top: 2rem; padding: 1rem 1.25rem;
  background: var(--tinted); border: 1px solid var(--line);
  border-radius: var(--radius-lg); font-size: 0.82rem;
}
.hygiene-badge i { color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.hygiene-badge strong { display: block; font-family: var(--font-h); font-weight: 700; color: var(--dark); font-size: 0.88rem; margin-bottom: 0.2rem; }
.hygiene-badge span { color: var(--text-mid); }

/* Form */
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  letter-spacing: 0.02em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); font-family: var(--font-b);
  font-size: 0.9rem; color: var(--text); background: var(--white);
  outline: none; transition: border-color var(--trans);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lt); }
.btn-submit {
  width: 100%; padding: 0.95rem 1.5rem;
  background: var(--green); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: var(--font-h); font-size: 0.95rem; font-weight: 700;
  letter-spacing: -0.01em; transition: background var(--trans);
}
.btn-submit:hover { background: var(--green-mid); }
.form-note { font-size: 0.73rem; color: var(--text-lt); }

/* --- FOOTER ----------------------------------------------- */
.site-footer { background: var(--dark); padding: 3.5rem 2rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 3rem; margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-mark {
  width: 48px; height: 48px; background: var(--green);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-h); font-weight: 800;
  font-size: 0.95rem; color: var(--white); flex-shrink: 0;
}
.footer-name { font-family: var(--font-h); font-weight: 800; font-size: 1.05rem; color: var(--white); letter-spacing: -0.03em; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-cols { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 0.25rem; }
.footer-col a, .footer-col span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.74rem; color: rgba(255,255,255,0.28); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.18); }
.footer-copy a { color: rgba(77,191,128,0.5); }
.footer-copy a:hover { color: var(--green-lt); }

/* --- DISCLAIMER -------------------------------------------- */
.escape-disclaimer { background: #030303; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.escape-disclaimer__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.4);
  line-height: 1.65; font-family: var(--font-b);
}
.escape-disclaimer__inner i { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* --- FADE-IN ---------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .leistung-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .konzept-grid { grid-template-columns: repeat(2, 1fr); }
  .referenz-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .nachhaltig-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--white); padding: 1.5rem 2rem; gap: 0.25rem;
    z-index: 199; border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .site-nav.open .nav-link { padding: 0.85rem 1rem; font-size: 1rem; color: var(--text); }
  .header-cta { display: none; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .kpi-inner { flex-wrap: wrap; gap: 0; }
  .kpi-item { padding: 1rem 1.5rem; width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .kpi-div { display: none; }
  .konzept-grid { grid-template-columns: 1fr; }
  .galerie-section { height: 560px; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .g-item--tall { grid-row: span 1; }
  .g-item--wide { grid-column: span 2; }
  .referenz-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-cols { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding-top: calc(var(--header-h) + 2rem); }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .galerie-section { height: auto; }
  .galerie-grid { grid-template-columns: 1fr; height: auto; gap: 3px; }
  .g-item { height: 200px; grid-row: auto !important; grid-column: auto !important; }
}
