/* BRDSTN.digital – statischer Klon
   Design 1:1 nach Original (Kalium-Theme, ausgelesene Werte)
   ---------------------------------------------------------- */

:root {
  --bg: #ffffff;
  --text: #676767;
  --heading-dark: #444444;
  --heading-light: #bfbfbf;
  --accent: #dd3333;
  --nav: #999999;
  --footer-bg: #252525;
  --footer-text: #777777;
  --line: #ececec;
  --maxw: 1140px;
  --header-h: 90px;
  --font-body: "Hind", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Francois One", "Helvetica Neue", Arial, sans-serif;
  --font-footer: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 26px;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #b71c1c; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  margin: 0 0 20px;
  text-transform: none;
  letter-spacing: normal;
}
h1 { font-size: 54px; line-height: 62px; color: var(--heading-light); }
h2 { font-size: 34px; line-height: 44px; color: var(--heading-dark); }
h3 { font-size: 22px; line-height: 34px; color: var(--heading-light); }
h4 { font-size: 18px; line-height: 30px; color: var(--heading-dark); }
p { margin: 0 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--heading-dark);
  font-weight: 400;
}
.logo:hover { color: var(--accent); }

.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; align-items: center; }
.main-nav a { color: var(--nav); font-family: var(--font-body); font-size: 14px; font-weight: 400; }
.main-nav a:hover { color: var(--accent); }
.social-nav { display: flex; gap: 15px; margin-left: 6px; }
.social-nav a { color: var(--nav); font-size: 15px; }
.social-nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--heading-dark);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; background: #ffffff; }
.section-soft { background: #f7f7f7; }
.section-dark { background: #ffffff; }   /* Original: alle Bereiche hell */

.hero {
  background: #ffffff;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 40px;
}
.hero h1 { margin-bottom: 8px; }
.hero .subtitle {
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 44px;
  color: var(--heading-dark);
  margin: 0 0 10px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-2.reverse .col-text { order: 2; }

.rounded { border-radius: 4px; }

.eyebrow { display: none; }
.scroll-hint { display: none; }

/* skills list */
.skills { list-style: none; padding: 0; margin: 20px 0 0; }
.skills li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--heading-dark);
  font-family: var(--font-head);
  font-size: 16px;
}
.skills li:first-child { border-top: 1px solid var(--line); }

/* logos grid */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 40px;
  align-items: center;
  margin: 30px 0 10px;
}
.logos img {
  max-height: 55px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: .65;
  transition: .25s;
}
.logos img:hover { filter: none; opacity: 1; }
.logos-label { margin-top: 45px; color: var(--heading-dark); font-family: var(--font-head); font-size: 18px; }

/* ---------- Footer (dunkel) ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 60px 0 30px; }
.site-footer h4 { color: var(--footer-text); font-family: var(--font-footer); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.site-footer p { color: var(--footer-text); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a, .site-footer a { color: var(--footer-text); }
.footer-links a:hover, .site-footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 14px; color: var(--footer-text);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--footer-text); font-size: 16px; }
.footer-social a:hover { color: var(--accent); }

/* legal pages */
.legal { padding: calc(var(--header-h) + 50px) 0 70px; }
.legal h1 { font-size: 34px; line-height: 44px; color: var(--heading-dark); margin-bottom: 24px; }
.legal h2 { font-size: 24px; line-height: 34px; color: var(--heading-dark); margin-top: 34px; }
.legal h3 { font-size: 18px; line-height: 28px; color: var(--heading-dark); margin-top: 22px; }
.legal h4 { font-size: 16px; color: var(--text); font-family: var(--font-body); font-weight: 600; }
.legal em { color: var(--heading-dark); font-style: italic; }
.legal .container { max-width: 820px; }
.legal ul { padding-left: 20px; }
.legal .uppercase-block { font-size: 12px; line-height: 22px; color: var(--text); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #252525; color: #cfcfcf;
  padding: 16px 22px; z-index: 1100;
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px;
}
.cookie-banner button {
  background: var(--accent); color: #fff; border: 0; padding: 8px 18px;
  border-radius: 3px; cursor: pointer; font: inherit; font-weight: 400;
}
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner.hidden { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2, .grid-2.reverse { grid-template-columns: 1fr; gap: 32px; }
  .grid-2.reverse .col-text { order: 0; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #ffffff; padding: 18px 20px; box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-130%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 16px; align-items: flex-start; }
  .social-nav { margin-left: 0; }
  h1, .hero h1 { font-size: 40px; line-height: 48px; }
  h2, .hero .subtitle { font-size: 28px; line-height: 38px; }
}
@media (max-width: 520px) {
  .logos { grid-template-columns: repeat(2, 1fr); }
  section { padding: 55px 0; }
}
