/* ── Lokale Fonts: Open Sans ── */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/open-sans-v44-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/open-sans-v44-latin-300italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v44-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/open-sans-v44-latin-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/open-sans-v44-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/open-sans-v44-latin-500italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/open-sans-v44-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url('fonts/open-sans-v44-latin-600italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/open-sans-v44-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/open-sans-v44-latin-700italic.woff2') format('woff2');
}

:root {
  --lorenz-bordeaux: #671D47;
  --mtf-blauton: #1C7DA1;
  --dark-grey: #333333;
  --oker: #BBAE7B;
  --bg-oker: rgba(187, 174, 123, 0.1);
  --bg-bordeaux: rgba(103, 29, 71, 0.05);
  --border-line: rgba(0, 0, 0, 0.3);
  --white: #FFFFFF;
  --black: #000000;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-grey);
  background: var(--white);
  font-size: 13.5px;
  line-height: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── Top / Bottom Bar ── */
.bar {
  width: 100%;
  height: 15px;
  background: var(--lorenz-bordeaux);
}

/* ── Hero ── */
.hero {
  width: 100%;
  height: 543px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ── Content ── */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

/* ── Sections ── */
.section {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* ── Headline Block ── */
.headline-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ── H1 ── */
h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--lorenz-bordeaux);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Divider line under H1 ── */
.headline-sub {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
}

.headline-divider {
  width: 45px;
  height: 2px;
  background: var(--lorenz-bordeaux);
}

/* ── Subtitle ── */
.subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--lorenz-bordeaux);
}

/* ── Body Copy ── */
.body-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--dark-grey);
}

/* ── Accordion ── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
}

.accordion-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 30px;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lorenz-bordeaux);
}

.accordion-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--lorenz-bordeaux);
  border-bottom: 2px solid var(--lorenz-bordeaux);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(-135deg);
}

.accordion-line {
  width: 100%;
  height: 0;
  border-bottom: 0.5px solid var(--border-line);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 800px;
}

.accordion-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: var(--bg-bordeaux);
}

.accordion-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--dark-grey);
}

.accordion-content p.bold {
  font-weight: 700;
}

.accordion-content ul {
  margin: 0;
  padding-left: 18px;
  list-style: none;
}

.accordion-content ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--dark-grey);
}

.accordion-content ul li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--lorenz-bordeaux);
}

.accordion-content ol {
  margin: 0;
  padding-left: 18px;
  list-style: none;
  counter-reset: ol-counter;
}
.accordion-content ol li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--dark-grey);
  counter-increment: ol-counter;
}
.accordion-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--lorenz-bordeaux);
}

/* ── H2 ── */
h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  color: var(--lorenz-bordeaux);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Workshop Section ── */
.workshop-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ── Intro Box (oker bg) ── */
.intro-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quote-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: var(--bg-oker);
}

.quote-box .quote-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--oker);
}

.quote-box p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--dark-grey);
}

/* ── Info Table ── */
.info-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: var(--bg-oker);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-row-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}

.info-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-grey);
  min-width: 75px;
  flex-shrink: 0;
}

.info-value {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--black);
  flex-grow: 1;
}

.info-line {
  width: 100%;
  height: 0;
  border-bottom: 0.5px solid var(--border-line);
}

.info-row:last-child .info-line {
  display: none;
}

/* ── Footer / Begleiter ── */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-grey);
}

.footer-line {
  width: 100%;
  height: 0;
  border-bottom: 0.5px solid var(--border-line);
}

.begleiter-grid {
  display: flex;
  flex-direction: row;
  gap: 115px;
}

.begleiter-card {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.begleiter-card .company-logo img {
  display: block;
  height: auto;
  max-width: 100%;
}

.begleiter-card.mtf .company-logo img {
  width: 150.6px;
}

.begleiter-card.lorenz .company-logo img {
  width: 160.63px;
}

.kontakt {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.begleiter-card .person-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.begleiter-card.mtf .person-name {
  color: var(--mtf-blauton);
}

.begleiter-card.lorenz .person-name {
  color: var(--lorenz-bordeaux);
}

.begleiter-card .person-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--black);
}

.begleiter-card .person-contact {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--black);
}

.begleiter-card a {
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  line-height: 20px;
  transition: opacity 0.2s;
}

.begleiter-card a:hover {
  text-decoration: underline;
}

.begleiter-card.mtf a {
  color: var(--mtf-blauton);
}

.begleiter-card.lorenz a {
  color: var(--lorenz-bordeaux);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .content-wrapper {
    padding: 60px 24px;
  }
}

@media (max-width: 600px) {
  .content-wrapper {
    padding: 40px 18px;
    gap: 50px;
  }

  .section {
    gap: 30px;
  }

  h1 {
    font-size: 28px;
    line-height: 32px;
  }

  h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .body-text {
    font-size: 15px;
    line-height: 22px;
  }

  .hero {
    height: 260px;
  }

  .begleiter-grid {
    flex-direction: column;
    gap: 40px;
  }

  .info-row-content {
    flex-direction: column;
    gap: 4px;
  }
}
