@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #171717;
  --text: #f5f5f5;
  --muted: #aaaaaa;
  --yellow: #ffc400;
  --line: rgba(255,255,255,.10);
  --max: 1180px;
  --header: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  height: var(--header);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max))/2));
  background: rgba(8,8,8,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--yellow); }

.main-nav .nav-cta {
  padding: 12px 18px;
  background: var(--yellow);
  color: #090909;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px 0;
  background: white;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: calc(var(--header) + 70px) 24px 70px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,196,0,.08), transparent 32%),
    #050505;
}

.hero-wolf {
  position: absolute;
  width: min(820px, 82vw);
  max-height: 88vh;
  object-fit: contain;
  opacity: .08;
  filter: grayscale(1);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #090909 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  text-align: center;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.055em;
  font-weight: 900;
}

.hero h1 span { color: var(--yellow); }

.hero-copy {
  max-width: 650px;
  margin: 28px auto 0;
  color: #c7c7c7;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  background: var(--yellow);
  color: #090909;
}

.button-secondary {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
  color: white;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  font-size: 1.5rem;
  color: var(--yellow);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.section {
  padding: 110px 24px;
  background: #0d0d0d;
}

.section-dark { background: #080808; }

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.lead {
  color: #d7d7d7;
  font-size: 1.12rem;
}

.section p:not(.eyebrow) { color: #a9a9a9; }

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--yellow);
  font-weight: 700;
}

.visual-card {
  min-height: 420px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background:
    linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.2)),
    radial-gradient(circle at 50% 30%, #282828, #111);
}
.visual-card { position: relative; overflow: hidden; }
.visual-card > *:not(.cms-mobile-image) { position: relative; z-index: 2; }
.cms-mobile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.visual-card.has-cms-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.30), rgba(0,0,0,.06));
  z-index: 1;
  pointer-events: none;
}

/* Sobald ein CMS-Foto vorhanden ist, keine Platzhalter-Texte oder Emojis darüberlegen. */
.visual-card.has-cms-image .visual-mark,
.visual-card.has-cms-image #mobilePlaceholder {
  display: none;
}


.visual-mark {
  font-size: 4rem;
  margin-bottom: 12px;
}

.centered { text-align: center; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,196,0,.55);
}

.card-number {
  color: var(--yellow);
  font-weight: 900;
}

.logo-panel {
  min-height: 460px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(255,196,0,.09), transparent 50%),
    #0e0e0e;
}

.logo-panel img { width: min(360px, 75%); }

blockquote {
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
}

.request-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(255,196,0,.07), transparent 25%),
    #101010;
}

.request-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.request-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: #151515;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 15px;
  color: #d6d6d6;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

input, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid #333;
  border-radius: 0;
  outline: none;
  background: #0c0c0c;
  color: white;
}

input:focus, textarea:focus { border-color: var(--yellow); }

textarea { resize: vertical; }

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 10px 0 0;
  font-size: .72rem;
}

.contact-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 35px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.contact-strip h2 { margin: 0; font-size: 2.2rem; }
.contact-strip p { color: #aaa; }

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 55px 0 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: start;
}

.footer-brand img { width: 100px; }
.footer-brand p { color: #888; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: .82rem;
  color: #aaa;
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #666;
  font-size: .78rem;
}

.legal-page {
  min-height: 100vh;
  padding: calc(var(--header) + 70px) 24px 80px;
}

.legal-inner {
  width: min(850px, 100%);
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
}

.legal-inner h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.legal-inner p { color: #aaa; }
.legal-back { color: var(--yellow); font-weight: 700; }

@media (max-width: 950px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    padding: 20px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; }
  .main-nav .nav-cta { margin-top: 10px; padding: 14px; text-align: center; }

  .split, .request-grid { grid-template-columns: 1fr; gap: 45px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 600px) {
  :root { --header: 72px; }

  .site-header { padding: 0 18px; }
  .brand img { width: 52px; height: 52px; }

  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-logo { width: 135px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }

  .section { padding: 78px 18px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .visual-card, .logo-panel { min-height: 330px; }

  .request-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .contact-strip, .site-footer {
    width: calc(100% - 36px);
  }

  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-direction: column; gap: 12px; }
}


/* V4 – Team / Unser Rudel */
.team-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,196,0,.06), transparent 30%),
    #0d0d0d;
}

.team-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #aaa;
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151515;
  transition: transform .2s ease, border-color .2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,196,0,.55);
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, #292929, #101010 70%);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 5rem;
  filter: grayscale(1);
  opacity: .65;
}

.team-body {
  padding: 24px;
}

.team-body h3 {
  margin: 0;
  font-size: 1.35rem;
}

.team-role {
  margin: 6px 0 14px !important;
  color: var(--yellow) !important;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.team-description {
  margin: 0 !important;
  color: #aaa !important;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 5 / 4; }
}
