/* ============================================================
   HOLM Holzbau — Bold & Auffällig
   Tannengrün-tief + Burnt Orange + Cream. Big Shoulders Display
   für Massive-Display-Headlines, Archivo für Sub-Headings, Inter
   für Body. Große Typografie, full-bleed Bilder, hoher Kontrast.
   ============================================================ */

:root {
  /* Cream-Welt */
  --cream:        #f7f3eb;
  --cream-soft:   #fcfaf3;
  --cream-deep:   #ece4d2;
  --surface:      #ffffff;

  /* Tannengrün primär */
  --forest:       #1a3a2e;
  --forest-deep:  #0e2820;
  --forest-mid:   #2d5b48;
  --forest-soft:  rgba(26, 58, 46, 0.10);
  --forest-glow:  rgba(45, 91, 72, 0.22);

  /* Burnt Orange Akzent */
  --orange:       #e85a1f;
  --orange-deep:  #c4471a;
  --orange-light: #f08a5c;
  --orange-soft:  rgba(232, 90, 31, 0.12);
  --orange-glow:  rgba(232, 90, 31, 0.22);

  /* Wood (sehr sparsam, Detail-Akzent) */
  --wood:         #b88660;
  --wood-deep:    #8e6242;

  /* Tinte (warm-anthrazit, kein reines Schwarz) */
  --ink:          #1a1a14;
  --ink-soft:     #2c2a26;
  --ink-mid:      #4d4a40;
  --ink-muted:    #80796a;
  --line:         #d8cdb8;
  --line-soft:    #e6dcc4;

  /* Status */
  --danger:       #c4471a;
  --success:      #2d5b48;

  /* Schatten — kräftig, weil Bold-Stil */
  --shadow-sm: 0 2px 4px rgba(26, 26, 20, 0.08);
  --shadow-md: 0 8px 22px rgba(26, 26, 20, 0.10);
  --shadow-lg: 0 18px 44px rgba(26, 26, 20, 0.16);
  --shadow-xl: 0 28px 64px rgba(26, 26, 20, 0.22);

  /* Radius — sehr minimal, weil Bold */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --container: 1280px;
  --container-narrow: 980px;
  --container-text: 720px;
  --nav-h: 88px;
  --t-fast: 180ms cubic-bezier(.22,.61,.36,1);
  --t-mid:  320ms cubic-bezier(.22,.61,.36,1);

    --demo-banner-bg: #1a3a2e;
    --demo-banner-fg: #f7f3eb;
    --demo-banner-accent: #e85a1f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--orange); color: var(--cream); }

/* ─── TYPO ──────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
  color: var(--forest);
}
h1 {
  font-size: clamp(3.4rem, 11vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 800;
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  font-family: 'Archivo', 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.18rem;
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.005em;
  text-transform: none;
}

h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--orange);
}

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 64ch; }
p.lead {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}

/* ─── KICKERS / LABELS ──────────────────────────────────────── */

.kicker {
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 36px; height: 3px;
  background: var(--orange);
}
.kicker--cream { color: var(--cream); }
.kicker--cream::before { background: var(--cream); }
.kicker--forest { color: var(--forest); }
.kicker--forest::before { background: var(--forest); }

/* ─── LAYOUT ────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 22px; } }
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

.section { padding: clamp(72px, 9vw, 144px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--surface { background: var(--cream-soft); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--cream); }
.section--forest p { color: rgba(247, 243, 235, 0.84); }
.section--forest h1 em, .section--forest h2 em { color: var(--orange-light); }
.section--forest .kicker { color: var(--orange-light); }
.section--forest .kicker::before { background: var(--orange-light); }
.section--orange { background: var(--orange); color: var(--cream); }
.section--orange h1, .section--orange h2 { color: var(--cream); }
.section--orange p { color: rgba(247, 243, 235, 0.92); }
.section--orange .kicker { color: var(--cream); }
.section--orange .kicker::before { background: var(--cream); }

/* ─── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  background: var(--forest);
  color: var(--cream);
  cursor: pointer;
  transition: all var(--t-fast);
  border-radius: var(--r-sm);
  text-align: center;
}
.btn::after { content: "→"; font-weight: 700; transition: transform var(--t-fast); }
.btn:hover { background: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(4px); }
.btn--orange { background: var(--orange); }
.btn--orange:hover { background: var(--forest); }
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: 16px 34px;
}
.btn--ghost:hover { background: var(--forest); color: var(--cream); }
.btn--cream {
  background: var(--cream);
  color: var(--forest);
}
.btn--cream:hover { background: var(--orange); color: var(--cream); }
.btn--cream-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 16px 34px;
}
.btn--cream-ghost:hover { background: var(--cream); color: var(--forest); }

.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ─── NAV ───────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 3px solid var(--forest);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__brand-mark {
  width: 50px; height: 50px;
  background: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
}
.nav__brand-mark::after {
  content: "";
  position: absolute;
  right: -3px; bottom: -3px;
  width: 18px; height: 18px;
  background: var(--orange);
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--forest);
  text-transform: uppercase;
}
.nav__brand-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.nav__links a {
  font-family: 'Archivo', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--orange); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.nav__lang {
  display: inline-flex;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-left: 22px;
  border-left: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}
.nav__lang a { padding: 4px 6px; }
.nav__lang a[aria-current="page"] { color: var(--forest); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--cream);
  padding: 14px 26px;
  font-weight: 700;
  transition: all var(--t-fast);
}
.nav__cta::after { content: "→"; }
.nav__cta:hover { background: var(--forest); }

.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 50px; height: 50px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--forest);
}

@media (max-width: 1180px) { .nav__cta { display: none; } }
@media (max-width: 980px) {
  .nav__brand-sub { display: none; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform var(--t-mid);
    overflow-y: auto;
    border-top: 3px solid var(--forest);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    padding: 20px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__lang { padding-left: 0; border-left: 0; padding-top: 20px; margin-top: 8px; border-top: 1px solid var(--line); }
  .nav__burger { display: inline-flex; }
}

/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  padding: clamp(72px, 9vw, 128px) 0 0;
  position: relative;
}
.hero__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.hero h1 {
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(1.18rem, 1.8vw, 1.38rem);
  color: var(--ink);
  margin: 0 0 36px;
  line-height: 1.45;
  max-width: 64ch;
  font-weight: 500;
}

.hero__media {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--forest);
  margin-bottom: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media-meta {
  position: absolute;
  left: 32px; bottom: 32px;
  background: var(--orange);
  color: var(--cream);
  padding: 18px 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 280px;
}
.hero__media-meta strong {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .hero__media-meta { left: 16px; bottom: 16px; padding: 14px 18px; }
  .hero__media-meta strong { font-size: 1.8rem; }
}

/* ─── METRICS-BAR (Zahlen-Strip) ────────────────────────────── */

.metrics {
  background: var(--forest);
  color: var(--cream);
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px) { .metrics__grid { grid-template-columns: repeat(2, 1fr); } }
.metrics__cell {
  padding: 36px 32px;
  border-right: 1px solid rgba(247, 243, 235, 0.18);
  text-align: center;
}
.metrics__grid > .metrics__cell:last-child { border-right: 0; }
@media (max-width: 880px) {
  .metrics__grid > .metrics__cell:nth-child(2) { border-right: 0; }
  .metrics__grid > .metrics__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(247, 243, 235, 0.18); }
}
.metrics__num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--orange-light);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  display: block;
}
.metrics__label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.78);
  font-weight: 600;
}

/* ─── BIG-CTA-PANEL ─────────────────────────────────────────── */

.big-cta {
  background: var(--orange);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.big-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .big-cta__inner { grid-template-columns: 1fr; } }
.big-cta h2 {
  color: var(--cream);
  margin: 0 0 12px;
  text-wrap: balance;
}
.big-cta h2 em { color: var(--forest); }
.big-cta p { color: rgba(247, 243, 235, 0.92); margin: 0; max-width: 56ch; }

/* ─── SERVICES ─────────────────────────────────────────────── */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 3px solid var(--forest);
}
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }
.service {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
  transition: background var(--t-fast);
  display: flex;
  flex-direction: column;
}
.services > .service:nth-child(2n) { border-right: 0; }
.services > .service:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 720px) {
  .services > .service { border-right: 0; border-bottom: 1px solid var(--line); }
  .services > .service:last-child { border-bottom: 0; }
}
.service:hover { background: var(--cream); }
.service:hover .service__num { color: var(--orange); }
.service__num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  transition: color var(--t-fast);
}
.service__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1;
}
.service__desc {
  font-size: 0.97rem;
  color: var(--ink-mid);
  margin: 0 0 18px;
  flex: 1;
  max-width: none;
}
.service__more {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
}

/* Service-Detail Rows (leistungen) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row--reverse .service-row__media { order: 2; }
@media (max-width: 880px) {
  .service-row, .service-row--reverse { grid-template-columns: 1fr; }
  .service-row--reverse .service-row__media { order: 0; }
}
.service-row__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--forest);
}
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  display: block;
}
.service-row__title { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 22px; }
.service-row__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.service-row__list li {
  font-size: 0.97rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
}
.service-row__list li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
}

/* ─── PROJEKTE GRID ─────────────────────────────────────────── */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
@media (max-width: 720px) { .projects-grid { grid-template-columns: 1fr; } }

.project {
  background: var(--cream-soft);
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  display: flex;
  flex-direction: column;
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--forest);
  position: relative;
}
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.project:hover .project__media img { transform: scale(1.04); }
.project__media-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--orange);
  color: var(--cream);
  padding: 8px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.project__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.project__meta {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
}
.project__meta strong { color: var(--forest); }
.project__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--forest);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.project__desc {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.project__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.project__stat {
  text-align: center;
  font-family: 'Archivo', sans-serif;
}
.project__stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.01em;
  display: block;
}
.project__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ─── ABOUT-SPLIT ───────────────────────────────────────────── */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--cream-soft);
}
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }
.about-split__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--forest);
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body { padding: clamp(40px, 5vw, 72px); }
.about-split__quote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--forest);
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.about-split__quote em { color: var(--orange); }
.about-split__cite {
  font-family: 'Archivo', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 700;
}
.about-split__cite strong { color: var(--forest); }

/* ─── TEAM ──────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 3px solid var(--forest);
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
}
.team-grid > .team-card:nth-child(3n) { border-right: 0; }
@media (max-width: 880px) {
  .team-grid > .team-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .team-grid > .team-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 480px) {
  .team-grid > .team-card { border-right: 0; }
}

.team-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--forest);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.team-card__body { padding: 22px 24px 28px; }
.team-card__name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--forest);
  letter-spacing: -0.005em;
  line-height: 1;
}
.team-card__role {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin: 0;
}

/* ─── CAREERS / JOB-LIST ────────────────────────────────────── */

.jobs {
  border-top: 3px solid var(--forest);
  border-bottom: 3px solid var(--forest);
}
.job {
  display: grid;
  grid-template-columns: 60px 1fr 200px 140px 60px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background var(--t-fast);
  cursor: pointer;
}
.job:hover { background: var(--cream-deep); }
.job:hover .job__num { color: var(--orange); }
.job:last-child { border-bottom: 0; }
@media (max-width: 880px) {
  .job { grid-template-columns: 50px 1fr 50px; gap: 16px; padding: 22px 0; }
  .job__location, .job__type { display: none; }
}
.job__num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  transition: color var(--t-fast);
}
.job__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0;
  line-height: 1;
}
.job__sub {
  font-size: 0.86rem;
  color: var(--ink-mid);
  margin: 6px 0 0;
}
.job__location, .job__type {
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-mid);
  font-weight: 600;
}
.job__arrow {
  text-align: right;
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ─── FORMS ─────────────────────────────────────────────────── */

.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
}
.form__label--required::after { content: " *"; color: var(--orange); }
.form__input, .form__textarea, .form__select {
  padding: 16px 20px;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__hint {
  font-size: 0.84rem;
  color: var(--ink-muted);
  font-style: italic;
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
}
.form__check input { margin-top: 4px; accent-color: var(--orange); }
.form__check a { color: var(--orange); text-decoration: underline; font-weight: 600; }

.form__success {
  display: none;
  background: var(--forest);
  color: var(--cream);
  padding: 24px 28px;
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  border-left: 4px solid var(--orange);
}
.form__success small { display: block; font-size: 0.84rem; color: rgba(247, 243, 235, 0.7); margin-top: 10px; font-family: 'Inter', sans-serif; font-style: italic; }
.form__success.is-visible { display: block; }
.form__success::before { content: "✓ "; color: var(--orange); font-weight: 900; }

/* Contact-Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--forest);
  color: var(--cream);
  padding: 36px 36px 40px;
}
.info-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.info-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.info-card dt {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  font-weight: 700;
}
.info-card dd { margin: 0; color: var(--cream); }
.info-card dd a { color: var(--cream); text-decoration: underline; }

/* Map mit Consent */
.map-frame {
  margin-top: 32px;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  border: 2px solid var(--forest);
  position: relative;
  overflow: hidden;
}
.map-frame__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: var(--cream-soft);
}
.map-frame__placeholder p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 32ch;
}
.map-frame__placeholder.is-hidden { display: none; }
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: none;
}
.map-frame iframe.is-visible { display: block; }

/* ─── PROCESS-TIMELINE ──────────────────────────────────────── */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 3px solid var(--cream);
  border-bottom: 3px solid var(--cream);
}
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }
.process__step {
  padding: 36px 28px;
  border-right: 1px solid rgba(247, 243, 235, 0.18);
}
.process > .process__step:last-child { border-right: 0; }
@media (max-width: 880px) {
  .process > .process__step:nth-child(2n) { border-right: 0; }
  .process > .process__step:nth-child(-n+2) { border-bottom: 1px solid rgba(247, 243, 235, 0.18); }
}
@media (max-width: 480px) {
  .process > .process__step { border-right: 0; border-bottom: 1px solid rgba(247, 243, 235, 0.18); }
  .process > .process__step:last-child { border-bottom: 0; }
}
.process__num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: block;
}
.process__step h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 12px;
  font-weight: 800;
}
.process__step p { font-size: 0.92rem; color: rgba(247, 243, 235, 0.78); margin: 0; }

/* ─── FOOTER ────────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: rgba(247, 243, 235, 0.78);
  padding: 80px 0 32px;
  border-top: 6px solid var(--orange);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 243, 235, 0.14);
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer__brand-mark {
  width: 50px; height: 50px;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  position: relative;
}
.footer__brand-mark::after {
  content: "";
  position: absolute;
  right: -3px; bottom: -3px;
  width: 18px; height: 18px;
  background: var(--orange);
}
.footer__brand-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
}
.footer__tagline {
  font-family: 'Archivo', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(247, 243, 235, 0.62);
  max-width: 320px;
  margin: 0 0 16px;
}
.footer__address {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(247, 243, 235, 0.5);
  max-width: 320px;
  margin: 0;
}
.footer__col h5 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin: 0 0 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--orange-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(247, 243, 235, 0.42);
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */

.legal { max-width: var(--container-text); margin: 0 auto; padding: clamp(56px, 8vw, 96px) 0; }
.legal h1 { margin-bottom: 40px; font-size: clamp(2.6rem, 6vw, 4.4rem); }
.legal h2 {
  margin-top: 44px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  padding-top: 28px;
  border-top: 2px solid var(--line);
  text-transform: uppercase;
}
.legal h3 { margin-top: 30px; font-size: 1.2rem; text-transform: none; font-family: 'Archivo', sans-serif; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; max-width: 64ch; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.legal__note {
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  font-family: 'Archivo', sans-serif;
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* 404 */
.error-page { text-align: center; padding: clamp(80px, 14vw, 160px) 0; }
.error-page__code {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  color: var(--orange);
  line-height: 0.9;
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* ─── COOKIE-BANNER ─────────────────────────────────────────── */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 540px;
  margin-left: auto;
  background: var(--forest);
  color: var(--cream);
  padding: 26px 28px;
  z-index: 60;
  flex-direction: column;
  gap: 14px;
  border-left: 4px solid var(--orange);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.005em;
}
.cookie-banner__body {
  font-size: 0.95rem;
  color: rgba(247, 243, 235, 0.86);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__body a { color: var(--orange-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn {
  flex: 1; min-width: 140px;
  padding: 12px 18px; font-size: 0.78rem;
}
.cookie-banner__actions .btn--ghost {
  border-color: rgba(247, 243, 235, 0.4);
  color: var(--cream);
}
.cookie-banner__actions .btn--ghost:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
@media (max-width: 600px) { .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 22px 24px; } }

/* ─── REVEAL ────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── SUB-HERO ──────────────────────────────────────────────── */

.subhero {
  background: var(--cream);
  border-bottom: 3px solid var(--forest);
  padding: clamp(72px, 8vw, 128px) 0 clamp(48px, 6vw, 80px);
}
.subhero__inner { max-width: 980px; }
.subhero h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin: 0 0 24px; }
.subhero p { font-size: clamp(1.18rem, 1.6vw, 1.4rem); color: var(--ink); margin: 0; max-width: 60ch; font-weight: 500; }

/* ─── FOCUS ─────────────────────────────────────────────────── */

a:focus-visible, button:focus-visible,
.form__input:focus-visible, .form__select:focus-visible, .form__textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ─── SECTION-HEAD ─────────────────────────────────────────── */

.section__head { max-width: 880px; margin: 0 0 64px; }
.section__head--center { margin: 0 auto 64px; text-align: center; }
.section__head h2 { margin: 0 0 18px; }
.section__head p { font-size: 1.1rem; color: var(--ink-soft); margin: 0; max-width: 60ch; }
.section__head--center p { margin: 0 auto; }
