:root {
  --bg: #000000;
  --bg-alt: #0d0d0d;
  --text: #fffdf5;
  --muted: #b8b6ac;
  --cta: #d42424;
  --cta-hover: #b81e1e;
  --border: rgba(255, 253, 245, 0.15);
  --radius: 0px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.4;
}
.wrap { max-width: 1512px; margin: 0 auto; padding: 0 40px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.3; font-weight: 400; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 2.25rem); }
p { color: var(--muted); margin: 0 0 12px; font-weight: 300; }
strong { font-weight: 500; color: var(--text); }

.site-header { background: var(--bg); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 24px; }
.logo img { height: 32px; }
.nav nav { display: flex; gap: 8px; flex: 1; justify-content: center; }
.nav nav a { color: var(--text); font-size: 1rem; font-weight: 300; padding: 10px 18px; border-radius: 70px; }
.nav nav a:hover { background: rgba(255,255,255,0.08); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  background: var(--cta);
  color: #fff;
  border: none;
}
.btn:hover { background: var(--cta-hover); }

.btn-outline {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 30px;
  border-radius: 70px;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.hero { position: relative; min-height: 85vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; z-index: 0; }
.hero-copy { position: relative; z-index: 1; padding: 64px 0; max-width: 720px; }
.hero-copy p { color: var(--muted); }

.section { padding: 72px 0; border-top: 1px solid var(--border); }
.section:first-child { border-top: none; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; margin-bottom: 24px; }

.card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card .icon { height: 40px; width: auto; margin-bottom: 16px; filter: invert(1); }
.card .step { display: inline-block; font-size: 0.9rem; color: var(--cta); font-weight: 500; margin-bottom: 8px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 24px; }
.gallery img { aspect-ratio: 1; object-fit: cover; }

.stats { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; text-align: left; }
.stats div { flex: 1; min-width: 120px; }
.stats strong { display: block; font-size: 3rem; font-weight: 500; color: var(--text); }
.stats span { color: var(--muted); font-size: 0.95rem; }

img.wide { width: 100%; margin: 24px 0; }

.project-card { display: block; overflow: hidden; border: 1px solid var(--border); background: var(--bg-alt); }
.project-card img { width: 100%; height: 240px; object-fit: cover; }
.project-card span { display: block; padding: 18px; font-size: 0.95rem; color: var(--text); font-weight: 300; }

.project-meta { display: flex; gap: 24px; color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }

.project-video { position: relative; width: 100%; aspect-ratio: 16/9; margin: 24px 0; background: var(--bg-alt); }
.project-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 500; color: var(--text); }
.faq p { margin-top: 12px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 0;
  padding: 12px 14px; color: var(--text); font: inherit;
}
.contact-form .btn { align-self: flex-start; }
.form-success { color: var(--cta); }

.legal ul, .legal ol { color: var(--muted); padding-left: 20px; }
.legal li { margin-bottom: 8px; }

.site-footer { border-top: 1px solid var(--border); padding: 48px 0; margin-top: 48px; color: var(--muted); font-size: 0.95rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-meta { display: flex; gap: 20px; margin-bottom: 16px; }
.copyright { margin: 0; }

@media (max-width: 720px) {
  .nav nav { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .wrap { padding: 0 20px; }
}
