:root {
  --bg: #0c1020;
  --bg-soft: #141a2f;
  --card: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b8bdd3;
  --gold: #f5c86b;
  --gold-light: #ffe0a0;
  --blue: #6da7ff;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(12, 16, 32, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.brand strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.brand span {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 7px auto;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 32, 0.96) 0%, rgba(12, 16, 32, 0.72) 46%, rgba(12, 16, 32, 0.35) 100%),
    url("img/hero-dj.jpg") center/cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: auto -10% -36% -10%;
  height: 55%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 200, 107, 0.22), transparent 32%),
              radial-gradient(circle at 70% 40%, rgba(109, 167, 255, 0.24), transparent 36%),
              var(--bg);
  border-radius: 50% 50% 0 0;
  filter: blur(0.2px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 110px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgba(245, 200, 107, 0.16);
  filter: blur(100px);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 80px;
  width: 420px;
  height: 420px;
  background: rgba(109, 167, 255, 0.16);
  filter: blur(110px);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  max-width: 850px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 130px;
  height: 8px;
  margin-top: 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.hero-text {
  margin-top: 28px;
  max-width: 660px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #17131a;
  box-shadow: 0 16px 36px rgba(245, 200, 107, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(245, 200, 107, 0.32);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-secondary:hover {
  border-color: rgba(245, 200, 107, 0.65);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-card {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 120px;
  z-index: 2;
  width: 300px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.hero-card strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 6px;
}

.section {
  padding: 110px 0;
}

.about {
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 200, 107, 0.09), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(109, 167, 255, 0.1), transparent 34%),
    var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 60px;
  align-items: center;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
}

.about-text p:not(.section-label),
.section-head p,
.contact-info p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
}

.features {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.features div {
  padding: 22px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

.features strong {
  display: block;
  margin-bottom: 6px;
}

.features span {
  color: var(--muted);
}

.portrait-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 560px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 16, 32, 0.9), transparent 55%);
}

.portrait-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.portrait-info h3 {
  font-size: 1.45rem;
}

.portrait-info p {
  margin-top: 4px;
  color: var(--gold);
  font-weight: 700;
}

.services {
  background: #10162a;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.service-card {
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--card-border);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 200, 107, 0.42);
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
}

.service-card h3 {
  font-size: 1.35rem;
  margin: 42px 0 14px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
}

.gallery-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 200, 107, 0.1), transparent 30%),
    var(--bg);
}

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

.gallery-item {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 0.78;
  background: var(--bg-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 16, 32, 0.45), transparent);
  opacity: 0;
  transition: 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.contact {
  background: #10162a;
}

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

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.contact-list div {
  padding: 22px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--card-border);
}

.contact-list span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-list strong {
  display: block;
  margin-top: 4px;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-form {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px 17px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 32, 0.68);
  color: #fff;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 200, 107, 0.7);
}

textarea {
  resize: vertical;
}

.form-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer {
  padding: 30px 0;
  background: #090d19;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  margin-left: 18px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .navbar {
    height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: rgba(12, 16, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 15px 8px;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 40px auto 0;
    width: min(100% - 40px, 420px);
  }

  .about-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card,
  .portrait-card img {
    min-height: auto;
    height: 480px;
  }

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

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

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

  .footer a {
    margin-left: 0;
    margin-right: 14px;
  }
}
/* Mehr Hover auf Boxen */

.features div,
.service-card,
.contact-list div,
.contact-form,
.portrait-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.features div:hover,
.contact-list div:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 200, 107, 0.42);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.service-card:hover,
.contact-form:hover,
.portrait-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 200, 107, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

/* Galerie Buttons */

.gallery-item {
  border: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

/* Scroll Animationen */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.service-card:nth-child(2),
.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  transition-delay: 0.08s;
}

.service-card:nth-child(3),
.gallery-item:nth-child(3),
.gallery-item:nth-child(6) {
  transition-delay: 0.16s;
}

/* Lightbox im selben Fenster */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 8, 18, 0.88);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  transform: scale(0.94);
  transition: transform 0.25s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(245, 200, 107, 0.95);
  color: #151515;
  transform: rotate(90deg);
}

body.no-scroll {
  overflow: hidden;
}
/* --------------------------------------------------
   Mobile Optimierung
-------------------------------------------------- */

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .site-header {
    background: rgba(12, 16, 32, 0.9);
  }

  .navbar {
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 56px;
    display: block;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(12, 16, 32, 0.9) 0%, rgba(12, 16, 32, 0.78) 45%, rgba(12, 16, 32, 0.98) 100%),
      url("img/hero-dj.jpg") center/cover;
    transform: none;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
  }

  .eyebrow,
  .section-label {
    font-size: 0.74rem;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
    max-width: 100%;
  }

  .hero h1::after {
    width: 92px;
    height: 6px;
    margin-top: 20px;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.72;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 12px;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 160px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, 620px);
    margin: 32px auto 0;
    padding: 22px;
    border-radius: 22px;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .about-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-text p:not(.section-label),
  .section-head p,
  .contact-info p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .features {
    gap: 12px;
    margin-top: 26px;
  }

  .features div,
  .service-card,
  .contact-list div {
    padding: 20px;
    border-radius: 20px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin: 26px 0 12px;
  }

  .portrait-card {
    min-height: auto;
    height: auto;
    border-radius: 26px;
  }

  .portrait-card img {
    height: 430px;
    object-fit: cover;
  }

  .portrait-info {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-item {
    border-radius: 18px;
    aspect-ratio: 1 / 0.85;
  }

  .contact-list {
    margin-top: 26px;
    gap: 12px;
  }

  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  input,
  select,
  textarea {
    padding: 15px;
    border-radius: 14px;
  }
}

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand span {
    font-size: 0.75rem;
  }

  .hero {
    padding: 104px 0 48px;
  }

  .hero-content {
    width: min(100% - 28px, 520px);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
    line-height: 1.04;
  }

  .hero-text {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-card {
    width: min(100% - 28px, 520px);
    padding: 20px;
  }

  .hero-card strong {
    font-size: 0.98rem;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .about-grid,
  .contact-grid {
    gap: 24px;
  }

  .features div,
  .service-card,
  .contact-list div {
    padding: 18px;
    border-radius: 18px;
  }

  .service-card p,
  .features span {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .portrait-card img {
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    aspect-ratio: 1 / 0.72;
    border-radius: 18px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 22px;
  }

  .form-row {
    margin-bottom: 15px;
  }

  label {
    font-size: 0.94rem;
  }

  input,
  select,
  textarea {
    font-size: 0.96rem;
  }

  .footer {
    padding: 26px 0;
  }

  .footer-inner {
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .features div,
  .service-card,
  .contact-list div,
  .contact-form {
    padding: 16px;
  }
}
/* --------------------------------------------------
   Unterseiten / Impressum / Datenschutz
-------------------------------------------------- */

.subpage-hero {
  position: relative;
  padding: 170px 0 80px;
  background:
    radial-gradient(circle at 18% 30%, rgba(245, 200, 107, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(109, 167, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #0c1020 0%, #141a2f 100%);
  overflow: hidden;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: rgba(245, 200, 107, 0.12);
  filter: blur(100px);
  border-radius: 50%;
}

.subpage-hero .container {
  position: relative;
  z-index: 2;
}

.subpage-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  margin-bottom: 22px;
}

.subpage-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.legal-section {
  background: var(--bg);
}

.legal-container {
  max-width: 920px;
}

.legal-card {
  padding: 44px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 34px;
}

.legal-block {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.legal-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-block h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.legal-block p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(245, 200, 107, 0.6);
  transition: 0.25s ease;
  word-break: break-word;
}

.legal-block a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.legal-updated {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(245, 200, 107, 0.1);
  border: 1px solid rgba(245, 200, 107, 0.18);
}

.legal-updated p {
  color: var(--gold-light);
  font-weight: 700;
}

@media (max-width: 900px) {
  .subpage-hero {
    padding: 128px 0 64px;
  }

  .legal-card {
    padding: 30px;
    border-radius: 28px;
  }

  .legal-block {
    padding: 22px 0;
  }
}

@media (max-width: 560px) {
  .subpage-hero {
    padding: 112px 0 52px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  .subpage-intro {
    font-size: 1rem;
  }

  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-card h2 {
    margin-bottom: 24px;
  }

  .legal-block h3 {
    font-size: 1.1rem;
  }

  .legal-block p {
    font-size: 0.96rem;
    line-height: 1.75;
  }
}
.legal-list {
  margin: 14px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.85;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-list li::marker {
  color: var(--gold);
}

@media (max-width: 560px) {
  .legal-list {
    padding-left: 18px;
    font-size: 0.96rem;
    line-height: 1.75;
  }
}