/*
Theme Name: Fugro Onepager
Theme URI: https://fugro.store
Author: Fugro Berlin
Description: One-Pager Theme für Fugro Berlin – nachhaltige Edelpilz-Farm & Food Truck. Migriert aus dem Figma-Wireframe. Zweisprachig (DE/EN) per Sprachumschalter.
Version: 1.0.0
Requires PHP: 7.4
License: Proprietary
Text Domain: fugro-onepager
*/

/* ==========================================================
   Basis
   ========================================================== */
:root {
  --accent: #C9DABF;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 65px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; }
a { color: inherit; }

h1, h2, h3, h4, p { margin: 0; }

.container { max-width: 80rem; margin: 0 auto; }

/* Sektionen */
.section { padding: 2rem 1rem; }
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--black { background: var(--black); color: var(--white); }
.section--sage  { background: var(--accent); }

@media (min-width: 640px)  { .section { padding: 2.5rem 1.5rem; } }
@media (min-width: 768px)  { .section { padding: 3rem 2rem; } }
@media (min-width: 1024px) { .section { padding: 3rem 4rem; } }

/* Sektions-Kopf mit Linien */
.sec-head { text-align: center; margin-bottom: 2rem; }
.sec-head__rule {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 1.5rem;
}
.sec-head__rule::before, .sec-head__rule::after {
  content: ''; height: 4px; width: 3rem; background: var(--accent); flex-shrink: 0;
}
.sec-head__rule--white::before, .sec-head__rule--white::after { background: var(--white); }
.sec-head__rule--black::before, .sec-head__rule--black::after { background: var(--black); }

.sec-head h2 {
  font-size: 28px; font-weight: 700; text-transform: uppercase;
}
.sec-head .subtitle {
  font-size: 16px; font-weight: 700; line-height: 1.6;
  max-width: 48rem; margin: 0 auto; padding: 0 1rem;
  color: rgba(0,0,0,.8);
}
.section--black .sec-head .subtitle { color: rgba(255,255,255,.8); }

@media (min-width: 640px) {
  .sec-head__rule { gap: 1.5rem; }
  .sec-head__rule::before, .sec-head__rule::after { width: 4rem; }
  .sec-head h2 { font-size: 32px; }
  .sec-head .subtitle { font-size: 18px; }
}
@media (min-width: 768px) {
  .sec-head h2 { font-size: 36px; }
  .sec-head .subtitle { font-size: 20px; }
}

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Karten */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow .3s;
}
.card:hover { box-shadow: 0 10px 25px rgba(0,0,0,.1); }
@media (min-width: 640px) { .card { padding: 2rem; } }

.card--dark {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px); border-radius: var(--radius);
  padding: 1.5rem; transition: background .3s;
}
.card--dark:hover { background: rgba(255,255,255,.1); }
@media (min-width: 768px) { .card--dark { padding: 2rem; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.5rem; border-radius: 8px; font-weight: 500;
  min-height: 48px; font-size: .875rem; text-decoration: none;
  transition: all .3s; border: 2px solid transparent;
}
@media (min-width: 640px) { .btn { font-size: 1rem; padding: .75rem 2rem; } }
.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { background: #1f2937; }
.btn--outline-black { border-color: var(--black); color: var(--black); background: transparent; }
.btn--outline-black:hover { background: var(--black); color: var(--white); }
.btn--sage { background: var(--accent); color: var(--black); font-weight: 700; text-transform: uppercase; }
.btn--sage:hover { background: var(--white); box-shadow: 0 10px 25px rgba(0,0,0,.15); }
.btn--white { background: var(--white); color: var(--black); font-weight: 700; text-transform: uppercase; }
.btn--white:hover { background: var(--accent); }

/* Punkt-Aufzählungen */
.dot-item { display: flex; align-items: flex-start; gap: .75rem; }
.dot-item::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-top: 8px; flex-shrink: 0;
}
.dot-item--center { align-items: center; }
.dot-item--center::before { margin-top: 0; }

/* Nummern-/Icon-Kreise */
.num-circle {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--accent); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .875rem; flex-shrink: 0;
}
.icon-circle {
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
@media (min-width: 640px) { .icon-circle { width: 4rem; height: 4rem; margin-bottom: 1rem; } }
.icon-square {
  width: 3rem; height: 3rem; border-radius: 8px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-square .inner { width: 1.5rem; height: 1.5rem; background: var(--black); border-radius: 2px; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--black); border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
}
@media (min-width: 640px)  { .site-header__bar { padding: .75rem 1.5rem; } }
@media (min-width: 768px)  { .site-header__bar { padding: .75rem 4rem; } }
.site-header__logo { height: 40px; width: auto; cursor: pointer; }
@media (min-width: 640px) { .site-header__logo { height: 48px; } }
@media (min-width: 768px) { .site-header__logo { height: 53px; } }

.nav-desktop { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-desktop button, .nav-desktop a {
  color: var(--white); font-size: .875rem; transition: color .2s; text-decoration: none;
}
.nav-desktop button:hover { color: var(--accent); }

.lang-btn {
  color: var(--white); font-size: .875rem;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.2); padding: .375rem .75rem;
  border-radius: 8px; transition: color .2s;
}
.lang-btn:hover { color: var(--accent); }
.lang-btn svg { width: 16px; height: 16px; }

.mobile-controls { display: flex; align-items: center; gap: .75rem; }
@media (min-width: 768px) { .mobile-controls { display: none; } }
.mobile-controls .lang-btn { font-size: .75rem; min-height: 44px; font-weight: 700; }
.menu-toggle {
  color: var(--white); min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle:hover { color: var(--accent); }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
body.menu-open .menu-toggle .icon-open { display: none; }
body.menu-open .menu-toggle .icon-close { display: block; }

.mobile-menu {
  position: fixed; top: var(--header-h); right: 0; bottom: 0;
  width: 100%; background: var(--black);
  border-left: 1px solid rgba(255,255,255,.1);
  transform: translateX(100%); transition: transform .3s ease-in-out;
  z-index: 49;
}
@media (min-width: 640px) { .mobile-menu { width: 20rem; } }
@media (min-width: 768px) { .mobile-menu { display: none; } }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: .5rem; padding: 1.5rem; }
.mobile-menu button {
  color: var(--white); font-size: 1rem; text-align: left;
  padding: .75rem 1rem; border-radius: 8px; min-height: 48px;
  transition: all .2s;
}
.mobile-menu button:hover { color: var(--accent); background: rgba(255,255,255,.05); }

.menu-overlay {
  display: none; position: fixed; inset: 0; top: var(--header-h);
  background: rgba(0,0,0,.8); backdrop-filter: blur(8px); z-index: 48;
}
body.menu-open .menu-overlay { display: block; }
@media (min-width: 768px) { body.menu-open .menu-overlay { display: none; } }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 1rem 3rem; background-color: var(--black);
  background-size: cover; background-position: center top 200px; background-repeat: no-repeat;
}
@media (min-width: 640px) { .hero { padding-top: 90px; } }
@media (min-width: 768px) { .hero { padding-top: 100px; } }
.hero__logo { height: 4rem; width: auto; margin: 0 auto 1.5rem; }
@media (min-width: 640px)  { .hero__logo { height: 5rem; margin-bottom: 2rem; } }
@media (min-width: 768px)  { .hero__logo { height: 6rem; } }
@media (min-width: 1024px) { .hero__logo { height: 8rem; } }
.hero__content { text-align: center; width: 100%; margin-top: 6rem; }
@media (min-width: 640px)  { .hero__content { margin-top: 9rem; } }
@media (min-width: 768px)  { .hero__content { margin-top: 12rem; } }
@media (min-width: 1024px) { .hero__content { margin-top: 18rem; } }
.hero__box {
  background: rgba(0,0,0,.85); border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius); padding: 1.5rem;
  width: fit-content; max-width: 90%; margin: 0 auto 2rem;
}
@media (min-width: 640px) { .hero__box { padding: 2rem; max-width: none; margin-bottom: 3rem; } }
.hero__box h1 {
  color: var(--accent); font-size: 18px; font-weight: 700;
  text-transform: uppercase; text-align: center;
}
@media (min-width: 640px) { .hero__box h1 { font-size: 20px; } }
@media (min-width: 768px) { .hero__box h1 { font-size: 24px; } }
.hero__ctas {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 0 1rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; gap: 1.5rem; } }
.hero__ctas .btn { width: 100%; padding: 1rem 2rem; }
@media (min-width: 640px) { .hero__ctas .btn { width: auto; padding: 1rem 2.5rem; } }

/* ==========================================================
   What we do
   ========================================================== */
.feature-card .bar {
  height: 8px; width: 3rem; background: var(--accent);
  border-radius: 999px; margin-bottom: 1rem;
}
.feature-card h3 { font-weight: 700; text-transform: uppercase; margin-bottom: .75rem; }
.feature-card p { color: var(--gray-600); line-height: 1.6; font-size: .875rem; }
@media (min-width: 640px) { .feature-card p { font-size: 1rem; } }

.wide-img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 640px) { .wide-img { height: 220px; } }
@media (min-width: 768px) { .wide-img { height: 260px; } }

.process-card h2 { font-weight: 700; text-transform: uppercase; font-size: 1.25rem; margin-bottom: 1rem; }
.process-card p { line-height: 1.6; font-size: .875rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .process-card p { font-size: 1rem; } }
.process-card .dot-item { margin-bottom: .75rem; font-size: .875rem; }
@media (min-width: 640px) { .process-card .dot-item { font-size: 1rem; } }

.gallery-img { width: 100%; height: 15rem; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 640px) { .gallery-img { height: 18rem; } }

/* ==========================================================
   Showcase
   ========================================================== */
.show-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem; box-shadow: 0 10px 15px rgba(0,0,0,.1);
  transition: box-shadow .5s; height: 100%;
  display: flex; flex-direction: column; overflow: hidden;
}
.show-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,.25); }
@media (min-width: 640px) { .show-card { padding: 1.5rem; } }
.show-card__img-wrap { overflow: hidden; border-radius: var(--radius); }
.show-card img.variety { width: 100%; height: 16rem; object-fit: cover; border-radius: var(--radius); transition: transform .5s; }
.show-card:hover img.variety { transform: scale(1.05); }
.show-card__title {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; margin: 1rem 0 .5rem;
}
.show-card__title::before, .show-card__title::after {
  content: ''; height: 4px; width: 2rem; background: var(--accent); flex-shrink: 0;
}
@media (min-width: 640px) { .show-card__title::before, .show-card__title::after { width: 4rem; } }
.show-card__title h3 { font-weight: 700; white-space: nowrap; font-size: .875rem; }
@media (min-width: 640px) { .show-card__title h3 { font-size: 1rem; } }
.show-card p.desc { color: var(--gray-600); line-height: 1.6; font-size: .75rem; }
@media (min-width: 640px) { .show-card p.desc { font-size: .875rem; } }
.show-card__tags { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; }
@media (min-width: 640px) { .show-card__tags { flex-direction: row; gap: 1rem; margin-top: 1rem; } }
.show-card__tags .dot-item { font-size: .75rem; color: var(--gray-500); }
@media (min-width: 640px) { .show-card__tags .dot-item { font-size: .875rem; } }

.promise { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--gray-200); }
@media (min-width: 640px) { .promise { padding: 2rem; } }
.promise__inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.promise h2 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 700; }
.promise h4 { margin-bottom: .5rem; font-size: .875rem; font-weight: 600; }
@media (min-width: 640px) { .promise h4 { font-size: 1rem; } }
.promise p { color: var(--gray-600); font-size: .75rem; }
@media (min-width: 640px) { .promise p { font-size: .875rem; } }
.promise .icon-circle img { width: 1.25rem; height: 1.25rem; }
@media (min-width: 640px) { .promise .icon-circle img { width: 1.5rem; height: 1.5rem; } }

/* ==========================================================
   How we grow
   ========================================================== */
.grow-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; align-items: start; }
@media (min-width: 1024px) { .grow-grid { grid-template-columns: repeat(2, 1fr); } }
.grow-steps { display: flex; flex-direction: column; gap: .75rem; }
.grow-step { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.25rem; backdrop-filter: blur(4px); }
.grow-step .num-circle { margin-bottom: .75rem; }
.grow-step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; color: var(--white); }
.grow-step p { color: rgba(255,255,255,.7); line-height: 1.6; }
.grow-img { position: relative; overflow: hidden; border-radius: var(--radius); border: 2px solid rgba(255,255,255,.2); }
.grow-img img { width: 100%; height: 360px; object-fit: cover; transition: transform .5s; }
.grow-img:hover img { transform: scale(1.05); }
.grow-img__caption {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  border-radius: 8px; padding: .75rem;
}
.grow-img__caption p { font-size: .75rem; font-weight: 500; color: var(--white); }

/* ==========================================================
   In the kitchen
   ========================================================== */
.dish-card {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom right, var(--gray-50), var(--white));
  border: 2px solid var(--accent); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: box-shadow .3s;
}
@media (min-width: 640px) { .dish-card { padding: 2rem; } }
.dish-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.dish-card__overlay {
  position: absolute; inset: 0; z-index: 10; pointer-events: none;
  background: rgba(0,0,0,.9); opacity: 0; transition: opacity .5s;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.dish-card:hover .dish-card__overlay { opacity: 1; }
.dish-card__overlay img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.dish-card__overlay img.contain { object-fit: contain; }
.dish-card .letter {
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem; margin-bottom: .75rem;
}
@media (min-width: 640px) { .dish-card .letter { width: 4rem; height: 4rem; font-size: 1.5rem; margin-bottom: 1rem; } }
.dish-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
@media (min-width: 640px) { .dish-card h3 { font-size: 1.875rem; } }
.dish-card .dish-sub { color: var(--accent); font-weight: 600; font-size: 1rem; margin-bottom: 1rem; filter: brightness(.75); }
@media (min-width: 640px) { .dish-card .dish-sub { font-size: 1.125rem; } }
.dish-card .d1 { font-size: 1rem; line-height: 1.6; margin-bottom: 1rem; }
@media (min-width: 640px) { .dish-card .d1 { font-size: 1.125rem; } }
.dish-card .d2 { font-size: .875rem; line-height: 1.6; color: var(--gray-600); }
@media (min-width: 640px) { .dish-card .d2 { font-size: 1rem; } }

.core-values {
  background: linear-gradient(to bottom right, var(--gray-50), var(--white));
  border: 2px solid var(--accent); border-radius: var(--radius-lg);
  padding: 1.5rem; max-width: 56rem; margin: 0 auto;
  transition: box-shadow .3s;
}
@media (min-width: 640px) { .core-values { padding: 2rem; } }
@media (min-width: 768px) { .core-values { padding: 3rem; } }
.core-values:hover { box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.core-values p { font-size: 1rem; line-height: 1.6; text-align: center; }
@media (min-width: 640px) { .core-values p { font-size: 1.125rem; } }

/* ==========================================================
   The truck
   ========================================================== */
.truck-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 640px)  { .truck-img { height: 400px; } }
@media (min-width: 768px)  { .truck-img { height: 500px; } }
@media (min-width: 1024px) { .truck-img { height: 533px; } }
.truck-img-wrap { position: relative; }
.truck-img-wrap .overlay-label {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,.8); color: var(--white);
  padding: .5rem 1rem; border-radius: 8px;
  font-weight: 500; font-size: .75rem;
}
@media (min-width: 640px) { .truck-img-wrap .overlay-label { top: 1.5rem; left: 1.5rem; padding: .75rem 1.5rem; font-size: .875rem; } }

.truck-text { text-align: center; margin-bottom: 2rem; padding: 0 1rem; }
.truck-text .lead { font-weight: 700; font-size: 16px; line-height: 1.6; margin-bottom: 1.5rem; color: rgba(0,0,0,.8); }
@media (min-width: 640px) { .truck-text .lead { font-size: 18px; } }
@media (min-width: 768px) { .truck-text .lead { font-size: 20px; } }
.truck-text .body-copy { text-align: left; max-width: 48rem; margin: 0 auto; }
.truck-text .body-copy p { font-size: 14px; line-height: 1.6; margin-bottom: 1rem; }
@media (min-width: 640px) { .truck-text .body-copy p { font-size: 16px; } }
@media (min-width: 768px) { .truck-text .body-copy p { font-size: 18px; } }

.map-wrap { background: var(--gray-100); border-radius: 8px; overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: 0; }

.book-box {
  background: var(--accent); border-radius: 8px;
  padding: 1.5rem 1.25rem; text-align: center;
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
@media (min-width: 640px) { .book-box { padding: 2rem 1.5rem; } }
@media (min-width: 1024px) { .book-box { padding: 2rem 4rem; } }
.book-box h3 { font-size: 1.125rem; text-transform: uppercase; font-weight: 700; margin-bottom: .75rem; }
@media (min-width: 640px) { .book-box h3 { font-size: 1.25rem; } }
@media (min-width: 768px) { .book-box h3 { font-size: 1.5rem; } }
.book-box p { line-height: 1.6; font-size: .875rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .book-box p { font-size: 1rem; margin-bottom: 2rem; } }
.book-box__btns { display: flex; flex-direction: column; gap: .75rem; justify-content: center; }
@media (min-width: 640px) { .book-box__btns { flex-direction: row; gap: 1rem; } }

/* ==========================================================
   Mission
   ========================================================== */
.mission-box {
  background: rgba(255,255,255,.4); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-lg);
  padding: 1.25rem; text-align: center; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .mission-box { padding: 1.5rem; margin-bottom: 2rem; } }
.mission-box p { line-height: 1.6; font-size: .875rem; margin-bottom: .75rem; }
.mission-box p:last-child { margin-bottom: 0; color: rgba(0,0,0,.8); }
@media (min-width: 640px) { .mission-box p { font-size: 1rem; } }

.mission-goal {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 2rem; max-width: 64rem; margin: 0 auto 1.5rem; text-align: center;
}
@media (min-width: 640px)  { .mission-goal { padding: 2.5rem; margin-bottom: 2rem; } }
@media (min-width: 768px)  { .mission-goal { padding: 3rem; } }
@media (min-width: 1024px) { .mission-goal { padding: 4rem; } }
.mission-goal p { color: var(--white); font-size: 18px; line-height: 1.6; }
@media (min-width: 640px)  { .mission-goal p { font-size: 20px; } }
@media (min-width: 768px)  { .mission-goal p { font-size: 24px; } }
@media (min-width: 1024px) { .mission-goal p { font-size: 28px; } }

.circular {
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-lg);
  padding: 1.25rem;
}
@media (min-width: 640px) { .circular { padding: 1.5rem; } }
@media (min-width: 768px) { .circular { padding: 2rem; } }
.circular h2 { text-align: center; text-transform: uppercase; font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .circular h2 { font-size: 1.25rem; margin-bottom: 2rem; } }
@media (min-width: 768px) { .circular h2 { font-size: 1.5rem; } }
.circular__flow {
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 768px) { .circular__flow { flex-direction: row; gap: 2rem; } }
.circular__step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.circular__step .dot { width: 12px; height: 12px; background: var(--black); border-radius: 50%; margin-bottom: .5rem; }
.circular__step span { font-size: .75rem; }
@media (min-width: 640px) { .circular__step span { font-size: .875rem; } }
.circular__arrow { color: rgba(0,0,0,.4); font-size: 1.25rem; transform: rotate(90deg); }
@media (min-width: 768px) { .circular__arrow { transform: none; } }

/* ==========================================================
   Who we are
   ========================================================== */
#who-we-are .sec-head h2 { font-size: 36px; }
@media (min-width: 768px) { #who-we-are .sec-head h2 { font-size: 48px; } }
#who-we-are .sec-head .subtitle { font-size: 20px; }
@media (min-width: 768px) { #who-we-are .sec-head .subtitle { font-size: 1.25rem; } }

.team-photo { max-width: 56rem; margin: 0 auto 1.5rem; }
.team-photo img { width: 100%; height: 16rem; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 768px) { .team-photo img { height: 24rem; border-radius: var(--radius-lg); } }
.founders-title { text-align: center; font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .founders-title { font-size: 1.875rem; margin-bottom: 2rem; } }

.founder .avatar {
  width: 4rem; height: 4rem; border-radius: 50%; background: var(--accent);
  color: var(--black); font-weight: 700; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: .75rem;
}
@media (min-width: 768px) { .founder .avatar { width: 5rem; height: 5rem; font-size: 1.5rem; margin-bottom: 1rem; } }
.founder h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
@media (min-width: 768px) { .founder h3 { font-size: 1.5rem; } }
.founder .role { color: var(--accent); font-weight: 500; margin-bottom: .75rem; }
.founder p { color: rgba(255,255,255,.9); line-height: 1.6; font-size: .875rem; margin-bottom: .75rem; }
@media (min-width: 768px) { .founder p { font-size: 1rem; } }
.founder p.em { font-style: italic; }
.founder .dot-item { color: rgba(255,255,255,.7); font-size: .875rem; margin-bottom: .5rem; }

.partnership {
  max-width: 56rem; margin: 1.5rem auto 0;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.5rem;
  backdrop-filter: blur(4px); text-align: center;
}
@media (min-width: 768px) { .partnership { padding: 3rem; border-radius: var(--radius-lg); } }
.partnership p { font-size: 1rem; line-height: 1.6; color: var(--white); margin-bottom: 1rem; }
@media (min-width: 768px) { .partnership p { font-size: 1.25rem; } }
.partnership p.em { font-style: italic; color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 0; }
@media (min-width: 768px) { .partnership p.em { font-size: 1.125rem; } }

.values-grid { margin-top: 2rem; }
@media (min-width: 768px) { .values-grid { margin-top: 3rem; } }
.value-item { text-align: center; }
.value-item .icon-square { margin: 0 auto 1rem; }
.value-item h4 { font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.value-item p { color: rgba(255,255,255,.7); font-size: .875rem; }

/* ==========================================================
   Impact & future
   ========================================================== */
.timeline-title { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.phase-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.phase-head h4 { font-weight: 600; }
.phase p { color: var(--gray-600); line-height: 1.6; }

/* ==========================================================
   Partners
   ========================================================== */
#our-partners .sec-head .subtitle { font-style: italic; }
.partners-main { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
@media (min-width: 1024px) { .partners-main { grid-template-columns: 2fr 3fr 2fr; } }
.partners-main__logo { display: flex; justify-content: center; align-items: flex-start; }
.partners-main__logo img { width: 66%; object-fit: contain; }
.partners-main__text p { line-height: 1.6; color: rgba(0,0,0,.9); margin-bottom: 1.5rem; }
.video-placeholder {
  width: 100%; height: 24rem; border-radius: var(--radius);
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.video-placeholder .inner { text-align: center; color: rgba(0,0,0,.6); }
.video-placeholder svg { width: 4rem; height: 4rem; margin: 0 auto 1rem; }
.video-placeholder p { text-transform: uppercase; }
.video-caption { color: rgba(0,0,0,.6); font-style: italic; margin-top: 1rem; }

.partners-about { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-bottom: 2rem; }
@media (min-width: 1024px) { .partners-about { grid-template-columns: repeat(2, 1fr); } }
.partners-about__text h2 { font-weight: 700; font-size: 1.5rem; margin-bottom: 1.5rem; }
.partners-about__text p { line-height: 1.6; color: rgba(0,0,0,.9); margin-bottom: 1.5rem; }

.carousel { position: relative; }
.carousel img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 768px) { .carousel img { height: 600px; } }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: var(--white);
  padding: .5rem; border-radius: 50%;
  opacity: 0; transition: opacity .3s, background .2s;
  display: flex; align-items: center; justify-content: center;
}
.carousel:hover .carousel__btn { opacity: 1; }
@media (hover: none) { .carousel__btn { opacity: 1; } }
.carousel__btn:hover { background: rgba(0,0,0,.7); }
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }
.carousel__btn svg { width: 1.5rem; height: 1.5rem; }
.carousel__dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem;
}
.carousel__dots button {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.5); transition: all .3s;
}
.carousel__dots button:hover { background: rgba(255,255,255,.75); }
.carousel__dots button.active { background: var(--white); width: 1.5rem; }

.partners-bottom { background: var(--accent); border-radius: var(--radius); padding: 2rem; max-width: 56rem; margin: 0 auto; text-align: center; }

/* ==========================================================
   Find us
   ========================================================== */
.findus-intro { display: flex; justify-content: center; margin-bottom: 2rem; }
.findus-intro > div { max-width: 42rem; width: 100%; }
.findus-intro .card--dark { text-align: center; }
.findus-intro p { color: rgba(255,255,255,.8); line-height: 1.5; font-size: 1.125rem; }
@media (min-width: 640px)  { .findus-intro p { font-size: 1.25rem; } }
@media (min-width: 768px)  { .findus-intro p { font-size: 1.5rem; } }
@media (min-width: 1024px) { .findus-intro p { font-size: 32px; } }

.contact-card { border-radius: var(--radius-lg); }
.contact-card__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .contact-card__head { gap: 1rem; margin-bottom: 1.5rem; } }
.contact-card__head .icon-square { width: 2.5rem; height: 2.5rem; }
@media (min-width: 640px) { .contact-card__head .icon-square { width: 3rem; height: 3rem; } }
.contact-card__head svg { width: 1.25rem; height: 1.25rem; color: var(--black); }
@media (min-width: 640px) { .contact-card__head svg { width: 1.5rem; height: 1.5rem; } }
.contact-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
@media (min-width: 640px) { .contact-card h3 { font-size: 1.25rem; } }
.contact-card .sub { color: rgba(255,255,255,.6); font-size: .75rem; }
@media (min-width: 640px) { .contact-card .sub { font-size: .875rem; } }
.contact-card a.link {
  color: var(--accent); font-size: 1rem; text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
  word-break: break-all; transition: color .2s;
}
@media (min-width: 640px) { .contact-card a.link { font-size: 1.125rem; } }
.contact-card a.link:hover { color: var(--white); }

.service-card { text-align: center; padding: 1.25rem; }
@media (min-width: 640px) { .service-card { padding: 1.5rem; } }
.service-card .icon-square { margin: 0 auto .75rem; width: 2.5rem; height: 2.5rem; }
@media (min-width: 640px) { .service-card .icon-square { width: 3rem; height: 3rem; margin-bottom: 1rem; } }
.service-card .icon-square .inner { width: 1.25rem; height: 1.25rem; }
@media (min-width: 640px) { .service-card .icon-square .inner { width: 1.5rem; height: 1.5rem; } }
.service-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
@media (min-width: 640px) { .service-card h4 { font-size: 1.125rem; } }
.service-card p { color: rgba(255,255,255,.7); font-size: .75rem; }
@media (min-width: 640px) { .service-card p { font-size: .875rem; } }

.findus-cta {
  background: var(--accent); border-radius: var(--radius-lg);
  padding: 1.5rem; max-width: 48rem; margin: 0 auto; text-align: center;
}
@media (min-width: 640px) { .findus-cta { padding: 2rem; } }
@media (min-width: 768px) { .findus-cta { padding: 3rem; } }
.findus-cta .cta-title { font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
@media (min-width: 640px) { .findus-cta .cta-title { font-size: 1.5rem; margin-bottom: 1.5rem; } }
.findus-cta .cta-desc { font-size: 1rem; color: rgba(0,0,0,.8); margin-bottom: 1.5rem; }
@media (min-width: 640px) { .findus-cta .cta-desc { font-size: 1.125rem; margin-bottom: 2rem; } }
.findus-cta__btns { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .findus-cta__btns { flex-direction: row; align-items: center; } }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  padding: 3rem 1rem; background: var(--black);
  border-top: 1px solid rgba(255,255,255,.1); color: var(--white);
}
@media (min-width: 640px)  { .site-footer { padding: 3.5rem 1.5rem; } }
@media (min-width: 768px)  { .site-footer { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .site-footer { padding: 4rem 4rem; } }
.site-footer__cols { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 2rem; }
@media (min-width: 768px) { .site-footer__cols { flex-direction: row; gap: 2.5rem; } }
.site-footer__links { display: flex; flex-direction: column; gap: .25rem; }
.site-footer__links button, .site-footer__links a {
  color: rgba(255,255,255,.7); font-size: .875rem; text-align: left;
  padding: .5rem 0; min-height: 44px;
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; transition: color .2s;
}
.site-footer__links button:hover, .site-footer__links a:hover { color: var(--white); }
.site-footer__links svg { width: 1rem; height: 1rem; }
.site-footer__links .loc { color: rgba(255,255,255,.7); font-size: .875rem; }
.site-footer__meta { text-align: left; }
@media (min-width: 768px) { .site-footer__meta { text-align: right; } }
.site-footer__meta .copy { font-size: .75rem; margin-bottom: .25rem; }
.site-footer__meta .tag { font-style: italic; font-size: .875rem; color: var(--accent); }

/* ==========================================================
   Legal-Modal (Sheet)
   ========================================================== */
.sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 98; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sheet {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 99;
  width: 100%; max-width: 100%; background: var(--white);
  overflow-y: auto; padding: 1.5rem;
  transform: translateX(100%); transition: transform .3s ease-in-out;
  color: var(--black);
}
@media (min-width: 640px) { .sheet { max-width: 42rem; } }
body.sheet-open .sheet-overlay { opacity: 1; pointer-events: auto; }
body.sheet-open .sheet { transform: translateX(0); }
body.sheet-open { overflow: hidden; }
.sheet__close {
  position: absolute; top: 1rem; right: 1rem;
  color: var(--black); opacity: .7; transition: opacity .2s;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.sheet__close:hover { opacity: 1; }
.sheet__close svg { width: 20px; height: 20px; }
.sheet h2.sheet-title { text-transform: uppercase; font-size: 1.125rem; font-weight: 600; margin-bottom: 2rem; }
.legal-page { display: none; }
.legal-page.active { display: block; }
.legal-page section { margin-bottom: 2.5rem; }
.legal-page h3 { text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.legal-page p { line-height: 1.6; color: rgba(0,0,0,.8); margin-bottom: 1rem; }
.legal-page p.pre { white-space: pre-line; }
.legal-page a { color: #8ba57e; }
.legal-page a:hover { text-decoration: underline; }
.legal-page .updated { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.1); font-size: .875rem; color: rgba(0,0,0,.5); }

/* Utility */
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
@media (min-width: 640px) { .sm-mb-8 { margin-bottom: 2rem; } .sm-mb-12 { margin-bottom: 3rem; } }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Partner-Video (ersetzt Platzhalter) */
.partner-video {
  width: 100%; height: 24rem; object-fit: cover;
  border-radius: 12px; background: #000; display: block;
}
/* Mobil/Tablet: Hochkant-Video vollstaendig zeigen statt beschneiden */
@media (max-width: 1023px) {
  .partner-video {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 70vh;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    object-fit: cover;
  }
}
