@font-face {
  font-family: 'title';
  src: url('../fonts/air-pro-comp-md.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'sans';
  src: url('https://b-i-r-d.de/wp-content/themes/yours59/fonts/PlusJakartaSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'sans';
  src: url('https://b-i-r-d.de/wp-content/themes/yours59/fonts/PlusJakartaSans-Medium.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #C3007C;
  --ink: #141414;
  --text: #2A2A2A;
  --muted: #5C5C58;
  --line: #E3E3DE;
  --soft: #F5F5F0;
  --pad: 96px;
  --header-h: 96px;
  --font-title: 'title', 'Oswald', 'Arial Narrow', sans-serif;
  --font-sans: 'sans', 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  font-family: var(--font-sans);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}
a { color: var(--ink); }
a:hover { color: var(--accent); }
h1, h2, h3, .display { font-family: var(--font-title); font-weight: 600; margin: 0; }
img { max-width: 100%; }

section[id], aside[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #FFFFFF;
  border-bottom: 2px solid var(--ink);
}
.site-header .logo { display: flex; align-items: center; }
.site-header .logo img { width: 117px; height: auto; display: block; }
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main-menu a {
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.main-menu a:hover { color: var(--accent); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Grid helpers */
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}
.section { padding: 96px var(--pad) 0; }
.kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.section h2 { font-size: 38px; }

/* Hero */
.hero {
  background: var(--accent);
  color: var(--ink);
  padding: 88px var(--pad);
  align-items: end;
}
.hero-main {
  grid-column: span 8;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero .kicker { color: var(--ink); font-size: 20px; letter-spacing: 0.08em; }
.hero h1 {
  font-size: 78px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero-cta {
  align-self: flex-start;
  margin-top: 14px;
  display: inline-block;
  padding: 12px 26px;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}
.hero-cta:hover { color: var(--accent); background: #FFFFFF; }
.hero-side {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.45);
}
.fact:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
.fact span:first-child { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.85); }
.fact span:last-child { font-size: 20px; font-weight: 700; color: #FFFFFF; }

/* Thema */
.thema-text {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.thema-text p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text); }
.thema-text h3 { font-size: 26px; margin-top: 10px; }
.thema-bird {
  grid-column: 9 / span 4;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 48px);
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.thema-bird img { width: 100%; max-width: 340px; height: auto; }
.downloads { display: flex; gap: 20px; padding-top: 8px; font-size: 15px; font-weight: 600; }

/* Ablauf */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card h3 { font-size: 26px; line-height: 1.15; }
.card .place { font-size: 15px; color: var(--muted); }
.card .subtitle { font-size: 16px; font-weight: 700; margin: 0; }
.schedule {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin: 0;
}
.schedule > div { display: flex; gap: 16px; }
.schedule dt { width: 68px; flex-shrink: 0; font-weight: 700; color: var(--accent); }
.schedule dd { margin: 0; font-size: 15px; line-height: 1.5; }
.schedule .pause dd { color: var(--muted); }

/* Vortragende */
.people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}
.person { border-top: 2px solid var(--ink); padding-top: 12px; }
.person strong { font-size: 16px; }
.person span { display: block; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Organisatorisches */
.orga {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.orga-item { display: flex; flex-direction: column; gap: 8px; }
.orga-item h3 { font-family: var(--font-sans); font-weight: 700; font-size: 17px; }
.orga-item p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text); }
.prices { display: flex; gap: 32px; }
.price { display: flex; flex-direction: column; gap: 4px; }
.price span:first-child { font-size: 14px; color: var(--muted); }
.price .display { font-size: 32px; color: var(--accent); }
.note { font-size: 14px; color: var(--muted); margin: 0; }
.bank {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px;
  font-size: 15px;
  line-height: 1.7;
}
.bank p { margin: 0 0 8px; }
.bank p:last-child { margin: 0; }
.orga-notes { display: flex; flex-direction: column; gap: 8px; }
.orga-foot { font-size: 16px; line-height: 1.6; color: var(--text); margin: 0; }

/* Anmeldung */
.signup { grid-column: 9 / span 4; }
.signup-box {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--ink);
  color: #FFFFFF;
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.signup-box h2 { font-size: 28px; }
.signup-box form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 15px; font-weight: 600; }
.field input {
  height: 50px;
  border: 0;
  border-radius: 2px;
  padding: 0 16px;
  font-size: 16px;
  background: #FFFFFF;
  font-family: inherit;
}
.signup-box button {
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  font-family: inherit;
  cursor: pointer;
}
.signup-box button:disabled { opacity: 0.7; cursor: default; }
.signup-deadline { font-size: 13px; color: #B5B5B0; text-align: center; }
#formStatus { font-size: 15px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer {
  margin-top: 96px;
  background: var(--ink);
  color: #C9C9C9;
  padding: 72px var(--pad) 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  font-size: 14px;
}
.site-footer p { margin: 0 0 8px; }
.site-footer a { color: #C9C9C9; }
.site-footer a:hover { color: #FFFFFF; }
.site-footer .claim { font-family: var(--font-title); font-size: 28px; color: #FFFFFF; margin: 0 0 12px; }
.footer-logos { display: flex; align-items: center; gap: 24px; margin: 8px 0 28px; }
.footer-logos img { filter: invert(1); display: block; height: 56px; width: auto; }

/* Responsive */
@media (max-width: 1200px) {
  :root { --pad: 48px; }
  .main-menu a { font-size: 20px; }
  .main-menu ul { gap: 18px; }
}
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .main-menu ul {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #FFFFFF;
    border-bottom: 2px solid var(--ink);
    padding: 8px var(--pad) 16px;
  }
  .main-menu.open ul { display: flex; }
  .main-menu li a { display: block; padding: 10px 0; font-size: 26px; }
}
@media (max-width: 900px) {
  :root { --pad: 24px; --header-h: 72px; }
  .site-header .logo img { width: 96px; }
  .grid { grid-template-columns: minmax(0, 1fr); }
  .hero { padding: 56px var(--pad); }
  .hero-main, .hero-side, .thema-text, .orga, .signup { grid-column: 1 / -1; }
  .hero h1 { font-size: 52px; }
    .thema-bird { grid-column: 1 / -1; grid-row: 1; position: static; padding-top: 0; }
  .thema-bird img { max-width: 200px; }
  .section { padding-top: 64px; }
  .section h2 { font-size: 32px; }
  .cards { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signup-box { position: static; padding: 28px; }
  .site-footer { flex-direction: column; margin-top: 64px; padding-top: 48px; }
}
@media (max-width: 560px) {
  .people { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
}
