:root {
  --bg: #0a0a0c;
  --bg-alt: #121216;
  --surface: #1a1a1f;
  --border: #2a2a30;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #ff5a36;
  --accent-2: #ffd166;
  --radius: 14px;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .75rem;
}

.lead { color: var(--text-muted); font-size: 1.05rem; max-width: 46ch; }

.accent { color: var(--accent); }

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(10,10,12,.7);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
.logo img { height: 34px; width: auto; border-radius: 6px; }
.logo em { color: var(--accent); font-style: normal; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .95rem;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,90,54,.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,209,102,.15), transparent 50%),
    linear-gradient(180deg, rgba(10,10,12,.75), rgba(10,10,12,.95)),
    url("../assets/hero-bg.jpg") center 30% / cover no-repeat;
  z-index: -1;
}

.hero-content { padding-top: 72px; }

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin: .5rem 0 1.25rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, background .2s, border-color .2s;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0c;
}
.btn-primary:hover { transform: translateY(-2px); background: #ff7a5c; }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }

.awards-section { position: relative; overflow: hidden; }
.awards-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}
.awards-bg div {
  flex: 1;
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.awards-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-alt), rgba(18,18,22,.45) 25%, rgba(18,18,22,.45) 75%, var(--bg-alt));
}
.awards-section .container { position: relative; z-index: 1; }

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-label { color: var(--text-muted); font-size: .9rem; }

.grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 100%; height: 100%; }
.card p { color: var(--text-muted); font-size: .95rem; }

/* Team */
.team-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.team-avatar {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.team-role { color: var(--accent); font-weight: 600; margin-bottom: .75rem; }

.socials { display: flex; gap: 1rem; margin-top: 1.25rem; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s, border-color .2s;
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { color: var(--accent); border-color: var(--accent); }

/* Awards */
.award {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.award-badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: rgba(255,209,102,.15);
  color: var(--accent-2);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

/* Showreel */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.video-wrap iframe {
  width: 100%; height: 100%; border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-muted);
  text-align: center;
}
.play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Contact */
.contact-info { list-style: none; margin-top: 1.5rem; }
.contact-info li { margin-bottom: .6rem; color: var(--text-muted); }
.contact-info a { color: var(--text); font-weight: 600; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form label { font-size: .85rem; color: var(--text-muted); margin-top: .75rem; }
.contact-form input, .contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form button { margin-top: 1.5rem; align-self: flex-start; border: none; cursor: pointer; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  background: #fff;
  border-radius: var(--radius);
  padding: .9rem 1.6rem;
}
.footer-logo img { height: 32px; width: auto; display: block; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner a:hover { color: var(--text); }
.footer-links { display: flex; gap: 1.5rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
}
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 62ch;
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-banner .btn { padding: .65rem 1.3rem; font-size: .9rem; }
.cookie-banner .btn-ghost { color: #0a0a0c; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .section-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem 24px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
}
