:root {
  --bg-900: #000000;
  --bg-850: #050505;
  --bg-800: #0b0b0f;
  --glass: rgba(15, 20, 30, 0.55);
  --line: rgba(255, 255, 255, 0.08);
  --cyan: #ff8a00;
  --blue: #ff6a00;
  --gold: #ffb347;
  --pink: #ff3d81;
  --text: #f5f7ff;
  --muted: #b8bfd8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Arial", sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-top: 78px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    480px circle at var(--cursor-x, 50%) var(--cursor-y, 30%),
    rgba(255, 138, 0, 0.16),
    transparent 60%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 140px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 138, 0, 0.04) 0,
      rgba(255, 138, 0, 0.04) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 138, 0, 0.7);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--cyan);
  color: #001018;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(2, 2, 6, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(255, 138, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", "Arial", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.logo img {
  height: 36px;
}

.logo-fallback {
  display: none;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 138, 0, 0.6);
  position: relative;
}

.logo-fallback::after {
  content: "";
  position: absolute;
  inset: -6px -8px;
  border: 1px solid rgba(47, 123, 255, 0.4);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav-link {
  padding: 6px 0;
  color: var(--muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.cta-button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.cta-button,
.primary-button {
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  color: #001018;
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.18);
  border: none;
}

.cta-button {
  padding: 8px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.18);
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.26);
}

.cta-button:hover,
.primary-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.28);
}

.primary-button.is-white {
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.18);
}

.primary-button.is-white:hover {
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.26);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: transparent;
}

.ghost-button:hover {
  border-color: rgba(255, 138, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.25);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42vh;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.98) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.7), rgba(6, 6, 10, 0.85)),
    url("assets/hero/rear-view-dj-playing-music-front-excited-crowd-music-festival-by-night.jpg")
      center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after,
.hero-bg::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 166, 0.18), transparent 60%);
  filter: blur(10px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.hero-bg::after {
  top: -40%;
  right: -30%;
}

.hero-bg::before {
  bottom: -50%;
  left: -30%;
}

.hero-led {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(255, 138, 0, 0.25), transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(245, 185, 66, 0.2), transparent 55%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 138, 0, 0.08) 0,
      rgba(255, 138, 0, 0.08) 2px,
      transparent 2px,
      transparent 120px
    );
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Orbitron", "Arial", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.ready .hero-text .eyebrow,
.ready .hero-text h1,
.ready .hero-text .subline {
  animation: heroFadeUp 0.8s ease forwards;
}

.ready .hero-text .eyebrow {
  animation-delay: 0.1s;
}

.ready .hero-text h1 {
  animation-delay: 0.2s;
}

.ready .hero-text .subline {
  animation-delay: 0.35s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-top,
.hero-title-bottom {
  display: block;
}

.hero-title-bottom {
  color: var(--cyan);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.subline {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.trust-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
}

.hero-card {
  padding: 28px;
  display: grid;
  gap: 20px;
}

.hero-media {
  display: grid;
  gap: 16px;
}

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

.hero-image-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-grid img:nth-child(1) {
  grid-column: span 2;
  height: 220px;
}

.hero-image-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 50px rgba(255, 138, 0, 0.35);
}

.stat h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.stat p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: block;
}

.about-bar {
  position: relative;
  width: 100%;
  background: rgba(4, 4, 6, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: none;
  border-right: none;
  padding: 32px 0;
  overflow: visible;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-card {
  position: relative;
  overflow: visible;
  padding-right: 280px;
}

.about-card-image {
  position: absolute;
  right: 0;
  bottom: -16px;
  height: 150%;
  width: auto;
  max-width: 52%;
  object-fit: cover;
  z-index: 3;
  filter: saturate(1.08);
  pointer-events: none;
  animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .about-bar {
    padding: 24px 0 0;
  }

  .about-card {
    padding-right: 24px;
    padding-bottom: 260px;
  }

  .about-card-image {
    position: absolute;
    right: 16px;
    bottom: 0;
    height: 240px;
    max-width: 60%;
  }
}

.about-card p {
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bullet-list {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.about-card {
  padding: 26px;
}

.about-card h2 {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 10px;
}

.about-card h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 138, 0, 0.9), rgba(255, 255, 255, 0.1));
  border-radius: 999px;
}

.about-card p,
.about-card .bullet-list {
  max-width: 520px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.about-media .media-frame {
  background: linear-gradient(150deg, rgba(255, 138, 0, 0.2), rgba(245, 185, 66, 0.1));
  border-radius: var(--radius);
  padding: 2px;
}

.media-placeholder {
  border-radius: calc(var(--radius) - 2px);
  background: rgba(5, 5, 5, 0.9);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  gap: 8px;
}

.media-placeholder span {
  font-family: "Orbitron", "Arial", sans-serif;
  font-size: 24px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: "Orbitron", "Arial", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

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

.section-head h2,
.section-head p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-head.in-view h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.section-head.in-view p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.reference-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.reference-card {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 8, 12, 0.6);
  box-shadow: none;
  scroll-snap-align: start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.reference-card h3 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  transition: font-size 0.25s ease;
  position: relative;
  padding-bottom: 12px;
}

.reference-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 138, 0, 0.9));
  border-radius: 999px;
}

.reference-card p {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: font-size 0.25s ease;
}

.reference-card .meta {
  display: inline-flex;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: font-size 0.25s ease;
}

.reference-card:hover {
  transform: scale(1.04);
  border-color: rgba(255, 138, 0, 0.5);
}

.reference-card:hover h3 {
  font-size: 1.05rem;
}

.reference-card:hover p {
  font-size: 1rem;
}

.reference-card:hover .meta {
  font-size: 12.5px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 24px;
  min-height: 190px;
  display: grid;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 0, 0.15);
  color: var(--cyan);
  font-size: 18px;
}

.service-card h3 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 138, 0, 0.9));
  border-radius: 999px;
}

.service-card p {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 220px;
}

.service-card:hover {
  transform: scale(1.03);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.18);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(8, 8, 12, 0.7);
}

.timeline-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001018;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  padding: 26px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card ul {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}

.price-card.highlight {
  border: 1px solid rgba(255, 138, 0, 0.5);
  box-shadow: 0 12px 30px rgba(47, 123, 255, 0.3);
}

.chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 138, 0, 0.15);
  color: var(--cyan);
}

.pricing-note {
  margin-top: 20px;
  color: var(--muted);
}

.testimonial-card {
  padding: 18px;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
}

.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-preview {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 8px 0 24px;
  margin-bottom: 26px;
  background: #000000;
}

.gallery-preview-row {
  overflow: hidden;
}

.gallery-preview-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: previewMarquee 40s linear infinite;
}

.gallery-preview-row.reverse .gallery-preview-track {
  animation-direction: reverse;
}

.gallery-preview-row:hover .gallery-preview-track {
  animation-play-state: paused;
}

.preview-item {
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
}

.preview-item img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.preview-item:hover img {
  transform: scale(1.05);
}

@keyframes previewMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 10, 0.7);
}

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

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

.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  background: rgba(6, 6, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input[type="date"] {
  color: #ffffff;
  color-scheme: dark;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 138, 0, 0.6);
  border-color: transparent;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.contact-form .primary-button {
  justify-self: start;
  padding-left: 20px;
  padding-right: 20px;
}

.form-success {
  color: var(--cyan);
  min-height: 24px;
}

.contact-side {
  padding: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 10, 0.6);
}

.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-side h3 {
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.contact-side p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-side::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 138, 0, 0.4), rgba(255, 255, 255, 0.08));
  margin-top: 4px;
}


.contact-logo {
  max-width: 180px;
  margin-top: 10px;
  opacity: 0.9;
}

.contact-divider {
  height: 2px;
  width: 120px;
  background: linear-gradient(90deg, rgba(255, 138, 0, 0.9), rgba(255, 255, 255, 0.05));
  border-radius: 999px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  background: #020204;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 10, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-content a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  position: relative;
  width: min(520px, 92vw);
  background: rgba(10, 10, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.cookie-modal-content h3 {
  margin-bottom: 6px;
}

.cookie-modal-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.legal-card {
  padding: 26px;
}

.legal-content {
  display: grid;
  gap: 12px;
}

.legal-content h2 {
  margin-top: 8px;
}

.legal-content p {
  color: var(--muted);
  margin-bottom: 4px;
}

.legal-content a {
  text-decoration: underline;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left img {
  opacity: 0.9;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-right {
  margin-left: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  align-items: flex-start;
  padding-top: 0;
  transform: translateY(-4px);
}

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

.footer-credits {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  color: var(--muted);
  opacity: 0.8;
}

.footer-credits-logo {
  height: auto;
  width: auto;
  max-height: 28px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  display: block;
}

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
}

.filter-button.is-active {
  border-color: rgba(255, 138, 0, 0.6);
  box-shadow: 0 0 16px rgba(255, 138, 0, 0.25);
}

.gallery-grid {
  column-count: 4;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.25);
}

.gallery-empty {
  color: var(--muted);
  margin-top: 20px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 80;
}

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

.lightbox img {
  max-width: min(90vw, 960px);
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 24px;
  cursor: pointer;
}

.lightbox-nav {
  background: rgba(10, 10, 16, 0.8);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 820px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    column-count: 1;
  }
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 22px 50px rgba(255, 138, 0, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20px, -30px, 0);
  }
}

@media (max-width: 960px) {
  .nav-links {
    position: absolute;
    right: 5vw;
    top: 70px;
    background: rgba(5, 5, 8, 0.98);
    flex-direction: column;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    max-width: 90vw;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cta-button {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-buttons .ghost-button {
    padding: 10px 8px;
    font-size: 0.85rem;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .section-head {
    margin-bottom: 28px;
  }

  .hero-content {
    gap: 16px;
  }

  .hero-card {
    padding: 20px;
  }

  .subline {
    font-size: 0.98rem;
  }

  .hero-image-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-grid img {
    height: 180px;
  }

  .hero-image-grid img:nth-child(1) {
    grid-column: auto;
    height: 200px;
  }

  .about-card {
    padding-right: 20px;
    padding-bottom: 20px;
  }

  .about-card-image {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-top: 16px;
  }

  .about-card p,
  .about-card .bullet-list {
    max-width: 100%;
  }

  .contact-grid {
    gap: 16px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-side {
    padding: 20px;
  }

  .timeline-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .timeline-step span {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .quick-buttons .ghost-button {
    padding: 8px 6px;
    font-size: 0.8rem;
    line-height: 1.1;
  }
}
