:root {
  --bg: #070707;
  --panel: #101010;
  --panel-soft: #171717;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff3329;
  --red-dark: #be1f18;
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.18));
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px;
}

.dot,
.section-kicker,
.service-icon,
.steps span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--white-soft);
  font-size: 0.95rem;
}

.nav a:hover,
.footer a:hover {
  color: white;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px clamp(18px, 6vw, 88px) 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.72) 38%, rgba(7, 7, 7, 0.18)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.08) 44%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 740px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 620px;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.ghost:hover,
.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.intro,
.services,
.showcase,
.contact {
  padding: 110px clamp(18px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.intro > p,
.showcase-copy p,
.contact-panel p,
.service p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service {
  min-height: 248px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.service-icon {
  display: block;
  min-height: 44px;
  font-size: 2rem;
  font-weight: 800;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  background: var(--panel);
}

.showcase-copy {
  max-width: 620px;
}

.showcase-copy p {
  margin-top: 28px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  color: var(--white-soft);
}

.steps span {
  font-weight: 900;
}

.visual-stack {
  position: relative;
  min-height: 650px;
}

.visual {
  position: absolute;
  width: min(45%, 300px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-one {
  left: 0;
  top: 60px;
}

.visual-two {
  left: 30%;
  top: 0;
  z-index: 2;
}

.visual-three {
  right: 0;
  bottom: 30px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.contact-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.7fr) auto;
  align-items: start;
  gap: 28px;
  padding: 34px clamp(18px, 6vw, 88px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-main p,
.footer-legal p {
  margin: 10px 0 0;
  max-width: 520px;
  font-size: 0.92rem;
}

.footer-legal {
  font-size: 0.92rem;
}

.footer-legal p:first-child {
  margin-top: 0;
  color: var(--text);
  font-weight: 700;
}

.footer-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-top {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
}

@media (max-width: 920px) {
  .site-header {
    padding: 16px 18px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 130px 18px 70px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.56)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.05) 50%);
  }

  .intro,
  .showcase,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro,
  .services,
  .showcase,
  .contact {
    padding: 76px 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-stack {
    min-height: 520px;
  }

  .visual {
    width: 46%;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer-legal {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 210px;
    padding: 26px;
  }

  .visual-stack {
    min-height: 430px;
  }

  .visual {
    width: 52%;
  }

  .visual-one {
    top: 70px;
  }

  .visual-two {
    left: 24%;
  }

  .contact-panel {
    padding: 24px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-top {
    width: 42px;
    height: 42px;
  }
}
