/* ═══════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════ */
section {
  padding: 96px 52px;
}

.bg-light {
  background: var(--green-bg);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 1px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}

h2 em {
  font-style: italic;
  color: var(--green-dark);
}

.section-intro {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   PHILOSOPHIE
═══════════════════════════════════════ */
.phil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.phil-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.phil-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 77, 46, 0.22);
}

.pc-icon {
  margin-bottom: 18px;
}

.phil-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.phil-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Zitat Banner mit echtem Foto */
.quote-banner {
  display: flex;
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.qb-img {
  flex: 0 0 340px;
  position: relative;
  overflow: hidden;
}

.qb-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.qb-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 77, 46, 0.3) 0%, transparent 100%);
}

.qb-text-wrap {
  flex: 1;
  background: var(--green-dark);
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qb-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(124, 196, 62, 0.4);
  line-height: 0.8;
  margin-bottom: 12px;
}

.qb-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

.qb-author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
}

.btn-white {
  display: inline-block;
  margin-top: 28px;
  background: white;
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}

.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════════ */
/* Feature-Block mit echtem Foto */
.leistung-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
  margin-bottom: 52px;
}

.lf-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.lf-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lf-img:hover .lf-real-img {
  transform: scale(1.03);
}

.lf-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.lf-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

.lf-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-list li {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

/* Leistungs-Karten */
.lk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lk-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.lk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.lk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.lk-card:hover::before {
  transform: scaleX(1);
}

.lk-featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.lk-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-bright);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lk-icon {
  margin-bottom: 18px;
}

.lk-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.lk-featured h3 {
  color: white;
}

.lk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lk-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.lk-featured .lk-list li {
  color: rgba(255, 255, 255, 0.75);
}

.lk-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-size: 11px;
  top: 1px;
}

.lk-tag {
  display: inline-block;
  margin-top: 18px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.lk-tag-white {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
#team {
  background: var(--green-bg);
}

.team-banner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  margin-top: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.team-banner-text {
  background: var(--green-dark);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-banner-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.team-banner-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.team-persons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 300px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tp-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tp-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.tp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.tp-bio {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.tp-mail {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
}

.tp-mail:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.team-img-placeholder {
  background: linear-gradient(135deg, #ddeedd 0%, #c8e6c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-img-wide {
  height: 340px;
  width: 100%;
}

.team-img-portrait {
  width: 220px;
  min-width: 220px;
  min-height: 300px;
}

.team-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.placeholder-inner {
  text-align: center;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.ph-icon {
  font-size: 32px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.ph-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.ph-hint {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

.ph-hint code {
  background: rgba(26, 77, 46, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--green-dark);
}

.ph-size {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   KONTAKT
═══════════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 52px;
  align-items: start;
}

.k-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 28px;
}

.k-real-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.k-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 77, 46, 0.75));
  padding: 16px;
}

.k-img-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.k-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.k-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

a.k-item:hover {
  background: var(--green-bg);
}

.k-ico {
  font-size: 22px;
  margin-top: 2px;
  min-width: 28px;
  text-align: center;
}

.k-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.k-val {
  font-size: 15px;
  color: var(--text);
  margin-top: 3px;
  font-weight: 500;
}

.k-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Kontakt-Formular */
.kontakt-form {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.kontakt-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--green-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(26, 77, 46, 0.28);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--green-dark);
  font-size: 16px;
}

.form-success .check {
  font-size: 52px;
  margin-bottom: 14px;
  display: block;
}

/* ═══════════════════════════════════════
   IMPRESSUM (Sektion in index.html)
═══════════════════════════════════════ */
.imp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.imp-block {
  background: white;
  border-radius: var(--radius-sm);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.imp-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 12px;
}

.imp-block p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
}

.imp-block a {
  color: var(--green-mid);
  text-decoration: none;
}

.imp-block a:hover {
  text-decoration: underline;
}
