:root {
  --page-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 45%), #040404;
  color: #f6f6f6;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

main {
  padding-top: 0;
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.site-header,
.site-footer {
  width: min(100%, var(--page-max));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4vw;
  background: rgba(4, 4, 4, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .main-nav {
  display: flex;
  gap: 1.5rem;
}
.site-header .main-nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: rgba(246, 246, 246, 0.68);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 220ms ease;
}
.site-header .main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f6f6f6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.site-header .main-nav a:hover {
  color: #f6f6f6;
}
.site-header .main-nav a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.8rem;
}
.brand div {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta-chip {
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.75rem;
  color: #f6f6f6;
  transition: background 220ms ease, border-color 220ms ease;
}
.cta-chip:hover {
  border-color: #f6f6f6;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  gap: 6px;
  flex-direction: column;
  transition: border-color 220ms ease, background 220ms ease;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: #f6f6f6;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle:hover {
  border-color: #f6f6f6;
  background: rgba(255, 255, 255, 0.04);
}

.nav-backdrop {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

section {
  padding: 6rem 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(72px + 6rem) 4vw 4rem;
}
.hero .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(0.55);
  opacity: 0.85;
}
.hero .hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.3) 0%, rgba(4, 4, 4, 0.7) 50%, #040404 100%);
}
.hero .hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.75rem;
  color: rgba(246, 246, 246, 0.68);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.lede {
  font-size: 1.2rem;
  color: rgba(246, 246, 246, 0.68);
  margin-bottom: 2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn.primary {
  background: #f6f6f6;
  color: #040404;
}
.btn.secondary {
  border-color: rgba(255, 255, 255, 0.08);
  color: #f6f6f6;
}
.btn:hover {
  border-color: #f6f6f6;
  background: transparent;
  color: #f6f6f6;
}

.hero-metrics {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-metrics .metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-metrics .value {
  font-size: 1.8rem;
  font-weight: 600;
}
.hero-metrics .label {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.75rem;
  color: rgba(246, 246, 246, 0.68);
}

.section-heading {
  max-width: 720px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}
.about .about-body {
  max-width: 600px;
}
.about .about-body p {
  color: rgba(246, 246, 246, 0.68);
  margin-bottom: 1.5rem;
}
.about .about-body ul {
  padding-left: 1rem;
  list-style: none;
  margin: 0;
}
.about .about-body ul li {
  position: relative;
  margin-bottom: 1rem;
  color: #f6f6f6;
  padding-left: 1.5rem;
}
.about .about-body ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1rem;
  height: 1px;
  background: #d7d7d7;
}

.focus-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.focus-grid article {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 220ms ease, transform 220ms ease;
}
.focus-grid article h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.85rem;
}
.focus-grid article p {
  margin: 0;
  color: rgba(246, 246, 246, 0.68);
}
.focus-grid article:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-6px);
}

.portfolio-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.portfolio-list .portfolio-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.portfolio-list .portfolio-card .tag {
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #d7d7d7;
}
.portfolio-list .portfolio-card h3 {
  margin: 0;
  font-size: 1.4rem;
}
.portfolio-list .portfolio-card p {
  margin: 0;
  color: rgba(246, 246, 246, 0.68);
}

.cta {
  border: none;
}
.cta .cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.cta .cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}
.cta .cta-panel p {
  color: rgba(246, 246, 246, 0.68);
  margin-bottom: 2rem;
}
.cta .cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  text-align: center;
  padding: 2rem 4vw 4rem;
  color: rgba(246, 246, 246, 0.68);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .site-header {
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .cta-chip {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-header {
    position: fixed;
    width: 100%;
    left: 0;
    padding: 1rem 1.5rem;
  }
  .site-header .main-nav {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    padding: 2rem;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(4, 4, 4, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 5;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 4;
  }
  body.menu-open .main-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  body.menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  body.menu-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0;
    gap: 0;
  }
  .hero-media {
    position: relative;
    inset: unset;
    pointer-events: auto;
    width: 100%;
    height: clamp(280px, 60vh, 450px);
    overflow: hidden;
    order: 2;
    margin-top: 0;
  }
  .hero-video {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-glow {
    position: absolute;
    inset: 0;
  }
  .hero-content {
    padding: calc(72px + 2rem) 1.5rem 2rem;
    margin-top: 12rem;
    z-index: auto;
    order: 1;
    max-width: 100%;
  }
  section:not(.hero) {
    padding: 4rem 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}/*# sourceMappingURL=Style.css.map */