/* ==========================================================================
   Anwert Technologies AG — anwert.tech
   1:1 rebuild of the original WordPress/Elementor site as a static code stack.
   All values are taken verbatim from the live site's generated CSS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens (from the Elementor global kit)
   -------------------------------------------------------------------------- */
:root {
  --color-primary:   #73C8DB;  /* accent cyan (post titles, hover)     */
  --color-secondary: #3C3C3B;  /* post title base colour               */
  --color-text:      #272727;  /* body copy                            */
  --color-dark:      #474644;  /* dark panels, buttons, footer         */
  --color-sand:      #D1CFC7;  /* light panel, secondary button        */
  --color-white:     #FFFFFF;
  --color-header:    #736F65;  /* header bar background                */
  --header-h:        90px;     /* Hoehe der fixierten Kopfleiste       */
  --color-nav-hover: #BDBAA2;
  --color-footer-link-hover: #ADABA6;
  --color-divider:   #B5B19D;
  --color-link:      #C36;     /* unstyled rich-text links             */

  /* Typography scale — desktop */
  --font-sans: "Lato", sans-serif;

  --t-primary-size: 44px;   /* h1                                      */
  --t-primary-lh:   60px;
  --t-primary-ls:   2.6px;

  --t-text-size: 17px;      /* body copy                               */
  --t-text-lh:   27px;
  --t-text-ls:   0.8px;

  --t-accent-size: 17px;    /* form labels, read-more                  */
  --t-accent-lh:   27px;

  --t-eyebrow-size: 17px;   /* "UNSER FOKUS" chips, footer headings    */
  --t-eyebrow-lh:   27px;
  --t-eyebrow-ls:   4px;

  --t-h2-size: 36px;        /* section headings                        */
  --t-h2-lh:   50px;
  --t-h2-ls:   2.4px;

  --content-width: 1290px;
}

@media (max-width: 1024px) {
  :root { --content-width: 1024px; }
}

@media (max-width: 767px) {
  :root {
    --content-width: 767px;
    --t-primary-size: 30px;
    --t-primary-lh:   38px;
    --t-text-size:    16px;
    --t-text-lh:      22px;
    --t-eyebrow-lh:   16px;
    --t-h2-size:      26px;
    --t-h2-lh:        40px;
  }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--t-text-size);
  font-weight: 300;
  line-height: var(--t-text-lh);
  letter-spacing: var(--t-text-ls);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }

a { color: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 0.5rem 0 1rem; font-weight: 300; }

h1 {
  color: var(--color-text);
  font-size: var(--t-primary-size);
  line-height: var(--t-primary-lh);
  letter-spacing: var(--t-primary-ls);
  text-transform: uppercase;
}

p { margin: 0 0 14.4px; }

ul { margin: 0; padding-left: 40px; }
li { margin-bottom: 10px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px;
  width: auto; height: auto; clip: auto; clip-path: none;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--color-white);
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   3. Layout primitives (Elementor section/column equivalents)
   -------------------------------------------------------------------------- */
/* flow-root keeps section margins inside <main>, so the gap to the footer is
   96px (contact) + 96px (footer) as on the original, instead of collapsing */
main { display: flow-root; }

.section { position: relative; }

.container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.col { position: relative; display: flex; min-height: 1px; }
.col-100 { width: 100%; }
.col-50  { width: 50%; }
.col-33  { width: 33.333%; }
.col-66  { width: 66.666%; }

.col-inner {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 10px;
}

/* Elementor's default widget rhythm: every widget but the last gets 20px */
.col-inner > * { width: 100%; }
.col-inner > *:not(:last-child) { margin-block-end: 20px; }

/* Section background layers */
.section__bg,
.section__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   4. Header (desktop)
   -------------------------------------------------------------------------- */
/* Beide Kopfleisten stehen fest am oberen Rand. Der Platz, den sie im Fluss
   nicht mehr einnehmen, wird ueber das Innenpolster von <body> ersetzt —
   dadurch bleibt der Seitenaufbau unveraendert. */
.site-header--desktop,
.site-header--mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
body { padding-top: var(--header-h); }

/* Sprungziele duerfen nicht unter der Kopfleiste landen */
.anchor,
.contact-section,
#content { scroll-margin-top: var(--header-h); }

.site-header--desktop {
  background-color: var(--color-header);
}
.site-header--desktop > .container { min-height: 90px; align-items: center; }

.header-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.header-col--logo { width: 20%; }
.header-col--nav  { width: 58%; padding-top: 15px; }
.header-col--cta  { width: 17%; }
.header-col--lang { width: 5%; display: flex; justify-content: center; }

.header-logo img { display: block; width: 250px; max-width: 100%; }

.header-nav {
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 2px;
  word-spacing: 50px;
  color: var(--color-white);
}
.header-nav a { text-decoration: none; color: inherit; }
.header-nav a:hover,
.header-nav a:focus { color: var(--color-nav-hover); }

.header-col--cta { text-align: right; }

.lang-switcher { border: 1px solid transparent; padding: 7px; }
.lang-switcher a {
  display: block;
  padding: 5px 10px 6px;
  line-height: 1;
  text-align: center;
  color: var(--color-text);
}
.lang-switcher a:hover,
.lang-switcher a:focus { color: var(--color-accent, #3A4643); }
.lang-switcher img { display: inline; width: 18px; height: 12px; vertical-align: middle; }

/* --------------------------------------------------------------------------
   5. Header (tablet / mobile burger)
   -------------------------------------------------------------------------- */
.site-header--mobile { display: none; background-color: var(--color-header); }
.site-header--mobile > .container { min-height: 90px; align-items: center; }
.site-header--mobile .col-inner > * { margin-block-end: 0; }

.mobile-bar {
  display: flex;
  align-items: center;
  width: 100%;
}
.mobile-bar__logo { width: 50%; padding: 10px; }
.mobile-bar__logo img { display: block; width: 250px; max-width: 100%; }
.mobile-bar__nav {
  width: 50%;
  padding: 10px 15px 10px 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.burger {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-white);
  cursor: pointer;
  line-height: 0;
}
.burger svg { display: block; width: 29px; height: 28px; fill: currentColor; }
.burger .burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open  { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--color-white);
  z-index: 99999;
}
.mobile-menu.is-open { display: block; }
.mobile-menu > li {
  background: var(--color-header);
  border-bottom: 1px solid #000;
}
.mobile-menu > li:last-child { border-bottom: 0; }
.mobile-menu a {
  display: block;
  padding: 15px 0 15px 15px;
  font-family: "Nunito", var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
}
.mobile-menu__lang { display: flex; align-items: center; }
.mobile-menu__lang > a { flex: 1 1 auto; }
.mobile-menu__lang img { width: 18px; height: 12px; vertical-align: middle; }
.mobile-menu__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  padding-left: 5px;
  color: var(--color-white);
}
.mobile-menu__indicator svg { width: 14px; height: 14px; fill: currentColor; }
.mobile-menu__sub { display: none; }

@media (max-width: 1024px) {
  .site-header--desktop { display: none; }
  .site-header--mobile  { display: block; }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 0;
  border-radius: 3px;
  background-color: var(--color-dark);
  color: var(--color-white);
  fill: var(--color-white);
  font-family: var(--font-sans);
  font-size: var(--t-accent-size);
  font-weight: 600;
  line-height: var(--t-accent-lh);
  letter-spacing: var(--t-text-ls);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  cursor: pointer;
}
.btn--md { padding: 15px 30px; border-radius: 0; }
.btn--dark:hover, .btn--dark:focus { color: var(--color-sand); }
.btn--sand {
  background-color: var(--color-sand);
  color: var(--color-dark);
  letter-spacing: var(--t-text-ls);
}
.btn--sand:hover, .btn--sand:focus { color: var(--color-white); }

.btn-wrap--center { text-align: center; }
.btn-wrap--right  { text-align: right; }

/* --------------------------------------------------------------------------
   7. Home — hero
   -------------------------------------------------------------------------- */
/* Der Hero ist reine Bildflaeche. Das Seitenverhaeltnis entspricht exakt dem
   der Datei (1774 x 887), damit "cover" nichts wegschneidet und das Motiv
   auf jeder Breite vollstaendig zu sehen ist. */
.hero-logo {
  margin-top: 16px;
  padding: 0;
  aspect-ratio: 1774 / 887;
}
.hero-logo .section__bg {
  background-image: url("../img/hero-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-intro {
  margin-bottom: 96px;
  padding: 90px 0;
  background-color: var(--color-sand);
}
.hero-intro > .container { max-width: 960px; min-height: 400px; }
.hero-intro h1 { margin: 0 0 16px; text-align: center; }
.hero-intro .lede { padding: 0 32px; text-align: center; }

/* --------------------------------------------------------------------------
   8. Home — content sections
   -------------------------------------------------------------------------- */
.band {                        /* light band, 960 container */
  margin: 96px 0 72px;
}
.band > .container { max-width: 960px; }
.band .col-inner { justify-content: space-around; }
.band--tight { margin-bottom: 36px; }   /* "Unsere Kompetenzen" */

/* Menu anchors carry no box of their own */
.anchor { height: 0; }
.col-inner > .anchor:not(:last-child) { margin-block-end: 0; }

.band--dark {                  /* dark full-bleed band */
  margin: 0 0 96px;
  padding: 64px 0;
}
.band--dark > .container { max-width: 960px; }
.band--dark .section__bg { background-color: var(--color-dark); }
.band--dark,
.band--dark p,
.band--dark span { color: var(--color-white); }

.baum { margin: 0; text-align: center; }
.baum img { display: inline-block; width: 83px; height: 101px; }

/* "UNSER FOKUS" chip. Three levels, mirroring the original: the flex item
   (.chip), the coloured panel (.chip__bg) and the text. A <p> inside adds its
   14.4px bottom margin *outside* the panel — exactly as on the live site. */
.chip {
  width: initial;
  max-width: initial;
  align-self: center;
  text-align: center;
}
.chip__bg {
  padding: 0 32px;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: var(--t-eyebrow-size);
  font-weight: 600;
  line-height: var(--t-eyebrow-lh);
  letter-spacing: var(--t-eyebrow-ls);
  text-transform: uppercase;
}
.chip__bg p { margin: 0 0 14.4px; }
.col-inner > .chip:not(:last-child) { margin-block-end: 0; }

.section-heading {
  margin: 16px 0 32px;
  font-size: var(--t-h2-size);
  font-weight: 300;
  line-height: var(--t-h2-lh);
  letter-spacing: var(--t-h2-ls);
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
}
.section-heading--pad { padding: 0 42px; }

.text-center-32 { padding: 0 32px; text-align: center; }

.text-list-56 { padding: 0 56px; text-align: left; }
.text-list-56 ul { margin: 0; }

.eyebrow-wide {                /* "ANWERT TECHNOLOGIES VERFOLGT …" */
  padding: 0 32px;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.eyebrow-wide p { margin: 0 0 14.4px; }

.diagram { margin: 0; padding: 25px 0; text-align: center; }
.diagram--flush { padding: 0; }
.diagram img { display: inline-block; }
.diagram--xs { display: none; }

/* padding, not margin: the widget itself stays full width in the original and
   the 32px inset sits on its inner container */
.plain-text--partner { padding-left: 32px; padding-right: 32px; text-align: center; }

/* Widgets that are hidden at every breakpoint on the live site. Kept in the
   markup because the preceding widget's 20px bottom margin depends on them
   not being the last child. */
.hidden-all { display: none; }

.plain-text { margin: 0; }

/* --------------------------------------------------------------------------
   9. Home — team
   -------------------------------------------------------------------------- */
.team-row { margin: 24px 0; }
.team-row > .container { max-width: var(--content-width); }
.team-row .team-col--photo { width: 33.333%; }
.team-row .team-col--text  { width: 66.666%; }
.team-row .team-col--text > .col-inner {
  justify-content: center;
  padding: 0;
}
.team-row .team-col--text > .col-inner > *:not(:last-child) { margin-block-end: 0; }

.team-photo { padding-right: 32px; text-align: right; }
.team-photo img { display: inline-block; width: 55%; }

.team-name {
  margin: 0;
  padding: 8px 0 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.team-role {
  margin: 0;
  padding: 0 0 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 13px;
  letter-spacing: 4.1px;
  text-transform: uppercase;
}
/* Die Grundregel oben rechnet mit einzeiligen Funktionsbezeichnungen
   ("Vorstand", "Aufsichtsrat") und setzt deshalb line-height 13px. Bricht eine
   längere Bezeichnung um — zwischen 768 und 899 px ist das der Fall —, kleben
   die Zeilen aufeinander. Diese Variante bekommt darum eigenen Zeilenabstand. */
.team-role--long p { line-height: 22px; }

.team-name p, .team-role p { margin: 0 0 14.4px; }
.team-bio { margin: 0; padding: 0; }

.team-outro { margin: 0; padding: 0; }
.team-outro > .container { max-width: var(--content-width); }
.team-outro .plain-text { padding: 0 32px; text-align: center; }
.team-outro .plain-text p { margin: 0 0 14.4px; }

/* Social icons */
.social {
  display: inline-flex;
  gap: 0;
  text-align: left;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--color-white);
  color: var(--color-dark);
  text-decoration: none;
}
.social a:hover { opacity: .9; }
.social svg { width: 15px; height: 15px; fill: currentColor; }
.social--footer a { background-color: var(--color-dark); color: var(--color-white); }

/* --------------------------------------------------------------------------
   11. Home — ANWERT meaning + insights
   -------------------------------------------------------------------------- */
.meaning { background-color: var(--color-white); }
.meaning > .container > .col > .col-inner { padding: 64px 56px; }
.meaning__logo { margin: 0; text-align: center; }
.meaning__logo img { display: inline-block; width: 300px; }
.meaning__text { padding: 0 250px; text-align: center; color: var(--color-text); }
.meaning__text p { margin: 0 0 14.4px; }

/* EN only: the insights grid lives in its own section below the ANWERT block */
.insights { margin: 0 0 50px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 15px; }
.post-card {
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
  text-align: left;
}
.post-card__thumb { margin-bottom: 20px; }
/* baseline (not middle) — the original post thumbnails are plain inline
   images, so the line box adds the descender gap below them */
.post-card__thumb img { width: 100%; object-fit: cover; vertical-align: baseline; }
.post-card__body {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.post-card__title {
  margin: 5px 0;
  padding: 5px 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: 2.6px;
  text-transform: none;
  color: var(--color-secondary);
}
.post-card__title a { text-decoration: none; color: inherit; }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__more {
  display: inline-block;
  font-size: var(--t-accent-size);
  font-weight: 400;
  line-height: var(--t-accent-lh);
  color: var(--color-text);
  text-decoration: none;
}
.post-card__more:hover { color: var(--color-primary); }
.post-card__meta { margin-bottom: 10px; }
.post-card__meta span {
  font-size: var(--t-text-size);
  font-weight: 400;
  line-height: var(--t-text-lh);
  letter-spacing: var(--t-text-ls);
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   12. Home — closing CTA + contact form
   -------------------------------------------------------------------------- */
.cta-band {
  background-image: url("../img/cta-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-band .section__overlay { background-color: var(--color-text); opacity: .31; }
.cta-band > .container > .col > .col-inner { align-items: center; justify-content: center; }
.cta-band__text {
  margin: 0;
  padding: 200px 180px;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-white);
}
.cta-band__text p { margin: 0 0 14.4px; }

.contact-section { margin: 96px 0; }
.contact-section > .container { max-width: 750px; }
.contact-section h3 {
  margin: 0;
  padding: 0 0 16px;
  font-size: 36px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-text);
}
.contact-section .contact-lede p { margin: 0 0 14.4px; }

.form-fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px -16px;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0 5px;
  margin-bottom: 16px;
}
.form-group--submit { width: 20%; align-items: flex-end; }
.form-label {
  display: block;
  width: 100%;
  padding-bottom: 8px;
  font-size: var(--t-accent-size);
  font-weight: 600;
  line-height: var(--t-accent-lh);
}
.form-control {
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--color-sand);
  border-radius: 2px;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--t-text-size);
  font-weight: 300;
  line-height: var(--t-text-lh);
  letter-spacing: var(--t-text-ls);
}
textarea.form-control { padding: 5px 14px; resize: vertical; }
.form-control:focus { outline: 0; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1); }

.form-acceptance {
  display: flex;
  width: 100%;
  font-size: var(--t-text-size);
}
/* the checkbox sits on the baseline and grows each line box by ~2.4px, which is
   what the original ends up with — reproduced here explicitly */
.form-acceptance__option {
  display: block;
  line-height: calc(var(--t-text-lh) + 2.4px);
}
.form-acceptance input { margin: 0 4px 0 0; vertical-align: baseline; }
.form-acceptance label { font-weight: 300; }

.form-submit {
  width: 100%;
  padding: 15px 30px;
  border: 0;
  border-radius: 0;
  background-color: var(--color-sand);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--t-accent-size);
  font-weight: 600;
  line-height: var(--t-accent-lh);
  letter-spacing: normal;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}
.form-submit:hover { color: var(--color-white); }
.form-submit[disabled] { cursor: default; opacity: .65; }

/* Honeypot: fuer Menschen unsichtbar, fuer Bots ein Feld wie jedes andere.
   Kein display:none, das ueberspringen viele Bots gezielt. */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: var(--t-text-size);
  line-height: var(--t-text-lh);
}
.form-status--ok    { background-color: #E4EFE6; }
.form-status--error { background-color: #F6E2E2; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: 96px;
  padding: 64px 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}
.site-footer .col-inner > *:not(:last-child) { margin-block-end: 8px; }

.footer-heading {
  margin: 0;
  font-size: var(--t-eyebrow-size);
  font-weight: 600;
  line-height: var(--t-eyebrow-lh);
  letter-spacing: var(--t-eyebrow-ls);
  text-transform: uppercase;
  color: var(--color-white);
}
.footer-address {
  padding: 8px 0 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: .8px;
  color: var(--color-white);
}
.footer-address p { margin: 0 0 14.4px; }

.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: .8px;
  text-transform: none;
  text-decoration: none;
  color: var(--color-white);
}
.footer-menu a:hover,
.footer-menu a:focus,
.footer-menu a.is-active { color: var(--color-footer-link-hover); }

.social--footer { margin-top: 8px; }

/* --------------------------------------------------------------------------
   14. Legal pages
   -------------------------------------------------------------------------- */
.legal-section { padding: 80px 0 0; }
.legal-section .col-inner { padding: 10px; }
.legal-body h1 { margin: 8px 0 16px; }
.legal-body p { margin: 0 0 14.4px; }
.legal-body a { color: var(--color-link); }

.page-header .entry-title {
  width: 100%;
  max-width: 1140px;
  margin: 8px auto 16px;
}
@media (max-width: 1199px) { .page-header .entry-title { max-width: 800px; } }
@media (max-width: 991px)  { .page-header .entry-title { max-width: 600px; } }
@media (max-width: 767px)  { .page-header .entry-title { max-width: 500px; } }
@media (max-width: 575px)  { .page-header .entry-title { max-width: none; padding-inline: 10px; } }

.privacy-body h4 {
  margin: 8px 0 16px;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 300;
}
.privacy-body h5 {
  margin: 8px 0 16px;
  font-size: 27px;
  line-height: 37px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 300;
}
.privacy-body h6 {
  margin: 8px 0 16px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: none;
}
.privacy-body p { margin: 0 0 14.4px; }
.privacy-body li { margin-bottom: 10px; }
.privacy-body a { color: var(--color-link); }

/* --------------------------------------------------------------------------
   15. Responsive — tablet (<= 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

  .band--dark > .container > .col > .col-inner { padding: 24px; }

  .team-row .team-col--photo > .col-inner { padding: 10px 24px 24px; }
  .team-row .team-col--text  > .col-inner { padding: 0 24px 0 0; }

  .band--partner { margin: 56px 0; }
  .meaning__text { padding: 0 16px; }


  .contact-section { margin: 56px 0; padding: 0 24px; }
  .contact-section h3 { margin: 16px 0; }

  .site-footer { margin-top: 56px; margin-bottom: 0; padding: 64px 24px; }

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

  /* the wide "Stärkung des Geschäftsmodells" graphic is replaced by the
     portrait XS variant from tablet down */
  .diagram--lg { display: none; }
  .diagram--xs { display: block; }
  .diagram--xs img { width: 600px; max-width: 100%; }
}

/* Tablet only: the image-only dark band keeps the default 10px column padding */
@media (min-width: 768px) and (max-width: 1024px) {
  .band--dark.band--image > .container > .col > .col-inner { padding: 10px; }
}

/* --------------------------------------------------------------------------
   16. Responsive — mobile (<= 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .hero-logo { margin: 0; }

  .hero-intro { margin: 0; padding: 36px 0; }
  .hero-intro > .container > .col > .col-inner { margin: 0; padding: 24px; }
  .hero-intro .lede { padding: 0; }

  .band { margin: 56px 0 24px; }
  .band--partner { margin: 56px 0; }
  .band > .container > .col > .col-inner { padding: 24px; }
  .band--dark { margin: 0; padding: 36px 0; }
  .band--dark > .container > .col > .col-inner { padding: 24px; }

  .chip__bg { margin: 0 0 4px; padding: 4px 32px; }
  .chip--sm .chip__bg { font-size: 16px; line-height: 17px; padding: 4px 8px; }

  .band h2, .section-heading { margin: 0; padding: 0; }
  .text-center-32 { padding: 0; }
  .text-list-56 { padding: 0; margin: 0; }
  .eyebrow-wide { padding: 0; }
  /* the two eyebrows in the Partner block keep their 32px inset on mobile */
  .band--partner .eyebrow-wide { padding: 0 32px; }
  .band--dark .body-copy { font-size: 16px; line-height: 22px; }
  .diagram { padding: 0; }

  .team-row { margin: 0; padding: 0; }
  .team-row .team-col--photo,
  .team-row .team-col--text { width: 100%; }
  .team-row .team-col--photo > .col-inner { padding: 0 24px; }
  .team-row .team-col--text  > .col-inner { padding: 24px; }
  .team-photo { text-align: left; }   /* keeps the 32px right padding */
  .team-photo img { width: 60%; }
  .team-name { padding: 0; }
  .team-role { padding: 0; font-size: 16px; line-height: 22px; letter-spacing: 3.3px; }

  .team-outro > .container > .col > .col-inner { padding: 24px; }
  .team-outro .plain-text { padding: 0; }
  .plain-text--partner { padding-left: 0; padding-right: 0; }


  .meaning { padding: 24px 0; }
  .meaning > .container > .col > .col-inner { padding: 32px 16px; }
  .meaning__logo img { width: 50%; }
  .meaning__text { padding: 0; }

  .post-grid { grid-template-columns: 1fr; }
  .post-card__title { font-size: 30px; line-height: 38px; }

  .cta-band > .container > .col > .col-inner { padding: 64px 24px; }
  .cta-band__text { padding: 42px 8px 36px; font-size: 17px; line-height: 1.2em; }

  .contact-section { margin: 56px 0; }
  .contact-section > .container > .col > .col-inner { padding: 24px; }
  .contact-section h3 { margin: 0; font-size: 26px; line-height: 40px; }
  .form-group--submit { width: 100%; }

  .site-footer { padding: 64px 24px; }
  .site-footer .col-33 { width: 100%; }
  .site-footer .col-inner { padding: 0; }
  .site-footer .col-inner > *:not(:last-child) { margin-block-end: 0; }
  .site-footer > .container > .col:not(:last-child) > .col-inner { margin-bottom: 24px; }
  .footer-address { font-size: 16px; line-height: 22px; }
  .footer-menu a { font-size: 16px; line-height: 22px; }
}

/* ==========================================================================
   17. Motion layer
   Added on top of the 1:1 rebuild. Everything here animates only `opacity`,
   `transform` and `filter`, so the static layout stays byte-for-byte the same
   as the original. Fully disabled under prefers-reduced-motion.
   ========================================================================== */

:root {
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --reveal-shift: 18px;
}

/* --------------------------------------------------------------------------
   17.1 Scroll reveal
   The `.js` class is set by the motion script, so without JavaScript every
   element simply stays visible.
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-shift), 0);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* the widgets inside a revealed section come in one after another */
.js [data-reveal] .col-inner > * {
  opacity: 0;
  transform: translate3d(0, var(--reveal-shift), 0);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.js [data-reveal].is-visible .col-inner > * { opacity: 1; transform: none; }
.js [data-reveal].is-visible .col-inner > *:nth-child(1)   { transition-delay:  40ms; }
.js [data-reveal].is-visible .col-inner > *:nth-child(2)   { transition-delay:  95ms; }
.js [data-reveal].is-visible .col-inner > *:nth-child(3)   { transition-delay: 150ms; }
.js [data-reveal].is-visible .col-inner > *:nth-child(4)   { transition-delay: 205ms; }
.js [data-reveal].is-visible .col-inner > *:nth-child(5)   { transition-delay: 260ms; }
.js [data-reveal].is-visible .col-inner > *:nth-child(6)   { transition-delay: 315ms; }
.js [data-reveal].is-visible .col-inner > *:nth-child(n+7) { transition-delay: 370ms; }

.js [data-reveal="left"]  { transform: translate3d(calc(var(--reveal-shift) * -1.4), 0, 0); }
.js [data-reveal="right"] { transform: translate3d(calc(var(--reveal-shift) *  1.4), 0, 0); }
.js [data-reveal="scale"] { transform: scale(.965); }

/* --------------------------------------------------------------------------
   17.2 Animated cycle graphic (INVESTMENT / OPERATIONS STRATEGY)
   The PNG is untouched; the moving highlight is a separate SVG layer on top,
   traced along the real ribbon path. No colour is changed.
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   17.3 Vector infographics
   Both diagrams are real SVG now. The cycle animates itself inside the file;
   the business-model graphic is embedded with <object> so its own :hover rules
   stay live. Boxes are identical to the bitmaps they replaced.
   -------------------------------------------------------------------------- */
.gfx { display: inline-block; max-width: 100%; height: auto; vertical-align: middle; }
.gfx--object { width: 800px; aspect-ratio: 800 / 325; height: auto; border: 0; }

/* --------------------------------------------------------------------------
   17.4 Smoother transitions overall
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

.btn, .form-submit {
  transition: background-color .3s var(--ease-out), color .3s var(--ease-out),
              transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.btn:hover, .form-submit:hover { transform: translateY(-2px); }
.btn:active, .form-submit:active { transform: translateY(0); }

.post-card {
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .55);
}
.post-card__thumb { overflow: hidden; }
.post-card__thumb img { transition: transform .6s var(--ease-out); }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.social a { transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.social a:hover { transform: translateY(-2px); }

.header-nav a, .footer-menu a, .lang-switcher a {
  transition: color .3s var(--ease-out);
}

.team-photo img, .meaning__logo img {
  transition: transform .6s var(--ease-out);
}
.team-row:hover .team-photo img { transform: scale(1.02); }

.mobile-menu { transition: opacity .3s var(--ease-out); }

/* --------------------------------------------------------------------------
   17.5 Reduced motion — everything above collapses to a plain static page
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal],
  .js [data-reveal].is-visible,
  .js [data-reveal] .col-inner > *,
  .js [data-reveal].is-visible .col-inner > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hotspot, .btn, .form-submit, .post-card, .post-card__thumb img,
  .social a, .team-photo img { transition: none; }
  .btn:hover, .form-submit:hover, .post-card:hover, .social a:hover { transform: none; }
  .post-card:hover .post-card__thumb img,
  .team-row:hover .team-photo img { transform: none; }
}

/* Printing must never show a half-revealed page */
@media print {
  /* fixierte Kopfleiste wuerde sonst auf jeder Seite den Inhalt ueberdecken */
  .site-header--desktop,
  .site-header--mobile { position: static; }
  body { padding-top: 0; }

  .js [data-reveal],
  .js [data-reveal] .col-inner > * { opacity: 1 !important; transform: none !important; }
  .gfx { filter: none !important; }
}
