:root {
  --bg: #050507;
  --bg-soft: #111218;
  --bg-deep: #020203;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f3eb;
  --muted: #c9cbd2;
  --accent: #ff5b19;
  --accent-2: #00cfe8;
  --accent-3: #ff244f;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.66);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 91, 25, 0.25), transparent 36rem),
    radial-gradient(circle at 86% 8%, rgba(0, 207, 232, 0.16), transparent 34rem),
    radial-gradient(circle at 48% 44%, rgba(255, 36, 79, 0.10), transparent 38rem),
    linear-gradient(180deg, #050507 0%, #101117 48%, #060609 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.protected-media,
.protected-media * {
  -webkit-user-select: none;
  user-select: none;
}
.protected-media img {
  pointer-events: none;
  -webkit-user-drag: none;
}
.media-guard {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 7, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-logo,
.custom-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 91, 25, 0.40));
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}
.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
}
.menu a:hover { color: var(--text); }
.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}
.lang-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center 18%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.94), rgba(5, 5, 7, 0.68) 54%, rgba(5, 5, 7, 0.84)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: 7%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 25, 0.30), transparent 64%);
  filter: blur(10px);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 42px;
  align-items: center;
  padding: 92px 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.78rem;
  margin: 0 0 14px;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.hero h1 {
  font-size: clamp(4.2rem, 12vw, 9.2rem);
  line-height: 0.82;
  margin: 0 0 22px;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  text-shadow: 0 18px 64px rgba(0, 0, 0, 0.75);
}
.tagline {
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 0 18px;
}
.intro {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0;
}
.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(255, 91, 25, 0.22);
}
.button.ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}
.button:hover,
.social-card:hover,
.member-card:hover { transform: translateY(-3px); }

.pack-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 18px;
  min-height: 430px;
  display: grid;
  gap: 16px;
}
.profile-image-wrap {
  position: relative;
  min-height: 300px;
  border-radius: 26px;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0,0,0,0.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}
.profile-image-wrap::after,
.member-image::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.52));
  z-index: 2;
  pointer-events: none;
}
.pack-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 20px var(--accent-2);
}
.mini-hierarchy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mini-hierarchy span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section.dark {
  background: rgba(0, 0, 0, 0.24);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}
.section-inner.narrow { max-width: 820px; }
.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.content-block {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--panel);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 20px 64px rgba(0,0,0,0.22);
}
.content-block h1,
.content-block h2,
.content-block h3 { color: var(--text); margin-top: 0; }
.content-block h2,
.section-heading h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  margin: 0;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.content-block p { color: var(--muted); }
.content-block p:last-child { margin-bottom: 0; }
.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-heading p:not(.section-kicker) { color: var(--muted); }

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.member-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
  transition: transform 160ms ease, border-color 160ms ease;
}
.member-card:hover { border-color: rgba(255, 255, 255, 0.30); }
.member-image {
  position: relative;
  min-height: 340px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: rgba(0,0,0,0.34);
  overflow: hidden;
}
.member-body { padding: 22px; }
.member-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.member-rank {
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}
.member-role {
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 91, 25, 0.16);
  color: var(--text);
  border: 1px solid rgba(255, 91, 25, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.member-card h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}
.member-card p {
  color: var(--muted);
  margin: 0 0 16px;
}
.member-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 950;
}
.member-link:hover { text-decoration: underline; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.social-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.social-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
}
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(255, 91, 25, 0.95), rgba(0, 207, 232, 0.78));
  color: #fff;
}
.social-icon svg {
  width: 34px;
  height: 34px;
}
.rank-icon {
  font-weight: 1000;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.social-card strong { display: block; font-size: 1.18rem; }
.social-card small { display: block; color: var(--muted); margin-top: 4px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center top;
  box-shadow: 0 16px 48px rgba(0,0,0,0.26);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) { grid-column: span 1; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 10%, rgba(255,255,255,0.16), transparent 38%);
  z-index: 1;
}

.contact {
  text-align: center;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: rgba(0,0,0,0.36);
}
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.footer-inner p { margin: 0; }
.footer-note { max-width: 650px; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(14px);
}
.age-gate[hidden] { display: none; }
.age-card {
  width: min(100%, 520px);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(20,20,28,0.98), rgba(7,7,10,0.98));
  box-shadow: var(--shadow);
  text-align: center;
}
.age-card img { margin: 0 auto 14px; }
.age-card h2 { margin: 0 0 10px; font-size: 2rem; line-height: 1.05; }
.age-card p { color: var(--muted); }
.age-actions { justify-content: center; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.button,
.social-card,
.member-card { will-change: transform; }

@media (max-width: 980px) {
  .hero-inner,
  .two-col {
    grid-template-columns: 1fr;
  }
  .member-grid,
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
  }
  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 68px;
  }
  .brand span { font-size: 0.95rem; }
  .menu { display: none; }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding: 70px 0 46px;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
    letter-spacing: -0.075em;
  }
  .pack-card { min-height: auto; }
  .profile-image-wrap { min-height: 250px; }
  .member-grid,
  .link-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  .content-block h2,
  .section-heading h2 {
    font-size: 2.4rem;
  }
}

/* Per-image focal point adjustments */
.member-card[data-member="panda"] .member-image {
  background-position: center 58%;
}

/* Keep Panda visible in the gallery as well */
.gallery-item[aria-label="Hornydogs image 7"] {
  background-position: center 52%;
}


/* Hornydogs logo integration */
.profile-image-wrap {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* v1.7 legal/contact additions */
.muted-text { color: var(--muted); }
.small-note { color: var(--muted); font-size: .92rem; }
.contact-mail,
.email-obfuscated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  user-select: text;
}
.legal-section { scroll-margin-top: 100px; }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.legal-grid h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.legal-placeholder {
  color: #ffe08a;
  font-weight: 800;
}
.footer-links a {
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }
@media (max-width: 780px) {
  .legal-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 10px; }
}



/* v1.8 legal layout and SEO anchor fixes */
.legal-section {
  scroll-margin-top: 110px;
}
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 960px;
}
.legal-card,
.legal-section .content-block {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.legal-grid h2,
.legal-section h2 {
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.legal-subtitle {
  display: inline-flex;
  max-width: 100%;
  padding: 6px 11px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  font-weight: 850;
  font-size: .92rem;
  overflow-wrap: anywhere;
}
#impressum,
#datenschutz {
  scroll-margin-top: 110px;
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media (max-width: 680px) {
  .legal-section .content-block {
    padding: 22px;
  }
  .legal-grid h2,
  .legal-section h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }
  .legal-subtitle {
    border-radius: 18px;
    line-height: 1.25;
  }
}


/* v1.9 Rudel-Songs / audio section */
.music-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 207, 232, 0.12), transparent 30rem),
    radial-gradient(circle at 85% 45%, rgba(255, 91, 25, 0.14), transparent 28rem);
}
.music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.music-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
  overflow: hidden;
}
.music-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0,0,0,.26);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.28);
}
.music-cover.cinematic {
  background-size: 86%;
}
.music-copy {
  min-width: 0;
}
.music-label {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.music-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.music-card p {
  color: var(--muted);
}
.hornydogs-audio {
  width: 100%;
  margin-top: 10px;
  accent-color: var(--accent);
}
.audio-rights {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .92rem;
}
@media (max-width: 980px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .music-card {
    grid-template-columns: 1fr;
  }
  .music-cover {
    max-width: 220px;
  }
}






/* v2.6 Rudelstruktur: ultra-fine per-person framing */
.member-card[data-member="tails"] .member-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 10%;
}
.member-card[data-member="panda"] .member-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 30%;
}
.member-card[data-member="firedog"] .member-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 12%;
}
.member-card[data-member="guido_panda"] .member-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 18%;
}
.member-card[data-member="reakar"] .member-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 4%;
}
.member-card[data-member="forcewolf"] .member-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 3%;
}

@media (max-width: 980px) {
  .member-image {
    min-height: 360px;
  }
}

@media (max-width: 780px) {
  .member-image {
    min-height: 380px;
  }
}

@media (max-width: 520px) {
  .member-image {
    min-height: 400px;
  }
}


/* v2.7 Puppygeburtstage */
.puppy-birthday {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 207, 232, .24);
  background: rgba(0, 207, 232, .10);
  color: var(--text);
  font-size: .86rem;
  font-weight: 850;
  line-height: 1.2;
}
.puppy-birthday span {
  color: var(--accent-2);
  font-weight: 950;
}


/* v2.8 cinematic pack hero background */
.hero {
  background-position: center center;
}
.hero::before {
  background-position: center center;
}
@media (max-width: 780px) {
  .hero {
    background-position: 62% center;
  }
  .hero::before {
    background-position: 62% center;
  }
}
