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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
  color: #090909;
  line-height: 1.45;
}

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

.header {
  width: min(1280px, 94%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #111;
}

.logo {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero {
  width: min(1280px, 94%);
  margin: 0 auto;
  min-height: 760px;
  padding: 42px 0 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top,
.hero-bottom,
footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero h1 {
  font-size: clamp(58px, 11vw, 158px);
  line-height: .82;
  letter-spacing: -0.1em;
  max-width: 1180px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-bottom p {
  max-width: 520px;
  text-transform: none;
  letter-spacing: 0;
  color: #444;
  font-size: 18px;
}

.hero-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  border: 1px solid #111;
  border-radius: 999px;
  font-weight: 800;
}

.hero-bottom a:hover {
  background: #111;
  color: #fff;
}

.marquee {
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  display: flex;
  overflow: hidden;
}

.marquee span {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  text-align: center;
  border-right: 1px solid #111;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 13px;
}

.section {
  width: min(1280px, 94%);
  margin: 0 auto;
  padding: 100px 0;
}

.section-head {
  display: grid;
  grid-template-columns: .3fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}

.section-head p,
.about > div > p,
.contact > p {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 800;
}

h2 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}

.project {
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 18px;
}

.project-large {
  grid-column: span 2;
}

.project-visual {
  min-height: 370px;
  background: #111;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.project-large .project-visual {
  min-height: 560px;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}

.project-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -120px;
  background: #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.project-visual span,
.project-visual h3 {
  position: relative;
  z-index: 2;
}

.project-visual span {
  font-size: 14px;
  font-weight: 900;
}

.project-visual h3 {
  font-size: clamp(34px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -0.07em;
  max-width: 650px;
  text-transform: uppercase;
}

.visual-2 { background: #f2f2f2; color: #111; }
.visual-2::after { border-color: rgba(0,0,0,.3); }
.visual-3 { background: repeating-linear-gradient(90deg, #111 0 38px, #fff 38px 76px); color: #fff; }
.visual-4 { background: radial-gradient(circle at center, #fff 0 18%, #111 18% 100%); color: #fff; }
.visual-5 { background: linear-gradient(135deg, #111 0 50%, #f2f2f2 50% 100%); color: #fff; }

.project-text {
  padding: 22px 4px 4px;
}

.project-text h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.project-text p {
  color: #444;
  max-width: 620px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.about-text p {
  color: #333;
  font-size: 20px;
  margin-bottom: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}

.services div {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
}

.services span {
  font-weight: 900;
}

.services h3 {
  font-size: 26px;
  letter-spacing: -0.05em;
  margin: 80px 0 10px;
}

.services p {
  color: #444;
}

.contact {
  text-align: center;
}

.contact h2 {
  max-width: 950px;
  margin: 20px auto 34px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-links a {
  padding: 16px 24px;
  border: 1px solid #111;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
}

.contact-links a:hover {
  background: #111;
  color: #fff;
}

footer {
  width: min(1280px, 94%);
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid #111;
}

@media (max-width: 900px) {
  nav { display: none; }

  .hero-top,
  .hero-bottom,
  footer {
    display: grid;
    gap: 16px;
  }

  .section-head,
  .about,
  .services {
    grid-template-columns: 1fr;
  }

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

  .project-large {
    grid-column: span 1;
  }

  .project-large .project-visual,
  .project-visual {
    min-height: 360px;
  }

  .services {
    border-left: 1px solid #111;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .section {
    padding: 70px 0;
  }
}
