:root {
  --bg: #f7f7f5;
  --bg-light: #ffffff;
  --text: #171717;
  --muted: #666666;

  --primary: #1f2937;
  --primary-dark: #111827;
  --accent: #0f766e;
  --accent-warm: #d6a21e;

  --card: #ffffff;
  --border: #dddddd;
  --max-width: 1120px;
  --radius: 24px;
  --shadow: 0 20px 48px rgba(17, 24, 39, 0.1);
  --shadow-deep: 0 28px 64px rgba(17, 24, 39, 0.18);
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top right, rgba(214, 162, 30, 0.18), transparent 28%),
    radial-gradient(circle at left 18%, rgba(15, 118, 110, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 38%, #f2efe8 100%);
  color: var(--text);
  line-height: 1.7;
}

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--primary-dark);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--primary-dark);
  border-radius: 10px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 41, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 55, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
}

main,
section,
.hero-grid,
.event-box,
.attitude,
.contact-card {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.logo {
  font-family: var(--heading-font);
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 14px;
  background: linear-gradient(180deg, rgba(247, 247, 245, 0.92), rgba(247, 247, 245, 0.4) 85%, transparent);
  backdrop-filter: blur(10px);
}

.nav {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 22px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: 999px;
  background: rgba(252, 251, 247, 0.78);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 63px;
  height: 63px;
  object-fit: contain;
}

.logo {
  color: #002447;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--accent-warm);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

nav a {
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-dark);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  font-size: 0.95rem;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #e5bb4e, var(--accent-warm));
  color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(214, 162, 30, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #efd37c, #dfb640);
  color: var(--primary-dark);
  box-shadow: 0 18px 34px rgba(214, 162, 30, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--primary);
  border-color: rgba(31, 41, 55, 0.16);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.hero {
  padding: 34px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 42px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.96) 55%, rgba(15, 118, 110, 0.82) 130%);
  color: #ffffff;
  box-shadow: var(--shadow-deep);
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 162, 30, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 130px 130px, 130px 130px;
  opacity: 0.65;
}

.hero-grid > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-right: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6eed9;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

h1 {
  max-width: 13ch;
  font-size: clamp(1.65rem, 4vw, 3.15rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.hero p {
  max-width: 38rem;
}

.hero-lead {
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 18px;
}

.hero-subcopy {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 250, 243, 0.96);
  color: var(--primary-dark);
  box-shadow: var(--shadow-deep);
  transform: translateY(28px);
  overflow: hidden;
}

.hero-visual-media {
  aspect-ratio: 16 / 9;
  background: rgba(17, 24, 39, 0.08);
}

.hero-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-visual-body {
  padding: 28px 30px 30px;
}

.hero-visual-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.hero-visual ul {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
}

.hero-visual li {
  position: relative;
  padding-left: 32px;
  color: rgba(17, 24, 39, 0.78);
}

.hero-visual li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.hero-visual-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 41, 55, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 92px 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.94));
  border-top: 1px solid rgba(31, 41, 55, 0.05);
  border-bottom: 1px solid rgba(31, 41, 55, 0.05);
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title h2 {
  max-width: 16ch;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.section-title p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.lead-box {
  position: relative;
  max-width: 920px;
  padding: 40px 42px 40px 84px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 243, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-box::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  bottom: 34px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-warm));
}

.lead-box p:first-child {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.lead-box p + p {
  margin-top: 16px;
}

.lead-box strong {
  color: var(--primary-dark);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  min-height: 100%;
  padding: 30px 28px 30px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.92));
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.12);
  border-color: rgba(15, 118, 110, 0.18);
}

.card:hover::after {
  transform: scaleX(1);
}

.card-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.22);
}

.pillars .card:nth-child(2) .card-number {
  background: linear-gradient(135deg, var(--accent), #1f8d83);
}

.pillars .card:nth-child(3) .card-number {
  background: linear-gradient(135deg, #8b6a15, var(--accent-warm));
}

.pillars .card:nth-child(4) .card-number {
  background: linear-gradient(135deg, var(--primary), #384759);
}

.card h3 {
  font-size: 1.15rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.card p {
  color: var(--muted);
}

.offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 236, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.16), transparent 68%);
}

.offer:nth-child(2)::before,
.offer:nth-child(4)::before {
  background: radial-gradient(circle, rgba(214, 162, 30, 0.18), transparent 68%);
}

.offer h3 {
  font-size: 1.3rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--primary-dark);
}

.offer p {
  color: var(--muted);
}

.offer strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
  color: var(--primary-dark);
}

.event-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f141c, var(--primary-dark) 22%, var(--primary) 58%, var(--accent) 155%);
  color: #ffffff;
  box-shadow: var(--shadow-deep);
}

.event-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(214, 162, 30, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  opacity: 0.3;
}

.event-box > * {
  position: relative;
  z-index: 1;
}

.event-box h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.event-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.event-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-details {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(8px);
}

.event-details dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
}

.event-details dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details dd {
  font-family: var(--heading-font);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.event-box .btn-primary {
  background: linear-gradient(135deg, #ffffff, #ede4c3);
  color: var(--primary-dark);
}

.event-box .btn-primary:hover {
  background: linear-gradient(135deg, #f6f0d8, #dfb640);
  color: var(--primary-dark);
}

.event-box .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.event-box .btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}

.target-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.target-list div {
  position: relative;
  padding: 18px 20px 18px 46px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.target-list div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  transform: translateY(-50%) rotate(45deg);
}

.attitude {
  max-width: 960px;
  padding: 52px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 238, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.attitude::before {
  content: "Haltung";
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(17, 24, 39, 0.05);
  font-family: var(--heading-font);
  font-size: clamp(4.2rem, 11vw, 7.4rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.attitude p {
  max-width: 62ch;
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.attitude strong {
  color: var(--primary-dark);
}

.partner-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.partner-list {
  padding: 34px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.92));
  box-shadow: var(--shadow);
}

.partner-list h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.partner-list ul {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  color: var(--muted);
}

.partner-list li {
  position: relative;
  padding-left: 32px;
}

.partner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-warm));
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.contact-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(150deg, #0f141c, var(--primary-dark) 28%, var(--primary) 58%, var(--accent) 132%);
  color: #ffffff;
  box-shadow: var(--shadow-deep);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 162, 30, 0.22), transparent 72%);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 0.98;
  margin-bottom: 16px;
  letter-spacing: -0.06em;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.contact-intro {
  margin-bottom: 0;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.cta-option {
  min-height: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-option:hover,
.cta-option.is-active {
  transform: translateY(-2px);
  border-color: rgba(214, 162, 30, 0.8);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.2);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.form-field em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  border-color: rgba(214, 162, 30, 0.9);
  box-shadow: 0 0 0 6px var(--primary-dark);
}

.form-field option {
  color: var(--primary-dark);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.privacy-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-card .btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #efe3b8);
  color: var(--primary-dark);
}

.contact-card .btn-primary:hover {
  background: linear-gradient(135deg, #f8f1da, #dfb640);
  color: var(--primary-dark);
}

.contact-card .btn-secondary {
  width: 100%;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card .btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.contact-meta {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

footer {
  padding: 24px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.hero-copy,
.hero-visual,
.lead-box,
.card,
.offer,
.event-box,
.target-list div,
.attitude,
.partner-list,
.contact-card {
  animation: rise-in 0.8s ease both;
}

.hero-visual {
  animation-delay: 0.08s;
}

.pillars .card:nth-child(2),
.offers .offer:nth-child(2),
.target-list div:nth-child(2),
.target-list div:nth-child(6) {
  animation-delay: 0.08s;
}

.pillars .card:nth-child(3),
.offers .offer:nth-child(3),
.target-list div:nth-child(3),
.target-list div:nth-child(7) {
  animation-delay: 0.16s;
}

.pillars .card:nth-child(4),
.offers .offer:nth-child(4),
.target-list div:nth-child(4),
.target-list div:nth-child(8) {
  animation-delay: 0.24s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mannraum-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 12px;
    border: 1px solid rgba(31, 41, 55, 0.1);
    border-radius: 24px;
    background: rgba(252, 251, 247, 0.98);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  }

  .mannraum-nav.is-open {
    display: block;
  }

  .mannraum-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .mannraum-nav a {
    display: block;
    padding: 12px 14px;
  }

  .hero,
  section {
    padding: 72px 0 56px;
  }

  .hero-grid,
  .event-box,
  .partner-grid,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    transform: none;
  }

  .hero-metrics,
  .offers,
  .target-list,
  .contact-options,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-title h2 {
    max-width: 10ch;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 90px;
  }

  body::before {
    background-size: 84px 84px;
  }

  .container {
    width: min(100% - 20px, var(--max-width));
  }

  header {
    padding-top: 10px;
  }

  .nav {
    min-height: 64px;
    padding: 12px 16px;
    gap: 14px;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2rem;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo img {
    width: 54px;
    height: 54px;
  }

  .hero {
    padding: 22px 0 52px;
  }

  section {
    padding: 60px 0;
  }

  .hero-grid {
    gap: 28px;
    padding: 26px 22px;
    border-radius: 30px;
  }

  h1 {
    font-size: clamp(1.6rem, 9vw, 2.15rem);
  }

  .section-title h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .hero-metrics,
  .pillars,
  .offers,
  .target-list,
  .contact-options,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-box,
  .card,
  .offer,
  .attitude,
  .event-box,
  .partner-list,
  .contact-card {
    padding: 24px;
  }

  .hero-visual-body {
    padding: 24px;
  }

  .lead-box {
    padding: 28px 24px 24px;
  }

  .lead-box::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 5px;
  }

  .event-details dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .attitude::before {
    font-size: 4.6rem;
    top: auto;
    bottom: 10px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
