/* ======== SUBPAGES CSS ======== */

/* ── NAV OVERRIDES ── */
.nav-back {
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-mid);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-back:hover {
  color: var(--c-green);
}

/* ── CAT BAR ── */
.cat-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: var(--c-surface);
  border-bottom: 2px solid var(--c-border);
  position: sticky;
  top: 64px;
  z-index: 500;
  overflow-x: auto;
}

.cat-bar a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--c-mid);
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.cat-bar a:hover,
.cat-bar a.active {
  color: var(--c-accent);
  background: rgba(58, 175, 101, .1);
}

/* ── SEC HEAD ── */
.sec-head {
  text-align: center;
  margin-bottom: 3rem;
}

.sec-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-accent);
  display: block;
  margin-bottom: .5rem;
}

.sec-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.15;
}

.sec-h2 em {
  font-style: italic;
  color: var(--c-green);
}

.sec-body {
  font-size: 1rem;
  color: var(--c-dim);
  max-width: 500px;
  margin: .8rem auto 0;
  line-height: 1.8;
}

/* ── PROD GRID & CARD ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.prod-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prod-img {
  aspect-ratio: 4/3;
  background: var(--c-surface2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-img-placeholder {
  text-align: center;
  color: var(--c-dim);
  opacity: .5;
}

.ph-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: .5rem;
}

.prod-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--c-accent);
  color: var(--c-white);
  padding: .3rem .8rem;
  font-size: .75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 2;
}

.prod-badge.green {
  background: var(--c-green);
}

.prod-badge.amber {
  background: var(--c-gold);
}

.prod-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-dark);
}

.prod-weight {
  font-size: .85rem;
  color: var(--c-dim);
  margin-top: .2rem;
  margin-bottom: 1.2rem;
}

.price-table {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--c-surface2);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.pt-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--c-mid);
}

.pt-row.highlight {
  font-weight: 600;
  color: var(--c-green);
  border-top: 2px dashed var(--c-border);
  padding-top: .5rem;
  margin-top: .2rem;
}

.pt-price {
  font-weight: 500;
}

/* ── INFO BANNER ── */
.info-banner {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 4rem 2rem;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.info-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(58, 175, 101, .15) 0%, transparent 60%);
  z-index: 0;
}

.info-banner h2,
.info-banner p,
.info-pills,
.info-banner .btn {
  position: relative;
  z-index: 1;
}

.info-banner h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  line-height: 1.2;
}

.info-banner h2 em {
  color: var(--c-accent);
  font-style: italic;
}

.info-banner p {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 1rem auto 2rem;
  font-size: 1rem;
}

.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}

.pill {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

/* ── DIVIDER ── */
.divider {
  border: none;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-border) 0, var(--c-border) 6px, transparent 6px, transparent 12px);
  margin: 4rem auto;
  max-width: 150px;
}

/* ── UEBER UNS CUSTOM ── */
.intro-section {
  text-align: center;
  margin: 4rem 0;
}

.intro-headline {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--c-dark);
}

.intro-headline em {
  color: var(--c-accent);
  font-style: italic;
}

.intro-body {
  color: var(--c-mid);
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  text-align: center;
}

.stat-box {
  background: var(--c-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.stat-box strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--c-green);
}

.stat-box strong em {
  color: var(--c-accent);
  font-style: italic;
}

.stat-box span {
  font-size: .9rem;
  color: var(--c-dim);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

.timeline-section {
  margin: 5rem 0;
  position: relative;
}

.timeline-label {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--c-accent);
  margin-bottom: 2rem;
  display: block;
  text-align: center;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--c-surface2);
  transform: translateX(-50%);
  border-radius: 2px;
}

.tl-entry {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  grid-template-rows: 1fr;
  gap: 2rem;
  align-items: center;
}

.tl-entry .tl-left {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.tl-entry .tl-right {
  grid-column: 3;
  grid-row: 1;
}

.tl-entry:nth-child(even) .tl-left {
  grid-column: 3;
  text-align: left;
}

.tl-entry:nth-child(even) .tl-right {
  grid-column: 1;
  text-align: right;
}

.tl-dot {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 24px;
  height: 24px;
  background: var(--c-surface);
  border: 4px solid var(--c-green);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.tl-entry.current .tl-dot {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(58, 175, 101, .2);
}

.tl-gen {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-dark);
}

.tl-years {
  font-size: .9rem;
  color: var(--c-dim);
  font-weight: 500;
  font-family: var(--font-hand);
}

.tl-badge {
  display: inline-block;
  background: var(--c-surface2);
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  color: var(--c-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .8rem;
}

.tl-badge.current-badge {
  background: rgba(58, 175, 101, .15);
  color: var(--c-accent);
}

.tl-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--c-dark);
  margin-bottom: .8rem;
}

.tl-title em {
  color: var(--c-accent);
  font-style: italic;
}

.tl-text {
  color: var(--c-mid);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.values-section {
  padding: 5rem 0;
  background: var(--c-surface2);
}

.values-head {
  text-align: center;
  margin-bottom: 3rem;
}

.values-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--c-accent);
  display: block;
  margin-bottom: .5rem;
}

.values-h2 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--c-dark);
}

.values-h2 em {
  color: var(--c-green);
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem;
}

.value-tile {
  background: var(--c-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-border);
  transition: all var(--transition);
}

.value-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.value-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: .8rem;
  color: var(--c-dark);
}

.value-text {
  font-size: .95rem;
  color: var(--c-mid);
  line-height: 1.7;
}

.team-section {
  padding: 5rem 0;
}

.team-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-border);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.team-visual {
  font-size: 5rem;
  background: var(--c-surface2);
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.team-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--c-accent);
  display: block;
  margin-bottom: .5rem;
}

.team-name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--c-dark);
}

.team-name em {
  color: var(--c-green);
  font-style: italic;
}

.team-role {
  font-size: .9rem;
  color: var(--c-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: .5rem 0 1.5rem;
}

.team-bio {
  color: var(--c-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.team-contact {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--c-border);
}

.team-contact a {
  font-weight: 600;
  color: var(--c-green);
  transition: color var(--transition);
}

.team-contact a:hover {
  color: var(--c-accent);
}

/* Responsive Subpages */
@media (max-width: 768px) {

  .tl-entry,
  .tl-entry:nth-child(even) {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .tl-entry .tl-left,
  .tl-entry:nth-child(even) .tl-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .tl-entry .tl-right,
  .tl-entry:nth-child(even) .tl-right {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .tl-dot {
    grid-column: 1;
    grid-row: 1/3;
    margin: 0;
    align-self: start;
    margin-top: 5px;
  }

  .timeline::before {
    left: 20px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .team-contact {
    justify-content: center;
    flex-direction: column;
    gap: .8rem;
  }
}

/* ── LEGAL PAGES (Impressum & Datenschutz) ── */
.info-box {
  background: var(--c-surface2);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.info-box h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--c-dark);
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .95rem;
  color: var(--c-mid);
}

.info-row a {
  color: var(--c-accent);
  transition: color var(--transition);
}

.info-row a:hover {
  color: var(--c-green);
}

.toc {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.toc h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--c-dark);
  margin-bottom: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.toc ol {
  list-style: decimal;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.toc a {
  color: var(--c-accent);
  font-size: .9rem;
  transition: color var(--transition);
}

.toc a:hover {
  color: var(--c-green);
}

.highlight-box {
  background: var(--c-green-l);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: .95rem;
  color: var(--c-mid);
}

.highlight-box a {
  color: var(--c-accent);
}

.prose h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--c-dark);
  margin: 2.5rem 0 .8rem;
}

.prose h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--c-dark2);
  margin: 1.5rem 0 .5rem;
}

.prose p {
  color: var(--c-mid);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--c-mid);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.prose ul li,
.prose ol li {
  margin-bottom: .3rem;
}

.prose hr {
  border: none;
  height: 1px;
  background: var(--c-border);
  margin: 2rem 0;
}

.prose a {
  color: var(--c-accent);
  transition: color var(--transition);
}

.prose a:hover {
  color: var(--c-green);
}

/* ── ANIMAL PAGES ── */
.animal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.animal-content.reverse {
  direction: rtl;
}

.animal-content.reverse>* {
  direction: ltr;
}

.animal-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.animal-gallery img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.animal-img-placeholder {
  background: var(--c-surface2);
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--c-dim);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.animal-img-placeholder span {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.animal-img-placeholder p {
  font-size: .9rem;
}

.animal-text p {
  font-size: 1rem;
  color: var(--c-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pill-light {
  display: inline-block;
  background: var(--c-green-l);
  color: var(--c-green);
  padding: .35rem .9rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  margin: .2rem .3rem .2rem 0;
  border: 1px solid rgba(45, 106, 63, .15);
}

/* Animal Photo Grid */
.animal-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.animal-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
  transition: all var(--transition);
}

.animal-photo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}

.animal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TIERE OVERVIEW CARDS ── */
.tiere-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}

.tier-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-accent), var(--c-green));
  z-index: 1;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.tier-card-img {
  aspect-ratio: 16/9;
  background: var(--c-surface2);
  overflow: hidden;
  position: relative;
}

.tier-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.tier-card:hover .tier-card-img img {
  transform: scale(1.04);
}

.tier-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--c-dim);
  opacity: .6;
}

.tier-card-placeholder span {
  font-size: 3.5rem;
}

.tier-card-placeholder small {
  font-size: .85rem;
  margin-top: .5rem;
  font-weight: 500;
}

.tier-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-card-label {
  font-family: var(--font-hand);
  font-size: .9rem;
  color: var(--c-accent);
  font-weight: 500;
  display: block;
  margin-bottom: .3rem;
}

.tier-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .6rem;
}

.tier-card-body p {
  font-size: .92rem;
  color: var(--c-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tier-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.tier-card-features span {
  font-size: .8rem;
  color: var(--c-mid);
  background: var(--c-surface2);
  padding: .3rem .7rem;
  border-radius: var(--radius-sm);
}

.tier-card-link {
  margin-top: auto;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.tier-card:hover .tier-card-link {
  gap: .6rem;
}

/* Responsive Animal Pages */
@media (max-width: 768px) {
  .animal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .animal-content.reverse {
    direction: ltr;
  }

  .animal-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tiere-cards {
    grid-template-columns: 1fr;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .cat-bar {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════════
   BIODIVERSITÄT PAGE
   ═══════════════════════════════════════════════════ */

.bio-alt-bg {
  background: var(--c-surface2);
}

/* ── BIO CARD (icon + content side by side) ── */
.bio-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-accent), #8BC34A, var(--c-accent), var(--c-green));
}

.bio-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.bio-alt-bg .bio-card {
  background: var(--c-white);
}

.bio-card.reverse {
  flex-direction: row-reverse;
}

.bio-card-icon {
  font-size: 4.5rem;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-green-l);
  border-radius: 50%;
  border: 3px solid rgba(45, 106, 63, .15);
  box-shadow: 0 4px 20px rgba(45, 106, 63, .08);
}

.bio-card-label {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--c-accent);
  font-weight: 500;
  display: block;
  margin-bottom: .3rem;
}

.bio-card-title {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.bio-card-title em {
  color: var(--c-green);
  font-style: italic;
}

.bio-card-text {
  font-size: 1rem;
  color: var(--c-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.bio-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── BIO MEASURES GRID ── */
.bio-measures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.bio-measure-tile {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.bio-measure-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}

.bio-measure-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1rem;
}

.bio-measure-tile h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .6rem;
}

.bio-measure-tile p {
  font-size: .92rem;
  color: var(--c-mid);
  line-height: 1.7;
}

/* ── BIO VISION ── */
.bio-vision {
  background: var(--c-dark);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.bio-vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(58, 175, 101, .12) 0%, transparent 65%);
}

.bio-vision-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.bio-vision-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--c-accent);
  display: block;
  margin-bottom: .5rem;
}

.bio-vision-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--c-white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.bio-vision-h2 em {
  color: var(--c-accent);
  font-style: italic;
}

.bio-vision p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── RESPONSIVE BIO ── */
@media (max-width: 768px) {
  .bio-card {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  .bio-card.reverse {
    flex-direction: column;
  }

  .bio-card-icon {
    width: 90px;
    height: 90px;
    font-size: 3.2rem;
  }

  .bio-card-title {
    font-size: 1.6rem;
  }

  .bio-measures-grid {
    grid-template-columns: 1fr;
  }

  .bio-vision {
    padding: 2.5rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════
   KLEINGERÄTE SERVICE PAGE
   ═══════════════════════════════════════════════════ */

/* ── SERVICE GRID ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-tile {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.service-tile:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  filter: grayscale(.15);
  transition: filter var(--transition), transform var(--transition);
}

.service-tile:hover .service-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.service-tile h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .5rem;
}

.service-tile p {
  font-size: .88rem;
  color: var(--c-mid);
  line-height: 1.7;
}

/* ── VORTEILE GRID ── */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vorteil-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}

.vorteil-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-green-l);
  border-radius: 50%;
  border: 2px solid rgba(45, 106, 63, .12);
}

.vorteil-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .3rem;
}

.vorteil-card p {
  font-size: .9rem;
  color: var(--c-mid);
  line-height: 1.7;
}

/* Page hero eyebrow for subpages */
.page-hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-accent);
  display: block;
  margin-bottom: .8rem;
}

/* ── RESPONSIVE KLEINGERÄTE ── */
@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .vorteile-grid {
    grid-template-columns: 1fr;
  }

  .vorteil-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}