﻿:root {
  --bg: #090909;
  --surface: rgba(17, 17, 17, 0.62);
  --line: rgba(255, 255, 255, 0.22);
  --text: #f4f4f2;
  --muted: #c8c8c5;
  --accent: #d8c9a3;
  --accent-2: #98886a;
  --hero-logo-size: clamp(120px, 16vw, 280px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.video-shell {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  background: #000;
  opacity: 0;
  transition: opacity 650ms ease;
}

.bg-video.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.25), transparent 45%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58) 40%, rgba(0, 0, 0, 0.82));
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0rem;
  margin-bottom: -12rem;
}

.brand-logo {
  width: var(--hero-logo-size);
  height: auto;
  object-fit: cover;
  max-width: 92vw;
}

main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
}

.panel {
  min-height: auto;
  padding: 3.2rem 0 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  min-height: 100vh;
  padding-top: 1.2rem;
}

.center-content {
  align-items: center;
  text-align: center;
}

.kicker {
  letter-spacing: 0.23rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.headline {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: clamp(2.2rem, 8vw, 6rem);
  line-height: 0.9;
}

.subtitle {
  color: var(--muted);
  max-width: 680px;
  margin: 1.1rem auto 2rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-btn {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.icon-btn svg {
  width: 1.3rem;
  height: 1.3rem;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.icon-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.section-head h2 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.service-copy {
  margin-top: 1.15rem;
  max-width: 880px;
  padding: 0;
  line-height: 1.7;
}

.service-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.service-copy p:last-child {
  margin-bottom: 0;
}

.service-copy strong {
  color: var(--text);
}

.contact-form,
.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.clients {
  margin-top: 0.85rem;
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.clients-copy {
  margin: 0.8rem 0 0;
  max-width: 880px;
  color: var(--muted);
}

.clients-logos {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.contact-form {
  margin-top: 1.15rem;
  border-radius: 1rem;
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 1px solid rgba(226, 216, 191, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .clients {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .clients-logos {
    width: 100%;
    height: auto;
  }

  .hero-brand {
    margin-top: 0rem;
    margin-bottom: -7rem;
  }

  .hero-cta {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-logo-only {
  display: block;
}


