* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #090909;
  color: #fff;
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 9, 0.96);
  border-bottom: 1px solid rgba(221, 183, 92, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 7%;
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: #050505;
  padding: 4px;
  border: 1px solid rgba(215,189,121,.45);
}
.brand strong { display: block; font-size: 18px; letter-spacing: 0.3px; }
.brand small { display: block; color: #d7bd79; margin-top: -4px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav a { text-decoration: none; color: #f5f5f5; font-size: 14px; }
.nav a:hover { color: #d7bd79; }
.menu-btn { display: none; background: none; color: white; border: 0; font-size: 28px; }

.hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 7%;
}
.video-hero { position: relative; overflow: hidden; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.86));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero-logo {
  width: min(400px, 80vw);
  max-height: 210px;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 0.38;
  filter: drop-shadow(0 0 8px rgba(215,189,121,.10));
}

.eyebrow {
  color: #d7bd79;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.center { text-align: center; }
h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
h3 { font-size: 24px; margin: 0 0 12px; }
.hero-text {
  max-width: 780px;
  margin: 0 auto 32px;
  color: #e7e7e7;
  font-size: 18px;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-block;
  border: 1px solid #d7bd79;
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}
.btn.primary { background: #d7bd79; color: #111; }
.btn.secondary { background: transparent; color: #fff; }

.section { padding: 84px 7%; }
.dark-block { background: #0d0d0d; }

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.overview-card {
  display: block;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(215,189,121,.25);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215,189,121,.65);
}
.overview-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #050505;
  padding: 16px;
}
.overview-card h3, .overview-card p { padding: 0 24px; }
.overview-card p {
  color: #d8d8d8;
  padding-bottom: 24px;
}

.service-detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.service-detail-grid.reverse {
  grid-template-columns: 1.1fr .9fr;
}
.service-detail h2 {
  text-align: left;
  margin-bottom: 18px;
}
.service-detail p {
  color: #e0e0e0;
  font-size: 17px;
}
.text-link {
  color: #d7bd79;
  font-weight: 700;
}
.small-note {
  font-size: 14px !important;
  color: #c7c7c7 !important;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.media-grid img,
.media-grid video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(215,189,121,.25);
  background: #050505;
}
.media-grid img.contain-img {
  object-fit: contain;
  padding: 18px;
}
.screenshot-fit {
  object-fit: cover !important;
  padding: 0 !important;
}

.contact-intro { text-align: center; color: #cfcfcf; max-width: 680px; margin: 20px auto 0; }
.faq-list { max-width: 850px; margin: 0 auto; }
details {
  background: #111;
  border: 1px solid rgba(215,189,121,.22);
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
}
summary { cursor: pointer; font-weight: 700; color: #fff; }
details p { color: #d6d6d6; margin-bottom: 0; }

.cta {
  text-align: center;
  padding: 72px 7%;
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.86)),
    radial-gradient(circle at center, rgba(215,189,121,.28), transparent 45%);
  border-top: 1px solid rgba(215,189,121,.2);
  border-bottom: 1px solid rgba(215,189,121,.2);
}
.cta h2 { margin-bottom: 14px; }
.cta p { color: #e0e0e0; margin-bottom: 24px; }

.contact-grid {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
}
.contact-info, .quote-form {
  background: #111;
  border: 1px solid rgba(215,189,121,.22);
  padding: 28px;
  border-radius: 6px;
}
.contact-info a { color: #d7bd79; }
.quote-form { display: grid; gap: 15px; }
label {
  display: grid;
  gap: 7px;
  color: #f1f1f1;
  font-weight: 700;
  font-size: 14px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(215,189,121,.28);
  background: #080808;
  color: white;
  padding: 13px;
  border-radius: 3px;
  font: inherit;
}
textarea { resize: vertical; }
.footer {
  text-align: center;
  padding: 28px 7%;
  color: #bdbdbd;
  border-top: 1px solid rgba(215,189,121,.16);
}

@media (max-width: 1200px) {
  .service-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .nav { gap: 12px; }
  .nav a { font-size: 13px; }
}
@media (max-width: 960px) {
  .service-overview-grid,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #090909;
    border-bottom: 1px solid rgba(215,189,121,.22);
    padding: 18px 7%;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .section { padding: 64px 6%; }
}
@media (max-width: 540px) {
  .site-header { padding: 12px 5%; }
  .brand-logo { width: 48px; height: 48px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 12px; }
  .hero { min-height: 76vh; padding: 60px 5%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .media-grid { grid-template-columns: 1fr; }
  .media-grid img, .media-grid video { height: auto; max-height: 520px; }
}

.media-single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}


.luxury-lavs-photos img {
  object-fit: cover;
}


.hidden {
  display: none;
}


.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 7%;
  background:
    linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)),
    url('assets/lighting-2.jpg') center/cover no-repeat;
}

.thank-you-card {
  max-width: 720px;
  text-align: center;
  background: rgba(9, 9, 9, 0.86);
  border: 1px solid rgba(215,189,121,.25);
  border-radius: 14px;
  padding: 42px;
}

.thank-you-logo {
  width: min(320px, 80vw);
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 18px;
}


/* Mobile layout fix for all 4 services:
   The Light Bros, Luxury Lavs, Bar2Go, and Event Haus.
   On phones/tablets: text always appears first, images/logo appear second. */
@media (max-width: 960px) {
  .service-detail-grid,
  .service-detail-grid.reverse {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-detail-grid > div:not(.media-grid) {
    order: 1;
  }

  .service-detail-grid > .media-grid {
    order: 2;
  }
}
